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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 66E77138359 for ; Wed, 23 Sep 2020 10:39:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 94482E082B; Wed, 23 Sep 2020 10:39:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 76E5AE082B for ; Wed, 23 Sep 2020 10:39:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6783433FE49 for ; Wed, 23 Sep 2020 10:39:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0D13D373 for ; Wed, 23 Sep 2020 10:39:34 +0000 (UTC) From: "Aaron W. Swenson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron W. Swenson" Message-ID: <1600857556.e716de587da3cd501a0c83259d0e1a14771b3d24.titanofold@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/fossil/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/fossil/fossil-2.12.1.ebuild X-VCS-Directories: dev-vcs/fossil/ X-VCS-Committer: titanofold X-VCS-Committer-Name: Aaron W. Swenson X-VCS-Revision: e716de587da3cd501a0c83259d0e1a14771b3d24 X-VCS-Branch: master Date: Wed, 23 Sep 2020 10:39:34 +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: 11950778-e30e-4da8-b3af-746f045b686f X-Archives-Hash: 964090731e5429c74741163df6b6bab9 commit: e716de587da3cd501a0c83259d0e1a14771b3d24 Author: Aaron W. Swenson gentoo org> AuthorDate: Wed Sep 23 10:36:03 2020 +0000 Commit: Aaron W. Swenson gentoo org> CommitDate: Wed Sep 23 10:39:16 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e716de58 dev-vcs/fossil: Bump sqlite dep, drop legacy-mv-rm Fossil 2.12 requires SQLite 3.33.0 when using the system installation. Dropped the legacy-mv-rm use flag as upstream removed it in 2.12.1. Further, it has always been enabled since 2.7, but still requires mv-rm to be activated in each repo. Reverted ppc and ppc64 stabilizations given the two previous items would prevent successful emerging if enabled, so need to be rechecked. Bug: https://bugs.gentoo.org/738220 Closes: https://bugs.gentoo.org/738914 Closes: https://bugs.gentoo.org/738912 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Aaron W. Swenson gentoo.org> dev-vcs/fossil/fossil-2.12.1.ebuild | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/dev-vcs/fossil/fossil-2.12.1.ebuild b/dev-vcs/fossil/fossil-2.12.1.ebuild index 62eb7be69f1..b553b813fc2 100644 --- a/dev-vcs/fossil/fossil-2.12.1.ebuild +++ b/dev-vcs/fossil/fossil-2.12.1.ebuild @@ -11,9 +11,9 @@ SRC_URI="https://fossil-scm.org/home/uv/fossil-src-${PV}.tar.gz" LICENSE="BSD-2" SLOT="0" -KEYWORDS="~amd64 ~arm ppc ppc64 ~x86" -IUSE="debug fusefs json -legacy-mv-rm -miniz system-sqlite +ssl static - tcl tcl-stubs tcl-private-stubs th1-docs th1-hooks" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" +IUSE="debug fusefs json -miniz system-sqlite +ssl static tcl tcl-stubs + tcl-private-stubs th1-docs th1-hooks" REQUIRED_USE="ssl? ( !miniz )" @@ -23,7 +23,7 @@ RDEPEND=" sys-libs/readline:0 dev-libs/libedit ) - system-sqlite? ( >=dev-db/sqlite-3.28.0:3 ) + system-sqlite? ( >=dev-db/sqlite-3.33.0:3 ) ssl? ( dev-libs/openssl:0 ) tcl? ( dev-lang/tcl:0= ) " @@ -57,8 +57,7 @@ src_configure() { use fusefs || myconf+=' --disable-fusefs' local u useflags - useflags=( legacy-mv-rm miniz tcl-stubs tcl-private-stubs - th1-docs th1-hooks ) + useflags=( miniz tcl-stubs tcl-private-stubs th1-docs th1-hooks ) for u in ${useflags[@]} ; do use ${u} && myconf+=" --with-${u}" done