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 26949139336 for ; Mon, 28 Jun 2021 16:15:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C40F3E0841; Mon, 28 Jun 2021 16:15:37 +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 A2AFFE0841 for ; Mon, 28 Jun 2021 16:15:37 +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 0F43F335D63 for ; Mon, 28 Jun 2021 16:15:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7B7897BD for ; Mon, 28 Jun 2021 16:15:34 +0000 (UTC) From: "Guilherme Amadio" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Guilherme Amadio" Message-ID: <1624896918.6612332362789e82e70209b83f9b682c8567f4e1.amadio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-physics/vgm/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-physics/vgm/metadata.xml sci-physics/vgm/vgm-4.8-r1.ebuild sci-physics/vgm/vgm-4.8.ebuild sci-physics/vgm/vgm-4.9-r1.ebuild sci-physics/vgm/vgm-4.9.ebuild sci-physics/vgm/vgm-9999.ebuild X-VCS-Directories: sci-physics/vgm/ X-VCS-Committer: amadio X-VCS-Committer-Name: Guilherme Amadio X-VCS-Revision: 6612332362789e82e70209b83f9b682c8567f4e1 X-VCS-Branch: master Date: Mon, 28 Jun 2021 16:15: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: 06dc368b-320f-4f7e-9601-edf643359fe8 X-Archives-Hash: ca964b6c1af3bf6dde01aa445e0d3d27 commit: 6612332362789e82e70209b83f9b682c8567f4e1 Author: Guilherme Amadio gentoo org> AuthorDate: Mon Jun 28 13:59:46 2021 +0000 Commit: Guilherme Amadio gentoo org> CommitDate: Mon Jun 28 16:15:18 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66123323 sci-physics/vgm: remove C++ USE flags, use C++17 as default Geant4 11.0 and onwards will only support C++17 and above, so this is in preparation to remove C++ USE flags altogether in favor of coordinated settings in all packages that currently depend on such USE flags. Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Guilherme Amadio gentoo.org> sci-physics/vgm/metadata.xml | 3 --- sci-physics/vgm/{vgm-4.8.ebuild => vgm-4.8-r1.ebuild} | 8 +++----- sci-physics/vgm/{vgm-4.9.ebuild => vgm-4.9-r1.ebuild} | 8 +++----- sci-physics/vgm/vgm-9999.ebuild | 8 +++----- 4 files changed, 9 insertions(+), 18 deletions(-) diff --git a/sci-physics/vgm/metadata.xml b/sci-physics/vgm/metadata.xml index b5b1b3c1755..70819ee2ad2 100644 --- a/sci-physics/vgm/metadata.xml +++ b/sci-physics/vgm/metadata.xml @@ -14,9 +14,6 @@ Proxy Maintainers - Build using the C++11 standard - Build using the C++14 standard - Build using the C++17 standard Enable interaction with Geant4(sci-physics/geant:4) Enable interaction with ROOT (sci-physics/root) diff --git a/sci-physics/vgm/vgm-4.8.ebuild b/sci-physics/vgm/vgm-4.8-r1.ebuild similarity index 87% rename from sci-physics/vgm/vgm-4.8.ebuild rename to sci-physics/vgm/vgm-4.8-r1.ebuild index c99ae4840d2..db8bf0661fc 100644 --- a/sci-physics/vgm/vgm-4.8.ebuild +++ b/sci-physics/vgm/vgm-4.8-r1.ebuild @@ -20,14 +20,12 @@ HOMEPAGE="http://ivana.home.cern.ch/ivana/VGM.html" LICENSE="GPL-2" SLOT="0" -IUSE="+c++11 c++14 c++17 doc examples +geant4 +root test" - -REQUIRED_USE="^^ ( c++11 c++14 c++17 )" +IUSE="doc examples +geant4 +root test" RDEPEND=" sci-physics/clhep:= - geant4? ( >=sci-physics/geant-4.10.6[c++11?,c++14?,c++17?] ) - root? ( >=sci-physics/root-6.14:=[c++11?,c++14?,c++17?] )" + geant4? ( sci-physics/geant[c++17] ) + root? ( sci-physics/root:=[c++17] )" DEPEND="${RDEPEND} doc? ( app-doc/doxygen[dot] ) test? ( diff --git a/sci-physics/vgm/vgm-4.9.ebuild b/sci-physics/vgm/vgm-4.9-r1.ebuild similarity index 88% rename from sci-physics/vgm/vgm-4.9.ebuild rename to sci-physics/vgm/vgm-4.9-r1.ebuild index ede9e854018..1d116e9ae85 100644 --- a/sci-physics/vgm/vgm-4.9.ebuild +++ b/sci-physics/vgm/vgm-4.9-r1.ebuild @@ -20,14 +20,12 @@ HOMEPAGE="http://ivana.home.cern.ch/ivana/VGM.html https://github.com/vmc-projec LICENSE="GPL-2" SLOT="0" -IUSE="+c++11 c++14 c++17 doc examples +geant4 +root test" - -REQUIRED_USE="^^ ( c++11 c++14 c++17 )" +IUSE="doc examples +geant4 +root test" RDEPEND=" sci-physics/clhep:= - geant4? ( >=sci-physics/geant-4.10.6[c++11?,c++14?,c++17?] ) - root? ( >=sci-physics/root-6.14:=[c++11?,c++14?,c++17?] )" + geant4? ( sci-physics/geant[c++17] ) + root? ( sci-physics/root:=[c++17] )" DEPEND="${RDEPEND} doc? ( app-doc/doxygen[dot] ) test? ( diff --git a/sci-physics/vgm/vgm-9999.ebuild b/sci-physics/vgm/vgm-9999.ebuild index eb9ce1b27be..fd992406f6e 100644 --- a/sci-physics/vgm/vgm-9999.ebuild +++ b/sci-physics/vgm/vgm-9999.ebuild @@ -20,14 +20,12 @@ HOMEPAGE="http://ivana.home.cern.ch/ivana/VGM.html https://github.com/vmc-projec LICENSE="GPL-2" SLOT="0" -IUSE="+c++11 c++14 c++17 doc examples +geant4 +root test" - -REQUIRED_USE="^^ ( c++11 c++14 c++17 )" +IUSE="doc examples +geant4 +root test" RDEPEND=" sci-physics/clhep:= - geant4? ( >=sci-physics/geant-4.10.6[c++11?,c++14?,c++17?] ) - root? ( >=sci-physics/root-6.14:=[c++11?,c++14?,c++17?] )" + geant4? ( sci-physics/geant[c++17] ) + root? ( sci-physics/root:=[c++17] )" DEPEND="${RDEPEND} doc? ( app-doc/doxygen[dot] ) test? (