Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyxattr/
Date: Thu, 31 Dec 2020 06:07:55
Message-Id: 1609394866.fe27a8ef786d37b1fbfe76fddc1c71d3eacb91ed.sam@gentoo
1 commit: fe27a8ef786d37b1fbfe76fddc1c71d3eacb91ed
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 31 06:03:43 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 31 06:07:46 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe27a8ef
7
8 dev-python/pyxattr: bump to 0.7.2
9
10 Package-Manager: Portage-3.0.9, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 dev-python/pyxattr/Manifest | 1 +
14 dev-python/pyxattr/pyxattr-0.7.2.ebuild | 32 ++++++++++++++++++++++++++++++++
15 2 files changed, 33 insertions(+)
16
17 diff --git a/dev-python/pyxattr/Manifest b/dev-python/pyxattr/Manifest
18 index 2e121df910a..0e1aee75e05 100644
19 --- a/dev-python/pyxattr/Manifest
20 +++ b/dev-python/pyxattr/Manifest
21 @@ -1 +1,2 @@
22 DIST pyxattr-0.7.1.tar.gz 30580 BLAKE2B 748ce0610ebc1a074dee87dffc67a88e1def0ea467f13758d2d85f9f5c37954586d85dfb8ceb1b77f4ef637295d57a153849b00d773e2e79b06902974fe01663 SHA512 093cb3f9b9637194b9737c07da7dde45b3d5083ec16a9209af80d30c86da8f93badff5aada395415be3dd48da73004286e47d0aa0671c95e65b0492d02e86009
23 +DIST pyxattr-0.7.2.tar.gz 31550 BLAKE2B 3505300d7a50dc305068740379bb8edbefa29f228c797e2e74467a51f4b0a6b740203f89b8ed461218978214213a6cd778107f58eb07a64d6b45e25d0fb769ea SHA512 fb9b36d5d2fb9ab674daf40d6f5c7dbe50d847dcb6d9955d270ef3aed2d8e3540f8feebd934009f47d63f3c55882846a20f7ed733b0d0c004e7a1984e7106206
24
25 diff --git a/dev-python/pyxattr/pyxattr-0.7.2.ebuild b/dev-python/pyxattr/pyxattr-0.7.2.ebuild
26 new file mode 100644
27 index 00000000000..6202df6da8e
28 --- /dev/null
29 +++ b/dev-python/pyxattr/pyxattr-0.7.2.ebuild
30 @@ -0,0 +1,32 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python3_{6..9} pypy3 )
37 +
38 +inherit distutils-r1
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 ~sparc ~x86 ~amd64-linux ~x86-linux"
48 +
49 +RDEPEND="sys-apps/attr:="
50 +DEPEND="${RDEPEND}"
51 +
52 +distutils_enable_tests pytest
53 +distutils_enable_sphinx doc dev-python/recommonmark
54 +
55 +python_prepare_all() {
56 + sed -i -e 's:, "-Werror"::' setup.py || die
57 + # Bug 548486
58 + sed -e "s:html_theme = 'default':html_theme = 'classic':" \
59 + -i doc/conf.py || die
60 +
61 + distutils-r1_python_prepare_all
62 +}