* [gentoo-commits] proj/sci:master commit in: sci-misc/simpy/
@ 2011-04-13 18:36 Justin Lecher
0 siblings, 0 replies; 4+ messages in thread
From: Justin Lecher @ 2011-04-13 18:36 UTC (permalink / raw
To: gentoo-commits
commit: 0a8c1a35eecb6cc8be1aa4a9d1724075c8c0ffa9
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 13 18:36:43 2011 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Apr 13 18:36:43 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=0a8c1a35
Version Bump
(Portage version: 2.2.0_alpha29/git/Linux x86_64, signed Manifest commit with key 70EB7916)
---
sci-misc/simpy/ChangeLog | 7 +++++-
sci-misc/simpy/simpy-2.1.0.ebuild | 46 +++++++++++++++++++++++++++++++++++++
2 files changed, 52 insertions(+), 1 deletions(-)
diff --git a/sci-misc/simpy/ChangeLog b/sci-misc/simpy/ChangeLog
index aacb0c2..6871477 100644
--- a/sci-misc/simpy/ChangeLog
+++ b/sci-misc/simpy/ChangeLog
@@ -1,7 +1,12 @@
# ChangeLog for sci-misc/simpy
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*simpy-2.1.0 (13 Apr 2011)
+
+ 13 Apr 2011; Justin Lecher <jlec@gentoo.org> +simpy-2.1.0.ebuild:
+ Version Bump
+
29 Jun 2010; Justin Lecher <jlec@gentoo.org> simpy-2.0.1.ebuild:
Python ABI fixes
diff --git a/sci-misc/simpy/simpy-2.1.0.ebuild b/sci-misc/simpy/simpy-2.1.0.ebuild
new file mode 100644
index 0000000..c21372a
--- /dev/null
+++ b/sci-misc/simpy/simpy-2.1.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="2"
+
+PYTHON_DEPEND="2"
+SUPPORT_PYTHON_ABIS="1"
+PYTHON_USE_WITH="tk"
+RESTRICT_PYTHON_ABIS="3.*"
+PYTHON_MODNAME="SimPy"
+
+inherit distutils
+
+MY_P="${P/simpy/SimPy}"
+
+DESCRIPTION="Process and event simulation."
+HOMEPAGE="http://simpy.sourceforge.net"
+SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc"
+
+S="${WORKDIR}/${MY_P}"
+
+src_install() {
+ distutils_src_install
+
+ if use doc ; then
+ dodoc SimPyDocs
+ dodoc SimPyModels
+ # Took the following from 'dodoc' in order to not compress
+ # the pdf file. 'dodoc' always compresses.
+ dir="${D}usr/share/doc/${PF}/${DOCDESTTREE}"
+ if [ ! -d "${dir}" ] ; then
+ install -d "${dir}"
+ fi
+ for dname in `find SimPyDocs SimPyModels -type d`
+ do
+ install -d "${dir}/${dname}"
+ install -m0644 "${dname}"/* "${dir}/${dname}"
+ done
+ fi
+}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-misc/simpy/
@ 2011-04-13 18:42 Justin Lecher
0 siblings, 0 replies; 4+ messages in thread
From: Justin Lecher @ 2011-04-13 18:42 UTC (permalink / raw
To: gentoo-commits
commit: 329438bf102eab3fa2e6e3df183523113d848249
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 13 18:42:14 2011 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Apr 13 18:42:14 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=329438bf
Fix ups
(Portage version: 2.2.0_alpha29/git/Linux x86_64, signed Manifest commit with key 70EB7916)
---
sci-misc/simpy/ChangeLog | 3 +++
sci-misc/simpy/simpy-2.1.0.ebuild | 21 +++++----------------
2 files changed, 8 insertions(+), 16 deletions(-)
diff --git a/sci-misc/simpy/ChangeLog b/sci-misc/simpy/ChangeLog
index 6871477..075ae2c 100644
--- a/sci-misc/simpy/ChangeLog
+++ b/sci-misc/simpy/ChangeLog
@@ -2,6 +2,9 @@
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 13 Apr 2011; Justin Lecher <jlec@gentoo.org> simpy-2.1.0.ebuild:
+ Fix ups
+
*simpy-2.1.0 (13 Apr 2011)
13 Apr 2011; Justin Lecher <jlec@gentoo.org> +simpy-2.1.0.ebuild:
diff --git a/sci-misc/simpy/simpy-2.1.0.ebuild b/sci-misc/simpy/simpy-2.1.0.ebuild
index c21372a..f0a49d0 100644
--- a/sci-misc/simpy/simpy-2.1.0.ebuild
+++ b/sci-misc/simpy/simpy-2.1.0.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
# $Header: $
-EAPI="2"
+EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
@@ -15,7 +15,7 @@ inherit distutils
MY_P="${P/simpy/SimPy}"
DESCRIPTION="Process and event simulation."
-HOMEPAGE="http://simpy.sourceforge.net"
+HOMEPAGE="http://simpy.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
LICENSE="LGPL-2.1"
@@ -28,19 +28,8 @@ S="${WORKDIR}/${MY_P}"
src_install() {
distutils_src_install
- if use doc ; then
- dodoc SimPyDocs
- dodoc SimPyModels
- # Took the following from 'dodoc' in order to not compress
- # the pdf file. 'dodoc' always compresses.
- dir="${D}usr/share/doc/${PF}/${DOCDESTTREE}"
- if [ ! -d "${dir}" ] ; then
- install -d "${dir}"
- fi
- for dname in `find SimPyDocs SimPyModels -type d`
- do
- install -d "${dir}/${dname}"
- install -m0644 "${dname}"/* "${dir}/${dname}"
- done
+ if use doc; then
+ dohtml -r SimPyDocs
+ dodoc SimPyModels/*
fi
}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-misc/simpy/
@ 2011-11-23 4:14 Tim Cera
0 siblings, 0 replies; 4+ messages in thread
From: Tim Cera @ 2011-11-23 4:14 UTC (permalink / raw
To: gentoo-commits
commit: 685a9f54531935e1bf3739ac4b50e9146e50311d
Author: timcera <tim <AT> cerazone <DOT> net>
AuthorDate: Wed Nov 23 04:08:11 2011 +0000
Commit: Tim Cera <timcera <AT> earthlink <DOT> net>
CommitDate: Wed Nov 23 04:08:11 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=685a9f54
sci-misc/simpy: Version bump.
---
sci-misc/simpy/ChangeLog | 6 +++
sci-misc/simpy/metadata.xml | 4 +-
sci-misc/simpy/simpy-2.0.1.ebuild | 46 --------------------
.../simpy/{simpy-2.1.0.ebuild => simpy-2.2.ebuild} | 0
4 files changed, 8 insertions(+), 48 deletions(-)
diff --git a/sci-misc/simpy/ChangeLog b/sci-misc/simpy/ChangeLog
index 075ae2c..a14d834 100644
--- a/sci-misc/simpy/ChangeLog
+++ b/sci-misc/simpy/ChangeLog
@@ -2,6 +2,12 @@
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*simpy-2.2 (23 Nov 2011)
+
+ 23 Nov 2011; Tim Cera <tim@cerazone.net> -simpy-2.0.1.ebuild,
+ -simpy-2.1.0.ebuild, +simpy-2.2.ebuild, metadata.xml:
+ Version bump.
+
13 Apr 2011; Justin Lecher <jlec@gentoo.org> simpy-2.1.0.ebuild:
Fix ups
diff --git a/sci-misc/simpy/metadata.xml b/sci-misc/simpy/metadata.xml
index 31b2c77..1480cd4 100644
--- a/sci-misc/simpy/metadata.xml
+++ b/sci-misc/simpy/metadata.xml
@@ -3,10 +3,10 @@
<pkgmetadata>
<herd>sci</herd>
<maintainer>
-<email>timcera@earthlink.net</email>
+<email>tim@cerazone.net</email>
<name>Tim Cera</name>
</maintainer>
<longdescription lang="en">
-Process and event simulation.
+Simpy is a simulation environment.
</longdescription>
</pkgmetadata>
diff --git a/sci-misc/simpy/simpy-2.0.1.ebuild b/sci-misc/simpy/simpy-2.0.1.ebuild
deleted file mode 100644
index 652a8f9..0000000
--- a/sci-misc/simpy/simpy-2.0.1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="2"
-
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-PYTHON_USE_WITH="tk"
-RESTRICT_PYTHON_ABIS="3.*"
-PYTHON_MODNAME="SimPy"
-
-inherit distutils
-
-MY_P="${P/simpy/SimPy}"
-
-DESCRIPTION="Process and event simulation."
-HOMEPAGE="http://simpy.sourceforge.net"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc"
-
-S="${WORKDIR}/${MY_P}"
-
-src_install() {
- distutils_src_install
-
- if use doc ; then
- dodoc SimPyDocs
- dodoc SimPyModels
- # Took the following from 'dodoc' in order to not compress
- # the pdf file. 'dodoc' always compresses.
- dir="${D}usr/share/doc/${PF}/${DOCDESTTREE}"
- if [ ! -d "${dir}" ] ; then
- install -d "${dir}"
- fi
- for dname in `find SimPyDocs SimPyModels -type d`
- do
- install -d "${dir}/${dname}"
- install -m0644 "${dname}"/* "${dir}/${dname}"
- done
- fi
-}
diff --git a/sci-misc/simpy/simpy-2.1.0.ebuild b/sci-misc/simpy/simpy-2.2.ebuild
similarity index 100%
rename from sci-misc/simpy/simpy-2.1.0.ebuild
rename to sci-misc/simpy/simpy-2.2.ebuild
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-misc/simpy/
@ 2012-01-08 15:22 Justin Lecher
0 siblings, 0 replies; 4+ messages in thread
From: Justin Lecher @ 2012-01-08 15:22 UTC (permalink / raw
To: gentoo-commits
commit: 934bc0d3508094d49b1bd5e9ee75610238918756
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 7 16:47:43 2012 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sat Jan 7 16:47:43 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=934bc0d3
moved to tree
---
sci-misc/simpy/ChangeLog | 33 ---------------------------------
sci-misc/simpy/metadata.xml | 12 ------------
sci-misc/simpy/simpy-2.2.ebuild | 35 -----------------------------------
3 files changed, 0 insertions(+), 80 deletions(-)
diff --git a/sci-misc/simpy/ChangeLog b/sci-misc/simpy/ChangeLog
deleted file mode 100644
index bc41e5d..0000000
--- a/sci-misc/simpy/ChangeLog
+++ /dev/null
@@ -1,33 +0,0 @@
-# ChangeLog for sci-misc/simpy
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: $
-
-*simpy-2.2 (23 Nov 2011)
-
- 23 Nov 2011; Tim Cera <tim@cerazone.net> -simpy-2.0.1.ebuild,
- -simpy-2.1.0.ebuild, +simpy-2.2.ebuild, metadata.xml:
- Version bump.
-
- 13 Apr 2011; Justin Lecher <jlec@gentoo.org> simpy-2.1.0.ebuild:
- Fix ups
-
-*simpy-2.1.0 (13 Apr 2011)
-
- 13 Apr 2011; Justin Lecher <jlec@gentoo.org> +simpy-2.1.0.ebuild:
- Version Bump
-
- 29 Jun 2010; Justin Lecher <jlec@gentoo.org> simpy-2.0.1.ebuild:
- Python ABI fixes
-
- 26 Jan 2010; Tim Cera <tim@cerazone.net> -simpy-1.9.1.ebuild:
- Deleted old ebuild.
-
-*simpy-2.0.1 (17 May 2009)
-
- 17 May 2009; Justin Lecher (jlec) <jlec@j-schmitz.net>
- +simpy-2.0.1.ebuild:
- version bump
-
- 24 Aug 2008; Tim Cera <tim@cerazone.net> +simpy-1.9.1.ebuild:
- Initial ebuild.
-
diff --git a/sci-misc/simpy/metadata.xml b/sci-misc/simpy/metadata.xml
deleted file mode 100644
index 1480cd4..0000000
--- a/sci-misc/simpy/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<herd>sci</herd>
-<maintainer>
-<email>tim@cerazone.net</email>
-<name>Tim Cera</name>
-</maintainer>
-<longdescription lang="en">
-Simpy is a simulation environment.
-</longdescription>
-</pkgmetadata>
diff --git a/sci-misc/simpy/simpy-2.2.ebuild b/sci-misc/simpy/simpy-2.2.ebuild
deleted file mode 100644
index f0a49d0..0000000
--- a/sci-misc/simpy/simpy-2.2.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="3"
-
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-PYTHON_USE_WITH="tk"
-RESTRICT_PYTHON_ABIS="3.*"
-PYTHON_MODNAME="SimPy"
-
-inherit distutils
-
-MY_P="${P/simpy/SimPy}"
-
-DESCRIPTION="Process and event simulation."
-HOMEPAGE="http://simpy.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc"
-
-S="${WORKDIR}/${MY_P}"
-
-src_install() {
- distutils_src_install
-
- if use doc; then
- dohtml -r SimPyDocs
- dodoc SimPyModels/*
- fi
-}
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-01-08 15:24 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-08 15:22 [gentoo-commits] proj/sci:master commit in: sci-misc/simpy/ Justin Lecher
-- strict thread matches above, loose matches on Subject: below --
2011-11-23 4:14 Tim Cera
2011-04-13 18:42 Justin Lecher
2011-04-13 18:36 Justin Lecher
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox