* [gentoo-commits] gentoo-x86 commit in dev-python/greenlet: greenlet-0.4.0-r1.ebuild ChangeLog
@ 2013-02-04 23:19 Michal Gorny (mgorny)
0 siblings, 0 replies; 2+ messages in thread
From: Michal Gorny (mgorny) @ 2013-02-04 23:19 UTC (permalink / raw
To: gentoo-commits
mgorny 13/02/04 23:19:48
Modified: ChangeLog
Added: greenlet-0.4.0-r1.ebuild
Log:
Migrate to distutils-r1.
(Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key 42B9401D)
Revision Changes Path
1.11 dev-python/greenlet/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/greenlet/ChangeLog?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/greenlet/ChangeLog?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/greenlet/ChangeLog?r1=1.10&r2=1.11
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/greenlet/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog 6 Dec 2012 17:35:30 -0000 1.10
+++ ChangeLog 4 Feb 2013 23:19:48 -0000 1.11
@@ -1,6 +1,11 @@
# ChangeLog for dev-python/greenlet
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/greenlet/ChangeLog,v 1.10 2012/12/06 17:35:30 bicatali Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/greenlet/ChangeLog,v 1.11 2013/02/04 23:19:48 mgorny Exp $
+
+*greenlet-0.4.0-r1 (04 Feb 2013)
+
+ 04 Feb 2013; Michał Górny <mgorny@gentoo.org> +greenlet-0.4.0-r1.ebuild:
+ Migrate to distutils-r1.
06 Dec 2012; Sébastien Fabbro <bicatali@gentoo.org> greenlet-0.4.0.ebuild:
Keyword amd64-linux and x86-linux
1.1 dev-python/greenlet/greenlet-0.4.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/greenlet/greenlet-0.4.0-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/greenlet/greenlet-0.4.0-r1.ebuild?rev=1.1&content-type=text/plain
Index: greenlet-0.4.0-r1.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/greenlet/greenlet-0.4.0-r1.ebuild,v 1.1 2013/02/04 23:19:48 mgorny Exp $
EAPI=5
PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} )
inherit distutils-r1 flag-o-matic
DESCRIPTION="Lightweight in-process concurrent programming"
HOMEPAGE="http://pypi.python.org/pypi/greenlet/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
IUSE="doc"
DEPEND="app-arch/unzip
dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
RDEPEND=""
# Build system symlinks the built libraries back into sourcedir.
# https://github.com/python-greenlet/greenlet/issues/26
DISTUTILS_IN_SOURCE_BUILD=1
python_compile() {
if [[ ${EPYTHON} == python2* ]]; then
local CFLAGS=${CFLAGS} CXXFLAGS=${CXXFLAGS}
append-flags -fno-strict-aliasing
fi
distutils-r1_python_compile
}
python_compile_all() {
use doc && emake -C doc html
}
python_test() {
esetup.py test
}
python_install_all() {
use doc && local HTML_DOCS=( doc/_build/html/. )
distutils-r1_python_install_all
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/greenlet: greenlet-0.4.0-r1.ebuild ChangeLog
@ 2013-02-12 11:49 Michal Gorny (mgorny)
0 siblings, 0 replies; 2+ messages in thread
From: Michal Gorny (mgorny) @ 2013-02-12 11:49 UTC (permalink / raw
To: gentoo-commits
mgorny 13/02/12 11:49:58
Modified: greenlet-0.4.0-r1.ebuild ChangeLog
Log:
Add a note that greenlet is built-in in PyPy.
(Portage version: 2.2.0_alpha162/cvs/Linux x86_64, signed Manifest commit with key 42B9401D)
Revision Changes Path
1.2 dev-python/greenlet/greenlet-0.4.0-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/greenlet/greenlet-0.4.0-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/greenlet/greenlet-0.4.0-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/greenlet/greenlet-0.4.0-r1.ebuild?r1=1.1&r2=1.2
Index: greenlet-0.4.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/greenlet/greenlet-0.4.0-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- greenlet-0.4.0-r1.ebuild 4 Feb 2013 23:19:48 -0000 1.1
+++ greenlet-0.4.0-r1.ebuild 12 Feb 2013 11:49:58 -0000 1.2
@@ -1,9 +1,10 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/greenlet/greenlet-0.4.0-r1.ebuild,v 1.1 2013/02/04 23:19:48 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/greenlet/greenlet-0.4.0-r1.ebuild,v 1.2 2013/02/12 11:49:58 mgorny Exp $
EAPI=5
+# Note: greenlet is built-in in pypy
PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} )
inherit distutils-r1 flag-o-matic
@@ -22,10 +23,6 @@
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
RDEPEND=""
-# Build system symlinks the built libraries back into sourcedir.
-# https://github.com/python-greenlet/greenlet/issues/26
-DISTUTILS_IN_SOURCE_BUILD=1
-
python_compile() {
if [[ ${EPYTHON} == python2* ]]; then
local CFLAGS=${CFLAGS} CXXFLAGS=${CXXFLAGS}
@@ -41,7 +38,7 @@
}
python_test() {
- esetup.py test
+ "${PYTHON}" run-tests.py -n || die "Tests fail with ${EPYTHON}"
}
python_install_all() {
1.12 dev-python/greenlet/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/greenlet/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/greenlet/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/greenlet/ChangeLog?r1=1.11&r2=1.12
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/greenlet/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog 4 Feb 2013 23:19:48 -0000 1.11
+++ ChangeLog 12 Feb 2013 11:49:58 -0000 1.12
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/greenlet
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/greenlet/ChangeLog,v 1.11 2013/02/04 23:19:48 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/greenlet/ChangeLog,v 1.12 2013/02/12 11:49:58 mgorny Exp $
+
+ 12 Feb 2013; Michał Górny <mgorny@gentoo.org> greenlet-0.4.0-r1.ebuild:
+ Add a note that greenlet is built-in in PyPy.
*greenlet-0.4.0-r1 (04 Feb 2013)
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-02-12 11:50 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-04 23:19 [gentoo-commits] gentoo-x86 commit in dev-python/greenlet: greenlet-0.4.0-r1.ebuild ChangeLog Michal Gorny (mgorny)
-- strict thread matches above, loose matches on Subject: below --
2013-02-12 11:49 Michal Gorny (mgorny)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox