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 1992A158013 for ; Tue, 5 Dec 2023 12:16:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6917D2BC034; Tue, 5 Dec 2023 12:16:37 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 520712BC034 for ; Tue, 5 Dec 2023 12:16:37 +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 8E5E333BE12 for ; Tue, 5 Dec 2023 12:16:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 071EC1192 for ; Tue, 5 Dec 2023 12:16:35 +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: <1701778585.3afed6351c5865fa3c1f3afed0da6e5a540d9aad.amadio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-physics/geant/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-physics/geant/geant-4.11.0.4-r1.ebuild sci-physics/geant/geant-4.11.0.4.ebuild sci-physics/geant/geant-4.11.1.2-r1.ebuild sci-physics/geant/geant-4.11.1.2.ebuild sci-physics/geant/geant-4.11.1.3-r1.ebuild sci-physics/geant/geant-4.11.1.3.ebuild sci-physics/geant/metadata.xml X-VCS-Directories: sci-physics/geant/ X-VCS-Committer: amadio X-VCS-Committer-Name: Guilherme Amadio X-VCS-Revision: 3afed6351c5865fa3c1f3afed0da6e5a540d9aad X-VCS-Branch: master Date: Tue, 5 Dec 2023 12:16:35 +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: f3e65738-0ecb-4ca7-805c-2110164c6eb2 X-Archives-Hash: c48e7a53980d3c43010a147cdc92ada2 commit: 3afed6351c5865fa3c1f3afed0da6e5a540d9aad Author: Guilherme Amadio gentoo org> AuthorDate: Fri Dec 1 08:51:48 2023 +0000 Commit: Guilherme Amadio gentoo org> CommitDate: Tue Dec 5 12:16:25 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3afed635 sci-physics/geant: drop USE flags for C++ standard Signed-off-by: Guilherme Amadio gentoo.org> sci-physics/geant/{geant-4.11.0.4.ebuild => geant-4.11.0.4-r1.ebuild} | 4 +--- sci-physics/geant/{geant-4.11.1.2.ebuild => geant-4.11.1.2-r1.ebuild} | 4 +--- sci-physics/geant/{geant-4.11.1.3.ebuild => geant-4.11.1.3-r1.ebuild} | 4 +--- sci-physics/geant/metadata.xml | 2 -- 4 files changed, 3 insertions(+), 11 deletions(-) diff --git a/sci-physics/geant/geant-4.11.0.4.ebuild b/sci-physics/geant/geant-4.11.0.4-r1.ebuild similarity index 94% rename from sci-physics/geant/geant-4.11.0.4.ebuild rename to sci-physics/geant/geant-4.11.0.4-r1.ebuild index 46177ea9e071..78172acdf4ed 100644 --- a/sci-physics/geant/geant-4.11.0.4.ebuild +++ b/sci-physics/geant/geant-4.11.0.4-r1.ebuild @@ -28,11 +28,10 @@ SRC_URI="https://geant4-data.web.cern.ch/geant4-data/releases/${MY_P}.tar.gz" LICENSE="geant4" SLOT="4" KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="+c++17 c++20 +data debug doc examples freetype gdml geant3 hdf5 inventor motif opengl +IUSE="+data debug doc examples freetype gdml geant3 hdf5 inventor motif opengl python qt5 raytracerx static-libs tbb threads trajectories vtk" REQUIRED_USE=" - ^^ ( c++17 c++20 ) inventor? ( opengl ) motif? ( opengl ) python? ( ${PYTHON_REQUIRED_USE} ) @@ -82,7 +81,6 @@ PATCHES=( src_configure() { local mycmakeargs=( -DCMAKE_INSTALL_DATADIR="${EPREFIX}/usr/share/geant4" - -DCMAKE_CXX_STANDARD=$( (usev c++17 || usev c++20) | cut -c4-) -DGEANT4_BUILD_BUILTIN_BACKTRACE=$(usex debug) -DGEANT4_BUILD_MULTITHREADED=$(usex threads) -DGEANT4_BUILD_STORE_TRAJECTORY=$(usex trajectories) diff --git a/sci-physics/geant/geant-4.11.1.2.ebuild b/sci-physics/geant/geant-4.11.1.2-r1.ebuild similarity index 94% rename from sci-physics/geant/geant-4.11.1.2.ebuild rename to sci-physics/geant/geant-4.11.1.2-r1.ebuild index f3b3080d4a6c..ba5da9da5760 100644 --- a/sci-physics/geant/geant-4.11.1.2.ebuild +++ b/sci-physics/geant/geant-4.11.1.2-r1.ebuild @@ -26,11 +26,10 @@ SRC_URI="https://geant4-data.web.cern.ch/geant4-data/releases/${MY_P}.tar.gz" LICENSE="geant4" SLOT="4" KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="+c++17 c++20 +data debug doc examples freetype gdml geant3 hdf5 inventor motif opengl +IUSE="+data debug doc examples freetype gdml geant3 hdf5 inventor motif opengl qt5 raytracerx static-libs tbb threads trajectories vtk" REQUIRED_USE=" - ^^ ( c++17 c++20 ) inventor? ( opengl ) motif? ( opengl ) qt5? ( opengl ) @@ -73,7 +72,6 @@ PATCHES=( src_configure() { local mycmakeargs=( -DCMAKE_INSTALL_DATADIR="${EPREFIX}/usr/share/geant4" - -DCMAKE_CXX_STANDARD=$( (usev c++17 || usev c++20) | cut -c4-) -DGEANT4_BUILD_BUILTIN_BACKTRACE=$(usex debug) -DGEANT4_BUILD_MULTITHREADED=$(usex threads) -DGEANT4_BUILD_STORE_TRAJECTORY=$(usex trajectories) diff --git a/sci-physics/geant/geant-4.11.1.3.ebuild b/sci-physics/geant/geant-4.11.1.3-r1.ebuild similarity index 94% rename from sci-physics/geant/geant-4.11.1.3.ebuild rename to sci-physics/geant/geant-4.11.1.3-r1.ebuild index f27e52f2f965..8ad0f4053b14 100644 --- a/sci-physics/geant/geant-4.11.1.3.ebuild +++ b/sci-physics/geant/geant-4.11.1.3-r1.ebuild @@ -26,11 +26,10 @@ SRC_URI="https://geant4-data.web.cern.ch/geant4-data/releases/${MY_P}.tar.gz" LICENSE="geant4" SLOT="4" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="+c++17 c++20 +data debug doc examples freetype gdml geant3 hdf5 inventor motif opengl +IUSE="+data debug doc examples freetype gdml geant3 hdf5 inventor motif opengl qt5 raytracerx static-libs tbb threads trajectories vtk" REQUIRED_USE=" - ^^ ( c++17 c++20 ) inventor? ( opengl ) motif? ( opengl ) qt5? ( opengl ) @@ -73,7 +72,6 @@ PATCHES=( src_configure() { local mycmakeargs=( -DCMAKE_INSTALL_DATADIR="${EPREFIX}/usr/share/geant4" - -DCMAKE_CXX_STANDARD=$( (usev c++17 || usev c++20) | cut -c4-) -DGEANT4_BUILD_BUILTIN_BACKTRACE=$(usex debug) -DGEANT4_BUILD_MULTITHREADED=$(usex threads) -DGEANT4_BUILD_STORE_TRAJECTORY=$(usex trajectories) diff --git a/sci-physics/geant/metadata.xml b/sci-physics/geant/metadata.xml index e30535f60f9a..c3ee4dbc5921 100644 --- a/sci-physics/geant/metadata.xml +++ b/sci-physics/geant/metadata.xml @@ -15,8 +15,6 @@ features and detectors. - Build using the C++17 standard - Build using the C++20 standard Add a lot of standard physics data files for geant4 Add support for media-libs/freetype Enable geometry markup language for xml