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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 34DA5158089 for ; Mon, 18 Sep 2023 02:39:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 651232BC02B; Mon, 18 Sep 2023 02:39:37 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 476E32BC024 for ; Mon, 18 Sep 2023 02:39:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 67E51335C60 for ; Mon, 18 Sep 2023 02:39:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A3EDF11CB for ; Mon, 18 Sep 2023 02:39:34 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1695003876.bdf5509e1cb50df6e0b272479977fc44451969d3.mgorny@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-4.1.ebuild X-VCS-Directories: dev-python/rarfile/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: bdf5509e1cb50df6e0b272479977fc44451969d3 X-VCS-Branch: master Date: Mon, 18 Sep 2023 02:39:34 +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: 08e12bb4-e3b7-4040-9ce4-be4d98eafdf7 X-Archives-Hash: 6e9e4272a12c9ecbe953ae744d489545 commit: bdf5509e1cb50df6e0b272479977fc44451969d3 Author: Michał Górny gentoo org> AuthorDate: Mon Sep 18 02:23:17 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Sep 18 02:24:36 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdf5509e dev-python/rarfile: Bump to 4.1 Signed-off-by: Michał Górny gentoo.org> dev-python/rarfile/Manifest | 1 + dev-python/rarfile/rarfile-4.1.ebuild | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/dev-python/rarfile/Manifest b/dev-python/rarfile/Manifest index a37f413492e3..a65b190bd0cc 100644 --- a/dev-python/rarfile/Manifest +++ b/dev-python/rarfile/Manifest @@ -1 +1,2 @@ DIST rarfile-4.0.tar.gz 148026 BLAKE2B 331548d54dcc3d81c690cc383e36e3f00515999c72abb54060e0dbb34691bb7e06736318a33ec349492e27e561ed2f4ff4446cc5254e9f341f4633adaab878aa SHA512 05e15acd749564288d4f069970ac196344c33fd2710e918b84afe4c388aa364a17c63f86577037524336e3a022f6db2c8619f9b526f89e00753a8ab0d89263d4 +DIST rarfile-4.1.tar.gz 152826 BLAKE2B a64fbb036b33922ef99c73db3b32f3b08119ebc527d41751c2013ae05fb6d2f82523b818e7fe16983427094ab0baf15e93b356f1b19084fdfbec34cb2737780e SHA512 ca3ac26e02b8d7770c43fe70a06cf42b2183a34846d59c79d3478651e9d7ffc022fe7336be44b8df8fa6f0789bae055c1d057c21d87af78acccc43a927fd02e2 diff --git a/dev-python/rarfile/rarfile-4.1.ebuild b/dev-python/rarfile/rarfile-4.1.ebuild new file mode 100644 index 000000000000..0e47d10edddc --- /dev/null +++ b/dev-python/rarfile/rarfile-4.1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..12} pypy3 ) + +inherit distutils-r1 pypi + +DESCRIPTION="Module for RAR archive reading" +HOMEPAGE=" + https://github.com/markokr/rarfile/ + https://pypi.org/project/rarfile/ +" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="+compressed test" +REQUIRED_USE="test? ( compressed )" + +RDEPEND=" + compressed? ( app-arch/unrar ) +" + +distutils_enable_tests pytest