Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyramid/
Date: Sun, 07 May 2017 18:43:48
Message-Id: 1494182606.bb3c9b713e74c4305626948c02664a573834c561.mgorny@gentoo
1 commit: bb3c9b713e74c4305626948c02664a573834c561
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 6 09:19:45 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun May 7 18:43:26 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb3c9b71
7
8 dev-python/pyramid: Bump to 1.5.8 (to fix tests)
9
10 dev-python/pyramid/Manifest | 1 +
11 dev-python/pyramid/pyramid-1.5.8.ebuild | 38 +++++++++++++++++++++++++++++++++
12 2 files changed, 39 insertions(+)
13
14 diff --git a/dev-python/pyramid/Manifest b/dev-python/pyramid/Manifest
15 index c50399674db..c16b479d38b 100644
16 --- a/dev-python/pyramid/Manifest
17 +++ b/dev-python/pyramid/Manifest
18 @@ -1,2 +1,3 @@
19 DIST pyramid-1.5.1.tar.gz 2401767 SHA256 2fe0b4012f10444682acc0df3b9cb85c7cfff2508ba5cbe6db83f5f14b510d86 SHA512 70b04111020d0f02ef21c52c44d7b6a5e78d198daee0068921df048bcae8b07567aee05d57f1a9e7329ef418116a0f7682aee30c6f785a4d1ec847e2519e7cc5 WHIRLPOOL 16e17ccba24f6a76c4ef0f2e361580e832c6450f453f88229bf1204cd123719e08e8565bb46d8b0bef5b395af2dfa87cb7ac7a9dc0dc9a0cc2d019490716e151
20 DIST pyramid-1.5.7.tar.gz 2678474 SHA256 c1302d5ccb6833e8794ddb649aa9bb64d86c05adb127c93e329f8863907449b4 SHA512 32b0d4b85bf0f471b7c08ac7353f2859284ee7bb2451b68429074fb5f954e0e02d7bc4bdd86f843d6a5304b56a418e698d614806bbfd09dda9a608db88c25949 WHIRLPOOL 2c12aab5e91eede072f0b45b510699f048f9848753cf134e21dcb775b0f2fa96c815d1573cd11b67afa76f401bdab230b67fe1a24a8a861708309d8b26308619
21 +DIST pyramid-1.5.8.tar.gz 2546802 SHA256 51474d93b80a9e55cc120f911eeb11c4728bb0ec5ff40495d28ff9977685eda5 SHA512 725f472245c03a50463d9e8946dbc71063ef46d58df8a41804d1c68bb0abe796f7fcd36f7c1708f8597a980f8cb308fbeec0bbad3f82c0e7d3eb449f6719fe16 WHIRLPOOL a2e9ce852fad1e491d6b1cbc01669e1f4fd67b512a345040ac975a6b2b2dc4245c21b479b6009ebfbc9aa05502c216e1bb396e33ed09c7907163960d25b79103
22
23 diff --git a/dev-python/pyramid/pyramid-1.5.8.ebuild b/dev-python/pyramid/pyramid-1.5.8.ebuild
24 new file mode 100644
25 index 00000000000..99de90acd49
26 --- /dev/null
27 +++ b/dev-python/pyramid/pyramid-1.5.8.ebuild
28 @@ -0,0 +1,38 @@
29 +# Copyright 1999-2017 Gentoo Foundation
30 +# Distributed under the terms of the GNU General Public License v2
31 +
32 +EAPI=5
33 +PYTHON_COMPAT=( python{2_7,3_4} )
34 +
35 +inherit distutils-r1
36 +
37 +DESCRIPTION="A small open source Python web framework"
38 +HOMEPAGE="http://www.pylonsproject.org/"
39 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
40 +
41 +LICENSE="repoze"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +IUSE="test"
45 +
46 +RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
47 + dev-python/chameleon[${PYTHON_USEDEP}]
48 + dev-python/mako[${PYTHON_USEDEP}]
49 + dev-python/webob[${PYTHON_USEDEP}]
50 + dev-python/repoze-lru[${PYTHON_USEDEP}]
51 + dev-python/mako[${PYTHON_USEDEP}]
52 + dev-python/zope-deprecation[${PYTHON_USEDEP}]
53 + dev-python/zope-interface[${PYTHON_USEDEP}]
54 + dev-python/translationstring[${PYTHON_USEDEP}]
55 + dev-python/pastedeploy[${PYTHON_USEDEP}]
56 + dev-python/venusian[${PYTHON_USEDEP}]"
57 +DEPEND="${RDEPEND}
58 + test? ( dev-python/webtest[${PYTHON_USEDEP}]
59 + $(python_gen_cond_dep \
60 + 'dev-python/zope-component[${PYTHON_USEDEP}]' \
61 + 'python2*' pypy)
62 + )"
63 +
64 +python_test() {
65 + esetup.py test
66 +}