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 EC855158015 for ; Mon, 4 Dec 2023 09:25:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 238FF2BC017; Mon, 4 Dec 2023 09:25:06 +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 02A982BC017 for ; Mon, 4 Dec 2023 09:25:06 +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 07FC8335C7E for ; Mon, 4 Dec 2023 09:25:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 39A47AEA for ; Mon, 4 Dec 2023 09:25:03 +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: <1701681862.7dff4fd114b62ba13b08b3ea1d37b0b9eb44e439.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-doc/doxygen/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-doc/doxygen/doxygen-1.9.8.ebuild app-doc/doxygen/doxygen-9999.ebuild X-VCS-Directories: app-doc/doxygen/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7dff4fd114b62ba13b08b3ea1d37b0b9eb44e439 X-VCS-Branch: master Date: Mon, 4 Dec 2023 09:25:03 +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: 2a5aad0f-c49e-4738-9153-22abdaf9682c X-Archives-Hash: bffcba3b8b972a155f4185a55159bd07 commit: 7dff4fd114b62ba13b08b3ea1d37b0b9eb44e439 Author: Eli Schwartz gmail com> AuthorDate: Thu Nov 30 20:55:22 2023 +0000 Commit: Sam James gentoo org> CommitDate: Mon Dec 4 09:24:22 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7dff4fd1 app-doc/doxygen: remove unused sqlite USE flag While making a few changes to the live ebuild in commit 10c3fc41ee47042f6f3d16198e3fe178ec1d7752 the sqlite USE flag was removed from src_configure with the rationale that upstream removed the option to use the system sqlite. Since then, an upstream patch has been backported for this, which is used unconditionally and comes with an unconditional dependency on dev-db/sqlite, which still doesn't actually check the USE flag value. It was never removed from IUSE though (where it is disabled by default). Clean it up. Signed-off-by: Eli Schwartz gmail.com> Closes: https://github.com/gentoo/gentoo/pull/34072 Signed-off-by: Sam James gentoo.org> app-doc/doxygen/doxygen-1.9.8.ebuild | 2 +- app-doc/doxygen/doxygen-9999.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app-doc/doxygen/doxygen-1.9.8.ebuild b/app-doc/doxygen/doxygen-1.9.8.ebuild index 5293c124db40..5d806d2fbc60 100644 --- a/app-doc/doxygen/doxygen-1.9.8.ebuild +++ b/app-doc/doxygen/doxygen-1.9.8.ebuild @@ -24,7 +24,7 @@ fi # GPL-2 also for bundled libmscgen LICENSE="GPL-2" SLOT="0" -IUSE="clang debug doc dot doxysearch gui sqlite test" +IUSE="clang debug doc dot doxysearch gui test" # - We need TeX for tests, bug #765472 # - We keep the odd construct of noop USE=test because of # the special relationship b/t RESTRICT & USE for tests. diff --git a/app-doc/doxygen/doxygen-9999.ebuild b/app-doc/doxygen/doxygen-9999.ebuild index 667f2076a2fc..0f06fbd71388 100644 --- a/app-doc/doxygen/doxygen-9999.ebuild +++ b/app-doc/doxygen/doxygen-9999.ebuild @@ -24,7 +24,7 @@ fi # GPL-2 also for bundled libmscgen LICENSE="GPL-2" SLOT="0" -IUSE="clang debug doc dot doxysearch gui sqlite test" +IUSE="clang debug doc dot doxysearch gui test" # - We need TeX for tests, bug #765472 # - We keep the odd construct of noop USE=test because of # the special relationship b/t RESTRICT & USE for tests.