public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:master commit in: dev-python/click-command-tree/
@ 2023-03-06 13:38 Florian Schmaus
  0 siblings, 0 replies; 2+ messages in thread
From: Florian Schmaus @ 2023-03-06 13:38 UTC (permalink / raw
  To: gentoo-commits

commit:     093a70902c5fedc5b0f9fc4e1e6f8b876865c8f3
Author:     Mårten Wadenbäck <spamfilter-1 <AT> wadenback <DOT> se>
AuthorDate: Sat Mar  4 23:26:56 2023 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sat Mar  4 23:26:56 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=093a7090

dev-python/click-command-tree: new package, add 1.1.1

Signed-off-by: Mårten Wadenbäck <spamfilter-1 <AT> wadenback.se>

 dev-python/click-command-tree/Manifest             |  1 +
 .../click-command-tree-1.1.1.ebuild                | 24 ++++++++++++++++++++++
 dev-python/click-command-tree/metadata.xml         |  9 ++++++++
 3 files changed, 34 insertions(+)

diff --git a/dev-python/click-command-tree/Manifest b/dev-python/click-command-tree/Manifest
new file mode 100644
index 000000000..baaaa333b
--- /dev/null
+++ b/dev-python/click-command-tree/Manifest
@@ -0,0 +1 @@
+DIST click-command-tree-1.1.1.gh.tar.gz 3991 BLAKE2B 7fc40e8273c05aedb8f71ddfe33d640761f3fe8c02afdb8973828b8c247910c67e7469aa43e41bc003dadd741736c0b4ffc48d146cd417051a4b939299a49033 SHA512 e9e8298b8efeb41331f03b8cbe1777bc01fdab246770d975ea27e1b1c513320ab34f61cffd72d19d878669d75d952401dcfffabc0e2d2e70bc52f1a6248f25b0

diff --git a/dev-python/click-command-tree/click-command-tree-1.1.1.ebuild b/dev-python/click-command-tree/click-command-tree-1.1.1.ebuild
new file mode 100644
index 000000000..75bf982b3
--- /dev/null
+++ b/dev-python/click-command-tree/click-command-tree-1.1.1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10,11} )
+inherit distutils-r1
+
+DESCRIPTION="click plugin to show the command tree of your CLI"
+HOMEPAGE="https://pypi.org/project/click-command-tree/"
+SRC_URI="https://github.com/whwright/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	dev-python/click
+"
+BDEPEND=""
+DEPEND="${RDEPEND}"
+
+distutils_enable_tests unittest

diff --git a/dev-python/click-command-tree/metadata.xml b/dev-python/click-command-tree/metadata.xml
new file mode 100644
index 000000000..e594cd4ac
--- /dev/null
+++ b/dev-python/click-command-tree/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <!-- maintainer-needed -->
+  <upstream>
+    <remote-id type="github">whwright/click-command-tree</remote-id>
+    <remote-id type="pypi">click-command-tree</remote-id>
+  </upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/proj/guru:master commit in: dev-python/click-command-tree/
  2024-04-13 17:09 [gentoo-commits] repo/proj/guru:dev " Julien Roy
@ 2024-04-13 17:15 ` Julien Roy
  0 siblings, 0 replies; 2+ messages in thread
From: Julien Roy @ 2024-04-13 17:15 UTC (permalink / raw
  To: gentoo-commits

commit:     e8a561ffb18c5109fd34eb7f179ddf9ef53d69b5
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sat Apr 13 16:37:43 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sat Apr 13 17:09:16 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e8a561ff

dev-python/click-command-tree: enable py3.12

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 dev-python/click-command-tree/click-command-tree-1.1.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/click-command-tree/click-command-tree-1.1.1.ebuild b/dev-python/click-command-tree/click-command-tree-1.1.1.ebuild
index 7dc631b500..4956ecd583 100644
--- a/dev-python/click-command-tree/click-command-tree-1.1.1.ebuild
+++ b/dev-python/click-command-tree/click-command-tree-1.1.1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 2023 Gentoo Authors
+# 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_{10,11} )
+PYTHON_COMPAT=( python3_{10..12} )
 inherit distutils-r1
 
 DESCRIPTION="click plugin to show the command tree of your CLI"


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-04-13 17:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-06 13:38 [gentoo-commits] repo/proj/guru:master commit in: dev-python/click-command-tree/ Florian Schmaus
  -- strict thread matches above, loose matches on Subject: below --
2024-04-13 17:09 [gentoo-commits] repo/proj/guru:dev " Julien Roy
2024-04-13 17:15 ` [gentoo-commits] repo/proj/guru:master " Julien Roy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox