Gentoo Archives: gentoo-commits

From: Ian Whyman <thev00d00@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/rarfile/
Date: Sat, 27 Jun 2020 08:05:49
Message-Id: 1593245132.f82cc9ef3aaa9acc202b39a9d73a95894812c093.thev00d00@gentoo
1 commit: f82cc9ef3aaa9acc202b39a9d73a95894812c093
2 Author: Sam James (sam_c) <sam <AT> cmpct <DOT> info>
3 AuthorDate: Tue Jun 23 12:12:38 2020 +0000
4 Commit: Ian Whyman <thev00d00 <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 27 08:05:32 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f82cc9ef
7
8 dev-python/rarfile: bump to 3.1, fix tests
9
10 Bump rarfile to 3.1, which fixes the test
11 failures reported (and more).
12
13 To fix all of them, we needed to switch to Pytest,
14 which upstream support in the new release, which is
15 good news given Nose is on the way out.
16
17 Closes: https://bugs.gentoo.org/729032
18 Package-Manager: Portage-2.3.99, Repoman-2.3.22
19 Signed-off-by: Sam James (sam_c) <sam <AT> cmpct.info>
20 Closes: https://github.com/gentoo/gentoo/pull/16407
21 Signed-off-by: Ian Whyman <thev00d00 <AT> gentoo.org>
22
23 dev-python/rarfile/Manifest | 1 +
24 dev-python/rarfile/rarfile-3.1.ebuild | 20 ++++++++++++++++++++
25 2 files changed, 21 insertions(+)
26
27 diff --git a/dev-python/rarfile/Manifest b/dev-python/rarfile/Manifest
28 index 896fa48cfa2..4accbe0769c 100644
29 --- a/dev-python/rarfile/Manifest
30 +++ b/dev-python/rarfile/Manifest
31 @@ -1 +1,2 @@
32 DIST rarfile-3.0.tar.gz 110665 BLAKE2B bdafa33600f1c7791af40f4e8c7b6a43e502980dab22bf6792a1b19eab53ea6c29bb6cb2ae4989b9f43d58c326b89ce466b9e2f82f60bad4892131895b15d400 SHA512 b0b816bf09fe455e4d8d35b447c30e7810468a6927555164a1b513d4161f3fd4e77a37439620bd935c3a12e46b1e5eda3e35d7d281899d2f9fd26b6e989aa6e4
33 +DIST rarfile-3.1.tar.gz 121579 BLAKE2B 3419eb0433866e060cc55fb94806a1ef0591c811e3b88eac97b05519e8e72cdb7da1e7f19fec1d5cadf60fa4caba4717cafe3fb1133556ef2d6f327da52c8c34 SHA512 eb910b0adfd1f28497163aa7994ab268d7780707e09931cb01014ffa51d985410b0bc17e5fb9ca133992b28115a0b5f443d01215624145d280f29e7065abb9d9
34
35 diff --git a/dev-python/rarfile/rarfile-3.1.ebuild b/dev-python/rarfile/rarfile-3.1.ebuild
36 new file mode 100644
37 index 00000000000..f7282bc6696
38 --- /dev/null
39 +++ b/dev-python/rarfile/rarfile-3.1.ebuild
40 @@ -0,0 +1,20 @@
41 +# Copyright 1999-2020 Gentoo Authors
42 +# Distributed under the terms of the GNU General Public License v2
43 +
44 +EAPI=7
45 +
46 +PYTHON_COMPAT=( python3_{6,7,8} pypy3 )
47 +inherit distutils-r1
48 +
49 +DESCRIPTION="Module for RAR archive reading"
50 +HOMEPAGE="https://github.com/markokr/rarfile"
51 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
52 +
53 +LICENSE="ISC"
54 +SLOT="0"
55 +KEYWORDS="~amd64 ~x86"
56 +IUSE="+compressed"
57 +
58 +RDEPEND="compressed? ( || ( app-arch/unrar app-arch/rar ) )"
59 +
60 +distutils_enable_tests pytest