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: Mon, 30 Jan 2017 18:56:39
Message-Id: 1485802575.1ce90ef9a44cd62d43ba69c9b4e2eb2c27610871.polynomial-c@gentoo
1 commit: 1ce90ef9a44cd62d43ba69c9b4e2eb2c27610871
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 30 18:55:29 2017 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 30 18:56:15 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ce90ef9
7
8 dev-python/pyxattr: Removed old.
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-python/pyxattr/Manifest | 1 -
13 dev-python/pyxattr/pyxattr-0.5.3.ebuild | 53 ---------------------------------
14 2 files changed, 54 deletions(-)
15
16 diff --git a/dev-python/pyxattr/Manifest b/dev-python/pyxattr/Manifest
17 index 930b800..9b68606 100644
18 --- a/dev-python/pyxattr/Manifest
19 +++ b/dev-python/pyxattr/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST pyxattr-0.5.3.tar.gz 25977 SHA256 c395b34707506aa4e74da4930efaec9bb84bd652d8459de5b603bb8dc8b1d585 SHA512 ac1aa227ab9980e0b05bf71ac4466e8747791a0d5ea30d404359526ca32e6846ad9d4ef72208ff9c7a8208d91ffa309feebe7eab818ef2dc3ae1a5e9414ffeaa WHIRLPOOL 905076e9917d8eb8f78a564d31dfe7c649cd459106513dea53985eb026a144dfbaf062992786f63b799ec7410eec9dbc3f4ae9c41cbb7e1ec61f769c81fa6898
22 DIST pyxattr-0.5.5.tar.gz 26718 SHA256 132297c35261dd74b2ae2bd558e725b04834bbdf60997495e0110e255f5f2a3f SHA512 77b732a7e524a7c31a0511df2c96c18b214f93c6ac47276ecdf12ed95133ee506fa882b2532a7159aa2f4e02a7128e33bb8883ea632a5394297d98fb28898327 WHIRLPOOL 42db6c0d603f5bfca951a39194e5b95d4285a68b4c5e3f77ffe806fb5f05e46ce2f12dadc2d598c40178b68b83ee947b50474c7c026dc8e40378fc9c552a5180
23 DIST pyxattr-0.6.0.tar.gz 31057 SHA256 09d00ee4235841a5d7d6275837c5cfc37a8b68efdd663f588505fff5a8c46ea8 SHA512 c56bf57729b5f8c8e3e19e29fd903b7365c6644abe3dcebf57ffc2f97a1e92d0e22cdc0a967c5abee3a74ba61a2a379e31a1734f45449095bdb7895b8357a9bb WHIRLPOOL aa312257d527a890c0aea65317d11ad0b6065b28aea18cc84f181cd1476de8cd31bf14af9c60bb0804a37283985830655c4d5ae9c16faec099572fb067c306f7
24
25 diff --git a/dev-python/pyxattr/pyxattr-0.5.3.ebuild b/dev-python/pyxattr/pyxattr-0.5.3.ebuild
26 deleted file mode 100644
27 index 3602cbd..00000000
28 --- a/dev-python/pyxattr/pyxattr-0.5.3.ebuild
29 +++ /dev/null
30 @@ -1,53 +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=( python{2_7,3_4} pypy )
37 -
38 -inherit distutils-r1 eutils
39 -
40 -DESCRIPTION="Python interface to xattr"
41 -HOMEPAGE="http://pyxattr.k1024.org/"
42 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
43 - http://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[${PYTHON_USEDEP}] )
54 - test? ( dev-python/nose[${PYTHON_USEDEP}] )"
55 -
56 -python_prepare_all() {
57 - sed -i -e 's:, "-Werror"::' setup.py || die
58 -
59 - distutils-r1_python_prepare_all
60 -}
61 -
62 -python_compile_all() {
63 - use doc && emake doc
64 -}
65 -
66 -src_test() {
67 - # Perform the tests in /var/tmp; that location is more likely
68 - # to have xattr support than /tmp which is often tmpfs.
69 - export TESTDIR=/var/tmp
70 -
71 - einfo 'Please note that the tests fail if xattrs are not supported'
72 - einfo 'by the filesystem used for /var/tmp.'
73 - distutils-r1_src_test
74 -}
75 -
76 -python_test() {
77 - nosetests || die "Tests fail with ${EPYTHON}"
78 -}
79 -
80 -python_install_all() {
81 - use doc && local HTML_DOCS=( doc/html/. )
82 - distutils-r1_python_install_all
83 -}