From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C5B1B158099 for ; Tue, 28 Nov 2023 16:34:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DF88B2BC0CB; Tue, 28 Nov 2023 16:34:33 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C28FA2BC0CB for ; Tue, 28 Nov 2023 16:34:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B2AF7342DF8 for ; Tue, 28 Nov 2023 16:34:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1679913F7 for ; Tue, 28 Nov 2023 16:34:31 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1701189236.0a9201bc3785436f43b1459e647b1af1b82426c9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libcbor/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libcbor/libcbor-0.10.2.ebuild dev-libs/libcbor/metadata.xml X-VCS-Directories: dev-libs/libcbor/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0a9201bc3785436f43b1459e647b1af1b82426c9 X-VCS-Branch: master Date: Tue, 28 Nov 2023 16:34:31 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b872e897-f327-4b91-a6fc-08ea13838b1d X-Archives-Hash: 156d382d477157981390e9a6ffe9d5e9 commit: 0a9201bc3785436f43b1459e647b1af1b82426c9 Author: Eli Schwartz gmail com> AuthorDate: Tue Nov 28 15:41:17 2023 +0000 Commit: Sam James gentoo org> CommitDate: Tue Nov 28 16:33:56 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a9201bc dev-libs/libcbor: remove useless USE flag that is a no-op The current ebuild logs a warning: ``` CMake Warning at CMakeLists.txt:22 (message): CBOR_CUSTOM_ALLOC has been deprecated. Custom allocators are now enabled by default.The flag is a no-op and will be removed in the next version. Please remove CBOR_CUSTOM_ALLOC from your build configuation. ``` The USE flag only controls a cmake feature flag, but that feature flag is completely ignored and the resulting package is identical. Upstream commit: https://github.com/PJK/libcbor/commit/c03d88e02fe6f0a16389f6067b15dc3ed1b43401 Remove the USE flag. No revbump needed, the resulting package is the same either way, but people may feel free to rebuild on changed-USE anyway. Signed-off-by: Eli Schwartz gmail.com> Closes: https://github.com/gentoo/gentoo/pull/34026 Signed-off-by: Sam James gentoo.org> dev-libs/libcbor/libcbor-0.10.2.ebuild | 3 +-- dev-libs/libcbor/metadata.xml | 3 --- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/dev-libs/libcbor/libcbor-0.10.2.ebuild b/dev-libs/libcbor/libcbor-0.10.2.ebuild index 75b5ed188e33..83c83a5ed6ba 100644 --- a/dev-libs/libcbor/libcbor-0.10.2.ebuild +++ b/dev-libs/libcbor/libcbor-0.10.2.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/PJK/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0/$(ver_cut 1-2)" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86" -IUSE="+custom-alloc doc test" +IUSE="doc test" BDEPEND=" doc? ( @@ -42,7 +42,6 @@ pkg_setup() { src_configure() { local mycmakeargs=( -DCMAKE_BUILD_TYPE=Release - -DCBOR_CUSTOM_ALLOC=$(usex custom-alloc 'ON' 'OFF') -DWITH_TESTS=$(usex test 'ON' 'OFF') ) diff --git a/dev-libs/libcbor/metadata.xml b/dev-libs/libcbor/metadata.xml index 0b931e44104b..8ce035a8ef63 100644 --- a/dev-libs/libcbor/metadata.xml +++ b/dev-libs/libcbor/metadata.xml @@ -5,9 +5,6 @@ base-system@gentoo.org Gentoo Base System - - Custom, dynamically defined allocator support - pjk/libcbor