diff options
author | Tim Harder <radhermit@gentoo.org> | 2014-02-19 09:24:44 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2014-02-19 09:24:44 +0000 |
commit | ac0408f0af2a3569780314fbf7fbad82a6b40b9d (patch) | |
tree | 6b5dac21fedda9e244630d8b60302c9cf6d65edc /net-zope | |
parent | Moved use conditionals from global scope to pkg_setup() (bug #499260). Remove... (diff) | |
download | gentoo-2-ac0408f0af2a3569780314fbf7fbad82a6b40b9d.tar.gz gentoo-2-ac0408f0af2a3569780314fbf7fbad82a6b40b9d.tar.bz2 gentoo-2-ac0408f0af2a3569780314fbf7fbad82a6b40b9d.zip |
Version bump.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'net-zope')
-rw-r--r-- | net-zope/zope-interface/ChangeLog | 9 | ||||
-rw-r--r-- | net-zope/zope-interface/zope-interface-4.1.0.ebuild | 45 |
2 files changed, 52 insertions, 2 deletions
diff --git a/net-zope/zope-interface/ChangeLog b/net-zope/zope-interface/ChangeLog index 9824ee50d5f4..1313d3619826 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-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-zope/zope-interface/ChangeLog,v 1.50 2013/11/01 00:29:15 yac Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-zope/zope-interface/ChangeLog,v 1.51 2014/02/19 09:24:43 radhermit Exp $ + +*zope-interface-4.1.0 (19 Feb 2014) + + 19 Feb 2014; Tim Harder <radhermit@gentoo.org> +zope-interface-4.1.0.ebuild: + Version bump. 01 Nov 2013; Jan Matejka <yac@gentoo.org> zope-interface-4.0.5.ebuild: fix bug 486840 - missing unzip DEPEND diff --git a/net-zope/zope-interface/zope-interface-4.1.0.ebuild b/net-zope/zope-interface/zope-interface-4.1.0.ebuild new file mode 100644 index 000000000000..07fe3a8f1adf --- /dev/null +++ b/net-zope/zope-interface/zope-interface-4.1.0.ebuild @@ -0,0 +1,45 @@ +# 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.0.ebuild,v 1.1 2014/02/19 09:24:44 radhermit Exp $ + +EAPI=5 + +# Tests fail with py3.1 +PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} 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 +} |