* [gentoo-commits] gentoo-x86 commit in dev-python/mpmath: mpmath-0.17.ebuild ChangeLog
@ 2011-02-12 19:34 Andrey Grozin (grozin)
0 siblings, 0 replies; 6+ messages in thread
From: Andrey Grozin (grozin) @ 2011-02-12 19:34 UTC (permalink / raw
To: gentoo-commits
grozin 11/02/12 19:34:11
Modified: ChangeLog
Added: mpmath-0.17.ebuild
Log:
Version bump, python-3 now supported
(Portage version: 2.2.0_alpha23/cvs/Linux i686)
Revision Changes Path
1.18 dev-python/mpmath/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/ChangeLog?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/ChangeLog?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/ChangeLog?r1=1.17&r2=1.18
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/mpmath/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog 13 Dec 2010 16:22:53 -0000 1.17
+++ ChangeLog 12 Feb 2011 19:34:11 -0000 1.18
@@ -1,6 +1,12 @@
# ChangeLog for dev-python/mpmath
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/ChangeLog,v 1.17 2010/12/13 16:22:53 arfrever Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/ChangeLog,v 1.18 2011/02/12 19:34:11 grozin Exp $
+
+*mpmath-0.17 (12 Feb 2011)
+
+ 12 Feb 2011; Andrey Grozin <grozin@gentoo.org> +mpmath-0.17.ebuild,
+ +files/mpmath.patch:
+ Version bump, python-3 now supported
13 Dec 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
-mpmath-0.15.ebuild:
1.1 dev-python/mpmath/mpmath-0.17.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild?rev=1.1&content-type=text/plain
Index: mpmath-0.17.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild,v 1.1 2011/02/12 19:34:11 grozin Exp $
EAPI="3"
PYTHON_DEPEND="*:2.5"
SUPPORT_PYTHON_ABIS="1"
DISTUTILS_SRC_TEST="py.test"
inherit distutils eutils
MY_PN=${PN}-all
MY_P=${MY_PN}-${PV}
DESCRIPTION="Python library for arbitrary-precision floating-point arithmetic"
HOMEPAGE="http://code.google.com/p/mpmath/ http://pypi.python.org/pypi/mpmath"
SRC_URI="http://mpmath.googlecode.com/files/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~x86-linux ~ppc-macos"
IUSE="doc examples gmp matplotlib"
RDEPEND="gmp? ( dev-python/gmpy )
matplotlib? ( dev-python/matplotlib )"
DEPEND="${RDEPEND}
doc? ( dev-python/sphinx )"
DOCS="CHANGES"
S="${WORKDIR}/${MY_P}"
src_prepare() {
distutils_src_prepare
# don't install tests
epatch "${FILESDIR}/${PN}.patch"
# this fails with the current version of dev-python/py
rm -f ${PN}/conftest.py
# this test requires X
rm -f ${PN}/tests/test_visualization.py
}
src_compile() {
distutils_src_compile
if use doc; then
einfo "Generation of documentation"
pushd doc > /dev/null
PYTHONPATH="${S}/build-$(PYTHON -f --ABI)/lib" "$(PYTHON -f)" build.py || die "Generation of documentation failed"
popd > /dev/null
fi
}
src_install() {
distutils_src_install
if use doc; then
dohtml -r doc/build/* || die "Installation of documentation failed"
fi
if use examples; then
insinto /usr/share/doc/${PF}/examples
doins demo/* || die "Installation of examples failed"
fi
rm_unneeded() {
local path="${D}$(python_get_sitedir)/${PN}/libmp/"
if [[ "${PYTHON_ABI}" == 2.* ]]; then
rm -f "${path}exec_py3.py"
else if [[ "${PYTHON_ABI}" == 3.* ]]; then
rm -f "${path}exec_py2.py"
fi
fi
}
python_execute_function rm_unneeded
}
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/mpmath: mpmath-0.17.ebuild ChangeLog
@ 2011-05-18 21:04 Andrey Grozin (grozin)
0 siblings, 0 replies; 6+ messages in thread
From: Andrey Grozin (grozin) @ 2011-05-18 21:04 UTC (permalink / raw
To: gentoo-commits
grozin 11/05/18 21:04:30
Modified: mpmath-0.17.ebuild ChangeLog
Log:
Fixing prefix-related bug #367461, thanks to Steven Trogdon <strogdon@d.umn.edu>
(Portage version: 2.2.0_alpha34/cvs/Linux i686)
Revision Changes Path
1.2 dev-python/mpmath/mpmath-0.17.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild?r1=1.1&r2=1.2
Index: mpmath-0.17.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mpmath-0.17.ebuild 12 Feb 2011 19:34:11 -0000 1.1
+++ mpmath-0.17.ebuild 18 May 2011 21:04:30 -0000 1.2
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild,v 1.1 2011/02/12 19:34:11 grozin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild,v 1.2 2011/05/18 21:04:30 grozin Exp $
EAPI="3"
PYTHON_DEPEND="*:2.5"
@@ -65,7 +65,7 @@
fi
rm_unneeded() {
- local path="${D}$(python_get_sitedir)/${PN}/libmp/"
+ local path="${ED}$(python_get_sitedir)/${PN}/libmp/"
if [[ "${PYTHON_ABI}" == 2.* ]]; then
rm -f "${path}exec_py3.py"
else if [[ "${PYTHON_ABI}" == 3.* ]]; then
1.19 dev-python/mpmath/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/ChangeLog?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/ChangeLog?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/ChangeLog?r1=1.18&r2=1.19
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/mpmath/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog 12 Feb 2011 19:34:11 -0000 1.18
+++ ChangeLog 18 May 2011 21:04:30 -0000 1.19
@@ -1,6 +1,10 @@
# ChangeLog for dev-python/mpmath
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/ChangeLog,v 1.18 2011/02/12 19:34:11 grozin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/ChangeLog,v 1.19 2011/05/18 21:04:30 grozin Exp $
+
+ 18 May 2011; Andrey Grozin <grozin@gentoo.org> mpmath-0.17.ebuild:
+ Fixing prefix-related bug #367461, thanks to Steven Trogdon
+ <strogdon@d.umn.edu>
*mpmath-0.17 (12 Feb 2011)
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/mpmath: mpmath-0.17.ebuild ChangeLog
@ 2012-06-26 3:13 Sebastien Fabbro (bicatali)
0 siblings, 0 replies; 6+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2012-06-26 3:13 UTC (permalink / raw
To: gentoo-commits
bicatali 12/06/26 03:13:34
Modified: mpmath-0.17.ebuild ChangeLog
Log:
Fixed tests for python-3.2, thanks Arfrever. Some cleaning.
(Portage version: 2.1.11.1/cvs/Linux x86_64)
Revision Changes Path
1.4 dev-python/mpmath/mpmath-0.17.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild?r1=1.3&r2=1.4
Index: mpmath-0.17.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- mpmath-0.17.ebuild 20 Jun 2012 21:05:06 -0000 1.3
+++ mpmath-0.17.ebuild 26 Jun 2012 03:13:34 -0000 1.4
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild,v 1.3 2012/06/20 21:05:06 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild,v 1.4 2012/06/26 03:13:34 bicatali Exp $
EAPI=4
@@ -37,6 +37,7 @@
# don't install tests
epatch "${FILESDIR}/${PN}.patch"
+ epatch "${FILESDIR}"/${P}-python-3.2.patch
# this fails with the current version of dev-python/py
rm -f ${PN}/conftest.py
@@ -67,9 +68,7 @@
src_install() {
distutils_src_install
- if use doc; then
- dohtml -r doc/build/* || die "Installation of documentation failed"
- fi
+ use doc && dohtml -r doc/build/*
if use examples; then
insinto /usr/share/doc/${PF}/examples
@@ -80,10 +79,9 @@
local path="${ED}$(python_get_sitedir)/${PN}/libmp/"
if [[ "${PYTHON_ABI}" == 2.* ]]; then
rm -f "${path}exec_py3.py"
- else if [[ "${PYTHON_ABI}" == 3.* ]]; then
+ elif [[ "${PYTHON_ABI}" == 3.* ]]; then
rm -f "${path}exec_py2.py"
fi
- fi
}
python_execute_function rm_unneeded
1.21 dev-python/mpmath/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/ChangeLog?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/ChangeLog?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/ChangeLog?r1=1.20&r2=1.21
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/mpmath/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog 20 Jun 2012 21:05:06 -0000 1.20
+++ ChangeLog 26 Jun 2012 03:13:34 -0000 1.21
@@ -1,6 +1,10 @@
# ChangeLog for dev-python/mpmath
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/ChangeLog,v 1.20 2012/06/20 21:05:06 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/ChangeLog,v 1.21 2012/06/26 03:13:34 bicatali Exp $
+
+ 26 Jun 2012; Sébastien Fabbro <bicatali@gentoo.org>
+ +files/mpmath-0.17-python-3.2.patch, mpmath-0.17.ebuild:
+ Fixed tests for python-3.2, thanks Arfrever. Some cleaning.
20 Jun 2012; Justin Lecher <jlec@gentoo.org> mpmath-0.16.ebuild,
mpmath-0.17.ebuild, metadata.xml:
@@ -100,4 +104,3 @@
08 Jul 2008; Andrey Grozin <grozin@gentoo.org> +metadata.xml,
+mpmath-0.8.ebuild:
Initial import
-
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/mpmath: mpmath-0.17.ebuild ChangeLog
@ 2012-06-26 5:54 Justin Lecher (jlec)
0 siblings, 0 replies; 6+ messages in thread
From: Justin Lecher (jlec) @ 2012-06-26 5:54 UTC (permalink / raw
To: gentoo-commits
jlec 12/06/26 05:54:26
Modified: mpmath-0.17.ebuild ChangeLog
Log:
dev-python/mpmath: Add missing dep on pytest for tests, remove src_test and use eclass default, restrict pypy
(Portage version: 2.2.0_alpha113/cvs/Linux x86_64)
Revision Changes Path
1.5 dev-python/mpmath/mpmath-0.17.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild?r1=1.4&r2=1.5
Index: mpmath-0.17.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- mpmath-0.17.ebuild 26 Jun 2012 03:13:34 -0000 1.4
+++ mpmath-0.17.ebuild 26 Jun 2012 05:54:25 -0000 1.5
@@ -1,11 +1,12 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild,v 1.4 2012/06/26 03:13:34 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild,v 1.5 2012/06/26 05:54:25 jlec Exp $
EAPI=4
PYTHON_DEPEND="*:2.5"
SUPPORT_PYTHON_ABIS="1"
+RESTRICT_PYTHON_ABIS="*-pypy-*"
DISTUTILS_SRC_TEST="py.test"
inherit distutils eutils
@@ -26,7 +27,8 @@
gmp? ( dev-python/gmpy )
matplotlib? ( dev-python/matplotlib )"
DEPEND="${RDEPEND}
- doc? ( dev-python/sphinx )"
+ doc? ( dev-python/sphinx )
+ test? ( dev-python/pytest )"
S="${WORKDIR}/${MY_P}"
@@ -36,8 +38,9 @@
distutils_src_prepare
# don't install tests
- epatch "${FILESDIR}/${PN}.patch"
- epatch "${FILESDIR}"/${P}-python-3.2.patch
+ epatch \
+ "${FILESDIR}/${PN}.patch" \
+ "${FILESDIR}/${P}-python-3.2.patch"
# this fails with the current version of dev-python/py
rm -f ${PN}/conftest.py
@@ -57,14 +60,6 @@
fi
}
-src_test() {
- testing() {
- cd "${S}"/mpmath/tests
- PYTHONPATH="${S}/build-${PYTHON_ABI}/lib" "$(PYTHON)" runtests.py
- }
- python_execute_function testing
-}
-
src_install() {
distutils_src_install
1.22 dev-python/mpmath/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/ChangeLog?rev=1.22&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/ChangeLog?rev=1.22&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/ChangeLog?r1=1.21&r2=1.22
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/mpmath/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog 26 Jun 2012 03:13:34 -0000 1.21
+++ ChangeLog 26 Jun 2012 05:54:25 -0000 1.22
@@ -1,6 +1,10 @@
# ChangeLog for dev-python/mpmath
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/ChangeLog,v 1.21 2012/06/26 03:13:34 bicatali Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/ChangeLog,v 1.22 2012/06/26 05:54:25 jlec Exp $
+
+ 26 Jun 2012; Justin Lecher <jlec@gentoo.org> mpmath-0.17.ebuild:
+ Add missing dep on pytest for tests, remove src_test and use eclass default,
+ restrict pypy
26 Jun 2012; Sébastien Fabbro <bicatali@gentoo.org>
+files/mpmath-0.17-python-3.2.patch, mpmath-0.17.ebuild:
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/mpmath: mpmath-0.17.ebuild ChangeLog
@ 2012-06-26 6:58 Justin Lecher (jlec)
0 siblings, 0 replies; 6+ messages in thread
From: Justin Lecher (jlec) @ 2012-06-26 6:58 UTC (permalink / raw
To: gentoo-commits
jlec 12/06/26 06:58:04
Modified: mpmath-0.17.ebuild ChangeLog
Log:
dev-python/mpmath: Remove test dependency, as it is automatically added by eclass
(Portage version: 2.2.0_alpha113/cvs/Linux x86_64)
Revision Changes Path
1.6 dev-python/mpmath/mpmath-0.17.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild?r1=1.5&r2=1.6
Index: mpmath-0.17.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- mpmath-0.17.ebuild 26 Jun 2012 05:54:25 -0000 1.5
+++ mpmath-0.17.ebuild 26 Jun 2012 06:58:04 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild,v 1.5 2012/06/26 05:54:25 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild,v 1.6 2012/06/26 06:58:04 jlec Exp $
EAPI=4
@@ -27,8 +27,7 @@
gmp? ( dev-python/gmpy )
matplotlib? ( dev-python/matplotlib )"
DEPEND="${RDEPEND}
- doc? ( dev-python/sphinx )
- test? ( dev-python/pytest )"
+ doc? ( dev-python/sphinx )"
S="${WORKDIR}/${MY_P}"
1.23 dev-python/mpmath/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/ChangeLog?r1=1.22&r2=1.23
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/mpmath/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog 26 Jun 2012 05:54:25 -0000 1.22
+++ ChangeLog 26 Jun 2012 06:58:04 -0000 1.23
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/mpmath
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/ChangeLog,v 1.22 2012/06/26 05:54:25 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/ChangeLog,v 1.23 2012/06/26 06:58:04 jlec Exp $
+
+ 26 Jun 2012; Justin Lecher <jlec@gentoo.org> mpmath-0.17.ebuild:
+ Remove test dependency, as it is automatically added by eclass
26 Jun 2012; Justin Lecher <jlec@gentoo.org> mpmath-0.17.ebuild:
Add missing dep on pytest for tests, remove src_test and use eclass default,
^ permalink raw reply [flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/mpmath: mpmath-0.17.ebuild ChangeLog
@ 2012-06-26 7:01 Justin Lecher (jlec)
0 siblings, 0 replies; 6+ messages in thread
From: Justin Lecher (jlec) @ 2012-06-26 7:01 UTC (permalink / raw
To: gentoo-commits
jlec 12/06/26 07:01:58
Modified: mpmath-0.17.ebuild ChangeLog
Log:
dev-python/mpmath: Drop unnecessary PYTHON_DEPEND
(Portage version: 2.2.0_alpha113/cvs/Linux x86_64)
Revision Changes Path
1.7 dev-python/mpmath/mpmath-0.17.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild?r1=1.6&r2=1.7
Index: mpmath-0.17.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- mpmath-0.17.ebuild 26 Jun 2012 06:58:04 -0000 1.6
+++ mpmath-0.17.ebuild 26 Jun 2012 07:01:58 -0000 1.7
@@ -1,10 +1,9 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild,v 1.6 2012/06/26 06:58:04 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/mpmath-0.17.ebuild,v 1.7 2012/06/26 07:01:58 jlec Exp $
EAPI=4
-PYTHON_DEPEND="*:2.5"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="*-pypy-*"
DISTUTILS_SRC_TEST="py.test"
@@ -15,7 +14,7 @@
MY_P=${MY_PN}-${PV}
DESCRIPTION="Python library for arbitrary-precision floating-point arithmetic"
-HOMEPAGE="http://code.google.com/p/mpmath/ http://pypi.python.org/pypi/mpmath"
+HOMEPAGE="http://code.google.com/p/mpmath/ http://pypi.python.org/pypi/mpmath/"
SRC_URI="http://mpmath.googlecode.com/files/${MY_P}.tar.gz"
LICENSE="BSD"
@@ -36,7 +35,6 @@
src_prepare() {
distutils_src_prepare
- # don't install tests
epatch \
"${FILESDIR}/${PN}.patch" \
"${FILESDIR}/${P}-python-3.2.patch"
1.24 dev-python/mpmath/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/ChangeLog?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/ChangeLog?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/mpmath/ChangeLog?r1=1.23&r2=1.24
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/mpmath/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog 26 Jun 2012 06:58:04 -0000 1.23
+++ ChangeLog 26 Jun 2012 07:01:58 -0000 1.24
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/mpmath
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/ChangeLog,v 1.23 2012/06/26 06:58:04 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/mpmath/ChangeLog,v 1.24 2012/06/26 07:01:58 jlec Exp $
+
+ 26 Jun 2012; Justin Lecher <jlec@gentoo.org> mpmath-0.17.ebuild:
+ Drop unnecessary PYTHON_DEPEND
26 Jun 2012; Justin Lecher <jlec@gentoo.org> mpmath-0.17.ebuild:
Remove test dependency, as it is automatically added by eclass
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2012-06-26 7:02 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-26 5:54 [gentoo-commits] gentoo-x86 commit in dev-python/mpmath: mpmath-0.17.ebuild ChangeLog Justin Lecher (jlec)
-- strict thread matches above, loose matches on Subject: below --
2012-06-26 7:01 Justin Lecher (jlec)
2012-06-26 6:58 Justin Lecher (jlec)
2012-06-26 3:13 Sebastien Fabbro (bicatali)
2011-05-18 21:04 Andrey Grozin (grozin)
2011-02-12 19:34 Andrey Grozin (grozin)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox