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:29
Message-Id: 1485802572.1a7a07c51739098e096c29ef89ec1963a8f35984.polynomial-c@gentoo
1 commit: 1a7a07c51739098e096c29ef89ec1963a8f35984
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 30 18:54:15 2017 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 30 18:56:12 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a7a07c5
7
8 dev-python/pyxattr: Bump to version 0.6.0
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.6.0.ebuild | 56 +++++++++++++++++++++++++++++++++
14 2 files changed, 57 insertions(+)
15
16 diff --git a/dev-python/pyxattr/Manifest b/dev-python/pyxattr/Manifest
17 index 3a777bc..930b800 100644
18 --- a/dev-python/pyxattr/Manifest
19 +++ b/dev-python/pyxattr/Manifest
20 @@ -1,2 +1,3 @@
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.6.0.ebuild b/dev-python/pyxattr/pyxattr-0.6.0.ebuild
26 new file mode 100644
27 index 00000000..34a27cb
28 --- /dev/null
29 +++ b/dev-python/pyxattr/pyxattr-0.6.0.ebuild
30 @@ -0,0 +1,56 @@
31 +# Copyright 1999-2017 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_{4,5} 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.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 +}