From owner-dev-commits-ports-main@freebsd.org Thu Sep 16 20:58:24 2021 Return-Path: Delivered-To: dev-commits-ports-main@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 7C1766A87B5; Thu, 16 Sep 2021 20:58:24 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4H9TvN2Nnhz3GbS; Thu, 16 Sep 2021 20:58:24 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2C22779D; Thu, 16 Sep 2021 20:58:24 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 18GKwORc086605; Thu, 16 Sep 2021 20:58:24 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 18GKwOvL086604; Thu, 16 Sep 2021 20:58:24 GMT (envelope-from git) Date: Thu, 16 Sep 2021 20:58:24 GMT Message-Id: <202109162058.18GKwOvL086604@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Dima Panov Subject: git: dabb3800ee81 - main - graphics/libcdr01: remove staled patch after 7e9b8f8afae0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: fluffy X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: dabb3800ee81d7839b6c2ddae0014027910be679 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commits to the main branch of the FreeBSD ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Sep 2021 20:58:24 -0000 The branch main has been updated by fluffy: URL: https://cgit.FreeBSD.org/ports/commit/?id=dabb3800ee81d7839b6c2ddae0014027910be679 commit dabb3800ee81d7839b6c2ddae0014027910be679 Author: Dima Panov AuthorDate: 2021-09-16 20:55:45 +0000 Commit: Dima Panov CommitDate: 2021-09-16 20:58:12 +0000 graphics/libcdr01: remove staled patch after 7e9b8f8afae0 Pointy hat to myself :( --- graphics/libcdr01/files/patch-icu68 | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/graphics/libcdr01/files/patch-icu68 b/graphics/libcdr01/files/patch-icu68 deleted file mode 100644 index 466cfea4bae4..000000000000 --- a/graphics/libcdr01/files/patch-icu68 +++ /dev/null @@ -1,17 +0,0 @@ -Regressed by https://github.com/unicode-org/icu/commit/c3fe7e09d844 - -libcdr_utils.cpp:111:35: error: use of undeclared identifier 'TRUE' - ucsdet_enableInputFilter(csd, TRUE); - ^ - ---- src/lib/libcdr_utils.cpp.orig 2020-02-02 15:30:44 UTC -+++ src/lib/libcdr_utils.cpp -@@ -108,7 +108,7 @@ static unsigned short getEncoding(const unsigned char - csd = ucsdet_open(&status); - if (U_FAILURE(status) || !csd) - return 0; -- ucsdet_enableInputFilter(csd, TRUE); -+ ucsdet_enableInputFilter(csd, true); - ucsdet_setText(csd, (const char *)buffer, bufferLength, &status); - if (U_FAILURE(status)) - throw libcdr::EncodingException();