public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pyinquirer/
@ 2020-07-20 14:47 Matthias Coppens
  0 siblings, 0 replies; 8+ messages in thread
From: Matthias Coppens @ 2020-07-20 14:47 UTC (permalink / raw
  To: gentoo-commits

commit:     4bb4e2142de3cc84f037482c8b4f5116173ed0ef
Author:     Matthias Coppens <coppens.matthias.abc <AT> gmail <DOT> com>
AuthorDate: Mon Jul 20 14:45:13 2020 +0000
Commit:     Matthias Coppens <coppens.matthias.abc <AT> gmail <DOT> com>
CommitDate: Mon Jul 20 14:46:32 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4bb4e214

dev-python/pyinquirer: New package

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Matthias Coppens <coppens.matthias.abc <AT> gmail.com>

 dev-python/pyinquirer/metadata.xml           | 17 ++++++++++++
 dev-python/pyinquirer/pyinquirer-9999.ebuild | 40 ++++++++++++++++++++++++++++
 2 files changed, 57 insertions(+)

diff --git a/dev-python/pyinquirer/metadata.xml b/dev-python/pyinquirer/metadata.xml
new file mode 100644
index 0000000..e235f5b
--- /dev/null
+++ b/dev-python/pyinquirer/metadata.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+    <maintainer type="person">
+        <email>coppens.matthias.abc@gmail.com</email>
+        <description>Matthias Coppens</description>
+    </maintainer>
+    <longdescription>
+        PyInquirer strives to be an easily embeddable and beautiful
+        command line interface for Python. PyInquirer wants to make it
+        easy for existing Inquirer.js users to write immersive
+        command line applications in Python. We are convinced that its
+        feature-set is the most complete for building immersive
+        CLI applications. We also hope that PyInquirer proves itself
+        useful to Python users.
+    </longdescription>
+</pkgmetadata>

diff --git a/dev-python/pyinquirer/pyinquirer-9999.ebuild b/dev-python/pyinquirer/pyinquirer-9999.ebuild
new file mode 100644
index 0000000..c751d79
--- /dev/null
+++ b/dev-python/pyinquirer/pyinquirer-9999.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PN0="PyInquirer"
+P0="${PN0}-${PV}"
+
+EGIT_REPO_URI="https://github.com/CITGuru/${PN0}"
+case "${PV}" in
+	9999)
+		inherit git-r3
+		;;
+	*)
+		SRC_URI="${EGIT_REPO_URI}/archive/${PV}.tar.gz -> ${P0}.tar.gz"
+		KEYWORDS="~amd64"
+		S="${WORKDIR}/${P0}"
+esac
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+inherit distutils-r1
+distutils_enable_sphinx docs
+
+DESCRIPTION="A Python module for common interactive command line UIs"
+HOMEPAGE="${EGIT_REPO_URI}"
+LICENSE="MIT"
+
+SLOT="0"
+
+RDEPEND="${PYTHON_DEPS}
+	>=dev-python/prompt_toolkit-3.0.0[${PYTHON_USEDEP}]
+	<dev-python/prompt_toolkit-3.1.0[${PYTHON_USEDEP}]
+	>=dev-python/pygments-2.2.0[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+	default
+	sed -i -e 's/packages=find_packages(exclude=\[/\0"examples", /' setup.py ||
+		die "Failed to patch setup.py"
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pyinquirer/
@ 2020-07-21 10:32 Matthias Coppens
  0 siblings, 0 replies; 8+ messages in thread
From: Matthias Coppens @ 2020-07-21 10:32 UTC (permalink / raw
  To: gentoo-commits

commit:     22bb3f3bb982229af2594eecfa93ced32a78d928
Author:     Matthias Coppens <coppens.matthias.abc <AT> gmail <DOT> com>
AuthorDate: Tue Jul 21 10:05:22 2020 +0000
Commit:     Matthias Coppens <coppens.matthias.abc <AT> gmail <DOT> com>
CommitDate: Tue Jul 21 10:32:37 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=22bb3f3b

dev-python/pyinquirer: Added pytest

Added pytest, but also restricted it, because it has an outdated dep

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Matthias Coppens <coppens.matthias.abc <AT> gmail.com>

 dev-python/pyinquirer/pyinquirer-9999.ebuild | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

diff --git a/dev-python/pyinquirer/pyinquirer-9999.ebuild b/dev-python/pyinquirer/pyinquirer-9999.ebuild
index 59db9d2..7e133e6 100644
--- a/dev-python/pyinquirer/pyinquirer-9999.ebuild
+++ b/dev-python/pyinquirer/pyinquirer-9999.ebuild
@@ -20,6 +20,7 @@ esac
 PYTHON_COMPAT=( python3_{6,7,8} )
 inherit distutils-r1
 distutils_enable_sphinx docs
+distutils_enable_tests pytest
 
 DESCRIPTION="A Python module for common interactive command line UIs"
 HOMEPAGE="${EGIT_REPO_URI}"
@@ -27,11 +28,22 @@ LICENSE="MIT"
 
 SLOT="0"
 
+# Tests are outdated, they fail for >dev-python/ptyprocess-0.5.1
+RESTRICT="test"
+
 RDEPEND="
 	>=dev-python/prompt_toolkit-3.0.0[${PYTHON_USEDEP}]
 	<dev-python/prompt_toolkit-3.1.0[${PYTHON_USEDEP}]
 	>=dev-python/pygments-2.2.0[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}"
+DEPEND="
+	${RDEPEND}
+	test? (
+		dev-python/testfixtures[${PYTHON_USEDEP}]
+		>=dev-python/pytest-html-1.10.1[${PYTHON_USEDEP}]
+		>=dev-python/pytest-xdist-1.15.0[${PYTHON_USEDEP}]
+		>=dev-python/pylint-1.6.5[${PYTHON_USEDEP}]
+		>=dev-python/ptyprocess-0.5.1[${PYTHON_USEDEP}]
+		>=dev-python/regex-2016.11.21[${PYTHON_USEDEP}] )"
 
 src_prepare() {
 	default


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pyinquirer/
@ 2020-07-21 10:32 Matthias Coppens
  0 siblings, 0 replies; 8+ messages in thread
From: Matthias Coppens @ 2020-07-21 10:32 UTC (permalink / raw
  To: gentoo-commits

commit:     efb8158ab02ec6b0510083d25f6d4d41e7a84056
Author:     Matthias Coppens <coppens.matthias.abc <AT> gmail <DOT> com>
AuthorDate: Tue Jul 21 08:45:34 2020 +0000
Commit:     Matthias Coppens <coppens.matthias.abc <AT> gmail <DOT> com>
CommitDate: Tue Jul 21 10:32:37 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=efb8158a

dev-python/pyinquirer: Cleaned deps

Removed `${PYTHON_DEPS}` from dependencies per
https://github.com/gentoo/guru/commit/4bb4e2142de3cc84f037482c8b4f5116173ed0ef#r40775507

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Matthias Coppens <coppens.matthias.abc <AT> gmail.com>

 dev-python/pyinquirer/pyinquirer-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyinquirer/pyinquirer-9999.ebuild b/dev-python/pyinquirer/pyinquirer-9999.ebuild
index c751d79..59db9d2 100644
--- a/dev-python/pyinquirer/pyinquirer-9999.ebuild
+++ b/dev-python/pyinquirer/pyinquirer-9999.ebuild
@@ -27,7 +27,7 @@ LICENSE="MIT"
 
 SLOT="0"
 
-RDEPEND="${PYTHON_DEPS}
+RDEPEND="
 	>=dev-python/prompt_toolkit-3.0.0[${PYTHON_USEDEP}]
 	<dev-python/prompt_toolkit-3.1.0[${PYTHON_USEDEP}]
 	>=dev-python/pygments-2.2.0[${PYTHON_USEDEP}]"


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pyinquirer/
@ 2020-07-21 20:01 Matthias Coppens
  0 siblings, 0 replies; 8+ messages in thread
From: Matthias Coppens @ 2020-07-21 20:01 UTC (permalink / raw
  To: gentoo-commits

commit:     2951e471bfdff24a8ebe0040fd48b51498327953
Author:     Matthias Coppens <coppens.matthias.abc <AT> gmail <DOT> com>
AuthorDate: Tue Jul 21 19:59:33 2020 +0000
Commit:     Matthias Coppens <coppens.matthias.abc <AT> gmail <DOT> com>
CommitDate: Tue Jul 21 19:59:33 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2951e471

dev-python/pyinquirer: Fixed metadata.xml

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Matthias Coppens <coppens.matthias.abc <AT> gmail.com>

 dev-python/pyinquirer/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyinquirer/metadata.xml b/dev-python/pyinquirer/metadata.xml
index e235f5b..2f34ddb 100644
--- a/dev-python/pyinquirer/metadata.xml
+++ b/dev-python/pyinquirer/metadata.xml
@@ -3,7 +3,7 @@
 <pkgmetadata>
     <maintainer type="person">
         <email>coppens.matthias.abc@gmail.com</email>
-        <description>Matthias Coppens</description>
+        <name>Matthias Coppens</name>
     </maintainer>
     <longdescription>
         PyInquirer strives to be an easily embeddable and beautiful


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pyinquirer/
@ 2020-09-10 12:17 Matthias Coppens
  0 siblings, 0 replies; 8+ messages in thread
From: Matthias Coppens @ 2020-09-10 12:17 UTC (permalink / raw
  To: gentoo-commits

commit:     134d5c7c308dbe92a634681a6bbbea70ece223b5
Author:     Matthias Coppens <coppens.matthias.abc <AT> gmail <DOT> com>
AuthorDate: Thu Sep 10 12:10:38 2020 +0000
Commit:     Matthias Coppens <coppens.matthias.abc <AT> gmail <DOT> com>
CommitDate: Thu Sep 10 12:15:25 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=134d5c7c

dev-python/pyinquirer: Add <upstream> to metadata.xml

Package-Manager: Portage-3.0.6, Repoman-3.0.1
Signed-off-by: Matthias Coppens <coppens.matthias.abc <AT> gmail.com>

 dev-python/pyinquirer/metadata.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/dev-python/pyinquirer/metadata.xml b/dev-python/pyinquirer/metadata.xml
index 2f34ddbd..30724836 100644
--- a/dev-python/pyinquirer/metadata.xml
+++ b/dev-python/pyinquirer/metadata.xml
@@ -14,4 +14,8 @@
         CLI applications. We also hope that PyInquirer proves itself
         useful to Python users.
     </longdescription>
+    <upstream>
+        <remote-id type="github">CITGuru/PyInquirer</remote-id>
+        <bugs-to>https://github.com/CITGuru/PyInquirer/issues</bugs-to>
+    </upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pyinquirer/
  2021-01-05 15:37 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
@ 2021-01-05 15:37 ` Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2021-01-05 15:37 UTC (permalink / raw
  To: gentoo-commits

commit:     0f545364d23e707573d2294aaa6ec8aa1e846c04
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Tue Jan  5 15:33:17 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Tue Jan  5 15:33:17 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0f545364

dev-python/pyinquirer: add snapshot ebuild

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/pyinquirer/Manifest                     |  1 +
 .../pyinquirer/pyinquirer-1.0.3_p20200708.ebuild   | 53 ++++++++++++++++++++++
 2 files changed, 54 insertions(+)

diff --git a/dev-python/pyinquirer/Manifest b/dev-python/pyinquirer/Manifest
new file mode 100644
index 00000000..2792ab6e
--- /dev/null
+++ b/dev-python/pyinquirer/Manifest
@@ -0,0 +1 @@
+DIST PyInquirer-1.0.3_p20200708.tar.gz 128841 BLAKE2B 45dcb13d0f500e808057d4bf8e671d24c67efe13fc5d61ec12d8ec1f8f829addd72d61e8fd6005b05f63ba6a02962ffb17603db73220755142eec2170ff7659f SHA512 37665164da9fd7ccfe2b43036afb8a771fd85871b89675c970cf20925e61277239e2a1bc6be3bba1daabdafe1fe7183e63d20dadaf6a0cc95d7bc491a54197b9

diff --git a/dev-python/pyinquirer/pyinquirer-1.0.3_p20200708.ebuild b/dev-python/pyinquirer/pyinquirer-1.0.3_p20200708.ebuild
new file mode 100644
index 00000000..d28e1af0
--- /dev/null
+++ b/dev-python/pyinquirer/pyinquirer-1.0.3_p20200708.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PN0="PyInquirer"
+P0="${PN0}-${PV}"
+COMMIT="7485a1fd5442332399d5f05c84e4fd74b63a5823"
+
+EGIT_REPO_URI="https://github.com/CITGuru/${PN0}"
+case "${PV}" in
+	9999)
+		inherit git-r3
+		;;
+	*)
+		SRC_URI="${EGIT_REPO_URI}/archive/${COMMIT}.tar.gz -> ${P0}.tar.gz"
+		KEYWORDS="~amd64"
+		S="${WORKDIR}/${PN0}-${COMMIT}"
+esac
+
+PYTHON_COMPAT=( python3_{7,8} )
+inherit distutils-r1
+# conf.py gone???
+#distutils_enable_sphinx docs
+distutils_enable_tests pytest
+
+DESCRIPTION="A Python module for common interactive command line UIs"
+HOMEPAGE="${EGIT_REPO_URI}"
+LICENSE="MIT"
+
+SLOT="0"
+
+# Tests are outdated, they fail for >dev-python/ptyprocess-0.5.1
+RESTRICT="test"
+
+RDEPEND="
+	>=dev-python/prompt_toolkit-3.0.0[${PYTHON_USEDEP}]
+	<dev-python/prompt_toolkit-3.1.0[${PYTHON_USEDEP}]
+	>=dev-python/pygments-2.2.0[${PYTHON_USEDEP}]"
+DEPEND="
+	${RDEPEND}
+	test? (
+		dev-python/testfixtures[${PYTHON_USEDEP}]
+		>=dev-python/pytest-html-1.10.1[${PYTHON_USEDEP}]
+		>=dev-python/pytest-xdist-1.15.0[${PYTHON_USEDEP}]
+		>=dev-python/ptyprocess-0.5.1[${PYTHON_USEDEP}]
+		>=dev-python/regex-2016.11.21[${PYTHON_USEDEP}] )"
+
+src_prepare() {
+	default
+	sed -i -e 's/packages=find_packages(exclude=\[/\0"examples", /' setup.py ||
+		die "Failed to patch setup.py"
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pyinquirer/
@ 2021-03-28  9:55 Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2021-03-28  9:55 UTC (permalink / raw
  To: gentoo-commits

commit:     a8b5964740760813fae81c50ffcd0a6659ea471a
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sun Mar 28 09:44:18 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun Mar 28 09:44:18 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a8b59647

dev-python/pyinquirer: fix ReferenceInMetadataVar

Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 dev-python/pyinquirer/pyinquirer-1.0.3_p20200708.ebuild | 2 +-
 dev-python/pyinquirer/pyinquirer-9999.ebuild            | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-python/pyinquirer/pyinquirer-1.0.3_p20200708.ebuild b/dev-python/pyinquirer/pyinquirer-1.0.3_p20200708.ebuild
index d28e1af05..28cbe933e 100644
--- a/dev-python/pyinquirer/pyinquirer-1.0.3_p20200708.ebuild
+++ b/dev-python/pyinquirer/pyinquirer-1.0.3_p20200708.ebuild
@@ -25,7 +25,7 @@ inherit distutils-r1
 distutils_enable_tests pytest
 
 DESCRIPTION="A Python module for common interactive command line UIs"
-HOMEPAGE="${EGIT_REPO_URI}"
+HOMEPAGE="https://github.com/CITGuru/PyInquirer"
 LICENSE="MIT"
 
 SLOT="0"

diff --git a/dev-python/pyinquirer/pyinquirer-9999.ebuild b/dev-python/pyinquirer/pyinquirer-9999.ebuild
index 77ee87a5e..72bb957c1 100644
--- a/dev-python/pyinquirer/pyinquirer-9999.ebuild
+++ b/dev-python/pyinquirer/pyinquirer-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -23,7 +23,7 @@ distutils_enable_sphinx docs
 distutils_enable_tests pytest
 
 DESCRIPTION="A Python module for common interactive command line UIs"
-HOMEPAGE="${EGIT_REPO_URI}"
+HOMEPAGE="https://github.com/CITGuru/PyInquirer"
 LICENSE="MIT"
 
 SLOT="0"


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pyinquirer/
@ 2022-12-21 22:09 Julien Roy
  0 siblings, 0 replies; 8+ messages in thread
From: Julien Roy @ 2022-12-21 22:09 UTC (permalink / raw
  To: gentoo-commits

commit:     512f57af41dfa608db88b961f6e76dcb72d77073
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Wed Dec 21 22:08:49 2022 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Wed Dec 21 22:09:07 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=512f57af

dev-python/pyinquirer: unkeyword 1.0.3_p20200708 for ~amd64

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

 dev-python/pyinquirer/pyinquirer-1.0.3_p20200708.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dev-python/pyinquirer/pyinquirer-1.0.3_p20200708.ebuild b/dev-python/pyinquirer/pyinquirer-1.0.3_p20200708.ebuild
index 08c0f94ec..c799a6a64 100644
--- a/dev-python/pyinquirer/pyinquirer-1.0.3_p20200708.ebuild
+++ b/dev-python/pyinquirer/pyinquirer-1.0.3_p20200708.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -14,7 +14,6 @@ case "${PV}" in
 		;;
 	*)
 		SRC_URI="${EGIT_REPO_URI}/archive/${COMMIT}.tar.gz -> ${P0}.tar.gz"
-		KEYWORDS="~amd64"
 		S="${WORKDIR}/${PN0}-${COMMIT}"
 esac
 


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

end of thread, other threads:[~2022-12-21 22:09 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-07-21 20:01 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pyinquirer/ Matthias Coppens
  -- strict thread matches above, loose matches on Subject: below --
2022-12-21 22:09 Julien Roy
2021-03-28  9:55 Andrew Ammerlaan
2021-01-05 15:37 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2021-01-05 15:37 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-09-10 12:17 Matthias Coppens
2020-07-21 10:32 Matthias Coppens
2020-07-21 10:32 Matthias Coppens
2020-07-20 14:47 Matthias Coppens

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