Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/wrapt/
Date: Thu, 03 Dec 2015 10:21:36
Message-Id: 1449137860.74fec04202a43f31037db1928f758e2279d13ed1.jlec@gentoo
1 commit: 74fec04202a43f31037db1928f758e2279d13ed1
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 3 08:37:26 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 3 10:17:40 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74fec042
7
8 dev-python/wrapt: Clean old
9
10 Package-Manager: portage-2.2.25
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/wrapt/Manifest | 1 -
14 dev-python/wrapt/wrapt-1.10.4.ebuild | 46 ------------------------------------
15 2 files changed, 47 deletions(-)
16
17 diff --git a/dev-python/wrapt/Manifest b/dev-python/wrapt/Manifest
18 index 2d0bce4..c02f69f 100644
19 --- a/dev-python/wrapt/Manifest
20 +++ b/dev-python/wrapt/Manifest
21 @@ -1,2 +1 @@
22 -DIST wrapt-1.10.4.tar.gz 102325 SHA256 c77f39270a9438a9429f6b2330e44ab6105aa760bbe00402765bac4dc51925d2 SHA512 759c43d18b2538912b30930a9ac192ba53921d5f353da07587e0ebb5236b255c87d1eb216a122b4455e16ed4973b39402f7057adfaf83775515d80b944c691af WHIRLPOOL 753ad039bc92ae9f2e785f57b21f9323f137bcefda8999decbac1c7adf85a9b0c7f00b147c62f4da1616b509423d54c9f2c6fa4d4ccf15b708d6fc13b0f48153
23 DIST wrapt-1.10.5.tar.gz 119157 SHA256 4fd82193b23f60e1a39f3e10c81143c1e29e26cd5fc9afe1a7dc0f5e4b4a67d7 SHA512 450b32eea67774081d23c0e020ed7eea3c8ac458925a16cd606a4f95ee5b7631bda5ff00ceb914e9ccc28a5e0a7302534b6711bb23d637c77327a8a9d228cb55 WHIRLPOOL 7cfa9477f525e60f16a7b1689ba43b327192837bea34e96977442b9cd143a63fafdfa7d0b3895c93052b0e6f426e76fa439b155ee4e481dd5e922c529676691c
24
25 diff --git a/dev-python/wrapt/wrapt-1.10.4.ebuild b/dev-python/wrapt/wrapt-1.10.4.ebuild
26 deleted file mode 100644
27 index 2fd4fc8..0000000
28 --- a/dev-python/wrapt/wrapt-1.10.4.ebuild
29 +++ /dev/null
30 @@ -1,46 +0,0 @@
31 -# Copyright 1999-2015 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -# $Id$
34 -
35 -EAPI=5
36 -PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
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}.tar.gz"
43 -
44 -LICENSE="BSD"
45 -SLOT="0"
46 -KEYWORDS="~amd64"
47 -IUSE="doc test"
48 -
49 -DEPEND="
50 - test? ( dev-python/pytest[${PYTHON_USEDEP}] )
51 - doc? (
52 - dev-python/sphinx[${PYTHON_USEDEP}]
53 - dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
54 - )
55 -"
56 -RDEPEND=""
57 -
58 -python_compile_all() {
59 - use doc && emake -C docs html
60 -}
61 -
62 -python_compile() {
63 - local WRAPT_EXTENSIONS=true
64 -
65 - distutils-r1_python_compile
66 -}
67 -
68 -python_test() {
69 - py.test || die "tests failed under ${EPYTHON}"
70 -}
71 -
72 -python_install_all() {
73 - use doc && local HTML_DOCS=( docs/_build/html/. )
74 -
75 - distutils-r1_python_install_all
76 -}