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 6271B158086 for ; Mon, 6 Dec 2021 20:26:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9795C2BC008; Mon, 6 Dec 2021 20:26:30 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7FBEE2BC008 for ; Mon, 6 Dec 2021 20:26:30 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 99829342DFE for ; Mon, 6 Dec 2021 20:26:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0A7E610C for ; Mon, 6 Dec 2021 20:26:28 +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: <1638822381.e16b47e9eb0451a40e2d3460df5a6b03ecd883c9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/tokyocabinet/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/tokyocabinet/tokyocabinet-1.4.48-r1.ebuild X-VCS-Directories: dev-db/tokyocabinet/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e16b47e9eb0451a40e2d3460df5a6b03ecd883c9 X-VCS-Branch: master Date: Mon, 6 Dec 2021 20:26:28 +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: a36cbc1e-354c-4ca1-9508-7bb4ceceb283 X-Archives-Hash: 96443c2f90b1199fd93db0330d802e52 commit: e16b47e9eb0451a40e2d3460df5a6b03ecd883c9 Author: Sam James gentoo org> AuthorDate: Mon Dec 6 20:25:53 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon Dec 6 20:26:21 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e16b47e9 dev-db/tokyocabinet: drop USE=debug Fails to build (requires static linking) and seems of limited utility for us. See: https://forums.gentoo.org/viewtopic-p-8683763.html Signed-off-by: Sam James gentoo.org> dev-db/tokyocabinet/tokyocabinet-1.4.48-r1.ebuild | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dev-db/tokyocabinet/tokyocabinet-1.4.48-r1.ebuild b/dev-db/tokyocabinet/tokyocabinet-1.4.48-r1.ebuild index 4efc8e3e6d20..df6c7e422489 100644 --- a/dev-db/tokyocabinet/tokyocabinet-1.4.48-r1.ebuild +++ b/dev-db/tokyocabinet/tokyocabinet-1.4.48-r1.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://fallabs.com/tokyocabinet/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~mips ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" -IUSE="bzip2 debug doc examples threads zlib" +IUSE="bzip2 doc examples threads zlib" DEPEND="bzip2? ( app-arch/bzip2 ) zlib? ( sys-libs/zlib )" @@ -46,7 +46,6 @@ src_prepare() { src_configure() { # we use the "fastest" target without the -O3 econf \ - $(use_enable debug) \ $(use_enable bzip2 bzip) \ $(use_enable zlib) \ $(use_enable threads pthread) \