Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyxattr/
Date: Wed, 25 Jul 2018 07:51:14
Message-Id: 1532505059.6ad0577b3b438d038f5d701f4054189e46eaeba2.polynomial-c@gentoo
1 commit: 6ad0577b3b438d038f5d701f4054189e46eaeba2
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 25 07:50:59 2018 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 25 07:50:59 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ad0577b
7
8 dev-python/pyxattr: Removed old.
9
10 Package-Manager: Portage-2.3.43, Repoman-2.3.10
11
12 dev-python/pyxattr/Manifest | 1 -
13 dev-python/pyxattr/pyxattr-0.5.5.ebuild | 55 ---------------------------------
14 dev-python/pyxattr/pyxattr-0.6.0.ebuild | 55 ---------------------------------
15 3 files changed, 111 deletions(-)
16
17 diff --git a/dev-python/pyxattr/Manifest b/dev-python/pyxattr/Manifest
18 index a1cb6f2df3e..8ed6308474a 100644
19 --- a/dev-python/pyxattr/Manifest
20 +++ b/dev-python/pyxattr/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST pyxattr-0.5.5.tar.gz 26718 BLAKE2B b8d599ed0194fec4809ebdb8277fa4023e932ed49a8a6253a7c6a879250a73330334bd8a72b0c9d9bfd828cac1454659d23b55b5e608bfe0109392988709beb8 SHA512 77b732a7e524a7c31a0511df2c96c18b214f93c6ac47276ecdf12ed95133ee506fa882b2532a7159aa2f4e02a7128e33bb8883ea632a5394297d98fb28898327
23 DIST pyxattr-0.6.0.tar.gz 31057 BLAKE2B cf6e99c499dbcc74305970413803e5cf59508e7ee1bf247afe42e576c2dfaf118a374ad6f8721b9d9c482f8be0c222d26b82997dc1ccc79248d5f52b2064ed8d SHA512 c56bf57729b5f8c8e3e19e29fd903b7365c6644abe3dcebf57ffc2f97a1e92d0e22cdc0a967c5abee3a74ba61a2a379e31a1734f45449095bdb7895b8357a9bb
24 DIST pyxattr-0.6.1.tar.gz 32105 BLAKE2B 0334d056ea652492fcc7958e0caf0ec438253e287c3f2ee663c0eb059fad5f01bba02963fc90035f84c129e19ee08e11bbc5573cebef6fd7ffe5c65adddc02ab SHA512 2c2defee81e2bd7e7e7f67d33676858f27494f12ba5c3d34bd548912a058cae562e9e9ed0dc5697892d1d55c29f2a5e10455260092b63faa54e40b841c42681d
25
26 diff --git a/dev-python/pyxattr/pyxattr-0.5.5.ebuild b/dev-python/pyxattr/pyxattr-0.5.5.ebuild
27 deleted file mode 100644
28 index 443601b32e0..00000000000
29 --- a/dev-python/pyxattr/pyxattr-0.5.5.ebuild
30 +++ /dev/null
31 @@ -1,55 +0,0 @@
32 -# Copyright 1999-2018 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=5
36 -PYTHON_COMPAT=( python2_7 python3_{4,5} pypy )
37 -
38 -inherit distutils-r1 eutils
39 -
40 -DESCRIPTION="Python interface to xattr"
41 -HOMEPAGE="https://pyxattr.k1024.org/"
42 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
43 - https://pyxattr.k1024.org/downloads/${P}.tar.gz"
44 -
45 -LICENSE="LGPL-2.1"
46 -SLOT="0"
47 -KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~arm-linux ~x86-linux"
48 -IUSE="doc test"
49 -
50 -RDEPEND="sys-apps/attr"
51 -DEPEND="${RDEPEND}
52 - dev-python/setuptools[${PYTHON_USEDEP}]
53 - doc? ( >=dev-python/sphinx-1.3.1[${PYTHON_USEDEP}] )
54 - test? ( dev-python/nose[${PYTHON_USEDEP}] )"
55 -
56 -python_prepare_all() {
57 - sed -i -e 's:, "-Werror"::' setup.py || die
58 - # Bug 548486
59 - sed -e "s:html_theme = 'default':html_theme = 'classic':" \
60 - -i doc/conf.py || die
61 -
62 - distutils-r1_python_prepare_all
63 -}
64 -
65 -python_compile_all() {
66 - use doc && emake doc
67 -}
68 -
69 -src_test() {
70 - # Perform the tests in /var/tmp; that location is more likely
71 - # to have xattr support than /tmp which is often tmpfs.
72 - export TESTDIR=/var/tmp
73 -
74 - einfo 'Please note that the tests fail if xattrs are not supported'
75 - einfo 'by the filesystem used for /var/tmp.'
76 - distutils-r1_src_test
77 -}
78 -
79 -python_test() {
80 - nosetests || die "Tests fail with ${EPYTHON}"
81 -}
82 -
83 -python_install_all() {
84 - use doc && local HTML_DOCS=( doc/html/. )
85 - distutils-r1_python_install_all
86 -}
87
88 diff --git a/dev-python/pyxattr/pyxattr-0.6.0.ebuild b/dev-python/pyxattr/pyxattr-0.6.0.ebuild
89 deleted file mode 100644
90 index daa8071fc78..00000000000
91 --- a/dev-python/pyxattr/pyxattr-0.6.0.ebuild
92 +++ /dev/null
93 @@ -1,55 +0,0 @@
94 -# Copyright 1999-2018 Gentoo Foundation
95 -# Distributed under the terms of the GNU General Public License v2
96 -
97 -EAPI=6
98 -PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy )
99 -
100 -inherit distutils-r1 eutils
101 -
102 -DESCRIPTION="Python interface to xattr"
103 -HOMEPAGE="https://pyxattr.k1024.org/"
104 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
105 - https://pyxattr.k1024.org/downloads/${P}.tar.gz"
106 -
107 -LICENSE="LGPL-2.1"
108 -SLOT="0"
109 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
110 -IUSE="doc test"
111 -
112 -RDEPEND="sys-apps/attr"
113 -DEPEND="${RDEPEND}
114 - dev-python/setuptools[${PYTHON_USEDEP}]
115 - doc? ( >=dev-python/sphinx-1.3.1[${PYTHON_USEDEP}] )
116 - test? ( dev-python/nose[${PYTHON_USEDEP}] )"
117 -
118 -python_prepare_all() {
119 - sed -i -e 's:, "-Werror"::' setup.py || die
120 - # Bug 548486
121 - sed -e "s:html_theme = 'default':html_theme = 'classic':" \
122 - -i doc/conf.py || die
123 -
124 - distutils-r1_python_prepare_all
125 -}
126 -
127 -python_compile_all() {
128 - use doc && emake doc
129 -}
130 -
131 -src_test() {
132 - # Perform the tests in /var/tmp; that location is more likely
133 - # to have xattr support than /tmp which is often tmpfs.
134 - export TESTDIR=/var/tmp
135 -
136 - einfo 'Please note that the tests fail if xattrs are not supported'
137 - einfo 'by the filesystem used for /var/tmp.'
138 - distutils-r1_src_test
139 -}
140 -
141 -python_test() {
142 - nosetests || die "Tests fail with ${EPYTHON}"
143 -}
144 -
145 -python_install_all() {
146 - use doc && local HTML_DOCS=( doc/html/. )
147 - distutils-r1_python_install_all
148 -}