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 892C5158091 for ; Wed, 8 Jun 2022 05:14:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D1165E0824; Wed, 8 Jun 2022 05:14:21 +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 AD297E0824 for ; Wed, 8 Jun 2022 05:14:21 +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 DEFFF340FB9 for ; Wed, 8 Jun 2022 05:14:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5DB7D502 for ; Wed, 8 Jun 2022 05:14:14 +0000 (UTC) From: "Theo Anderson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Theo Anderson" Message-ID: <1654665224.a4885ae6070e55783e9073e1e07c13424ddd6807.telans@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/trailrunner/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/trailrunner/Manifest dev-python/trailrunner/metadata.xml dev-python/trailrunner/trailrunner-1.2.1.ebuild X-VCS-Directories: dev-python/trailrunner/ X-VCS-Committer: telans X-VCS-Committer-Name: Theo Anderson X-VCS-Revision: a4885ae6070e55783e9073e1e07c13424ddd6807 X-VCS-Branch: dev Date: Wed, 8 Jun 2022 05:14:14 +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: 6042472e-9ace-4df8-9f66-354f4c32e15a X-Archives-Hash: fabfa9c4a2adb99b3c984294fe3c9ef5 commit: a4885ae6070e55783e9073e1e07c13424ddd6807 Author: James Beddek posteo de> AuthorDate: Wed Jun 8 05:06:16 2022 +0000 Commit: Theo Anderson posteo de> CommitDate: Wed Jun 8 05:13:44 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a4885ae6 dev-python/trailrunner: new package, add 1.2.1 Signed-off-by: James Beddek posteo.de> dev-python/trailrunner/Manifest | 1 + dev-python/trailrunner/metadata.xml | 8 ++++++++ dev-python/trailrunner/trailrunner-1.2.1.ebuild | 22 ++++++++++++++++++++++ 3 files changed, 31 insertions(+) diff --git a/dev-python/trailrunner/Manifest b/dev-python/trailrunner/Manifest new file mode 100644 index 000000000..0e3dae7a0 --- /dev/null +++ b/dev-python/trailrunner/Manifest @@ -0,0 +1 @@ +DIST trailrunner-1.2.1.tar.gz 14362 BLAKE2B f3be6db8bdfbd7fd8fc5dda97025f4621387cca12779187ae2c25850d91f33ad78e07e92c308d5f134e23f623771e7bd80e819e831a4cfde68508739bc463923 SHA512 eddc767626c301b143a14c4c14683d59fc7771d6b4cf6b787623601bb15d47de92cd7fd6d862304d321b58b23df800c37177ad7635a5994dbad8ad4e919ad3e2 diff --git a/dev-python/trailrunner/metadata.xml b/dev-python/trailrunner/metadata.xml new file mode 100644 index 000000000..2924f0387 --- /dev/null +++ b/dev-python/trailrunner/metadata.xml @@ -0,0 +1,8 @@ + + + + + telans@posteo.de + James Beddek + + diff --git a/dev-python/trailrunner/trailrunner-1.2.1.ebuild b/dev-python/trailrunner/trailrunner-1.2.1.ebuild new file mode 100644 index 000000000..aebc090a6 --- /dev/null +++ b/dev-python/trailrunner/trailrunner-1.2.1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=flit +PYTHON_COMPAT=( python3_{8..11} ) + +inherit distutils-r1 + +DESCRIPTION="Walk paths and run things" +HOMEPAGE="https://github.com/omnilib/trailrunner" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND="dev-python/pathspec[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND}" + +distutils_enable_tests unittest