public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: sci-physics/vgm/
@ 2013-01-18 23:59 Sebastien Fabbro
  0 siblings, 0 replies; 8+ messages in thread
From: Sebastien Fabbro @ 2013-01-18 23:59 UTC (permalink / raw
  To: gentoo-commits

commit:     054c5a310511f5fb162f19fa3ab96009e3baad3b
Author:     Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 18 23:56:35 2013 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Fri Jan 18 23:56:35 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=054c5a31

Initial import

Package-Manager: portage-2.2.01.21580-prefix
RepoMan-Options: --force

---
 sci-physics/vgm/ChangeLog       |   10 ++++++
 sci-physics/vgm/metadata.xml    |   13 ++++++++
 sci-physics/vgm/vgm-3.06.ebuild |   64 +++++++++++++++++++++++++++++++++++++++
 3 files changed, 87 insertions(+), 0 deletions(-)

diff --git a/sci-physics/vgm/ChangeLog b/sci-physics/vgm/ChangeLog
new file mode 100644
index 0000000..0f7e769
--- /dev/null
+++ b/sci-physics/vgm/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for sci-physics/vgm
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*vgm-3.06 (18 Jan 2013)
+
+  18 Jan 2013; Sébastien Fabbro <bicatali@gentoo.org> +vgm-3.06.ebuild,
+  +metadata.xml:
+  Initial import
+

diff --git a/sci-physics/vgm/metadata.xml b/sci-physics/vgm/metadata.xml
new file mode 100644
index 0000000..9d13cfa
--- /dev/null
+++ b/sci-physics/vgm/metadata.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>sci-physics</herd>
+<longdescription lang="en">
+  The Virtual Geometry Model (VGM) is an
+  abstraction layer between the Geant4 and ROOT software.
+</longdescription>
+<use>
+  <flag name="geant4">Enable interaction with Geant4(<pkg>sci-physics/geant</pkg>:4) </flag>
+  <flag name="root">Enable interactions with ROOT (<pkg>sci-physics/root</pkg>) </flag>
+</use>
+</pkgmetadata>

diff --git a/sci-physics/vgm/vgm-3.06.ebuild b/sci-physics/vgm/vgm-3.06.ebuild
new file mode 100644
index 0000000..249247d
--- /dev/null
+++ b/sci-physics/vgm/vgm-3.06.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit cmake-utils versionator subversion
+
+ESVN_REPO_URI="https://vgm.svn.sourceforge.net/svnroot/${PN}/tags/v$(replace_all_version_separators '-')/${PN}"
+ESVN_PROJECT="${PN}.${PV}"
+
+DESCRIPTION="Virtual Geometry Model for High Enegery Physics Experiments"
+HOMEPAGE="http://ivana.home.cern.ch/ivana/VGM.html"
+SRC_URI=""
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc examples +geant4 +root test xml"
+
+RDEPEND="
+	sci-physics/clhep
+	root? ( sci-physics/root )
+	geant4? ( sci-physics/geant:4[examples?] )
+	xml? ( dev-libs/xerces-c )"
+DEPEND="${RDEPEND}
+	doc? ( app-doc/doxygen[dot] )
+	test? ( geant4? ( xml? ( sci-physics/geant:4[gdml] ) ) )"
+
+src_configure() {
+	local mycmakeargs=(
+		-DCLHEP_DIR="${EROOT}/usr"
+		$(cmake-utils_use_with examples)
+		$(cmake-utils_use_with geant4)
+		$(cmake-utils_use_with root)
+		$(cmake-utils_use_with test)
+		$(cmake-utils_use_with xml xercesc)
+	)
+	cmake-utils_src_configure
+}
+
+src_compile() {
+	cmake-utils_src_compile
+	if use doc; then
+		cd packages
+		doxygen || die
+	fi
+}
+
+src_test() {
+	cd "${BUILD_DIR}"/test
+	./test_suite.sh || die
+}
+
+src_install() {
+	cmake-utils_src_install
+	if use examples; then
+		insinto /usr/share/doc/${PF}
+		doins -r examples
+	fi
+	cd doc
+	dodoc README todo.txt VGMhistory.txt VGM.html VGMversions.html
+	use doc && dohtml -r html/*
+}


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

* [gentoo-commits] proj/sci:master commit in: sci-physics/vgm/
@ 2013-01-21 17:33 Sebastien Fabbro
  0 siblings, 0 replies; 8+ messages in thread
From: Sebastien Fabbro @ 2013-01-21 17:33 UTC (permalink / raw
  To: gentoo-commits

commit:     adf81d67f7940d09296630b976c6f65c7bb70565
Author:     Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 21 17:32:10 2013 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Mon Jan 21 17:32:10 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=adf81d67

Updated minimum geant4 version

---
 sci-physics/vgm/ChangeLog       |    3 +++
 sci-physics/vgm/vgm-3.06.ebuild |    6 +++---
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/sci-physics/vgm/ChangeLog b/sci-physics/vgm/ChangeLog
index 0f7e769..21a947c 100644
--- a/sci-physics/vgm/ChangeLog
+++ b/sci-physics/vgm/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  21 Jan 2013; Sébastien Fabbro <bicatali@gentoo.org> vgm-3.06.ebuild:
+  Updated minimum geant4 version, thanks Oliver Freyermuth
+
 *vgm-3.06 (18 Jan 2013)
 
   18 Jan 2013; Sébastien Fabbro <bicatali@gentoo.org> +vgm-3.06.ebuild,

diff --git a/sci-physics/vgm/vgm-3.06.ebuild b/sci-physics/vgm/vgm-3.06.ebuild
index 249247d..fe6cbfc 100644
--- a/sci-physics/vgm/vgm-3.06.ebuild
+++ b/sci-physics/vgm/vgm-3.06.ebuild
@@ -21,15 +21,15 @@ IUSE="doc examples +geant4 +root test xml"
 RDEPEND="
 	sci-physics/clhep
 	root? ( sci-physics/root )
-	geant4? ( sci-physics/geant:4[examples?] )
+	geant4? ( >=sci-physics/geant-4.9.6[examples?] )
 	xml? ( dev-libs/xerces-c )"
 DEPEND="${RDEPEND}
 	doc? ( app-doc/doxygen[dot] )
-	test? ( geant4? ( xml? ( sci-physics/geant:4[gdml] ) ) )"
+	test? ( geant4? ( xml? ( >=sci-physics/geant-4.9.6[gdml] ) ) )"
 
 src_configure() {
 	local mycmakeargs=(
-		-DCLHEP_DIR="${EROOT}/usr"
+		-DCLHEP_DIR="${EROOT}usr"
 		$(cmake-utils_use_with examples)
 		$(cmake-utils_use_with geant4)
 		$(cmake-utils_use_with root)


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

* [gentoo-commits] proj/sci:master commit in: sci-physics/vgm/
@ 2014-03-23 13:58 Christoph Junghans
  0 siblings, 0 replies; 8+ messages in thread
From: Christoph Junghans @ 2014-03-23 13:58 UTC (permalink / raw
  To: gentoo-commits

commit:     2570d9f509a9b92dcdc8cdb0de492597bda202ff
Author:     Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
AuthorDate: Sat Mar 22 23:15:13 2014 +0000
Commit:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Sat Mar 22 23:53:12 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=2570d9f5

Address ebuild-issues: Use zip-snapshot instead of repo-tag, add missing die, fix typo in description.

---
 sci-physics/vgm/ChangeLog       |  6 +++++-
 sci-physics/vgm/vgm-3.06.ebuild | 16 ++++++++++------
 2 files changed, 15 insertions(+), 7 deletions(-)

diff --git a/sci-physics/vgm/ChangeLog b/sci-physics/vgm/ChangeLog
index 21a947c..e02c874 100644
--- a/sci-physics/vgm/ChangeLog
+++ b/sci-physics/vgm/ChangeLog
@@ -1,7 +1,11 @@
 # ChangeLog for sci-physics/vgm
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  22 Mar 2014; <o.freyermuth@googlemail.com> vgm-3.06.ebuild:
+  Address ebuild-issues: Use zip-snapshot instead of repo-tag, add missing die,
+  fix typo in description. 
+
   21 Jan 2013; Sébastien Fabbro <bicatali@gentoo.org> vgm-3.06.ebuild:
   Updated minimum geant4 version, thanks Oliver Freyermuth
 

diff --git a/sci-physics/vgm/vgm-3.06.ebuild b/sci-physics/vgm/vgm-3.06.ebuild
index 83b5fef..efd9cc4 100644
--- a/sci-physics/vgm/vgm-3.06.ebuild
+++ b/sci-physics/vgm/vgm-3.06.ebuild
@@ -4,14 +4,16 @@
 
 EAPI=5
 
-inherit cmake-utils versionator subversion
+inherit cmake-utils versionator
 
-ESVN_REPO_URI="https://vgm.svn.sourceforge.net/svnroot/${PN}/tags/v$(replace_all_version_separators '-')/${PN}"
-ESVN_PROJECT="${PN}.${PV}"
+#ESVN_REPO_URI="https://vgm.svn.sourceforge.net/svnroot/${PN}/tags/v$(replace_all_version_separators '-')/${PN}"
+#ESVN_PROJECT="${PN}.${PV}"
 
-DESCRIPTION="Virtual Geometry Model for High Enegery Physics Experiments"
+TAG_VER="${PN}-code-731-tags-v$(replace_all_version_separators '-')"
+
+DESCRIPTION="Virtual Geometry Model for High Energy Physics Experiments"
 HOMEPAGE="http://ivana.home.cern.ch/ivana/VGM.html"
-SRC_URI=""
+SRC_URI="http://sourceforge.net/code-snapshots/svn/v/vg/vgm/code/${TAG_VER}.zip"
 
 LICENSE="GPL-2"
 SLOT="0"
@@ -27,6 +29,8 @@ DEPEND="${RDEPEND}
 	doc? ( app-doc/doxygen[dot] )
 	test? ( geant4? ( xml? ( >=sci-physics/geant-4.9.6[gdml] ) ) )"
 
+S=${WORKDIR}/${TAG_VER}/${PN}
+
 src_configure() {
 	local mycmakeargs=(
 		-DCLHEP_DIR="${EROOT}usr"
@@ -58,7 +62,7 @@ src_install() {
 		insinto /usr/share/doc/${PF}
 		doins -r examples
 	fi
-	cd doc
+	cd doc || die
 	dodoc README todo.txt VGMhistory.txt VGM.html VGMversions.html
 	use doc && dohtml -r html/*
 }


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

* [gentoo-commits] proj/sci:master commit in: sci-physics/vgm/
@ 2014-03-27 21:51 Sebastien Fabbro
  0 siblings, 0 replies; 8+ messages in thread
From: Sebastien Fabbro @ 2014-03-27 21:51 UTC (permalink / raw
  To: gentoo-commits

commit:     5c42b1c1156a30bd5802d041737a0c7257d8d351
Author:     Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
AuthorDate: Thu Mar 27 08:20:56 2014 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Thu Mar 27 08:20:56 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=5c42b1c1

Add subslot-dependency on sci-physics/root, rebuilding is needed on each ROOT version string change. For more details c.f. #505358 .

---
 sci-physics/vgm/ChangeLog       | 4 ++++
 sci-physics/vgm/vgm-3.06.ebuild | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/sci-physics/vgm/ChangeLog b/sci-physics/vgm/ChangeLog
index e02c874..239f62b 100644
--- a/sci-physics/vgm/ChangeLog
+++ b/sci-physics/vgm/ChangeLog
@@ -2,6 +2,10 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  27 Mar 2014; Oliver Freyermuth <o.freyermuth@googlemail.com> vgm-3.06.ebuild:
+  Add subslot-dependency on sci-physics/root, rebuilding is needed on each ROOT
+  version string change. For more details c.f. #505358 . 
+
   22 Mar 2014; <o.freyermuth@googlemail.com> vgm-3.06.ebuild:
   Address ebuild-issues: Use zip-snapshot instead of repo-tag, add missing die,
   fix typo in description. 

diff --git a/sci-physics/vgm/vgm-3.06.ebuild b/sci-physics/vgm/vgm-3.06.ebuild
index efd9cc4..d6fe3fd 100644
--- a/sci-physics/vgm/vgm-3.06.ebuild
+++ b/sci-physics/vgm/vgm-3.06.ebuild
@@ -22,7 +22,7 @@ IUSE="doc examples +geant4 +root test xml"
 
 RDEPEND="
 	sci-physics/clhep
-	root? ( sci-physics/root )
+	root? ( sci-physics/root:= )
 	geant4? ( >=sci-physics/geant-4.9.6[examples?] )
 	xml? ( dev-libs/xerces-c )"
 DEPEND="${RDEPEND}


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

* [gentoo-commits] proj/sci:master commit in: sci-physics/vgm/
@ 2014-04-03 17:48 Sebastien Fabbro
  0 siblings, 0 replies; 8+ messages in thread
From: Sebastien Fabbro @ 2014-04-03 17:48 UTC (permalink / raw
  To: gentoo-commits

commit:     fe49b5f42dc6c2f46bb894709dae18b55bc96c21
Author:     Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
AuthorDate: Thu Apr  3 10:01:01 2014 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Thu Apr  3 10:01:01 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=fe49b5f4

Use zip-snapshot mirrored by jlec, sourceforge cannot automatically recreate them and changes CRC each time

Package-Manager: portage-2.2.8-r1

---
 sci-physics/vgm/ChangeLog       | 5 ++++-
 sci-physics/vgm/vgm-3.06.ebuild | 5 ++++-
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/sci-physics/vgm/ChangeLog b/sci-physics/vgm/ChangeLog
index 239f62b..78f7e21 100644
--- a/sci-physics/vgm/ChangeLog
+++ b/sci-physics/vgm/ChangeLog
@@ -2,6 +2,10 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  03 Apr 2014; Oliver Freyermuth <o.freyermuth@googlemail.com> vgm-3.06.ebuild:
+  Use zip-snapshot mirrored by jlec, sourceforge cannot automatically recreate
+  them and changes CRC each time
+
   27 Mar 2014; Oliver Freyermuth <o.freyermuth@googlemail.com> vgm-3.06.ebuild:
   Add subslot-dependency on sci-physics/root, rebuilding is needed on each ROOT
   version string change. For more details c.f. #505358 . 
@@ -18,4 +22,3 @@
   18 Jan 2013; Sébastien Fabbro <bicatali@gentoo.org> +vgm-3.06.ebuild,
   +metadata.xml:
   Initial import
-

diff --git a/sci-physics/vgm/vgm-3.06.ebuild b/sci-physics/vgm/vgm-3.06.ebuild
index d6fe3fd..ccdc5a3 100644
--- a/sci-physics/vgm/vgm-3.06.ebuild
+++ b/sci-physics/vgm/vgm-3.06.ebuild
@@ -9,11 +9,14 @@ inherit cmake-utils versionator
 #ESVN_REPO_URI="https://vgm.svn.sourceforge.net/svnroot/${PN}/tags/v$(replace_all_version_separators '-')/${PN}"
 #ESVN_PROJECT="${PN}.${PV}"
 
+# .zip-snapshot can be recreated by visiting
+# http://sourceforge.net/p/${PN}/code/${COMMIT}/tarball?path=/tags/v$(replace_all_version_separators '-')
 TAG_VER="${PN}-code-731-tags-v$(replace_all_version_separators '-')"
 
 DESCRIPTION="Virtual Geometry Model for High Energy Physics Experiments"
 HOMEPAGE="http://ivana.home.cern.ch/ivana/VGM.html"
-SRC_URI="http://sourceforge.net/code-snapshots/svn/v/vg/vgm/code/${TAG_VER}.zip"
+#SRC_URI="http://sourceforge.net/code-snapshots/svn/v/vg/vgm/code/${TAG_VER}.zip"
+SRC_URI="http://dev.gentoo.org/~jlec/distfiles/${TAG_VER}.zip"
 
 LICENSE="GPL-2"
 SLOT="0"


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

* [gentoo-commits] proj/sci:master commit in: sci-physics/vgm/
@ 2014-07-07  6:36 Justin Lecher
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2014-07-07  6:36 UTC (permalink / raw
  To: gentoo-commits

commit:     20fec395aeec140cb11e0cde9c7c486434e36f5a
Author:     Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
AuthorDate: Sun Jul  6 20:31:52 2014 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Jul  6 20:31:52 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=20fec395

New live ebuild for VGM, adapting to fixes for cmake install paths in upstream (no need to manually install in ebuild anymore).
Released VGM-4.00 does not have these fixes yet, I am discussing with upstream whether they can also provide some tarballs of released versions (as sourceforge svn-snapshotting is unusable for us) and delay packaging of VGM-4.00 until then.

---
 sci-physics/vgm/ChangeLog       |  6 ++++
 sci-physics/vgm/vgm-9999.ebuild | 68 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 74 insertions(+)

diff --git a/sci-physics/vgm/ChangeLog b/sci-physics/vgm/ChangeLog
index 78f7e21..a316389 100644
--- a/sci-physics/vgm/ChangeLog
+++ b/sci-physics/vgm/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*vgm-9999 (06 Jul 2014)
+
+  06 Jul 2014; Oliver Freyermuth <o.freyermuth@googlemail.com> +vgm-9999.ebuild:
+  New live ebuild for VGM, adapting to fixes for cmake install paths in upstream
+  (no need to manually install in ebuild anymore).
+
   03 Apr 2014; Oliver Freyermuth <o.freyermuth@googlemail.com> vgm-3.06.ebuild:
   Use zip-snapshot mirrored by jlec, sourceforge cannot automatically recreate
   them and changes CRC each time

diff --git a/sci-physics/vgm/vgm-9999.ebuild b/sci-physics/vgm/vgm-9999.ebuild
new file mode 100644
index 0000000..ddadd99
--- /dev/null
+++ b/sci-physics/vgm/vgm-9999.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit cmake-utils versionator subversion
+
+if [[ ${PV} == *9999* ]]; then
+	ESVN_REPO_URI="svn://svn.code.sf.net/p/vgm/code/trunk/vgm"
+	KEYWORDS=""
+else
+	# .zip-snapshot can be recreated by visiting
+	# http://sourceforge.net/p/${PN}/code/${COMMIT}/tarball?path=/tags/v$(replace_all_version_separators '-')
+	TAG_VER="${PN}-code-731-tags-v$(replace_all_version_separators '-')"
+	SRC_URI="http://dev.gentoo.org/~jlec/distfiles/${TAG_VER}.zip"
+	S=${WORKDIR}/${TAG_VER}/${PN}
+	KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+fi
+
+DESCRIPTION="Virtual Geometry Model for High Energy Physics Experiments"
+HOMEPAGE="http://ivana.home.cern.ch/ivana/VGM.html"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="doc examples +geant4 +root test xml"
+
+RDEPEND="
+	sci-physics/clhep:=
+	root? ( sci-physics/root:= )
+	geant4? ( >=sci-physics/geant-4.9.6 )
+	xml? ( dev-libs/xerces-c )"
+DEPEND="${RDEPEND}
+	doc? ( app-doc/doxygen[dot] )
+	test? ( geant4? ( xml? ( >=sci-physics/geant-4.9.6[gdml] ) ) )"
+
+src_configure() {
+	local mycmakeargs=(
+		-DCLHEP_DIR="${EROOT}usr"
+		$(cmake-utils_use_with examples)
+		$(cmake-utils_use examples VGM_INSTALL_EXAMPLES)
+		$(cmake-utils_use_with geant4)
+		$(cmake-utils_use_with root)
+		$(cmake-utils_use_with test)
+		$(cmake-utils_use_with xml xercesc)
+	)
+	cmake-utils_src_configure
+}
+
+src_compile() {
+	cmake-utils_src_compile
+	if use doc; then
+		cd packages
+		doxygen || die
+	fi
+}
+
+src_test() {
+	cd "${BUILD_DIR}"/test
+	./test_suite.sh || die
+}
+
+src_install() {
+	cmake-utils_src_install
+	cd doc || die
+	dodoc README todo.txt VGMhistory.txt VGM.html VGMversions.html
+	use doc && dohtml -r html/*
+}


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

* [gentoo-commits] proj/sci:master commit in: sci-physics/vgm/
@ 2014-07-07  6:36 Justin Lecher
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2014-07-07  6:36 UTC (permalink / raw
  To: gentoo-commits

commit:     9387586b5eb68566a052b9af47c629cae8fc897e
Author:     Oliver Freyermuth <o.freyermuth <AT> googlemail <DOT> com>
AuthorDate: Sun Jul  6 20:34:05 2014 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Jul  6 20:34:05 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=9387586b

Add subslot dependency on clhep, we need to rebuild for each clhep subslot change.

---
 sci-physics/vgm/ChangeLog       | 4 ++++
 sci-physics/vgm/vgm-3.06.ebuild | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/sci-physics/vgm/ChangeLog b/sci-physics/vgm/ChangeLog
index a316389..5b5dce5 100644
--- a/sci-physics/vgm/ChangeLog
+++ b/sci-physics/vgm/ChangeLog
@@ -2,6 +2,10 @@
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  06 Jul 2014; Oliver Freyermuth <o.freyermuth@googlemail.com> vgm-3.06.ebuild:
+  Add subslot dependency on clhep, we need to rebuild for each clhep subslot
+  change.
+
 *vgm-9999 (06 Jul 2014)
 
   06 Jul 2014; Oliver Freyermuth <o.freyermuth@googlemail.com> +vgm-9999.ebuild:

diff --git a/sci-physics/vgm/vgm-3.06.ebuild b/sci-physics/vgm/vgm-3.06.ebuild
index ccdc5a3..bd650c6 100644
--- a/sci-physics/vgm/vgm-3.06.ebuild
+++ b/sci-physics/vgm/vgm-3.06.ebuild
@@ -24,7 +24,7 @@ KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc examples +geant4 +root test xml"
 
 RDEPEND="
-	sci-physics/clhep
+	sci-physics/clhep:=
 	root? ( sci-physics/root:= )
 	geant4? ( >=sci-physics/geant-4.9.6[examples?] )
 	xml? ( dev-libs/xerces-c )"


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

* [gentoo-commits] proj/sci:master commit in: sci-physics/vgm/
@ 2020-09-22  2:10 Aisha Tammy
  0 siblings, 0 replies; 8+ messages in thread
From: Aisha Tammy @ 2020-09-22  2:10 UTC (permalink / raw
  To: gentoo-commits

commit:     8a65791c838cfa5afd0b44de5c7bb962f7ff67e7
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Tue Sep 22 02:10:01 2020 +0000
Commit:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Tue Sep 22 02:10:14 2020 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=8a65791c

sci-physics/vgm: drop package

present in ::gentoo

Package-Manager: Portage-3.0.7, Repoman-3.0.1
RepoMan-Options: --force
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>

 sci-physics/vgm/metadata.xml    | 16 ----------
 sci-physics/vgm/vgm-3.06.ebuild | 70 -----------------------------------------
 sci-physics/vgm/vgm-4.3.ebuild  | 69 ----------------------------------------
 sci-physics/vgm/vgm-9999.ebuild | 69 ----------------------------------------
 4 files changed, 224 deletions(-)

diff --git a/sci-physics/vgm/metadata.xml b/sci-physics/vgm/metadata.xml
deleted file mode 100644
index dba956aa1..000000000
--- a/sci-physics/vgm/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="project">
-		<email>sci-physics@gentoo.org</email>
-		<name>Gentoo Physics Project</name>
-	</maintainer>
-	<longdescription lang="en">
-The Virtual Geometry Model (VGM) is an
-abstraction layer between the Geant4 and ROOT software.
-</longdescription>
-	<use>
-		<flag name="geant4">Enable interaction with Geant4(<pkg>sci-physics/geant</pkg>:4) </flag>
-		<flag name="root">Enable interactions with ROOT (<pkg>sci-physics/root</pkg>) </flag>
-	</use>
-</pkgmetadata>

diff --git a/sci-physics/vgm/vgm-3.06.ebuild b/sci-physics/vgm/vgm-3.06.ebuild
deleted file mode 100644
index b0a867f54..000000000
--- a/sci-physics/vgm/vgm-3.06.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit cmake-utils versionator
-
-#ESVN_REPO_URI="https://vgm.svn.sourceforge.net/svnroot/${PN}/tags/v$(replace_all_version_separators '-')/${PN}"
-#ESVN_PROJECT="${PN}.${PV}"
-
-# .zip-snapshot can be recreated by visiting
-# http://sourceforge.net/p/${PN}/code/${COMMIT}/tarball?path=/tags/v$(replace_all_version_separators '-')
-TAG_VER="${PN}-code-731-tags-v$(replace_all_version_separators '-')"
-
-DESCRIPTION="Virtual Geometry Model for High Energy Physics Experiments"
-HOMEPAGE="http://ivana.home.cern.ch/ivana/VGM.html"
-#SRC_URI="http://sourceforge.net/code-snapshots/svn/v/vg/vgm/code/${TAG_VER}.zip"
-SRC_URI="http://dev.gentoo.org/~jlec/distfiles/${TAG_VER}.zip"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc examples +geant4 +root test xml"
-
-RDEPEND="
-	sci-physics/clhep:=
-	root? ( sci-physics/root:= )
-	geant4? ( >=sci-physics/geant-4.9.6[examples?] )
-	xml? ( dev-libs/xerces-c )"
-DEPEND="${RDEPEND}
-	doc? ( app-doc/doxygen[dot] )
-	test? ( geant4? ( xml? ( >=sci-physics/geant-4.9.6[gdml] ) ) )"
-
-S=${WORKDIR}/${TAG_VER}/${PN}
-
-src_configure() {
-	local mycmakeargs=(
-		-DCLHEP_DIR="${EROOT}usr"
-		$(cmake-utils_use_with examples)
-		$(cmake-utils_use_with geant4)
-		$(cmake-utils_use_with root)
-		$(cmake-utils_use_with test)
-		$(cmake-utils_use_with xml xercesc)
-	)
-	cmake-utils_src_configure
-}
-
-src_compile() {
-	cmake-utils_src_compile
-	if use doc; then
-		cd packages
-		doxygen || die
-	fi
-}
-
-src_test() {
-	cd "${BUILD_DIR}"/test
-	./test_suite.sh || die
-}
-
-src_install() {
-	cmake-utils_src_install
-	if use examples; then
-		insinto /usr/share/doc/${PF}
-		doins -r examples
-	fi
-	cd doc || die
-	dodoc README todo.txt VGMhistory.txt VGM.html VGMversions.html
-	use doc && dohtml -r html/*
-}

diff --git a/sci-physics/vgm/vgm-4.3.ebuild b/sci-physics/vgm/vgm-4.3.ebuild
deleted file mode 100644
index f9b13101a..000000000
--- a/sci-physics/vgm/vgm-4.3.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils versionator
-
-if [[ ${PV} == *9999* ]]; then
-	inherit subversion
-	ESVN_REPO_URI="svn://svn.code.sf.net/p/vgm/code/trunk/vgm"
-	KEYWORDS=""
-else
-	SRC_URI="http://ivana.home.cern.ch/ivana/${PN}.${PV}.tar.gz"
-	S="${WORKDIR}/${PN}.${PV}"
-	KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-fi
-
-DESCRIPTION="Virtual Geometry Model for High Energy Physics Experiments"
-HOMEPAGE="http://ivana.home.cern.ch/ivana/VGM.html"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="doc examples +geant4 +root test xml"
-
-RDEPEND="
-	sci-physics/clhep:=
-	root? ( sci-physics/root:= )
-	geant4? ( >=sci-physics/geant-4.9.6 )
-	xml? ( dev-libs/xerces-c )"
-DEPEND="${RDEPEND}
-	doc? ( app-doc/doxygen[dot] )
-	test? ( geant4? ( xml? ( >=sci-physics/geant-4.9.6[gdml] ) ) )"
-
-src_prepare() {
-	default
-}
-
-src_configure() {
-	local mycmakeargs=(
-		-DCLHEP_DIR="${EROOT}usr"
-		-Dexamples="$(usex examples)"
-		-DVGM_INSTALL_EXAMPLES="$(usex examples)"
-		-Dgeant4="$(usex geant4)"
-		-Droot="$(usex root)"
-		-Dtest="$(usex test)"
-		-Dxercesc="$(usex xml)"
-	)
-	cmake-utils_src_configure
-}
-
-src_compile() {
-	cmake-utils_src_compile
-	if use doc; then
-		cd packages
-		doxygen || die
-	fi
-}
-
-src_test() {
-	cd "${BUILD_DIR}"/test
-	./test_suite.sh || die
-}
-
-src_install() {
-	cmake-utils_src_install
-	cd doc || die
-	dodoc README todo.txt VGMhistory.txt VGM.html VGMversions.html
-	use doc && dohtml -r html/*
-}

diff --git a/sci-physics/vgm/vgm-9999.ebuild b/sci-physics/vgm/vgm-9999.ebuild
deleted file mode 100644
index f9b13101a..000000000
--- a/sci-physics/vgm/vgm-9999.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils versionator
-
-if [[ ${PV} == *9999* ]]; then
-	inherit subversion
-	ESVN_REPO_URI="svn://svn.code.sf.net/p/vgm/code/trunk/vgm"
-	KEYWORDS=""
-else
-	SRC_URI="http://ivana.home.cern.ch/ivana/${PN}.${PV}.tar.gz"
-	S="${WORKDIR}/${PN}.${PV}"
-	KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-fi
-
-DESCRIPTION="Virtual Geometry Model for High Energy Physics Experiments"
-HOMEPAGE="http://ivana.home.cern.ch/ivana/VGM.html"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="doc examples +geant4 +root test xml"
-
-RDEPEND="
-	sci-physics/clhep:=
-	root? ( sci-physics/root:= )
-	geant4? ( >=sci-physics/geant-4.9.6 )
-	xml? ( dev-libs/xerces-c )"
-DEPEND="${RDEPEND}
-	doc? ( app-doc/doxygen[dot] )
-	test? ( geant4? ( xml? ( >=sci-physics/geant-4.9.6[gdml] ) ) )"
-
-src_prepare() {
-	default
-}
-
-src_configure() {
-	local mycmakeargs=(
-		-DCLHEP_DIR="${EROOT}usr"
-		-Dexamples="$(usex examples)"
-		-DVGM_INSTALL_EXAMPLES="$(usex examples)"
-		-Dgeant4="$(usex geant4)"
-		-Droot="$(usex root)"
-		-Dtest="$(usex test)"
-		-Dxercesc="$(usex xml)"
-	)
-	cmake-utils_src_configure
-}
-
-src_compile() {
-	cmake-utils_src_compile
-	if use doc; then
-		cd packages
-		doxygen || die
-	fi
-}
-
-src_test() {
-	cd "${BUILD_DIR}"/test
-	./test_suite.sh || die
-}
-
-src_install() {
-	cmake-utils_src_install
-	cd doc || die
-	dodoc README todo.txt VGMhistory.txt VGM.html VGMversions.html
-	use doc && dohtml -r html/*
-}


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

end of thread, other threads:[~2020-09-22  2:10 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-23 13:58 [gentoo-commits] proj/sci:master commit in: sci-physics/vgm/ Christoph Junghans
  -- strict thread matches above, loose matches on Subject: below --
2020-09-22  2:10 Aisha Tammy
2014-07-07  6:36 Justin Lecher
2014-07-07  6:36 Justin Lecher
2014-04-03 17:48 Sebastien Fabbro
2014-03-27 21:51 Sebastien Fabbro
2013-01-21 17:33 Sebastien Fabbro
2013-01-18 23:59 Sebastien Fabbro

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