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 9662215ACFC for ; Mon, 1 May 2023 13:43:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D9014E089C; Mon, 1 May 2023 13:43:57 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B93A0E089C for ; Mon, 1 May 2023 13:43:57 +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 C5E9E341489 for ; Mon, 1 May 2023 13:43:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 08936A5D for ; Mon, 1 May 2023 13:43:54 +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: <1682948610.704a3701864c271e8999ca91f5d35786855a7d8f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/gramps/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/gramps/gramps-5.1.5.ebuild X-VCS-Directories: app-misc/gramps/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 704a3701864c271e8999ca91f5d35786855a7d8f X-VCS-Branch: master Date: Mon, 1 May 2023 13:43:54 +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: 6ef510c1-9f1f-4c7a-b3a6-2617c6c32e03 X-Archives-Hash: a1e3bfd8aae5ee1e69c338ab965a5a17 commit: 704a3701864c271e8999ca91f5d35786855a7d8f Author: Sam James gentoo org> AuthorDate: Mon May 1 13:22:43 2023 +0000 Commit: Sam James gentoo org> CommitDate: Mon May 1 13:43:30 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=704a3701 app-misc/gramps: drop USE=berkdb entirely No real other choice here given Python 3.9 is about to be removed. Note that berkdb was needed for tests but USE=berkdb has been masked on app-misc/gramps for over a year anyway so they've been silently not running. Looks like there is some hope for >3.9 compat w/ https://github.com/gramps-project/gramps/pull/1408 if someone is interested. Signed-off-by: Sam James gentoo.org> app-misc/gramps/gramps-5.1.5.ebuild | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/app-misc/gramps/gramps-5.1.5.ebuild b/app-misc/gramps/gramps-5.1.5.ebuild index a640777bf942..6748cb19e67b 100644 --- a/app-misc/gramps/gramps-5.1.5.ebuild +++ b/app-misc/gramps/gramps-5.1.5.ebuild @@ -20,8 +20,10 @@ SLOT="0" KEYWORDS="amd64 x86" IUSE="berkdb exif geo postscript +rcs +reports spell test" -RESTRICT="!test? ( test ) - !berkdb? ( test )" +# Previously had: !berkdb? ( test ) combined w/ dev-python/bsddb3 dep only for py3.9 +# so now restricted entirely. +# See also https://github.com/gramps-project/gramps/pull/1408. +RESTRICT="test" RDEPEND=" $(python_gen_cond_dep ' @@ -34,9 +36,6 @@ RDEPEND=" >x11-libs/gtk+-3.14.8:3[introspection] x11-libs/pango[introspection] x11-misc/xdg-utils - berkdb? ( $(python_gen_cond_dep ' - dev-python/bsddb3[${PYTHON_USEDEP}] - ' python3_9) ) geo? ( >=sci-geosciences/osm-gps-map-1.1.0 ) spell? ( app-text/gtkspell:3[introspection] ) rcs? ( dev-vcs/rcs ) @@ -97,13 +96,6 @@ pkg_postinst() { xdg_desktop_database_update xdg_icon_cache_update xdg_mimeinfo_database_update - - if use berkdb; then - ewarn "The BSDDB back-end in ${PN} has got known stability and data-corruption issues. It has been deprecated since version 5.1.0 and might be removed in 5.2.0." - ewarn "If you have any family trees in this format you are highly advised to convert them to SQLite, as described here:" - ewarn - ewarn "https://gramps-project.org/wiki/index.php/Gramps_5.1_Wiki_Manual_-_Manage_Family_Trees#Converting_a_BSDDB_Family_Tree_to_SQLite" - fi } pkg_postrm() {