Gentoo Archives: gentoo-commits

From: Alice Ferrazzi <alicef@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/zc-buildout/
Date: Sun, 25 Sep 2016 05:40:11
Message-Id: 1474781966.dda48632627240c99c5438db7c62c98050ca604d.alicef@gentoo
1 commit: dda48632627240c99c5438db7c62c98050ca604d
2 Author: Alice Ferrazzi <alicef <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 25 05:28:06 2016 +0000
4 Commit: Alice Ferrazzi <alicef <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 25 05:39:26 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dda48632
7
8 dev-python/zc-buildout: version bump to 2.5.3
9
10 updated copyright
11
12 Package-Manager: portage-2.2.28
13
14 dev-python/zc-buildout/Manifest | 1 +
15 dev-python/zc-buildout/zc-buildout-2.5.3.ebuild | 34 +++++++++++++++++++++++++
16 2 files changed, 35 insertions(+)
17
18 diff --git a/dev-python/zc-buildout/Manifest b/dev-python/zc-buildout/Manifest
19 index 983f9cc..486071b 100644
20 --- a/dev-python/zc-buildout/Manifest
21 +++ b/dev-python/zc-buildout/Manifest
22 @@ -1 +1,2 @@
23 DIST zc.buildout-2.3.1.tar.gz 292209 SHA256 3295b8944c637f65db3d6c2ded239b7b41a7f2df0e0bceb8b092247edf1866fb SHA512 cb741f02ccb119349e9e734667a64bec3248bbddc58a0e3d9ba10b1d2459e084170713be24051a529996fbc641ca8162d86c1c3ad3efdb2a95d2dd705616b73d WHIRLPOOL c391a6c62b72ce4bd56d12616df8580ab6c247e9bef74cf198bb777846ce7a450a31b7bd2088271d9a3faabd4b0388fb8e5b432b4c0f15e5b921c95c7e33e298
24 +DIST zc.buildout-2.5.3.tar.gz 305163 SHA256 3e5f3afcc64416604c5efc554c2fa0901b60657e012a710c320e2eb510efcfb9 SHA512 a4d4becac815531cd180795372ce5896d1fdab8606fff492502ef1f59d6d1ddd8427bb00ea96d36ec284a18b17b9273d8b94a405ebe410bae7e9a6e47a8dfad7 WHIRLPOOL b5d01e3b1a589cafb965cae8992f3657805ec3fd22ed75f43d57cba6260e4a7c2bc047c7355ae37cbbd13bb673ba7509597dbb0ed792bbfcbb80817646d7c4fc
25
26 diff --git a/dev-python/zc-buildout/zc-buildout-2.5.3.ebuild b/dev-python/zc-buildout/zc-buildout-2.5.3.ebuild
27 new file mode 100644
28 index 00000000..1341a17
29 --- /dev/null
30 +++ b/dev-python/zc-buildout/zc-buildout-2.5.3.ebuild
31 @@ -0,0 +1,34 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=5
37 +PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy pypy3 )
38 +
39 +inherit distutils-r1
40 +
41 +MY_PN="${PN/-/.}"
42 +MY_P=${MY_PN}-${PV}
43 +
44 +DESCRIPTION="System for managing development buildouts"
45 +HOMEPAGE="https://pypi.python.org/pypi/zc.buildout"
46 +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
47 +
48 +LICENSE="ZPL"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~x86"
51 +IUSE=""
52 +
53 +RDEPEND=">=dev-python/setuptools-3.3[${PYTHON_USEDEP}]"
54 +DEPEND="${RDEPEND}"
55 +
56 +S="${WORKDIR}"/${MY_P}
57 +
58 +DOCS=( README.rst doc/tutorial.txt )
59 +# Tests require zope packages absent from portage
60 +
61 +# Prevent incorrect installation of data file
62 +python_prepare_all() {
63 + sed -e '/^ include_package_data/d' -i setup.py || die
64 + distutils-r1_python_prepare_all
65 +}