From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1640686-garchives=archives.gentoo.org@lists.gentoo.org> 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 68FA715817D for <garchives@archives.gentoo.org>; Sun, 9 Jun 2024 20:36:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 51A06E29AF; Sun, 9 Jun 2024 20:36:37 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 2F35AE29AF for <gentoo-commits@lists.gentoo.org>; Sun, 9 Jun 2024 20:36: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 23C76335DCC for <gentoo-commits@lists.gentoo.org>; Sun, 9 Jun 2024 20:36:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7DB121BFE for <gentoo-commits@lists.gentoo.org>; Sun, 9 Jun 2024 20:36:34 +0000 (UTC) From: "George Zenner" <dev@pyl.onl> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "George Zenner" <dev@pyl.onl> Message-ID: <1717965344.9285aa60d04bd972cc1591ce33b9a76d731011e9.dev@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pycpio/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/pycpio/pycpio-1.2.0.ebuild X-VCS-Directories: dev-python/pycpio/ X-VCS-Committer: dev X-VCS-Committer-Name: George Zenner X-VCS-Revision: 9285aa60d04bd972cc1591ce33b9a76d731011e9 X-VCS-Branch: dev Date: Sun, 9 Jun 2024 20:36:34 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 656eb834-f245-4362-9f43-91ac5a6b36bb X-Archives-Hash: a916a635b553662e30aabccc01417e5f commit: 9285aa60d04bd972cc1591ce33b9a76d731011e9 Author: Zen <z <AT> pyl <DOT> onl> AuthorDate: Sun Jun 9 20:35:24 2024 +0000 Commit: George Zenner <dev <AT> pyl <DOT> onl> CommitDate: Sun Jun 9 20:35:44 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9285aa60 dev-python/pycpio: Add 1.2.0 Signed-off-by: Zen <z <AT> pyl.onl> dev-python/pycpio/pycpio-1.2.0.ebuild | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/dev-python/pycpio/pycpio-1.2.0.ebuild b/dev-python/pycpio/pycpio-1.2.0.ebuild new file mode 100644 index 000000000..48966fa06 --- /dev/null +++ b/dev-python/pycpio/pycpio-1.2.0.ebuild @@ -0,0 +1,18 @@ +# Copyright 2023-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{11..12} ) +inherit distutils-r1 + +DESCRIPTION="Python CPIO library" +HOMEPAGE="https://github.com/desultory/pycpio" +SRC_URI="https://github.com/desultory/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm64" + +RDEPEND=">=dev-python/zenlib-2.1.2[${PYTHON_USEDEP}]"