Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
xarthisius 12/05/19 10:27:54
Modified: ChangeLog
Added: gevent-1.0_beta2.ebuild
Log:
Version bump with beta release (masked)
(Portage version: 2.2.0_alpha104/cvs/Linux x86_64)
Revision Changes Path
1.3 dev-python/gevent/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gevent/ChangeLog?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gevent/ChangeLog?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gevent/ChangeLog?r1=1.2&r2=1.3
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/gevent/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog 18 May 2012 11:37:25 -0000 1.2
+++ ChangeLog 19 May 2012 10:27:54 -0000 1.3
@@ -1,6 +1,11 @@
# ChangeLog for dev-python/gevent
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/gevent/ChangeLog,v 1.2 2012/05/18 11:37:25 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/gevent/ChangeLog,v 1.3 2012/05/19 10:27:54 xarthisius Exp $
+
+*gevent-1.0_beta2 (19 May 2012)
+
+ 19 May 2012; Kacper Kowalik <xarthisius@g.o> +gevent-1.0_beta2.ebuild:
+ Version bump with beta release (masked)
18 May 2012; Kacper Kowalik <xarthisius@g.o> gevent-0.13.7.ebuild:
Fix vars order
1.1 dev-python/gevent/gevent-1.0_beta2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gevent/gevent-1.0_beta2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/gevent/gevent-1.0_beta2.ebuild?rev=1.1&content-type=text/plain
Index: gevent-1.0_beta2.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/gevent/gevent-1.0_beta2.ebuild,v 1.1 2012/05/19 10:27:54 xarthisius Exp $
EAPI=4
SUPPORT_PYTHON_ABIS=1
RESTRICT_PYTHON_ABIS="2.5 3.* 2.7-pypy-* *-jython"
PYTHON_USE_WITH="ssl"
#2.5 needs http://pypi.python.org/pypi/ssl
inherit distutils
MY_PV=${PV/_beta/b}
MY_P=${PN}-${MY_PV}
DESCRIPTION="Python networking library that uses greenlet to provide synchronous API"
HOMEPAGE="http://code.google.com/p/gevent/ http://pypi.python.org/pypi/gevent/"
SRC_URI="http://${PN}.googlecode.com/files/${MY_P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc examples"
RDEPEND="dev-libs/libev
net-dns/c-ares
dev-python/greenlet"
DEPEND="${RDEPEND}
dev-python/setuptools
doc? ( dev-python/sphinx )"
PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
DOCS="AUTHORS changelog.rst TODO README.rst"
RESTRICT="test" # long and few failures
S=${WORKDIR}/${MY_P}
src_prepare() {
distutils_src_prepare
rm -rf {libev,c-ares}
}
src_compile() {
distutils_src_compile
if use doc; then
PYTHONPATH="$(ls -d ${S}/build-$(PYTHON -f --ABI)/lib.*)" emake html -C doc
fi
}
src_test() {
pushd greentest &> /dev/null
testing() {
PYTHONPATH="$(ls -d ../build-${PYTHON_ABI}/lib.*)" "$(PYTHON)" testrunner.py
}
python_execute_function testing
popd &> /dev/null
}
src_install() {
distutils_src_install
if use doc; then
dohtml -r doc/_build/html/
fi
if use examples; then
insinto /usr/share/doc/${PF}/examples
doins -r examples/*
fi
}
|
|