public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: sci-misc/simx/
@ 2013-10-22  0:09 Christoph Junghans
  0 siblings, 0 replies; 7+ messages in thread
From: Christoph Junghans @ 2013-10-22  0:09 UTC (permalink / raw
  To: gentoo-commits

commit:     39e5928b90b5577d286efbeb35e91f1d5ef3f3e6
Author:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 22 00:09:32 2013 +0000
Commit:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Tue Oct 22 00:09:32 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=39e5928b

initial commit

Package-Manager: portage-2.2.7

---
 sci-misc/simx/ChangeLog        |  9 +++++++++
 sci-misc/simx/metadata.xml     |  5 +++++
 sci-misc/simx/simx-9999.ebuild | 29 +++++++++++++++++++++++++++++
 3 files changed, 43 insertions(+)

diff --git a/sci-misc/simx/ChangeLog b/sci-misc/simx/ChangeLog
new file mode 100644
index 0000000..7cd7288
--- /dev/null
+++ b/sci-misc/simx/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for sci-misc/simx
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*simx-9999 (22 Oct 2013)
+
+  22 Oct 2013; Christoph Junghans <ottxor@gentoo.org> +metadata.xml,
+  +simx-9999.ebuild:
+  initial commit

diff --git a/sci-misc/simx/metadata.xml b/sci-misc/simx/metadata.xml
new file mode 100644
index 0000000..d369d06
--- /dev/null
+++ b/sci-misc/simx/metadata.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<herd>sci</herd>
+</pkgmetadata>

diff --git a/sci-misc/simx/simx-9999.ebuild b/sci-misc/simx/simx-9999.ebuild
new file mode 100644
index 0000000..d3d0918
--- /dev/null
+++ b/sci-misc/simx/simx-9999.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_6,2_7} )
+
+inherit distutils-r1 git-2
+
+DESCRIPTION="a library for developing parallel, discrete-event simulations in Python"
+HOMEPAGE="https://github.com/sim-x"
+SRC_URI=""
+EGIT_REPO_URI="git://github.com/sim-x/simx.git http://github.com/sim-x/simx.git"
+
+SLOT="0"
+LICENSE="LGPL-2.1"
+KEYWORDS=""
+IUSE=""
+
+RDEPEND=" virtual/mpi
+	dev-libs/boost[python] "
+DEPEND="${RDEPEND}
+	dev-util/cmake"
+
+src_prepare() {
+	# don't do egg install
+	sed -i 's/self.do_egg_install()/_install.install.run(self)/' setup.py || die
+}


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

* [gentoo-commits] proj/sci:master commit in: sci-misc/simx/
@ 2013-10-22  1:04 Christoph Junghans
  0 siblings, 0 replies; 7+ messages in thread
From: Christoph Junghans @ 2013-10-22  1:04 UTC (permalink / raw
  To: gentoo-commits

commit:     6ebe3870de5dc462f853182113fdc9da0f08b7cf
Author:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 22 01:04:15 2013 +0000
Commit:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Tue Oct 22 01:04:15 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=6ebe3870

fixed deps

Package-Manager: portage-2.2.7

---
 sci-misc/simx/ChangeLog        | 3 +++
 sci-misc/simx/simx-9999.ebuild | 5 +++--
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/sci-misc/simx/ChangeLog b/sci-misc/simx/ChangeLog
index 7cd7288..ad19021 100644
--- a/sci-misc/simx/ChangeLog
+++ b/sci-misc/simx/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  22 Oct 2013; Christoph Junghans <ottxor@gentoo.org> simx-9999.ebuild:
+  fixed deps
+
 *simx-9999 (22 Oct 2013)
 
   22 Oct 2013; Christoph Junghans <ottxor@gentoo.org> +metadata.xml,

diff --git a/sci-misc/simx/simx-9999.ebuild b/sci-misc/simx/simx-9999.ebuild
index d3d0918..246731d 100644
--- a/sci-misc/simx/simx-9999.ebuild
+++ b/sci-misc/simx/simx-9999.ebuild
@@ -6,7 +6,7 @@ EAPI=5
 
 PYTHON_COMPAT=( python{2_6,2_7} )
 
-inherit distutils-r1 git-2
+inherit cmake-utils distutils-r1 git-2
 
 DESCRIPTION="a library for developing parallel, discrete-event simulations in Python"
 HOMEPAGE="https://github.com/sim-x"
@@ -19,7 +19,8 @@ KEYWORDS=""
 IUSE=""
 
 RDEPEND=" virtual/mpi
-	dev-libs/boost[python] "
+	dev-libs/boost[python]
+	dev-python/greenlet"
 DEPEND="${RDEPEND}
 	dev-util/cmake"
 


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

* [gentoo-commits] proj/sci:master commit in: sci-misc/simx/
@ 2013-10-24 17:03 Christoph Junghans
  0 siblings, 0 replies; 7+ messages in thread
From: Christoph Junghans @ 2013-10-24 17:03 UTC (permalink / raw
  To: gentoo-commits

commit:     96969d8e32d227de99c728195a28a487804afdb9
Author:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 24 17:03:39 2013 +0000
Commit:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Thu Oct 24 17:03:39 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=96969d8e

fixed python deps

Package-Manager: portage-2.2.7

---
 sci-misc/simx/ChangeLog        | 4 ++++
 sci-misc/simx/simx-0.1.ebuild  | 4 ++--
 sci-misc/simx/simx-9999.ebuild | 4 ++--
 3 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/sci-misc/simx/ChangeLog b/sci-misc/simx/ChangeLog
index a2b652e..2a2f105 100644
--- a/sci-misc/simx/ChangeLog
+++ b/sci-misc/simx/ChangeLog
@@ -2,6 +2,10 @@
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  24 Oct 2013; Christoph Junghans <ottxor@gentoo.org> simx-0.1.ebuild,
+  simx-9999.ebuild:
+  fixed python deps
+
 *simx-0.1 (22 Oct 2013)
 
   22 Oct 2013; Christoph Junghans <ottxor@gentoo.org>

diff --git a/sci-misc/simx/simx-0.1.ebuild b/sci-misc/simx/simx-0.1.ebuild
index 6e7586a..27d4188 100644
--- a/sci-misc/simx/simx-0.1.ebuild
+++ b/sci-misc/simx/simx-0.1.ebuild
@@ -25,8 +25,8 @@ LICENSE="LGPL-2.1"
 IUSE=""
 
 RDEPEND=" virtual/mpi
-	dev-libs/boost[python]
-	dev-python/greenlet"
+	dev-libs/boost[python,${PYTHON_USEDEP}]
+	dev-python/greenlet[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}
 	dev-util/cmake"
 

diff --git a/sci-misc/simx/simx-9999.ebuild b/sci-misc/simx/simx-9999.ebuild
index ad6411a..d0e26d0 100644
--- a/sci-misc/simx/simx-9999.ebuild
+++ b/sci-misc/simx/simx-9999.ebuild
@@ -25,8 +25,8 @@ LICENSE="LGPL-2.1"
 IUSE=""
 
 RDEPEND=" virtual/mpi
-	dev-libs/boost[python]
-	dev-python/greenlet"
+	dev-libs/boost[python,${PYTHON_USEDEP}]
+	dev-python/greenlet[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}
 	dev-util/cmake"
 


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

* [gentoo-commits] proj/sci:master commit in: sci-misc/simx/
@ 2014-01-06 18:33 Justin Lecher
  0 siblings, 0 replies; 7+ messages in thread
From: Justin Lecher @ 2014-01-06 18:33 UTC (permalink / raw
  To: gentoo-commits

commit:     04a3f20584a516df6e2d8be7467cdf6ab4ae8980
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Jan  6 18:03:28 2014 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Jan  6 18:03:28 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=04a3f205

sci-misc/simx: Switch from git-2 to git-r3

Package-Manager: portage-2.2.8

---
 sci-misc/simx/ChangeLog        |  6 +++++-
 sci-misc/simx/metadata.xml     |  2 +-
 sci-misc/simx/simx-0.1.ebuild  | 16 +++++-----------
 sci-misc/simx/simx-9999.ebuild | 18 ++++++------------
 4 files changed, 17 insertions(+), 25 deletions(-)

diff --git a/sci-misc/simx/ChangeLog b/sci-misc/simx/ChangeLog
index 2a2f105..365ac89 100644
--- a/sci-misc/simx/ChangeLog
+++ b/sci-misc/simx/ChangeLog
@@ -1,7 +1,11 @@
 # ChangeLog for sci-misc/simx
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  06 Jan 2014; Justin Lecher <jlec@gentoo.org> simx-0.1.ebuild,
+  simx-9999.ebuild, metadata.xml:
+  Switch from git-2 to git-r3
+
   24 Oct 2013; Christoph Junghans <ottxor@gentoo.org> simx-0.1.ebuild,
   simx-9999.ebuild:
   fixed python deps

diff --git a/sci-misc/simx/metadata.xml b/sci-misc/simx/metadata.xml
index d369d06..897aa2e 100644
--- a/sci-misc/simx/metadata.xml
+++ b/sci-misc/simx/metadata.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<herd>sci</herd>
+  <herd>sci</herd>
 </pkgmetadata>

diff --git a/sci-misc/simx/simx-0.1.ebuild b/sci-misc/simx/simx-0.1.ebuild
index 27d4188..38fe6e2 100644
--- a/sci-misc/simx/simx-0.1.ebuild
+++ b/sci-misc/simx/simx-0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
@@ -8,23 +8,17 @@ PYTHON_COMPAT=( python{2_6,2_7} )
 
 inherit cmake-utils distutils-r1
 
-if [ "${PV}" = "9999" ]; then
-	EGIT_REPO_URI="git://github.com/sim-x/simx.git http://github.com/sim-x/simx.git"
-	inherit git-2
-	KEYWORDS=""
-else
-	SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-	KEYWORDS="~amd64"
-fi
-
 DESCRIPTION="a library for developing parallel, discrete-event simulations in Python"
 HOMEPAGE="https://github.com/sim-x"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="LGPL-2.1"
 IUSE=""
+KEYWORDS="~amd64"
 
-RDEPEND=" virtual/mpi
+RDEPEND="
+	virtual/mpi
 	dev-libs/boost[python,${PYTHON_USEDEP}]
 	dev-python/greenlet[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}

diff --git a/sci-misc/simx/simx-9999.ebuild b/sci-misc/simx/simx-9999.ebuild
index d0e26d0..0ab6e11 100644
--- a/sci-misc/simx/simx-9999.ebuild
+++ b/sci-misc/simx/simx-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
@@ -6,25 +6,19 @@ EAPI=5
 
 PYTHON_COMPAT=( python{2_6,2_7} )
 
-inherit cmake-utils distutils-r1
-
-if [ "${PV}" = "9999" ]; then
-	EGIT_REPO_URI="git://github.com/sim-x/simx.git http://github.com/sim-x/simx.git"
-	inherit git-2
-	KEYWORDS=""
-else
-	SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-	KEYWORDS="~amd64"
-fi
+inherit cmake-utils distutils-r1 git-r3
 
 DESCRIPTION="a library for developing parallel, discrete-event simulations in Python"
 HOMEPAGE="https://github.com/sim-x"
+SRC_URI=""
 
 SLOT="0"
 LICENSE="LGPL-2.1"
 IUSE=""
+KEYWORDS=""
 
-RDEPEND=" virtual/mpi
+RDEPEND="
+	virtual/mpi
 	dev-libs/boost[python,${PYTHON_USEDEP}]
 	dev-python/greenlet[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}


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

* [gentoo-commits] proj/sci:master commit in: sci-misc/simx/
@ 2015-06-05 11:20 Justin Lecher
  0 siblings, 0 replies; 7+ messages in thread
From: Justin Lecher @ 2015-06-05 11:20 UTC (permalink / raw
  To: gentoo-commits

commit:     3071acc132c2ee7301e799594864d1189e6283a4
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Fri Jun  5 11:19:33 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Jun  5 11:19:33 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=3071acc1

sci-misc/simx: Add github to remote-id in metadata.xml

Package-Manager: portage-2.2.20

 sci-misc/simx/ChangeLog    | 5 ++++-
 sci-misc/simx/metadata.xml | 3 +++
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/sci-misc/simx/ChangeLog b/sci-misc/simx/ChangeLog
index 1907c83..2ac2ee5 100644
--- a/sci-misc/simx/ChangeLog
+++ b/sci-misc/simx/ChangeLog
@@ -1,7 +1,10 @@
 # ChangeLog for sci-misc/simx
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  05 Jun 2015; Justin Lecher <jlec@gentoo.org> metadata.xml:
+  sci-misc/simx: Add github to remote-id in metadata.xml
+
 *simx-0.2 (07 Feb 2014)
 
   07 Feb 2014; Christoph Junghans <ottxor@gentoo.org> +simx-0.2.ebuild,

diff --git a/sci-misc/simx/metadata.xml b/sci-misc/simx/metadata.xml
index 897aa2e..6e9c324 100644
--- a/sci-misc/simx/metadata.xml
+++ b/sci-misc/simx/metadata.xml
@@ -2,4 +2,7 @@
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
   <herd>sci</herd>
+  <upstream>
+    <remote-id type="github">sim-x</remote-id>
+  </upstream>
 </pkgmetadata>


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

* [gentoo-commits] proj/sci:master commit in: sci-misc/simx/
@ 2016-02-14 17:32 Justin Lecher
  0 siblings, 0 replies; 7+ messages in thread
From: Justin Lecher @ 2016-02-14 17:32 UTC (permalink / raw
  To: gentoo-commits

commit:     17a5b8e0de4be077cf57d2f63bfc6b0124d40eb8
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 14 17:08:24 2016 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Feb 14 17:08:24 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=17a5b8e0

sci-misc/simx: Bump to EAPI=6

* Use git-r3.eclass

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 sci-misc/simx/simx-0.2.ebuild  | 24 ++++++++++--------------
 sci-misc/simx/simx-9999.ebuild | 27 ++++++++++++---------------
 2 files changed, 22 insertions(+), 29 deletions(-)

diff --git a/sci-misc/simx/simx-0.2.ebuild b/sci-misc/simx/simx-0.2.ebuild
index 232de1a..3dd4e3e 100644
--- a/sci-misc/simx/simx-0.2.ebuild
+++ b/sci-misc/simx/simx-0.2.ebuild
@@ -1,27 +1,20 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
 PYTHON_COMPAT=( python2_7 )
 
 inherit cmake-utils distutils-r1
 
-if [ "${PV}" = "9999" ]; then
-	EGIT_REPO_URI="git://github.com/sim-x/${PN}.git http://github.com/sim-x/${PN}.git"
-	inherit git-2
-	KEYWORDS=""
-else
-	SRC_URI="https://github.com/sim-x/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64"
-fi
-
-DESCRIPTION="a library for developing parallel, discrete-event simulations in Python"
+DESCRIPTION="Library for developing parallel, discrete-event simulations in Python"
 HOMEPAGE="https://github.com/sim-x"
+SRC_URI="https://github.com/sim-x/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 SLOT="0"
 LICENSE="LGPL-2.1"
+KEYWORDS="~amd64"
 IUSE=""
 
 RDEPEND="
@@ -31,7 +24,10 @@ RDEPEND="
 DEPEND="${RDEPEND}
 	dev-util/cmake"
 
-src_prepare() {
+python_prepare_all() {
 	# don't do egg install
-	sed -i 's/self.do_egg_install()/_install.install.run(self)/' setup.py || die
+	sed \
+		-e 's/self.do_egg_install()/_install.install.run(self)/' \
+		-i setup.py || die
+	distutils-r1_python_prepare_all
 }

diff --git a/sci-misc/simx/simx-9999.ebuild b/sci-misc/simx/simx-9999.ebuild
index 232de1a..6054dd4 100644
--- a/sci-misc/simx/simx-9999.ebuild
+++ b/sci-misc/simx/simx-9999.ebuild
@@ -1,27 +1,21 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
+EAPI=6
 
 PYTHON_COMPAT=( python2_7 )
 
-inherit cmake-utils distutils-r1
+inherit cmake-utils distutils-r1 git-r3
 
-if [ "${PV}" = "9999" ]; then
-	EGIT_REPO_URI="git://github.com/sim-x/${PN}.git http://github.com/sim-x/${PN}.git"
-	inherit git-2
-	KEYWORDS=""
-else
-	SRC_URI="https://github.com/sim-x/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64"
-fi
-
-DESCRIPTION="a library for developing parallel, discrete-event simulations in Python"
+DESCRIPTION="Library for developing parallel, discrete-event simulations in Python"
 HOMEPAGE="https://github.com/sim-x"
+SRC_URI=""
+EGIT_REPO_URI="git://github.com/sim-x/${PN}.git http://github.com/sim-x/${PN}.git"
 
 SLOT="0"
 LICENSE="LGPL-2.1"
+KEYWORDS=""
 IUSE=""
 
 RDEPEND="
@@ -31,7 +25,10 @@ RDEPEND="
 DEPEND="${RDEPEND}
 	dev-util/cmake"
 
-src_prepare() {
+python_prepare_all() {
 	# don't do egg install
-	sed -i 's/self.do_egg_install()/_install.install.run(self)/' setup.py || die
+	sed \
+		-e 's/self.do_egg_install()/_install.install.run(self)/' \
+		-i setup.py || die
+	distutils-r1_python_prepare_all
 }


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

* [gentoo-commits] proj/sci:master commit in: sci-misc/simx/
@ 2020-09-27 18:40 Aisha Tammy
  0 siblings, 0 replies; 7+ messages in thread
From: Aisha Tammy @ 2020-09-27 18:40 UTC (permalink / raw
  To: gentoo-commits

commit:     4814d0f19d00f54292f91d70d2fd9d21067928bf
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Sun Sep 27 18:37:49 2020 +0000
Commit:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Sun Sep 27 18:37:49 2020 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=4814d0f1

sci-misc/simx: drop dead package

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

 sci-misc/simx/metadata.xml     | 11 -----------
 sci-misc/simx/simx-0.2.ebuild  | 32 --------------------------------
 sci-misc/simx/simx-9999.ebuild | 33 ---------------------------------
 3 files changed, 76 deletions(-)

diff --git a/sci-misc/simx/metadata.xml b/sci-misc/simx/metadata.xml
deleted file mode 100644
index b1adaa806..000000000
--- a/sci-misc/simx/metadata.xml
+++ /dev/null
@@ -1,11 +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@gentoo.org</email>
-		<name>Gentoo Science Project</name>
-	</maintainer>
-	<upstream>
-		<remote-id type="github">sim-x</remote-id>
-	</upstream>
-</pkgmetadata>

diff --git a/sci-misc/simx/simx-0.2.ebuild b/sci-misc/simx/simx-0.2.ebuild
deleted file mode 100644
index fb74b984f..000000000
--- a/sci-misc/simx/simx-0.2.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit cmake-utils distutils-r1
-
-DESCRIPTION="Library for developing parallel, discrete-event simulations in Python"
-HOMEPAGE="https://github.com/sim-x"
-SRC_URI="https://github.com/sim-x/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-SLOT="0"
-LICENSE="LGPL-2.1"
-KEYWORDS="~amd64"
-IUSE=""
-
-RDEPEND="
-	virtual/mpi
-	dev-libs/boost[python,${PYTHON_USEDEP}]
-	dev-python/greenlet[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-	dev-util/cmake"
-
-python_prepare_all() {
-	# don't do egg install
-	sed \
-		-e 's/self.do_egg_install()/_install.install.run(self)/' \
-		-i setup.py || die
-	distutils-r1_python_prepare_all
-}

diff --git a/sci-misc/simx/simx-9999.ebuild b/sci-misc/simx/simx-9999.ebuild
deleted file mode 100644
index 940aa7643..000000000
--- a/sci-misc/simx/simx-9999.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit cmake-utils distutils-r1 git-r3
-
-DESCRIPTION="Library for developing parallel, discrete-event simulations in Python"
-HOMEPAGE="https://github.com/sim-x"
-SRC_URI=""
-EGIT_REPO_URI="git://github.com/sim-x/${PN}.git http://github.com/sim-x/${PN}.git"
-
-SLOT="0"
-LICENSE="LGPL-2.1"
-KEYWORDS=""
-IUSE=""
-
-RDEPEND="
-	virtual/mpi
-	dev-libs/boost[python,${PYTHON_USEDEP}]
-	dev-python/greenlet[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-	dev-util/cmake"
-
-python_prepare_all() {
-	# don't do egg install
-	sed \
-		-e 's/self.do_egg_install()/_install.install.run(self)/' \
-		-i setup.py || die
-	distutils-r1_python_prepare_all
-}


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

end of thread, other threads:[~2020-09-27 18:40 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-27 18:40 [gentoo-commits] proj/sci:master commit in: sci-misc/simx/ Aisha Tammy
  -- strict thread matches above, loose matches on Subject: below --
2016-02-14 17:32 Justin Lecher
2015-06-05 11:20 Justin Lecher
2014-01-06 18:33 Justin Lecher
2013-10-24 17:03 Christoph Junghans
2013-10-22  1:04 Christoph Junghans
2013-10-22  0:09 Christoph Junghans

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