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/wrapt/
Date: Wed, 03 May 2017 09:26:27
Message-Id: 1493803560.61109d68fb3e79110c9a93dc00fd41652e110f6a.mgorny@gentoo
1 commit: 61109d68fb3e79110c9a93dc00fd41652e110f6a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 3 07:46:04 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed May 3 09:26:00 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61109d68
7
8 dev-python/wrapt: Clean old versions up
9
10 dev-python/wrapt/Manifest | 2 --
11 dev-python/wrapt/wrapt-1.10.6-r1.ebuild | 47 ---------------------------------
12 dev-python/wrapt/wrapt-1.10.7.ebuild | 46 --------------------------------
13 3 files changed, 95 deletions(-)
14
15 diff --git a/dev-python/wrapt/Manifest b/dev-python/wrapt/Manifest
16 index 8a22ee1d3f7..405577f400c 100644
17 --- a/dev-python/wrapt/Manifest
18 +++ b/dev-python/wrapt/Manifest
19 @@ -1,4 +1,2 @@
20 DIST wrapt-1.10.5.tar.gz 119157 SHA256 4fd82193b23f60e1a39f3e10c81143c1e29e26cd5fc9afe1a7dc0f5e4b4a67d7 SHA512 450b32eea67774081d23c0e020ed7eea3c8ac458925a16cd606a4f95ee5b7631bda5ff00ceb914e9ccc28a5e0a7302534b6711bb23d637c77327a8a9d228cb55 WHIRLPOOL 7cfa9477f525e60f16a7b1689ba43b327192837bea34e96977442b9cd143a63fafdfa7d0b3895c93052b0e6f426e76fa439b155ee4e481dd5e922c529676691c
21 -DIST wrapt-1.10.6-r1.tar.gz 120259 SHA256 b540e23753d3f7017ec0d38f16daf77f9e9cf170d5040abc3d87573ba20fc4f3 SHA512 658c780971dddf444070b9d30a8ac7c08ee0088b8f4378bcc9c22126608e52b338dc00969b08828b0318070abcf0e875bc2b7c6228a71fbbca362033088b4314 WHIRLPOOL 7aed77677a1448d6b3795be7fb56989be98a691a7470096adf45002ca124a99b5cab3e42b319493b4c8300684e488a07cf96d1c5a01e9fc9f181f765a0542254
22 -DIST wrapt-1.10.7.tar.gz 120316 SHA256 50ad31f01761410b192ce054aebcb61c54dbd493446440214356635874ecafca SHA512 ca694963860e22d6fe05fdd679f25c7d2fb01a3a635f9744dd2034c7468563f299442a3a60f4385e049b15f04bc86c7c0a6d0501bf274a87cdcd786fd46efeee WHIRLPOOL 659226504f1711749dae0228a9de07bebd04d2c4dd4b8696095eb7e76c6e1a7e991ea5a08188d93abe14c8a7e9b69b0d4ea04945fcf8349dd1f397870e39cab1
23 DIST wrapt-1.10.8.tar.gz 120359 SHA256 096b47f44e3197934ccc335c53d2d21bf6ed9fd941b294726e26a1fd18fd4541 SHA512 2a37584b3c3a33a2d39d5cbe9f7e61a50131db55ffd5be7902b5ee84c347d8ff4d6094e5639d2f854fab274b2517a0e47420da9f543f11cf92973acd6d15d42e WHIRLPOOL 5f27b048b9f06c03c3e3acdd9c3a64308958585deb7e314c80158910cfc1eac154540a0e4a3c838718456d5ed38751d85f49645e634a7d2734cad916547a5bc7
24
25 diff --git a/dev-python/wrapt/wrapt-1.10.6-r1.ebuild b/dev-python/wrapt/wrapt-1.10.6-r1.ebuild
26 deleted file mode 100644
27 index e7bb3e8370e..00000000000
28 --- a/dev-python/wrapt/wrapt-1.10.6-r1.ebuild
29 +++ /dev/null
30 @@ -1,47 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -
36 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy )
37 -
38 -inherit distutils-r1 vcs-snapshot
39 -
40 -DESCRIPTION="Module for decorators, wrappers and monkey patching"
41 -HOMEPAGE="https://github.com/GrahamDumpleton/wrapt"
42 -SRC_URI="https://github.com/GrahamDumpleton/${PN}/archive/${PV}.tar.gz -> ${P}-r1.tar.gz"
43 -S="${S}-r1"
44 -
45 -LICENSE="BSD"
46 -SLOT="0"
47 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
48 -IUSE="doc test"
49 -
50 -DEPEND="
51 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )
52 - doc? (
53 - dev-python/sphinx[${PYTHON_USEDEP}]
54 - dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
55 - )
56 -"
57 -RDEPEND=""
58 -
59 -python_compile_all() {
60 - use doc && emake -C docs html
61 -}
62 -
63 -python_compile() {
64 - local WRAPT_EXTENSIONS=true
65 -
66 - distutils-r1_python_compile
67 -}
68 -
69 -python_test() {
70 - py.test -vv || die "tests failed under ${EPYTHON}"
71 -}
72 -
73 -python_install_all() {
74 - use doc && local HTML_DOCS=( docs/_build/html/. )
75 -
76 - distutils-r1_python_install_all
77 -}
78
79 diff --git a/dev-python/wrapt/wrapt-1.10.7.ebuild b/dev-python/wrapt/wrapt-1.10.7.ebuild
80 deleted file mode 100644
81 index 80343e195bf..00000000000
82 --- a/dev-python/wrapt/wrapt-1.10.7.ebuild
83 +++ /dev/null
84 @@ -1,46 +0,0 @@
85 -# Copyright 1999-2017 Gentoo Foundation
86 -# Distributed under the terms of the GNU General Public License v2
87 -
88 -EAPI=5
89 -
90 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy )
91 -
92 -inherit distutils-r1 vcs-snapshot
93 -
94 -DESCRIPTION="Module for decorators, wrappers and monkey patching"
95 -HOMEPAGE="https://github.com/GrahamDumpleton/wrapt"
96 -SRC_URI="https://github.com/GrahamDumpleton/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
97 -
98 -LICENSE="BSD"
99 -SLOT="0"
100 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
101 -IUSE="doc test"
102 -
103 -DEPEND="
104 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )
105 - doc? (
106 - dev-python/sphinx[${PYTHON_USEDEP}]
107 - dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
108 - )
109 -"
110 -RDEPEND=""
111 -
112 -python_compile_all() {
113 - use doc && emake -C docs html
114 -}
115 -
116 -python_compile() {
117 - local WRAPT_EXTENSIONS=true
118 -
119 - distutils-r1_python_compile
120 -}
121 -
122 -python_test() {
123 - py.test -vv || die "tests failed under ${EPYTHON}"
124 -}
125 -
126 -python_install_all() {
127 - use doc && local HTML_DOCS=( docs/_build/html/. )
128 -
129 - distutils-r1_python_install_all
130 -}