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 122BA1581D3 for ; Sun, 19 May 2024 09:10:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 28B14E2A26; Sun, 19 May 2024 09:10:02 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EED75E2A26 for ; Sun, 19 May 2024 09:10:01 +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 27C6F33BE4D for ; Sun, 19 May 2024 09:10:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 540AC132F for ; Sun, 19 May 2024 09:09:59 +0000 (UTC) From: "Akinori Hattori" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Akinori Hattori" Message-ID: <1716109663.2c2eea6b9027a5b8aaba4e6e74058877c7005676.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/qdbm/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/qdbm/qdbm-1.8.78-r5.ebuild X-VCS-Directories: dev-db/qdbm/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: 2c2eea6b9027a5b8aaba4e6e74058877c7005676 X-VCS-Branch: master Date: Sun, 19 May 2024 09:09:59 +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: 0b9eb70a-c225-4396-800f-4c326023c30f X-Archives-Hash: 9a731eee0f2e10482231d77a9cf83a4d commit: 2c2eea6b9027a5b8aaba4e6e74058877c7005676 Author: Akinori Hattori gentoo org> AuthorDate: Sun May 19 09:07:43 2024 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Sun May 19 09:07:43 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c2eea6b dev-db/qdbm: drop debug USE flag Closes: https://bugs.gentoo.org/889794 Signed-off-by: Akinori Hattori gentoo.org> dev-db/qdbm/qdbm-1.8.78-r5.ebuild | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/dev-db/qdbm/qdbm-1.8.78-r5.ebuild b/dev-db/qdbm/qdbm-1.8.78-r5.ebuild index d2b808795c42..c4022db45e1f 100644 --- a/dev-db/qdbm/qdbm-1.8.78-r5.ebuild +++ b/dev-db/qdbm/qdbm-1.8.78-r5.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://fallabs.com/${PN}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86" -IUSE="bzip2 cxx debug java lzo perl ruby static-libs zlib" +IUSE="bzip2 cxx java lzo perl ruby static-libs zlib" RDEPEND="bzip2? ( app-arch/bzip2 ) java? ( >=virtual/jre-1.8:* ) @@ -62,14 +62,7 @@ qdbm_foreach_api() { eautoreconf ;; configure) - case "${u}" in - cgi|java|plus) - econf $(use_enable debug) - ;; - *) - econf - ;; - esac + econf ;; compile) emake @@ -100,7 +93,6 @@ src_prepare() { -e "/^CXXFLAGS/s|$| ${CXXFLAGS}|" \ -e "/^JAVACFLAGS/s|$| ${JAVACFLAGS}|" \ -e 's/make\( \|$\)/$(MAKE)\1/g' \ - -e '/^debug/,/^$/s/LDFLAGS="[^"]*" //' \ Makefile.in {cgi,java,perl,plus,ruby}/Makefile.in || die find -name "*~" -delete || die @@ -122,7 +114,6 @@ each_ruby_prepare() { src_configure() { econf \ $(use_enable bzip2 bzip) \ - $(use_enable debug) \ $(use_enable lzo) \ $(use_enable zlib) \ --enable-iconv \