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 4554A158099 for ; Thu, 23 Nov 2023 16:58:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6C9962BC048; Thu, 23 Nov 2023 16:58:01 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4803E2BC048 for ; Thu, 23 Nov 2023 16:58:01 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4CC1533BE18 for ; Thu, 23 Nov 2023 16:58:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D39ADAB9 for ; Thu, 23 Nov 2023 16:57:58 +0000 (UTC) From: "George Zenner" 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" Message-ID: <1700758620.4633317d08b76fa2ee7d281fd25bd477379c79e6.dev@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/zenlib/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/zenlib/Manifest dev-python/zenlib/metadata.xml dev-python/zenlib/zenlib-1.0.0.ebuild X-VCS-Directories: dev-python/zenlib/ X-VCS-Committer: dev X-VCS-Committer-Name: George Zenner X-VCS-Revision: 4633317d08b76fa2ee7d281fd25bd477379c79e6 X-VCS-Branch: dev Date: Thu, 23 Nov 2023 16:57:58 +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: 48dbbfa8-7698-4a97-a87c-45109c28600f X-Archives-Hash: 3f5d3c1eefe2ac360953b2a1fe808e66 commit: 4633317d08b76fa2ee7d281fd25bd477379c79e6 Author: Zen pyl onl> AuthorDate: Thu Nov 23 16:55:09 2023 +0000 Commit: George Zenner pyl onl> CommitDate: Thu Nov 23 16:57:00 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4633317d dev-python/zenlib: Added zenlib, there is currently a PyPi collission with zen_lib Signed-off-by: Zen pyl.onl> dev-python/zenlib/Manifest | 1 + dev-python/zenlib/metadata.xml | 11 +++++++++++ dev-python/zenlib/zenlib-1.0.0.ebuild | 19 +++++++++++++++++++ 3 files changed, 31 insertions(+) diff --git a/dev-python/zenlib/Manifest b/dev-python/zenlib/Manifest new file mode 100644 index 0000000000..9ad72ce449 --- /dev/null +++ b/dev-python/zenlib/Manifest @@ -0,0 +1 @@ +DIST zenlib-1.0.0.tar.gz 12381 BLAKE2B a605c7159c877e18d19d94192ceb90af4cddeb4322f28123b98f43105673b27f17a85ad46b74c536afc2fe233c2c90bbda502f60b4bd1005365ad7e054c811e8 SHA512 882e2a5a5da53c17b0da7eeb2b83d237a35be4a9ef9b34b0b222052ab8dbf0bac10f2e15220c7078a65ae67648f28098cef1c2badabd2c696e331802d29c4780 diff --git a/dev-python/zenlib/metadata.xml b/dev-python/zenlib/metadata.xml new file mode 100644 index 0000000000..c87e3f8a03 --- /dev/null +++ b/dev-python/zenlib/metadata.xml @@ -0,0 +1,11 @@ + + + + + dev@pyl.onl + Zen + + + desultory/zenlib + + diff --git a/dev-python/zenlib/zenlib-1.0.0.ebuild b/dev-python/zenlib/zenlib-1.0.0.ebuild new file mode 100644 index 0000000000..b8f8f96a08 --- /dev/null +++ b/dev-python/zenlib/zenlib-1.0.0.ebuild @@ -0,0 +1,19 @@ +# Copyright 2023 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="Useful python decorators and utilities" +HOMEPAGE="https://github.com/desultory/zenlib" +SRC_URI="https://github.com/desultory/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + +# Specify the subdirectory containing the actual source code +S="${WORKDIR}/${PN}-${PV}/src" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64"