From: "Justin Lecher" <jlec@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/sci:master commit in: sci-mathematics/pulp/
Date: Tue, 15 Jan 2013 15:27:23 +0000 (UTC) [thread overview]
Message-ID: <1358168930.504ac0700b4a8a5830c30d4a3675d360e1a5b429.jlec@gentoo> (raw)
commit: 504ac0700b4a8a5830c30d4a3675d360e1a5b429
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 14 13:08:50 2013 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Jan 14 13:08:50 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=504ac070
sci-mathematics/pulp: Move to EAPI=5, distutils-r1.eclass and virtual/pyparsing, #449564; unbundle sci-libs/coinor-cbc
Package-Manager: portage-2.2.0_alpha151
---
sci-mathematics/pulp/ChangeLog | 9 ++++++-
sci-mathematics/pulp/metadata.xml | 3 +-
sci-mathematics/pulp/pulp-1.4.9.ebuild | 41 ------------------------------
sci-mathematics/pulp/pulp-1.5.3.ebuild | 43 ++++++++++++++++++++++++++++++++
4 files changed, 52 insertions(+), 44 deletions(-)
diff --git a/sci-mathematics/pulp/ChangeLog b/sci-mathematics/pulp/ChangeLog
index 306cf7d..7f207db 100644
--- a/sci-mathematics/pulp/ChangeLog
+++ b/sci-mathematics/pulp/ChangeLog
@@ -1,7 +1,14 @@
# ChangeLog for sci-mathematics/pulp
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*pulp-1.5.3 (14 Jan 2013)
+
+ 14 Jan 2013; Justin Lecher <jlec@gentoo.org> -pulp-1.4.9.ebuild,
+ +pulp-1.5.3.ebuild, metadata.xml:
+ Move to EAPI=5, distutils-r1.eclass and virtual/pyparsing, #449564; unbundle
+ sci-libs/coinor-cbc
+
*pulp-1.4.9 (02 Dec 2011)
02 Dec 2011; Tim Cera <tim@cerazone.net> +pulp-1.4.9.ebuild, +metadata.xml:
diff --git a/sci-mathematics/pulp/metadata.xml b/sci-mathematics/pulp/metadata.xml
index 0923903..897aa2e 100644
--- a/sci-mathematics/pulp/metadata.xml
+++ b/sci-mathematics/pulp/metadata.xml
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <herd>no-herd</herd>
- <longdescription></longdescription>
+ <herd>sci</herd>
</pkgmetadata>
diff --git a/sci-mathematics/pulp/pulp-1.4.9.ebuild b/sci-mathematics/pulp/pulp-1.4.9.ebuild
deleted file mode 100644
index 1d21097..0000000
--- a/sci-mathematics/pulp/pulp-1.4.9.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-# Ebuild generated by g-pypi 0.1
-
-EAPI="3"
-PYTHON_DEPEND="2:2.5"
-SUPPORT_PYTHON_ABIS="1"
-
-inherit distutils
-
-MY_PN="PuLP"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="A Python linear programming wrapper that creates MPS/LP files,
-calls solvers, and presents results."
-
-HOMEPAGE="http://pulp-or.googlecode.com/"
-SRC_URI="mirror://pypi/packages/source/P/PuLP/${MY_P}.tar.gz"
-
-LICENSE="BSD-2"
-KEYWORDS="~amd64"
-SLOT="0"
-IUSE="examples"
-
-DEPEND="dev-python/setuptools"
-RDEPEND=">=dev-python/pyparsing-1.5.2
- >=sci-mathematics/glpk-4.35
- dev-python/setuptools"
-
-RESTRICT_PYTHON_ABIS="2.4 3.*"
-
-S="${WORKDIR}/${MY_P}"
-
-src_install() {
- distutils_src_install
- if use examples; then
- insinto /usr/share/doc/"${PF}"/
- doins -r examples
- fi
-}
diff --git a/sci-mathematics/pulp/pulp-1.5.3.ebuild b/sci-mathematics/pulp/pulp-1.5.3.ebuild
new file mode 100644
index 0000000..6788d05
--- /dev/null
+++ b/sci-mathematics/pulp/pulp-1.5.3.ebuild
@@ -0,0 +1,43 @@
+# 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} pypy{1_9,2_0} )
+
+inherit distutils-r1
+
+MY_PN="PuLP"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Create MPS/LP files, call solvers, and present results"
+HOMEPAGE="http://pulp-or.googlecode.com/"
+SRC_URI="mirror://pypi/P/PuLP/${MY_P}.tar.gz"
+
+LICENSE="BSD-2"
+KEYWORDS="~amd64"
+SLOT="0"
+IUSE="examples"
+
+DEPEND="dev-python/setuptools"
+RDEPEND="
+ dev-python/setuptools
+ sci-libs/coinor-cbc
+ >=sci-mathematics/glpk-4.35
+ virtual/pyparsing"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+ rm -rf ./src/pulp/solverdir/cbc* || die
+ distutils-r1_src_prepare
+}
+
+src_install() {
+ distutils-r1_src_install
+ if use examples; then
+ insinto /usr/share/doc/"${PF}"/
+ doins -r examples
+ fi
+}
next reply other threads:[~2013-01-15 15:27 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-15 15:27 Justin Lecher [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-06-19 10:41 [gentoo-commits] proj/sci:master commit in: sci-mathematics/pulp/ Andrew Ammerlaan
2024-06-11 9:49 Andrew Ammerlaan
2023-05-02 12:25 Andrew Ammerlaan
2023-03-17 13:35 Andrew Ammerlaan
2021-01-19 17:19 Andrew Ammerlaan
2020-12-31 17:26 Aisha Tammy
2020-12-30 12:44 Aisha Tammy
2016-01-25 11:47 Justin Lecher
2014-04-09 11:07 Justin Lecher
2011-12-03 2:01 Tim Cera
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1358168930.504ac0700b4a8a5830c30d4a3675d360e1a5b429.jlec@gentoo \
--to=jlec@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox