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 61359158041 for ; Tue, 2 Apr 2024 13:56:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 43199E2A8C; Tue, 2 Apr 2024 13:56:55 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 27736E2A8C for ; Tue, 2 Apr 2024 13:56:55 +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 A8BB9343207 for ; Tue, 2 Apr 2024 13:56:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D098B957 for ; Tue, 2 Apr 2024 13:56:51 +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: <1712065804.308cb8b4ff8a5aca2c2877d0ab012cfb6780e2f0.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/hatch-nodejs-version/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/hatch-nodejs-version/Manifest dev-python/hatch-nodejs-version/hatch-nodejs-version-0.3.2.ebuild dev-python/hatch-nodejs-version/metadata.xml X-VCS-Directories: dev-python/hatch-nodejs-version/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 308cb8b4ff8a5aca2c2877d0ab012cfb6780e2f0 X-VCS-Branch: master Date: Tue, 2 Apr 2024 13:56:51 +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: dd8d8ad1-8bb2-49ec-955e-ec132e7d7ecd X-Archives-Hash: 9d245aba0e39462502fb54df0e94a2d9 commit: 308cb8b4ff8a5aca2c2877d0ab012cfb6780e2f0 Author: Michał Górny gentoo org> AuthorDate: Tue Apr 2 13:50:04 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Apr 2 13:50:04 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=308cb8b4 dev-python/hatch-nodejs-version: New package, v0.3.2 This one has a few revdeps already, except for some reason people thought it's a better idea to apply a major patch and hardcode the version number in that patch, than add this trivial package. What could go wrong with that?! Signed-off-by: Michał Górny gentoo.org> dev-python/hatch-nodejs-version/Manifest | 1 + .../hatch-nodejs-version-0.3.2.ebuild | 25 ++++++++++++++++++++++ dev-python/hatch-nodejs-version/metadata.xml | 12 +++++++++++ 3 files changed, 38 insertions(+) diff --git a/dev-python/hatch-nodejs-version/Manifest b/dev-python/hatch-nodejs-version/Manifest new file mode 100644 index 000000000000..988f3f42b9b9 --- /dev/null +++ b/dev-python/hatch-nodejs-version/Manifest @@ -0,0 +1 @@ +DIST hatch_nodejs_version-0.3.2.tar.gz 16942 BLAKE2B dd68166a4aa7112dee4b566a748a40f951b73a4c7a8f6435ff0dd6706fed7d520d17d9e55604f9c901688a751d62f1160de3618026bdb829e5989fad87efa268 SHA512 e781669c84c3e61333cbd47f078ff6f16dae5b3c6e7d2ea76ae20ee78012ea9686a2be684127db821a6128408030bc09a0210386424f155af5a044f0178d44d4 diff --git a/dev-python/hatch-nodejs-version/hatch-nodejs-version-0.3.2.ebuild b/dev-python/hatch-nodejs-version/hatch-nodejs-version-0.3.2.ebuild new file mode 100644 index 000000000000..a2e6ac296ea7 --- /dev/null +++ b/dev-python/hatch-nodejs-version/hatch-nodejs-version-0.3.2.ebuild @@ -0,0 +1,25 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=hatchling +PYTHON_COMPAT=( pypy3 python3_{10..12} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Hatch plugin for versioning from a package.json file" +HOMEPAGE=" + https://github.com/agoose77/hatch-nodejs-version/ + https://pypi.org/project/hatch-nodejs-version/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + >=dev-python/hatchling-0.21.0[${PYTHON_USEDEP}] +" + +distutils_enable_tests pytest diff --git a/dev-python/hatch-nodejs-version/metadata.xml b/dev-python/hatch-nodejs-version/metadata.xml new file mode 100644 index 000000000000..400fe916bf3d --- /dev/null +++ b/dev-python/hatch-nodejs-version/metadata.xml @@ -0,0 +1,12 @@ + + + + + python@gentoo.org + + + + agoose77/hatch-nodejs-version + hatch-nodejs-version + +