dev-python/zope-interface: version bump to 4.3.1

This commit is contained in:
Tim Harder
2016-09-01 02:17:21 -04:00
parent 98d91bdd59
commit f90e9965ca
2 changed files with 41 additions and 0 deletions

View File

@@ -2,3 +2,4 @@ DIST zope.interface-4.1.1.tar.gz 864139 SHA256 91cba7b7cd7cb82f6f4e023fe77f94dc3
DIST zope.interface-4.1.2.tar.gz 919277 SHA256 441fefcac1fbac57c55239452557d3598571ab82395198b2565a29d45d1232f6 SHA512 b51f651ced7eb070db104e057a910b05a985999830551a6a7f83dcd2a565d637352b2dcf3b8517c682bed9365b31baf364f1863ff0e5b40df76668ea0b23a61e WHIRLPOOL 14729bacea73848508d67124d26eb966ec1ccdb14aeb9aa4ef0a0349d7241319f5f1b684fc9a6f4d6efdbed6ae120051c383aad67525dad2b4fca40fced2927d
DIST zope.interface-4.1.3.tar.gz 141561 SHA256 2e221a9eec7ccc58889a278ea13dcfed5ef939d80b07819a9a8b3cb1c681484f SHA512 4579b7f3f5ae9cde83fcba24147f7480172015d3ec7480e4fac40d06f7846cf4fd1da966fc3e5c12c3f7058762052ef33d0535c685b120c1370d09d2274780e2 WHIRLPOOL 41b9eef46f581455346ed254aa73c2a2cb5dea0c27f506412fe90c66eaebeaa4fdb88d58e7ba4a0e9a7beb22df3f7d9039fcaac1961fe06fb9684f8f8509a243
DIST zope.interface-4.2.0.tar.gz 146335 SHA256 36762743940a075283e1fb22a2ec9e8231871dace2aa00599511ddc4edf0f8f9 SHA512 737d6e3af994a630d3de0dbfabc4f2e578cf943466bf1411358c0421db81e6f98067900e3878eb5f3f48922fb60754c56368d70d12aa65c7c8bcadc42a8402fd WHIRLPOOL a6ef6eb5b1cabbbe126f5b7438ca8bfc8d1aff1f34cb4f75da68db117037c85cafed47fc19a7720b2ba67a6c296e538a44aeddc2684bb9b0fa90f09f431ab161
DIST zope.interface-4.3.1.tar.gz 147262 SHA256 320920cedb07666fd4022f6a0fcd4a44551133a8415c98eac0873b753bb5a70c SHA512 c61be2cdde33a69509c4f7e076c101441332f8a14195533dab1ee11cc39192162c3d883de2f6fc9ef2fdbf2d69fbe01a4e1bdaaf9292735b165e4734602d311a WHIRLPOOL f5b4a6e273bcc1eac0836192337e7ef93c126714137d457d92918be17cf3adc093c2f7fb646bc1075ea6cdfade779593303e5be0ce876c929718a74cdbb76b7e

View File

@@ -0,0 +1,40 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy )
inherit distutils-r1 flag-o-matic
MY_PN=${PN/-/.}
MY_P=${MY_PN}-${PV}
DESCRIPTION="Interfaces for Python"
HOMEPAGE="https://pypi.python.org/pypi/zope.interface https://github.com/zopefoundation/zope.interface"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="ZPL"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~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="test"
RDEPEND=""
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
test? ( dev-python/zope-event[${PYTHON_USEDEP}] )"
S=${WORKDIR}/${MY_P}
python_compile() {
if ! python_is_python3; then
local CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}"
append-flags -fno-strict-aliasing
fi
distutils-r1_python_compile
}
python_test() {
esetup.py test
}