From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C0E811382C5 for ; Sat, 27 Jun 2020 08:05:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EC281E095D; Sat, 27 Jun 2020 08:05:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D0D58E095D for ; Sat, 27 Jun 2020 08:05:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 94E9F34EEE2 for ; Sat, 27 Jun 2020 08:05:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0D3E12A5 for ; Sat, 27 Jun 2020 08:05:46 +0000 (UTC) From: "Ian Whyman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ian Whyman" Message-ID: <1593245132.f82cc9ef3aaa9acc202b39a9d73a95894812c093.thev00d00@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/rarfile/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/rarfile/Manifest dev-python/rarfile/rarfile-3.1.ebuild X-VCS-Directories: dev-python/rarfile/ X-VCS-Committer: thev00d00 X-VCS-Committer-Name: Ian Whyman X-VCS-Revision: f82cc9ef3aaa9acc202b39a9d73a95894812c093 X-VCS-Branch: master Date: Sat, 27 Jun 2020 08:05:46 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a2e853ec-2f6d-4214-b9d3-098878af04f4 X-Archives-Hash: 77a3ca231ff0826202c9557b66611366 commit: f82cc9ef3aaa9acc202b39a9d73a95894812c093 Author: Sam James (sam_c) cmpct info> AuthorDate: Tue Jun 23 12:12:38 2020 +0000 Commit: Ian Whyman gentoo org> CommitDate: Sat Jun 27 08:05:32 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f82cc9ef dev-python/rarfile: bump to 3.1, fix tests Bump rarfile to 3.1, which fixes the test failures reported (and more). To fix all of them, we needed to switch to Pytest, which upstream support in the new release, which is good news given Nose is on the way out. Closes: https://bugs.gentoo.org/729032 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Sam James (sam_c) cmpct.info> Closes: https://github.com/gentoo/gentoo/pull/16407 Signed-off-by: Ian Whyman gentoo.org> dev-python/rarfile/Manifest | 1 + dev-python/rarfile/rarfile-3.1.ebuild | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/dev-python/rarfile/Manifest b/dev-python/rarfile/Manifest index 896fa48cfa2..4accbe0769c 100644 --- a/dev-python/rarfile/Manifest +++ b/dev-python/rarfile/Manifest @@ -1 +1,2 @@ DIST rarfile-3.0.tar.gz 110665 BLAKE2B bdafa33600f1c7791af40f4e8c7b6a43e502980dab22bf6792a1b19eab53ea6c29bb6cb2ae4989b9f43d58c326b89ce466b9e2f82f60bad4892131895b15d400 SHA512 b0b816bf09fe455e4d8d35b447c30e7810468a6927555164a1b513d4161f3fd4e77a37439620bd935c3a12e46b1e5eda3e35d7d281899d2f9fd26b6e989aa6e4 +DIST rarfile-3.1.tar.gz 121579 BLAKE2B 3419eb0433866e060cc55fb94806a1ef0591c811e3b88eac97b05519e8e72cdb7da1e7f19fec1d5cadf60fa4caba4717cafe3fb1133556ef2d6f327da52c8c34 SHA512 eb910b0adfd1f28497163aa7994ab268d7780707e09931cb01014ffa51d985410b0bc17e5fb9ca133992b28115a0b5f443d01215624145d280f29e7065abb9d9 diff --git a/dev-python/rarfile/rarfile-3.1.ebuild b/dev-python/rarfile/rarfile-3.1.ebuild new file mode 100644 index 00000000000..f7282bc6696 --- /dev/null +++ b/dev-python/rarfile/rarfile-3.1.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} pypy3 ) +inherit distutils-r1 + +DESCRIPTION="Module for RAR archive reading" +HOMEPAGE="https://github.com/markokr/rarfile" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+compressed" + +RDEPEND="compressed? ( || ( app-arch/unrar app-arch/rar ) )" + +distutils_enable_tests pytest