From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 92827138262 for ; Sun, 22 May 2016 09:30:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B2BBB1424C; Sun, 22 May 2016 09:30:10 +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 60DA91424C for ; Sun, 22 May 2016 09:30:10 +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 9B9C4340B53 for ; Sun, 22 May 2016 09:30:08 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EF7C497E for ; Sun, 22 May 2016 09:30:06 +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: <1463909394.48cccaf6975a30ad148cb142640094922ed1e792.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-2.7.ebuild X-VCS-Directories: dev-python/rarfile/ X-VCS-Committer: thev00d00 X-VCS-Committer-Name: Ian Whyman X-VCS-Revision: 48cccaf6975a30ad148cb142640094922ed1e792 X-VCS-Branch: master Date: Sun, 22 May 2016 09:30:06 +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: f76def3b-3c6b-48e4-89f3-7d89e3d32e0e X-Archives-Hash: 26f1f642460876383b52c23988701073 commit: 48cccaf6975a30ad148cb142640094922ed1e792 Author: Ian Whyman gentoo org> AuthorDate: Sun May 22 09:29:54 2016 +0000 Commit: Ian Whyman gentoo org> CommitDate: Sun May 22 09:29:54 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48cccaf6 dev-python/rarfile: Version bump (#582500) Package-Manager: portage-2.2.28 dev-python/rarfile/Manifest | 1 + dev-python/rarfile/rarfile-2.7.ebuild | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/dev-python/rarfile/Manifest b/dev-python/rarfile/Manifest index b61b548..155d8ee 100644 --- a/dev-python/rarfile/Manifest +++ b/dev-python/rarfile/Manifest @@ -1 +1,2 @@ DIST rarfile-2.6.tar.gz 35981 SHA256 326700c5450cfb367f612e918866ea27551bac02f4656f340003c88873fa1a56 SHA512 9b74853516bae8332e0cf030f4de84f57b1680691a177c3ec6cf7f8650b82c807a67c4e68589c2097bf7359b03692e1fb30530ab40f23b90d1ebbbe21d20239a WHIRLPOOL 4edc2b98f81035c5c25318e598b78f1a52afcd19056ad0ecf8157cd355aae88443c04186359d2564d8118cff2f517a63da932685832fa38179201c2d0d52fb69 +DIST rarfile-2.7.tar.gz 37515 SHA256 47148088ddb6c020774f4c38927fec9625ca33651bdc551bdaeafc78690b1635 SHA512 39827329644a89ac9721a52bb591be9a8921e919e1c0f2434df3d467d52b49aac4b18e27fdd4e40b5dd21b0df1ced495d42afe69331392ffadd9ac1fc857db56 WHIRLPOOL 00593032f6f98e6867c2872c08b69b72008b63f832db814e1247e3919f466674fed9d0e5edeadf29be50336298ef5405289ed18f90f3a49edffa66cbe932d5ae diff --git a/dev-python/rarfile/rarfile-2.7.ebuild b/dev-python/rarfile/rarfile-2.7.ebuild new file mode 100644 index 0000000..d137a53 --- /dev/null +++ b/dev-python/rarfile/rarfile-2.7.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python{2_7,3_3,3_4} ) +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 ) )"