public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sci-physics/vmc/
@ 2020-05-20 12:37 Guilherme Amadio
  0 siblings, 0 replies; 12+ messages in thread
From: Guilherme Amadio @ 2020-05-20 12:37 UTC (permalink / raw
  To: gentoo-commits

commit:     45dde5fb4ae5c121d20e0104c6e61e198e9114fe
Author:     Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
AuthorDate: Sun May  3 18:14:27 2020 +0000
Commit:     Guilherme Amadio <amadio <AT> gentoo <DOT> org>
CommitDate: Wed May 20 12:37:25 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45dde5fb

sci-physics/vmc: New package

sci-physics/root[vmc] has become a separate project,
and is now deprecated and marked for removal within
sci-physics/root.

Closes: https://github.com/gentoo/gentoo/pull/15630

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Oliver Freyermuth <o.freyermuth <AT> googlemail.com>
Signed-off-by: Guilherme Amadio <amadio <AT> gentoo.org>

 sci-physics/vmc/Manifest          |  1 +
 sci-physics/vmc/metadata.xml      | 24 +++++++++++++++++++++
 sci-physics/vmc/vmc-1.0_p2.ebuild | 45 +++++++++++++++++++++++++++++++++++++++
 sci-physics/vmc/vmc-9999.ebuild   | 45 +++++++++++++++++++++++++++++++++++++++
 4 files changed, 115 insertions(+)

diff --git a/sci-physics/vmc/Manifest b/sci-physics/vmc/Manifest
new file mode 100644
index 00000000000..59a8546f3d8
--- /dev/null
+++ b/sci-physics/vmc/Manifest
@@ -0,0 +1 @@
+DIST vmc-1.0_p2.tar.gz 91400 BLAKE2B d444a003433f4939f1b737ee8aa117a3230f83428ff9a79f8219a88bf5146104460a8be80ada9ab3a0a0edebc7d85d02bc51de053d54b06739d26cb0bbec3429 SHA512 51d6a8462c854411b595a20a2657b8012f19cd9c139f3341ccd72eb262473d01f6909ad22ee8d083f01cc5a2e43b2af265a7ed7c62a1285e8fab34c1b68ee3cd

diff --git a/sci-physics/vmc/metadata.xml b/sci-physics/vmc/metadata.xml
new file mode 100644
index 00000000000..3cf146831dd
--- /dev/null
+++ b/sci-physics/vmc/metadata.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>o.freyermuth@googlemail.com</email>
+    <name>Oliver Freyermuth</name>
+  </maintainer>
+  <maintainer type="person">
+    <email>amadio@gentoo.org</email>
+    <name>Guilherme Amadio</name>
+  </maintainer>
+  <maintainer type="project">
+    <email>proxy-maint@gentoo.org</email>
+    <name>Proxy Maintainers</name>
+  </maintainer>
+  <use>
+    <flag name="c++11">Build using the C++11 standard</flag>
+    <flag name="c++14">Build using the C++14 standard</flag>
+    <flag name="c++17">Build using the C++17 standard</flag>
+  </use>
+  <upstream>
+    <remote-id type="github">vmc-project/vmc</remote-id>
+  </upstream>
+</pkgmetadata>

diff --git a/sci-physics/vmc/vmc-1.0_p2.ebuild b/sci-physics/vmc/vmc-1.0_p2.ebuild
new file mode 100644
index 00000000000..fdebc4ac86f
--- /dev/null
+++ b/sci-physics/vmc/vmc-1.0_p2.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+if [[ ${PV} == *9999* ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/vmc-project/${PN}.git"
+else
+	MY_PV=$(ver_rs 1-2 -)
+	SRC_URI="https://github.com/vmc-project/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+	S="${WORKDIR}/${PN}-${MY_PV}"
+fi
+
+DESCRIPTION="The Virtual Monte Carlo core library."
+HOMEPAGE="https://vmc-project.github.io/"
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="+c++11 c++14 c++17 doc"
+
+REQUIRED_USE="^^ ( c++11 c++14 c++17 )"
+
+RDEPEND=">=sci-physics/root-6.18:=[c++11?,c++14?,c++17?,-vmc]"
+DEPEND="${RDEPEND}
+	doc? ( app-doc/doxygen[dot] )"
+
+DOCS=(README.md History)
+
+src_compile() {
+	cmake_src_compile
+	if use doc; then
+		# TRAVIS_BUILD_DIR hardcoded in Doxyfile by upstream.
+		TRAVIS_BUILD_DIR="${S}" doxygen doc/doxygen/Doxyfile || die
+	fi
+}
+
+src_install() {
+	cmake_src_install
+	use doc && local HTML_DOCS=( doc/html/. )
+	einstalldocs
+}

diff --git a/sci-physics/vmc/vmc-9999.ebuild b/sci-physics/vmc/vmc-9999.ebuild
new file mode 100644
index 00000000000..fdebc4ac86f
--- /dev/null
+++ b/sci-physics/vmc/vmc-9999.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+if [[ ${PV} == *9999* ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/vmc-project/${PN}.git"
+else
+	MY_PV=$(ver_rs 1-2 -)
+	SRC_URI="https://github.com/vmc-project/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+	S="${WORKDIR}/${PN}-${MY_PV}"
+fi
+
+DESCRIPTION="The Virtual Monte Carlo core library."
+HOMEPAGE="https://vmc-project.github.io/"
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="+c++11 c++14 c++17 doc"
+
+REQUIRED_USE="^^ ( c++11 c++14 c++17 )"
+
+RDEPEND=">=sci-physics/root-6.18:=[c++11?,c++14?,c++17?,-vmc]"
+DEPEND="${RDEPEND}
+	doc? ( app-doc/doxygen[dot] )"
+
+DOCS=(README.md History)
+
+src_compile() {
+	cmake_src_compile
+	if use doc; then
+		# TRAVIS_BUILD_DIR hardcoded in Doxyfile by upstream.
+		TRAVIS_BUILD_DIR="${S}" doxygen doc/doxygen/Doxyfile || die
+	fi
+}
+
+src_install() {
+	cmake_src_install
+	use doc && local HTML_DOCS=( doc/html/. )
+	einstalldocs
+}


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-physics/vmc/
@ 2021-01-17 10:16 Joonas Niilola
  0 siblings, 0 replies; 12+ messages in thread
From: Joonas Niilola @ 2021-01-17 10:16 UTC (permalink / raw
  To: gentoo-commits

commit:     28a8dbc4e265ff3d1510149988b1a246359a1040
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 17 10:11:17 2021 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Jan 17 10:16:46 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28a8dbc4

sci-physics/vmc: add BDEPEND for 1.0_p3

Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 sci-physics/vmc/vmc-1.0_p3.ebuild | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/sci-physics/vmc/vmc-1.0_p3.ebuild b/sci-physics/vmc/vmc-1.0_p3.ebuild
index fdebc4ac86f..91c335813c8 100644
--- a/sci-physics/vmc/vmc-1.0_p3.ebuild
+++ b/sci-physics/vmc/vmc-1.0_p3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -15,8 +15,8 @@ else
 	S="${WORKDIR}/${PN}-${MY_PV}"
 fi
 
-DESCRIPTION="The Virtual Monte Carlo core library."
-HOMEPAGE="https://vmc-project.github.io/"
+DESCRIPTION="The Virtual Monte Carlo core library"
+HOMEPAGE="https://vmc-project.github.io/ https://github.com/vmc-project/vmc"
 
 LICENSE="GPL-3"
 SLOT="0"
@@ -25,8 +25,8 @@ IUSE="+c++11 c++14 c++17 doc"
 REQUIRED_USE="^^ ( c++11 c++14 c++17 )"
 
 RDEPEND=">=sci-physics/root-6.18:=[c++11?,c++14?,c++17?,-vmc]"
-DEPEND="${RDEPEND}
-	doc? ( app-doc/doxygen[dot] )"
+DEPEND="${RDEPEND}"
+BDEPEND="doc? ( app-doc/doxygen[dot] )"
 
 DOCS=(README.md History)
 


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-physics/vmc/
@ 2021-01-17 10:16 Joonas Niilola
  0 siblings, 0 replies; 12+ messages in thread
From: Joonas Niilola @ 2021-01-17 10:16 UTC (permalink / raw
  To: gentoo-commits

commit:     a4d5883e2ba2bb882416901ce78bd50f32b75d35
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 17 10:11:43 2021 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Jan 17 10:16:46 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4d5883e

sci-physics/vmc: sync live ebuild

Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 sci-physics/vmc/vmc-9999.ebuild | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/sci-physics/vmc/vmc-9999.ebuild b/sci-physics/vmc/vmc-9999.ebuild
index fdebc4ac86f..91c335813c8 100644
--- a/sci-physics/vmc/vmc-9999.ebuild
+++ b/sci-physics/vmc/vmc-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -15,8 +15,8 @@ else
 	S="${WORKDIR}/${PN}-${MY_PV}"
 fi
 
-DESCRIPTION="The Virtual Monte Carlo core library."
-HOMEPAGE="https://vmc-project.github.io/"
+DESCRIPTION="The Virtual Monte Carlo core library"
+HOMEPAGE="https://vmc-project.github.io/ https://github.com/vmc-project/vmc"
 
 LICENSE="GPL-3"
 SLOT="0"
@@ -25,8 +25,8 @@ IUSE="+c++11 c++14 c++17 doc"
 REQUIRED_USE="^^ ( c++11 c++14 c++17 )"
 
 RDEPEND=">=sci-physics/root-6.18:=[c++11?,c++14?,c++17?,-vmc]"
-DEPEND="${RDEPEND}
-	doc? ( app-doc/doxygen[dot] )"
+DEPEND="${RDEPEND}"
+BDEPEND="doc? ( app-doc/doxygen[dot] )"
 
 DOCS=(README.md History)
 


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-physics/vmc/
@ 2021-01-17 10:16 Joonas Niilola
  0 siblings, 0 replies; 12+ messages in thread
From: Joonas Niilola @ 2021-01-17 10:16 UTC (permalink / raw
  To: gentoo-commits

commit:     0c7bc92d14f5fa551a7c559d9e85aa14f371f552
Author:     Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
AuthorDate: Sun Dec 20 17:16:51 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Jan 17 10:16:46 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c7bc92d

sci-physics/vmc: Version bump to 1.0_p3.

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Oliver Freyermuth <o.freyermuth <AT> googlemail.com>
Closes: https://github.com/gentoo/gentoo/pull/18737
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 sci-physics/vmc/Manifest          |  1 +
 sci-physics/vmc/vmc-1.0_p3.ebuild | 45 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 46 insertions(+)

diff --git a/sci-physics/vmc/Manifest b/sci-physics/vmc/Manifest
index 59a8546f3d8..8f62d6c40d2 100644
--- a/sci-physics/vmc/Manifest
+++ b/sci-physics/vmc/Manifest
@@ -1 +1,2 @@
 DIST vmc-1.0_p2.tar.gz 91400 BLAKE2B d444a003433f4939f1b737ee8aa117a3230f83428ff9a79f8219a88bf5146104460a8be80ada9ab3a0a0edebc7d85d02bc51de053d54b06739d26cb0bbec3429 SHA512 51d6a8462c854411b595a20a2657b8012f19cd9c139f3341ccd72eb262473d01f6909ad22ee8d083f01cc5a2e43b2af265a7ed7c62a1285e8fab34c1b68ee3cd
+DIST vmc-1.0_p3.tar.gz 91476 BLAKE2B 3005e0575a5835b832175e6a272d4e3c328990e28ac998aca60a42c4ddd03faba4d1b761867d8af597ca2468cf3072c49bb007852b5ec892c215df37297656dc SHA512 621c0cb3f2846f9401e3e4fff6fa47ab2afbff7c4dca5c19869abb1806ec19d4a221e5741aad9b3929a4e8b8207ee6008a9bf06ec8bf03ed73771cb29fda1b8d

diff --git a/sci-physics/vmc/vmc-1.0_p3.ebuild b/sci-physics/vmc/vmc-1.0_p3.ebuild
new file mode 100644
index 00000000000..fdebc4ac86f
--- /dev/null
+++ b/sci-physics/vmc/vmc-1.0_p3.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+if [[ ${PV} == *9999* ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/vmc-project/${PN}.git"
+else
+	MY_PV=$(ver_rs 1-2 -)
+	SRC_URI="https://github.com/vmc-project/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+	S="${WORKDIR}/${PN}-${MY_PV}"
+fi
+
+DESCRIPTION="The Virtual Monte Carlo core library."
+HOMEPAGE="https://vmc-project.github.io/"
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="+c++11 c++14 c++17 doc"
+
+REQUIRED_USE="^^ ( c++11 c++14 c++17 )"
+
+RDEPEND=">=sci-physics/root-6.18:=[c++11?,c++14?,c++17?,-vmc]"
+DEPEND="${RDEPEND}
+	doc? ( app-doc/doxygen[dot] )"
+
+DOCS=(README.md History)
+
+src_compile() {
+	cmake_src_compile
+	if use doc; then
+		# TRAVIS_BUILD_DIR hardcoded in Doxyfile by upstream.
+		TRAVIS_BUILD_DIR="${S}" doxygen doc/doxygen/Doxyfile || die
+	fi
+}
+
+src_install() {
+	cmake_src_install
+	use doc && local HTML_DOCS=( doc/html/. )
+	einstalldocs
+}


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-physics/vmc/
@ 2021-01-20 10:16 David Seifert
  0 siblings, 0 replies; 12+ messages in thread
From: David Seifert @ 2021-01-20 10:16 UTC (permalink / raw
  To: gentoo-commits

commit:     1147c430b58c45191f95d3269807dbbb45e295fb
Author:     Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Wed Jan 20 10:16:12 2021 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Wed Jan 20 10:16:12 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1147c430

sci-physics/vmc: Remove old

Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 sci-physics/vmc/Manifest          |  1 -
 sci-physics/vmc/vmc-1.0_p2.ebuild | 45 ---------------------------------------
 2 files changed, 46 deletions(-)

diff --git a/sci-physics/vmc/Manifest b/sci-physics/vmc/Manifest
index 8f62d6c40d2..aa34be22f3f 100644
--- a/sci-physics/vmc/Manifest
+++ b/sci-physics/vmc/Manifest
@@ -1,2 +1 @@
-DIST vmc-1.0_p2.tar.gz 91400 BLAKE2B d444a003433f4939f1b737ee8aa117a3230f83428ff9a79f8219a88bf5146104460a8be80ada9ab3a0a0edebc7d85d02bc51de053d54b06739d26cb0bbec3429 SHA512 51d6a8462c854411b595a20a2657b8012f19cd9c139f3341ccd72eb262473d01f6909ad22ee8d083f01cc5a2e43b2af265a7ed7c62a1285e8fab34c1b68ee3cd
 DIST vmc-1.0_p3.tar.gz 91476 BLAKE2B 3005e0575a5835b832175e6a272d4e3c328990e28ac998aca60a42c4ddd03faba4d1b761867d8af597ca2468cf3072c49bb007852b5ec892c215df37297656dc SHA512 621c0cb3f2846f9401e3e4fff6fa47ab2afbff7c4dca5c19869abb1806ec19d4a221e5741aad9b3929a4e8b8207ee6008a9bf06ec8bf03ed73771cb29fda1b8d

diff --git a/sci-physics/vmc/vmc-1.0_p2.ebuild b/sci-physics/vmc/vmc-1.0_p2.ebuild
deleted file mode 100644
index fdebc4ac86f..00000000000
--- a/sci-physics/vmc/vmc-1.0_p2.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-if [[ ${PV} == *9999* ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/vmc-project/${PN}.git"
-else
-	MY_PV=$(ver_rs 1-2 -)
-	SRC_URI="https://github.com/vmc-project/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-	S="${WORKDIR}/${PN}-${MY_PV}"
-fi
-
-DESCRIPTION="The Virtual Monte Carlo core library."
-HOMEPAGE="https://vmc-project.github.io/"
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="+c++11 c++14 c++17 doc"
-
-REQUIRED_USE="^^ ( c++11 c++14 c++17 )"
-
-RDEPEND=">=sci-physics/root-6.18:=[c++11?,c++14?,c++17?,-vmc]"
-DEPEND="${RDEPEND}
-	doc? ( app-doc/doxygen[dot] )"
-
-DOCS=(README.md History)
-
-src_compile() {
-	cmake_src_compile
-	if use doc; then
-		# TRAVIS_BUILD_DIR hardcoded in Doxyfile by upstream.
-		TRAVIS_BUILD_DIR="${S}" doxygen doc/doxygen/Doxyfile || die
-	fi
-}
-
-src_install() {
-	cmake_src_install
-	use doc && local HTML_DOCS=( doc/html/. )
-	einstalldocs
-}


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-physics/vmc/
@ 2021-06-28 16:15 Guilherme Amadio
  0 siblings, 0 replies; 12+ messages in thread
From: Guilherme Amadio @ 2021-06-28 16:15 UTC (permalink / raw
  To: gentoo-commits

commit:     bb63ba306e0061358195c201489da9b9cfebee7a
Author:     Guilherme Amadio <amadio <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 28 15:02:23 2021 +0000
Commit:     Guilherme Amadio <amadio <AT> gentoo <DOT> org>
CommitDate: Mon Jun 28 16:15:18 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb63ba30

sci-physics/vmc: move default C++ standard to C++17

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Guilherme Amadio <amadio <AT> gentoo.org>

 sci-physics/vmc/{vmc-1.0_p3.ebuild => vmc-1.0_p3-r1.ebuild} | 4 ++--
 sci-physics/vmc/vmc-9999.ebuild                             | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sci-physics/vmc/vmc-1.0_p3.ebuild b/sci-physics/vmc/vmc-1.0_p3-r1.ebuild
similarity index 91%
rename from sci-physics/vmc/vmc-1.0_p3.ebuild
rename to sci-physics/vmc/vmc-1.0_p3-r1.ebuild
index 91c335813c8..69bb6483d9f 100644
--- a/sci-physics/vmc/vmc-1.0_p3.ebuild
+++ b/sci-physics/vmc/vmc-1.0_p3-r1.ebuild
@@ -20,11 +20,11 @@ HOMEPAGE="https://vmc-project.github.io/ https://github.com/vmc-project/vmc"
 
 LICENSE="GPL-3"
 SLOT="0"
-IUSE="+c++11 c++14 c++17 doc"
+IUSE="c++11 c++14 +c++17 doc"
 
 REQUIRED_USE="^^ ( c++11 c++14 c++17 )"
 
-RDEPEND=">=sci-physics/root-6.18:=[c++11?,c++14?,c++17?,-vmc]"
+RDEPEND="sci-physics/root:=[c++11?,c++14?,c++17?,-vmc]"
 DEPEND="${RDEPEND}"
 BDEPEND="doc? ( app-doc/doxygen[dot] )"
 

diff --git a/sci-physics/vmc/vmc-9999.ebuild b/sci-physics/vmc/vmc-9999.ebuild
index 91c335813c8..6903ccfcbfd 100644
--- a/sci-physics/vmc/vmc-9999.ebuild
+++ b/sci-physics/vmc/vmc-9999.ebuild
@@ -20,7 +20,7 @@ HOMEPAGE="https://vmc-project.github.io/ https://github.com/vmc-project/vmc"
 
 LICENSE="GPL-3"
 SLOT="0"
-IUSE="+c++11 c++14 c++17 doc"
+IUSE="c++11 c++14 +c++17 doc"
 
 REQUIRED_USE="^^ ( c++11 c++14 c++17 )"
 


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-physics/vmc/
@ 2021-12-14 15:12 Guilherme Amadio
  0 siblings, 0 replies; 12+ messages in thread
From: Guilherme Amadio @ 2021-12-14 15:12 UTC (permalink / raw
  To: gentoo-commits

commit:     544fcf2fbe461533e8842f380ffc8b5fce0a3ff0
Author:     Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
AuthorDate: Sun Dec 12 20:10:14 2021 +0000
Commit:     Guilherme Amadio <amadio <AT> gentoo <DOT> org>
CommitDate: Tue Dec 14 14:58:24 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=544fcf2f

sci-physics/vmc: Bump to 1.1_p1.

Also, switch to EAPI 8.

Closes: https://github.com/gentoo/gentoo/pull/23277

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Oliver Freyermuth <o.freyermuth <AT> googlemail.com>
Signed-off-by: Guilherme Amadio <amadio <AT> gentoo.org>

 sci-physics/vmc/Manifest                               | 1 +
 sci-physics/vmc/{vmc-9999.ebuild => vmc-1.1_p1.ebuild} | 4 ++--
 sci-physics/vmc/vmc-9999.ebuild                        | 2 +-
 3 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/sci-physics/vmc/Manifest b/sci-physics/vmc/Manifest
index aa34be22f3f2..8c7909cc790f 100644
--- a/sci-physics/vmc/Manifest
+++ b/sci-physics/vmc/Manifest
@@ -1 +1,2 @@
 DIST vmc-1.0_p3.tar.gz 91476 BLAKE2B 3005e0575a5835b832175e6a272d4e3c328990e28ac998aca60a42c4ddd03faba4d1b761867d8af597ca2468cf3072c49bb007852b5ec892c215df37297656dc SHA512 621c0cb3f2846f9401e3e4fff6fa47ab2afbff7c4dca5c19869abb1806ec19d4a221e5741aad9b3929a4e8b8207ee6008a9bf06ec8bf03ed73771cb29fda1b8d
+DIST vmc-1.1_p1.tar.gz 91722 BLAKE2B 6849b52c95dd33393f75d24eb184571bfbc3b711e6bba7c33853493e97ad63fbdfa4c49c61f664b911d7e047229bcde08303b48a345f1a0b9bfffee3f078e275 SHA512 407d8a6d3c3375e448273750aaffe43e9f4a63cc2f4a4ec41d1cd9b3c830b836cbef8d4e9cb37e5a0595f54a22989b7e1dd62dda0606a84f5732d1d3f6eaaee8

diff --git a/sci-physics/vmc/vmc-9999.ebuild b/sci-physics/vmc/vmc-1.1_p1.ebuild
similarity index 93%
copy from sci-physics/vmc/vmc-9999.ebuild
copy to sci-physics/vmc/vmc-1.1_p1.ebuild
index 6903ccfcbfdb..548f95349c9c 100644
--- a/sci-physics/vmc/vmc-9999.ebuild
+++ b/sci-physics/vmc/vmc-1.1_p1.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit cmake
 
@@ -24,7 +24,7 @@ IUSE="c++11 c++14 +c++17 doc"
 
 REQUIRED_USE="^^ ( c++11 c++14 c++17 )"
 
-RDEPEND=">=sci-physics/root-6.18:=[c++11?,c++14?,c++17?,-vmc]"
+RDEPEND="sci-physics/root:=[c++11?,c++14?,c++17?,-vmc]"
 DEPEND="${RDEPEND}"
 BDEPEND="doc? ( app-doc/doxygen[dot] )"
 

diff --git a/sci-physics/vmc/vmc-9999.ebuild b/sci-physics/vmc/vmc-9999.ebuild
index 6903ccfcbfdb..3598fb0ec8c0 100644
--- a/sci-physics/vmc/vmc-9999.ebuild
+++ b/sci-physics/vmc/vmc-9999.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit cmake
 


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-physics/vmc/
@ 2022-02-11  7:36 Guilherme Amadio
  0 siblings, 0 replies; 12+ messages in thread
From: Guilherme Amadio @ 2022-02-11  7:36 UTC (permalink / raw
  To: gentoo-commits

commit:     b5439e2417fdbf21603e87ceeff885dd033c16d9
Author:     Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
AuthorDate: Thu Feb 10 23:36:00 2022 +0000
Commit:     Guilherme Amadio <amadio <AT> gentoo <DOT> org>
CommitDate: Fri Feb 11 07:36:21 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5439e24

sci-physics/vmc: Bump version to 2.0.

Required for >=sci-physics/geant4_vmc-6.0
which is required for >=sci-physics/geant-4.11.0 support.

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Oliver Freyermuth <o.freyermuth <AT> googlemail.com>
Signed-off-by: Guilherme Amadio <amadio <AT> gentoo.org>

 sci-physics/vmc/Manifest       |  1 +
 sci-physics/vmc/vmc-2.0.ebuild | 45 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 46 insertions(+)

diff --git a/sci-physics/vmc/Manifest b/sci-physics/vmc/Manifest
index 8c7909cc790f..1046978aed3f 100644
--- a/sci-physics/vmc/Manifest
+++ b/sci-physics/vmc/Manifest
@@ -1,2 +1,3 @@
 DIST vmc-1.0_p3.tar.gz 91476 BLAKE2B 3005e0575a5835b832175e6a272d4e3c328990e28ac998aca60a42c4ddd03faba4d1b761867d8af597ca2468cf3072c49bb007852b5ec892c215df37297656dc SHA512 621c0cb3f2846f9401e3e4fff6fa47ab2afbff7c4dca5c19869abb1806ec19d4a221e5741aad9b3929a4e8b8207ee6008a9bf06ec8bf03ed73771cb29fda1b8d
 DIST vmc-1.1_p1.tar.gz 91722 BLAKE2B 6849b52c95dd33393f75d24eb184571bfbc3b711e6bba7c33853493e97ad63fbdfa4c49c61f664b911d7e047229bcde08303b48a345f1a0b9bfffee3f078e275 SHA512 407d8a6d3c3375e448273750aaffe43e9f4a63cc2f4a4ec41d1cd9b3c830b836cbef8d4e9cb37e5a0595f54a22989b7e1dd62dda0606a84f5732d1d3f6eaaee8
+DIST vmc-2.0.tar.gz 96865 BLAKE2B 487ad5888389e10ba79364f4701ab4caec33d88b940ee277a8039a401fd624d3a9f7ae62bd4a50be770ac924703256325bf118e243bfe700ed8e390104f4e3d5 SHA512 3f0a88bf2bcf3daaa1327125a1aebb05452dabce3d5f274797c05cbd15cdd1c9d4fdfeebdef70a70ce5d575f19c2856330be18683e7bf241113881e11a022a89

diff --git a/sci-physics/vmc/vmc-2.0.ebuild b/sci-physics/vmc/vmc-2.0.ebuild
new file mode 100644
index 000000000000..2eb8760c25bf
--- /dev/null
+++ b/sci-physics/vmc/vmc-2.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+if [[ ${PV} == *9999* ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/vmc-project/${PN}.git"
+else
+	MY_PV=$(ver_rs 1-2 -)
+	SRC_URI="https://github.com/vmc-project/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~x86"
+	S="${WORKDIR}/${PN}-${MY_PV}"
+fi
+
+DESCRIPTION="The Virtual Monte Carlo core library"
+HOMEPAGE="https://vmc-project.github.io/ https://github.com/vmc-project/vmc"
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="c++11 c++14 +c++17 doc"
+
+REQUIRED_USE="^^ ( c++11 c++14 c++17 )"
+
+RDEPEND="sci-physics/root:=[c++11?,c++14?,c++17?,-vmc]"
+DEPEND="${RDEPEND}"
+BDEPEND="doc? ( app-doc/doxygen[dot] )"
+
+DOCS=(README.md History)
+
+src_compile() {
+	cmake_src_compile
+	if use doc; then
+		# TRAVIS_BUILD_DIR hardcoded in Doxyfile by upstream.
+		TRAVIS_BUILD_DIR="${S}" doxygen doc/doxygen/Doxyfile || die
+	fi
+}
+
+src_install() {
+	cmake_src_install
+	use doc && local HTML_DOCS=( doc/html/. )
+	einstalldocs
+}


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-physics/vmc/
@ 2022-02-11  7:36 Guilherme Amadio
  0 siblings, 0 replies; 12+ messages in thread
From: Guilherme Amadio @ 2022-02-11  7:36 UTC (permalink / raw
  To: gentoo-commits

commit:     798f573d997f0342f48d54e6226702314d83301c
Author:     Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
AuthorDate: Thu Feb 10 23:37:55 2022 +0000
Commit:     Guilherme Amadio <amadio <AT> gentoo <DOT> org>
CommitDate: Fri Feb 11 07:36:21 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=798f573d

sci-physics/vmc: Drop oldest version.

Closes: https://github.com/gentoo/gentoo/pull/24154

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Oliver Freyermuth <o.freyermuth <AT> googlemail.com>
Signed-off-by: Guilherme Amadio <amadio <AT> gentoo.org>

 sci-physics/vmc/Manifest             |  1 -
 sci-physics/vmc/vmc-1.0_p3-r1.ebuild | 45 ------------------------------------
 2 files changed, 46 deletions(-)

diff --git a/sci-physics/vmc/Manifest b/sci-physics/vmc/Manifest
index 1046978aed3f..2ad1b8a2b82d 100644
--- a/sci-physics/vmc/Manifest
+++ b/sci-physics/vmc/Manifest
@@ -1,3 +1,2 @@
-DIST vmc-1.0_p3.tar.gz 91476 BLAKE2B 3005e0575a5835b832175e6a272d4e3c328990e28ac998aca60a42c4ddd03faba4d1b761867d8af597ca2468cf3072c49bb007852b5ec892c215df37297656dc SHA512 621c0cb3f2846f9401e3e4fff6fa47ab2afbff7c4dca5c19869abb1806ec19d4a221e5741aad9b3929a4e8b8207ee6008a9bf06ec8bf03ed73771cb29fda1b8d
 DIST vmc-1.1_p1.tar.gz 91722 BLAKE2B 6849b52c95dd33393f75d24eb184571bfbc3b711e6bba7c33853493e97ad63fbdfa4c49c61f664b911d7e047229bcde08303b48a345f1a0b9bfffee3f078e275 SHA512 407d8a6d3c3375e448273750aaffe43e9f4a63cc2f4a4ec41d1cd9b3c830b836cbef8d4e9cb37e5a0595f54a22989b7e1dd62dda0606a84f5732d1d3f6eaaee8
 DIST vmc-2.0.tar.gz 96865 BLAKE2B 487ad5888389e10ba79364f4701ab4caec33d88b940ee277a8039a401fd624d3a9f7ae62bd4a50be770ac924703256325bf118e243bfe700ed8e390104f4e3d5 SHA512 3f0a88bf2bcf3daaa1327125a1aebb05452dabce3d5f274797c05cbd15cdd1c9d4fdfeebdef70a70ce5d575f19c2856330be18683e7bf241113881e11a022a89

diff --git a/sci-physics/vmc/vmc-1.0_p3-r1.ebuild b/sci-physics/vmc/vmc-1.0_p3-r1.ebuild
deleted file mode 100644
index 69bb6483d9f7..000000000000
--- a/sci-physics/vmc/vmc-1.0_p3-r1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-if [[ ${PV} == *9999* ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/vmc-project/${PN}.git"
-else
-	MY_PV=$(ver_rs 1-2 -)
-	SRC_URI="https://github.com/vmc-project/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-	S="${WORKDIR}/${PN}-${MY_PV}"
-fi
-
-DESCRIPTION="The Virtual Monte Carlo core library"
-HOMEPAGE="https://vmc-project.github.io/ https://github.com/vmc-project/vmc"
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="c++11 c++14 +c++17 doc"
-
-REQUIRED_USE="^^ ( c++11 c++14 c++17 )"
-
-RDEPEND="sci-physics/root:=[c++11?,c++14?,c++17?,-vmc]"
-DEPEND="${RDEPEND}"
-BDEPEND="doc? ( app-doc/doxygen[dot] )"
-
-DOCS=(README.md History)
-
-src_compile() {
-	cmake_src_compile
-	if use doc; then
-		# TRAVIS_BUILD_DIR hardcoded in Doxyfile by upstream.
-		TRAVIS_BUILD_DIR="${S}" doxygen doc/doxygen/Doxyfile || die
-	fi
-}
-
-src_install() {
-	cmake_src_install
-	use doc && local HTML_DOCS=( doc/html/. )
-	einstalldocs
-}


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-physics/vmc/
@ 2022-02-11  7:36 Guilherme Amadio
  0 siblings, 0 replies; 12+ messages in thread
From: Guilherme Amadio @ 2022-02-11  7:36 UTC (permalink / raw
  To: gentoo-commits

commit:     57fed5482af762bcaf4e9b0b35adc47752868c8f
Author:     Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
AuthorDate: Thu Feb 10 23:37:30 2022 +0000
Commit:     Guilherme Amadio <amadio <AT> gentoo <DOT> org>
CommitDate: Fri Feb 11 07:36:21 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57fed548

sci-physics/vmc: Drop travis hack in live ebuild.

Upstream has removed the hardcoded variable
(post-release).

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Oliver Freyermuth <o.freyermuth <AT> googlemail.com>
Signed-off-by: Guilherme Amadio <amadio <AT> gentoo.org>

 sci-physics/vmc/vmc-9999.ebuild | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/sci-physics/vmc/vmc-9999.ebuild b/sci-physics/vmc/vmc-9999.ebuild
index 3598fb0ec8c0..7e948ba20921 100644
--- a/sci-physics/vmc/vmc-9999.ebuild
+++ b/sci-physics/vmc/vmc-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -33,8 +33,7 @@ DOCS=(README.md History)
 src_compile() {
 	cmake_src_compile
 	if use doc; then
-		# TRAVIS_BUILD_DIR hardcoded in Doxyfile by upstream.
-		TRAVIS_BUILD_DIR="${S}" doxygen doc/doxygen/Doxyfile || die
+		doxygen doc/doxygen/Doxyfile || die
 	fi
 }
 


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-physics/vmc/
@ 2022-03-18 14:38 Guilherme Amadio
  0 siblings, 0 replies; 12+ messages in thread
From: Guilherme Amadio @ 2022-03-18 14:38 UTC (permalink / raw
  To: gentoo-commits

commit:     b76e896576011d975f62f32285e28acd7f19cd9b
Author:     Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
AuthorDate: Sun Mar 13 03:18:11 2022 +0000
Commit:     Guilherme Amadio <amadio <AT> gentoo <DOT> org>
CommitDate: Fri Mar 18 14:37:55 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b76e8965

sci-physics/vmc: Adapt to dropped vmc,c++11 USE in sci-physics/root

Closes: https://github.com/gentoo/gentoo/pull/24523

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Oliver Freyermuth <o.freyermuth <AT> googlemail.com>
Signed-off-by: Guilherme Amadio <amadio <AT> gentoo.org>

 sci-physics/vmc/metadata.xml      | 1 -
 sci-physics/vmc/vmc-1.1_p1.ebuild | 8 ++++----
 sci-physics/vmc/vmc-2.0.ebuild    | 6 +++---
 sci-physics/vmc/vmc-9999.ebuild   | 6 +++---
 4 files changed, 10 insertions(+), 11 deletions(-)

diff --git a/sci-physics/vmc/metadata.xml b/sci-physics/vmc/metadata.xml
index 4b0be037bb7f..e83a4cd24ef5 100644
--- a/sci-physics/vmc/metadata.xml
+++ b/sci-physics/vmc/metadata.xml
@@ -14,7 +14,6 @@
     <name>Proxy Maintainers</name>
   </maintainer>
   <use>
-    <flag name="c++11">Build using the C++11 standard</flag>
     <flag name="c++14">Build using the C++14 standard</flag>
     <flag name="c++17">Build using the C++17 standard</flag>
   </use>

diff --git a/sci-physics/vmc/vmc-1.1_p1.ebuild b/sci-physics/vmc/vmc-1.1_p1.ebuild
index 548f95349c9c..a92dc7f26a5a 100644
--- a/sci-physics/vmc/vmc-1.1_p1.ebuild
+++ b/sci-physics/vmc/vmc-1.1_p1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -20,11 +20,11 @@ HOMEPAGE="https://vmc-project.github.io/ https://github.com/vmc-project/vmc"
 
 LICENSE="GPL-3"
 SLOT="0"
-IUSE="c++11 c++14 +c++17 doc"
+IUSE="c++14 +c++17 doc"
 
-REQUIRED_USE="^^ ( c++11 c++14 c++17 )"
+REQUIRED_USE="^^ ( c++14 c++17 )"
 
-RDEPEND="sci-physics/root:=[c++11?,c++14?,c++17?,-vmc]"
+RDEPEND="sci-physics/root:=[c++14?,c++17?,-vmc(-)]"
 DEPEND="${RDEPEND}"
 BDEPEND="doc? ( app-doc/doxygen[dot] )"
 

diff --git a/sci-physics/vmc/vmc-2.0.ebuild b/sci-physics/vmc/vmc-2.0.ebuild
index 2eb8760c25bf..a92dc7f26a5a 100644
--- a/sci-physics/vmc/vmc-2.0.ebuild
+++ b/sci-physics/vmc/vmc-2.0.ebuild
@@ -20,11 +20,11 @@ HOMEPAGE="https://vmc-project.github.io/ https://github.com/vmc-project/vmc"
 
 LICENSE="GPL-3"
 SLOT="0"
-IUSE="c++11 c++14 +c++17 doc"
+IUSE="c++14 +c++17 doc"
 
-REQUIRED_USE="^^ ( c++11 c++14 c++17 )"
+REQUIRED_USE="^^ ( c++14 c++17 )"
 
-RDEPEND="sci-physics/root:=[c++11?,c++14?,c++17?,-vmc]"
+RDEPEND="sci-physics/root:=[c++14?,c++17?,-vmc(-)]"
 DEPEND="${RDEPEND}"
 BDEPEND="doc? ( app-doc/doxygen[dot] )"
 

diff --git a/sci-physics/vmc/vmc-9999.ebuild b/sci-physics/vmc/vmc-9999.ebuild
index 7e948ba20921..cf26fb07595b 100644
--- a/sci-physics/vmc/vmc-9999.ebuild
+++ b/sci-physics/vmc/vmc-9999.ebuild
@@ -20,11 +20,11 @@ HOMEPAGE="https://vmc-project.github.io/ https://github.com/vmc-project/vmc"
 
 LICENSE="GPL-3"
 SLOT="0"
-IUSE="c++11 c++14 +c++17 doc"
+IUSE="c++14 +c++17 doc"
 
-REQUIRED_USE="^^ ( c++11 c++14 c++17 )"
+REQUIRED_USE="^^ ( c++14 c++17 )"
 
-RDEPEND=">=sci-physics/root-6.18:=[c++11?,c++14?,c++17?,-vmc]"
+RDEPEND="sci-physics/root:=[c++14?,c++17?,-vmc(-)]"
 DEPEND="${RDEPEND}"
 BDEPEND="doc? ( app-doc/doxygen[dot] )"
 


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sci-physics/vmc/
@ 2023-12-05 12:16 Guilherme Amadio
  0 siblings, 0 replies; 12+ messages in thread
From: Guilherme Amadio @ 2023-12-05 12:16 UTC (permalink / raw
  To: gentoo-commits

commit:     c0d4e0e0dcda069e135684405320c69d372c699b
Author:     Guilherme Amadio <amadio <AT> gentoo <DOT> org>
AuthorDate: Fri Dec  1 08:45:11 2023 +0000
Commit:     Guilherme Amadio <amadio <AT> gentoo <DOT> org>
CommitDate: Tue Dec  5 12:16:25 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0d4e0e0

sci-physics/vmc: drop USE flags for C++ standard

Signed-off-by: Guilherme Amadio <amadio <AT> gentoo.org>

 sci-physics/vmc/metadata.xml                                | 4 ----
 sci-physics/vmc/{vmc-1.1_p1.ebuild => vmc-1.1_p1-r1.ebuild} | 8 +++-----
 sci-physics/vmc/{vmc-2.0.ebuild => vmc-2.0-r1.ebuild}       | 8 +++-----
 sci-physics/vmc/vmc-9999.ebuild                             | 6 ++----
 4 files changed, 8 insertions(+), 18 deletions(-)

diff --git a/sci-physics/vmc/metadata.xml b/sci-physics/vmc/metadata.xml
index e83a4cd24ef5..966a77c37cd6 100644
--- a/sci-physics/vmc/metadata.xml
+++ b/sci-physics/vmc/metadata.xml
@@ -13,10 +13,6 @@
     <email>proxy-maint@gentoo.org</email>
     <name>Proxy Maintainers</name>
   </maintainer>
-  <use>
-    <flag name="c++14">Build using the C++14 standard</flag>
-    <flag name="c++17">Build using the C++17 standard</flag>
-  </use>
   <upstream>
     <remote-id type="github">vmc-project/vmc</remote-id>
   </upstream>

diff --git a/sci-physics/vmc/vmc-1.1_p1.ebuild b/sci-physics/vmc/vmc-1.1_p1-r1.ebuild
similarity index 85%
rename from sci-physics/vmc/vmc-1.1_p1.ebuild
rename to sci-physics/vmc/vmc-1.1_p1-r1.ebuild
index a92dc7f26a5a..8cf9327f72c4 100644
--- a/sci-physics/vmc/vmc-1.1_p1.ebuild
+++ b/sci-physics/vmc/vmc-1.1_p1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -20,11 +20,9 @@ HOMEPAGE="https://vmc-project.github.io/ https://github.com/vmc-project/vmc"
 
 LICENSE="GPL-3"
 SLOT="0"
-IUSE="c++14 +c++17 doc"
+IUSE="doc"
 
-REQUIRED_USE="^^ ( c++14 c++17 )"
-
-RDEPEND="sci-physics/root:=[c++14?,c++17?,-vmc(-)]"
+RDEPEND="sci-physics/root:="
 DEPEND="${RDEPEND}"
 BDEPEND="doc? ( app-doc/doxygen[dot] )"
 

diff --git a/sci-physics/vmc/vmc-2.0.ebuild b/sci-physics/vmc/vmc-2.0-r1.ebuild
similarity index 85%
rename from sci-physics/vmc/vmc-2.0.ebuild
rename to sci-physics/vmc/vmc-2.0-r1.ebuild
index a92dc7f26a5a..8cf9327f72c4 100644
--- a/sci-physics/vmc/vmc-2.0.ebuild
+++ b/sci-physics/vmc/vmc-2.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -20,11 +20,9 @@ HOMEPAGE="https://vmc-project.github.io/ https://github.com/vmc-project/vmc"
 
 LICENSE="GPL-3"
 SLOT="0"
-IUSE="c++14 +c++17 doc"
+IUSE="doc"
 
-REQUIRED_USE="^^ ( c++14 c++17 )"
-
-RDEPEND="sci-physics/root:=[c++14?,c++17?,-vmc(-)]"
+RDEPEND="sci-physics/root:="
 DEPEND="${RDEPEND}"
 BDEPEND="doc? ( app-doc/doxygen[dot] )"
 

diff --git a/sci-physics/vmc/vmc-9999.ebuild b/sci-physics/vmc/vmc-9999.ebuild
index cf26fb07595b..b7d3876a475b 100644
--- a/sci-physics/vmc/vmc-9999.ebuild
+++ b/sci-physics/vmc/vmc-9999.ebuild
@@ -20,11 +20,9 @@ HOMEPAGE="https://vmc-project.github.io/ https://github.com/vmc-project/vmc"
 
 LICENSE="GPL-3"
 SLOT="0"
-IUSE="c++14 +c++17 doc"
+IUSE="doc"
 
-REQUIRED_USE="^^ ( c++14 c++17 )"
-
-RDEPEND="sci-physics/root:=[c++14?,c++17?,-vmc(-)]"
+RDEPEND="sci-physics/root:="
 DEPEND="${RDEPEND}"
 BDEPEND="doc? ( app-doc/doxygen[dot] )"
 


^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2023-12-05 12:16 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-20 10:16 [gentoo-commits] repo/gentoo:master commit in: sci-physics/vmc/ David Seifert
  -- strict thread matches above, loose matches on Subject: below --
2023-12-05 12:16 Guilherme Amadio
2022-03-18 14:38 Guilherme Amadio
2022-02-11  7:36 Guilherme Amadio
2022-02-11  7:36 Guilherme Amadio
2022-02-11  7:36 Guilherme Amadio
2021-12-14 15:12 Guilherme Amadio
2021-06-28 16:15 Guilherme Amadio
2021-01-17 10:16 Joonas Niilola
2021-01-17 10:16 Joonas Niilola
2021-01-17 10:16 Joonas Niilola
2020-05-20 12:37 Guilherme Amadio

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox