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 21AE8139085 for ; Sat, 31 Dec 2016 09:39:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5DE54E0C7E; Sat, 31 Dec 2016 09:39:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 37A84E0C7E for ; Sat, 31 Dec 2016 09:39:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EB6EA341702 for ; Sat, 31 Dec 2016 09:39:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D3D6624A4 for ; Sat, 31 Dec 2016 09:39:10 +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: <1483177092.1f787782eb37f8199419d725c21086346e7d0b6b.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.0.ebuild X-VCS-Directories: dev-python/rarfile/ X-VCS-Committer: thev00d00 X-VCS-Committer-Name: Ian Whyman X-VCS-Revision: 1f787782eb37f8199419d725c21086346e7d0b6b X-VCS-Branch: master Date: Sat, 31 Dec 2016 09:39:10 +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-Archives-Salt: 9ada98bf-7bc8-4af6-8f4a-73f4b844312f X-Archives-Hash: dcfcf90fd19ab5a022556f12731fe386 commit: 1f787782eb37f8199419d725c21086346e7d0b6b Author: Ian Whyman gentoo org> AuthorDate: Sat Dec 31 09:38:12 2016 +0000 Commit: Ian Whyman gentoo org> CommitDate: Sat Dec 31 09:38:12 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f787782 dev-python/rarfile: Version bump Package-Manager: Portage-2.3.3, Repoman-2.3.1 dev-python/rarfile/Manifest | 1 + dev-python/rarfile/rarfile-3.0.ebuild | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/dev-python/rarfile/Manifest b/dev-python/rarfile/Manifest index b0d4a24..1f8c3a6 100644 --- a/dev-python/rarfile/Manifest +++ b/dev-python/rarfile/Manifest @@ -1 +1,2 @@ DIST rarfile-2.8.tar.gz 38204 SHA256 2a27e401daa6d8ff0df1112a274a3661ca3e4afaac626217506fb1391069ca61 SHA512 6d249b1be9f286185d37fc5eaeae01c4b7153bf6248e66285099f7b9f920419986c27b006fd5511ffe4ae6e3b5214956ccb37ce5be5fc2673880cd7b2af0f98a WHIRLPOOL 37b28beb98a78403031c6f15d429d42e716401cb7e733b2c405739d022eb54800ee4d4b9223cbcfdd5d78d91689eb24362e6cf6120654b9f22d18423e93c171c +DIST rarfile-3.0.tar.gz 110665 SHA256 e816409e3b36794507cbe0b678bed3e4703d7412c5f7f9201a510ed6fdc66c35 SHA512 b0b816bf09fe455e4d8d35b447c30e7810468a6927555164a1b513d4161f3fd4e77a37439620bd935c3a12e46b1e5eda3e35d7d281899d2f9fd26b6e989aa6e4 WHIRLPOOL 529097a0ba1e024656e80344162a866eb639ae20df9590c4d51bdd7d289ed28bf79bccbd26b05a86e9e6f1781d10e422d16291d7bc16f81075a67401484053d4 diff --git a/dev-python/rarfile/rarfile-3.0.ebuild b/dev-python/rarfile/rarfile-3.0.ebuild new file mode 100644 index 00000000..3627f56 --- /dev/null +++ b/dev-python/rarfile/rarfile-3.0.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_4,3_5} ) +inherit distutils-r1 + +DESCRIPTION="Module for RAR archive reading" +HOMEPAGE="https://github.com/markokr/rarfile" +SRC_URI="mirror://pypi/r/${PN}/${P}.tar.gz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+compressed" + +RDEPEND="${DEPEND} + compressed? ( || ( app-arch/unrar app-arch/rar ) )"