diff options
author | Tim Harder <radhermit@gentoo.org> | 2014-04-03 00:48:16 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2014-04-03 00:48:16 +0000 |
commit | 155179b2ba2516720594e086263893e61854498f (patch) | |
tree | 7a5593bd5315f9aff0bee75c56da302282c39d99 /net-zope | |
parent | Add python3_4 support and fix tests (bug #457048). (diff) | |
download | gentoo-2-155179b2ba2516720594e086263893e61854498f.tar.gz gentoo-2-155179b2ba2516720594e086263893e61854498f.tar.bz2 gentoo-2-155179b2ba2516720594e086263893e61854498f.zip |
Version bump, add python3_4 support.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'net-zope')
-rw-r--r-- | net-zope/zope-interface/ChangeLog | 7 | ||||
-rw-r--r-- | net-zope/zope-interface/zope-interface-4.1.1.ebuild | 43 |
2 files changed, 49 insertions, 1 deletions
diff --git a/net-zope/zope-interface/ChangeLog b/net-zope/zope-interface/ChangeLog index c171d59fbe93..a7789ed3af35 100644 --- a/net-zope/zope-interface/ChangeLog +++ b/net-zope/zope-interface/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-zope/zope-interface # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-zope/zope-interface/ChangeLog,v 1.53 2014/03/31 21:16:29 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-zope/zope-interface/ChangeLog,v 1.54 2014/04/03 00:48:16 radhermit Exp $ + +*zope-interface-4.1.1 (03 Apr 2014) + + 03 Apr 2014; Tim Harder <radhermit@gentoo.org> +zope-interface-4.1.1.ebuild: + Version bump, add python3_4 support. 31 Mar 2014; Michał Górny <mgorny@gentoo.org> zope-interface-4.0.5.ebuild, zope-interface-4.1.0.ebuild: diff --git a/net-zope/zope-interface/zope-interface-4.1.1.ebuild b/net-zope/zope-interface/zope-interface-4.1.1.ebuild new file mode 100644 index 000000000000..c33b2a37dd0a --- /dev/null +++ b/net-zope/zope-interface/zope-interface-4.1.1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-zope/zope-interface/zope-interface-4.1.1.ebuild,v 1.1 2014/04/03 00:48:16 radhermit Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} pypy pypy2_0 ) + +inherit distutils-r1 flag-o-matic + +MY_PN=${PN/-/.} +MY_P=${MY_PN}-${PV} + +DESCRIPTION="Interfaces for Python" +HOMEPAGE="http://pypi.python.org/pypi/zope.interface" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="ZPL" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="" + +# net-zope/zope-fixers is required for building with Python 3. +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + net-zope/zope-fixers[$(python_gen_usedep 'python3*')]" +RDEPEND="" + +S=${WORKDIR}/${MY_P} + +# until all deps are in the tree (bug #442794) +RESTRICT="test" + +python_compile() { + if [[ ${EPYTHON} != python3* ]]; then + local CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" + append-flags -fno-strict-aliasing + fi + + distutils-r1_python_compile +} + +python_test() { + esetup.py test +} |