public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/jsonpath-rw/
@ 2021-10-03 18:33 Alessandro Barbieri
  0 siblings, 0 replies; 5+ messages in thread
From: Alessandro Barbieri @ 2021-10-03 18:33 UTC (permalink / raw
  To: gentoo-commits

commit:     a52df4e30dc351e4e84a77d32b425324d4c916c2
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun Oct  3 16:38:15 2021 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sun Oct  3 18:32:01 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a52df4e3

dev-python/jsonpath-rw: initial import

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-python/jsonpath-rw/Manifest                 |  1 +
 dev-python/jsonpath-rw/jsonpath-rw-1.4.0.ebuild | 41 +++++++++++++++++++++++++
 dev-python/jsonpath-rw/metadata.xml             | 18 +++++++++++
 3 files changed, 60 insertions(+)

diff --git a/dev-python/jsonpath-rw/Manifest b/dev-python/jsonpath-rw/Manifest
new file mode 100644
index 000000000..161efdd86
--- /dev/null
+++ b/dev-python/jsonpath-rw/Manifest
@@ -0,0 +1 @@
+DIST jsonpath-rw-1.4.0.tar.gz 13814 BLAKE2B 96c17df53db15ea06b8d33231a5349e00d85eb92c9c1da784ee8b1773f1a12791f8dc2a6dc7ec67fde0c8c3cfec0a8fc08e77ff08eeebe4ef699d6d4bdda9276 SHA512 5fcbd832975a32d375fd400ebfb84f083c0e7d8780cc63df730a75cca0224bf32d72cb793fcac63fc3afa9697199d7a569af29961da95494253996cc6e5f63b7

diff --git a/dev-python/jsonpath-rw/jsonpath-rw-1.4.0.ebuild b/dev-python/jsonpath-rw/jsonpath-rw-1.4.0.ebuild
new file mode 100644
index 000000000..af6371fde
--- /dev/null
+++ b/dev-python/jsonpath-rw/jsonpath-rw-1.4.0.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="A robust and significantly extended implementation of JSONPath for Python"
+HOMEPAGE="
+	https://github.com/kennknowles/python-jsonpath-rw
+	https://pypi.org/project/jsonpath-rw
+"
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+	dev-python/decorator[${PYTHON_USEDEP}]
+	 dev-python/ply[${PYTHON_USEDEP}]
+	 dev-python/six[${PYTHON_USEDEP}]
+"
+DEPEND="
+	${REDEPEND}
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	test? (
+		dev-python/nose[${PYTHON_USEDEP}]
+		dev-python/pytest[${PYTHON_USEDEP}]
+	)
+"
+
+python_test() {
+	nosetests --verbose || die
+	py.test -v -v || die
+}

diff --git a/dev-python/jsonpath-rw/metadata.xml b/dev-python/jsonpath-rw/metadata.xml
new file mode 100644
index 000000000..14dc6d8c2
--- /dev/null
+++ b/dev-python/jsonpath-rw/metadata.xml
@@ -0,0 +1,18 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <description>comaintainers welcome</description>
+    <email>lssndrbarbieri@gmail.com</email>
+    <name>Alessandro Barbieri</name>
+  </maintainer>
+  <upstream>
+    <bugs-to>https://github.com/kennknowles/python-jsonpath-rw/issues</bugs-to>
+    <remote-id type="pypi">jsonpath-rw</remote-id>
+    <remote-id type="github">kennknowles/python-jsonpath-rw</remote-id>
+    <maintainer status="unknown">
+      <email>kenn.knowles@gmail.com</email>
+      <name>Kenneth Knowles</name>
+    </maintainer>
+  </upstream>
+</pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/jsonpath-rw/
@ 2021-10-14 20:22 Alessandro Barbieri
  0 siblings, 0 replies; 5+ messages in thread
From: Alessandro Barbieri @ 2021-10-14 20:22 UTC (permalink / raw
  To: gentoo-commits

commit:     f76c58465601d5383c9ff656b2cd4d1493a39610
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Thu Oct 14 19:21:28 2021 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Thu Oct 14 20:22:15 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f76c5846

dev-python/jsonpath-rw: use github tarball

Closes: https://bugs.gentoo.org/816630
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-python/jsonpath-rw/Manifest                 | 2 +-
 dev-python/jsonpath-rw/jsonpath-rw-1.4.0.ebuild | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-python/jsonpath-rw/Manifest b/dev-python/jsonpath-rw/Manifest
index 161efdd86..d4a65943b 100644
--- a/dev-python/jsonpath-rw/Manifest
+++ b/dev-python/jsonpath-rw/Manifest
@@ -1 +1 @@
-DIST jsonpath-rw-1.4.0.tar.gz 13814 BLAKE2B 96c17df53db15ea06b8d33231a5349e00d85eb92c9c1da784ee8b1773f1a12791f8dc2a6dc7ec67fde0c8c3cfec0a8fc08e77ff08eeebe4ef699d6d4bdda9276 SHA512 5fcbd832975a32d375fd400ebfb84f083c0e7d8780cc63df730a75cca0224bf32d72cb793fcac63fc3afa9697199d7a569af29961da95494253996cc6e5f63b7
+DIST jsonpath-rw-1.4.0.tar.gz 19813 BLAKE2B 2ee89864f38a6671ad593b5f056a19a794fcf6dd8dd56af1fbc709e50336ee5613c1144ec7f557d7380bed4eedd4ee7cc39f99ccb61dbc3a34c2e36641b183dc SHA512 8308e950f8b397e3ddd4120aa7794ab198d9f1a233c5fe16c2f393f1ba7e7e3bf289063a8b28f2425bfe0906be028f9bc1830779d09a56c306f2f102d26e6259

diff --git a/dev-python/jsonpath-rw/jsonpath-rw-1.4.0.ebuild b/dev-python/jsonpath-rw/jsonpath-rw-1.4.0.ebuild
index af6371fde..f1da5795c 100644
--- a/dev-python/jsonpath-rw/jsonpath-rw-1.4.0.ebuild
+++ b/dev-python/jsonpath-rw/jsonpath-rw-1.4.0.ebuild
@@ -12,15 +12,13 @@ HOMEPAGE="
 	https://github.com/kennknowles/python-jsonpath-rw
 	https://pypi.org/project/jsonpath-rw
 "
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+SRC_URI="https://github.com/kennknowles/python-jsonpath-rw/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
 KEYWORDS="~amd64"
 IUSE="test"
 
-RESTRICT="!test? ( test )"
-
 RDEPEND="
 	dev-python/decorator[${PYTHON_USEDEP}]
 	 dev-python/ply[${PYTHON_USEDEP}]
@@ -35,6 +33,8 @@ DEPEND="
 	)
 "
 
+RESTRICT="!test? ( test )"
+
 python_test() {
 	nosetests --verbose || die
 	py.test -v -v || die


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/jsonpath-rw/
@ 2022-03-19  1:54 Alessandro Barbieri
  0 siblings, 0 replies; 5+ messages in thread
From: Alessandro Barbieri @ 2022-03-19  1:54 UTC (permalink / raw
  To: gentoo-commits

commit:     bf26e98c587bd8b6d0af7421e0503b91af10236c
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sat Mar 19 01:52:32 2022 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sat Mar 19 01:52:32 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bf26e98c

dev-python/jsonpath-rw: fix S

Closes: https://bugs.gentoo.org/819009
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-python/jsonpath-rw/jsonpath-rw-1.4.0.ebuild | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/dev-python/jsonpath-rw/jsonpath-rw-1.4.0.ebuild b/dev-python/jsonpath-rw/jsonpath-rw-1.4.0.ebuild
index f1da5795c..04bba2279 100644
--- a/dev-python/jsonpath-rw/jsonpath-rw-1.4.0.ebuild
+++ b/dev-python/jsonpath-rw/jsonpath-rw-1.4.0.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
+MYPN="python-${PN}"
 PYTHON_COMPAT=( python3_{8..10} pypy3 )
 
 inherit distutils-r1
@@ -10,9 +11,10 @@ inherit distutils-r1
 DESCRIPTION="A robust and significantly extended implementation of JSONPath for Python"
 HOMEPAGE="
 	https://github.com/kennknowles/python-jsonpath-rw
-	https://pypi.org/project/jsonpath-rw
+	https://pypi.org/project/jsonpath-rw/
 "
-SRC_URI="https://github.com/kennknowles/python-jsonpath-rw/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="https://github.com/kennknowles/${MYPN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${MYPN}-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
@@ -21,12 +23,11 @@ IUSE="test"
 
 RDEPEND="
 	dev-python/decorator[${PYTHON_USEDEP}]
-	 dev-python/ply[${PYTHON_USEDEP}]
-	 dev-python/six[${PYTHON_USEDEP}]
+	dev-python/ply[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
 "
-DEPEND="
-	${REDEPEND}
-	dev-python/setuptools[${PYTHON_USEDEP}]
+DEPEND="${REDEPEND}"
+BDEPEND="
 	test? (
 		dev-python/nose[${PYTHON_USEDEP}]
 		dev-python/pytest[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/jsonpath-rw/
@ 2024-02-20 14:12 Takuya Wakazono
  0 siblings, 0 replies; 5+ messages in thread
From: Takuya Wakazono @ 2024-02-20 14:12 UTC (permalink / raw
  To: gentoo-commits

commit:     65dad0f0d98d06cf785016f783c15ea9773b4bc9
Author:     Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
AuthorDate: Tue Feb 20 14:09:58 2024 +0000
Commit:     Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
CommitDate: Tue Feb 20 14:12:09 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=65dad0f0

dev-python/jsonpath-rw: use PEP517 build

Closes: https://bugs.gentoo.org/897454
Closes: https://bugs.gentoo.org/921811
Signed-off-by: Takuya Wakazono <pastalian46 <AT> gmail.com>

 dev-python/jsonpath-rw/Manifest                    |  1 +
 dev-python/jsonpath-rw/jsonpath-rw-1.4.0-r1.ebuild | 30 ++++++++++++++++++++++
 2 files changed, 31 insertions(+)

diff --git a/dev-python/jsonpath-rw/Manifest b/dev-python/jsonpath-rw/Manifest
index d4a65943b7..1350c89365 100644
--- a/dev-python/jsonpath-rw/Manifest
+++ b/dev-python/jsonpath-rw/Manifest
@@ -1 +1,2 @@
 DIST jsonpath-rw-1.4.0.tar.gz 19813 BLAKE2B 2ee89864f38a6671ad593b5f056a19a794fcf6dd8dd56af1fbc709e50336ee5613c1144ec7f557d7380bed4eedd4ee7cc39f99ccb61dbc3a34c2e36641b183dc SHA512 8308e950f8b397e3ddd4120aa7794ab198d9f1a233c5fe16c2f393f1ba7e7e3bf289063a8b28f2425bfe0906be028f9bc1830779d09a56c306f2f102d26e6259
+DIST jsonpath-rw-1.4.0.gh.tar.gz 19813 BLAKE2B 2ee89864f38a6671ad593b5f056a19a794fcf6dd8dd56af1fbc709e50336ee5613c1144ec7f557d7380bed4eedd4ee7cc39f99ccb61dbc3a34c2e36641b183dc SHA512 8308e950f8b397e3ddd4120aa7794ab198d9f1a233c5fe16c2f393f1ba7e7e3bf289063a8b28f2425bfe0906be028f9bc1830779d09a56c306f2f102d26e6259

diff --git a/dev-python/jsonpath-rw/jsonpath-rw-1.4.0-r1.ebuild b/dev-python/jsonpath-rw/jsonpath-rw-1.4.0-r1.ebuild
new file mode 100644
index 0000000000..ba5376a1c3
--- /dev/null
+++ b/dev-python/jsonpath-rw/jsonpath-rw-1.4.0-r1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="A robust and significantly extended implementation of JSONPath for Python"
+HOMEPAGE="
+	https://github.com/kennknowles/python-jsonpath-rw
+	https://pypi.org/project/jsonpath-rw/
+"
+SRC_URI="https://github.com/kennknowles/python-jsonpath-rw/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
+S="${WORKDIR}/python-${P}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	dev-python/decorator[${PYTHON_USEDEP}]
+	dev-python/ply[${PYTHON_USEDEP}]
+	dev-python/six[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+distutils_enable_tests unittest


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/jsonpath-rw/
@ 2024-02-20 14:12 Takuya Wakazono
  0 siblings, 0 replies; 5+ messages in thread
From: Takuya Wakazono @ 2024-02-20 14:12 UTC (permalink / raw
  To: gentoo-commits

commit:     431f0697c8158921ba908b0ca9e8dc8bcbb5cc43
Author:     Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
AuthorDate: Tue Feb 20 14:11:29 2024 +0000
Commit:     Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
CommitDate: Tue Feb 20 14:12:09 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=431f0697

dev-python/jsonpath-rw: drop 1.4.0

Signed-off-by: Takuya Wakazono <pastalian46 <AT> gmail.com>

 dev-python/jsonpath-rw/Manifest                 |  1 -
 dev-python/jsonpath-rw/jsonpath-rw-1.4.0.ebuild | 42 -------------------------
 2 files changed, 43 deletions(-)

diff --git a/dev-python/jsonpath-rw/Manifest b/dev-python/jsonpath-rw/Manifest
index 1350c89365..41d2fa2411 100644
--- a/dev-python/jsonpath-rw/Manifest
+++ b/dev-python/jsonpath-rw/Manifest
@@ -1,2 +1 @@
-DIST jsonpath-rw-1.4.0.tar.gz 19813 BLAKE2B 2ee89864f38a6671ad593b5f056a19a794fcf6dd8dd56af1fbc709e50336ee5613c1144ec7f557d7380bed4eedd4ee7cc39f99ccb61dbc3a34c2e36641b183dc SHA512 8308e950f8b397e3ddd4120aa7794ab198d9f1a233c5fe16c2f393f1ba7e7e3bf289063a8b28f2425bfe0906be028f9bc1830779d09a56c306f2f102d26e6259
 DIST jsonpath-rw-1.4.0.gh.tar.gz 19813 BLAKE2B 2ee89864f38a6671ad593b5f056a19a794fcf6dd8dd56af1fbc709e50336ee5613c1144ec7f557d7380bed4eedd4ee7cc39f99ccb61dbc3a34c2e36641b183dc SHA512 8308e950f8b397e3ddd4120aa7794ab198d9f1a233c5fe16c2f393f1ba7e7e3bf289063a8b28f2425bfe0906be028f9bc1830779d09a56c306f2f102d26e6259

diff --git a/dev-python/jsonpath-rw/jsonpath-rw-1.4.0.ebuild b/dev-python/jsonpath-rw/jsonpath-rw-1.4.0.ebuild
deleted file mode 100644
index 8cd5392286..0000000000
--- a/dev-python/jsonpath-rw/jsonpath-rw-1.4.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-MYPN="python-${PN}"
-PYTHON_COMPAT=( python3_10 pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="A robust and significantly extended implementation of JSONPath for Python"
-HOMEPAGE="
-	https://github.com/kennknowles/python-jsonpath-rw
-	https://pypi.org/project/jsonpath-rw/
-"
-SRC_URI="https://github.com/kennknowles/${MYPN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/${MYPN}-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-
-RDEPEND="
-	dev-python/decorator[${PYTHON_USEDEP}]
-	dev-python/ply[${PYTHON_USEDEP}]
-	dev-python/six[${PYTHON_USEDEP}]
-"
-DEPEND="${REDEPEND}"
-BDEPEND="
-	test? (
-		dev-python/nose[${PYTHON_USEDEP}]
-		dev-python/pytest[${PYTHON_USEDEP}]
-	)
-"
-
-RESTRICT="!test? ( test )"
-
-python_test() {
-	nosetests --verbose || die
-	py.test -v -v || die
-}


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

end of thread, other threads:[~2024-02-20 14:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-19  1:54 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/jsonpath-rw/ Alessandro Barbieri
  -- strict thread matches above, loose matches on Subject: below --
2024-02-20 14:12 Takuya Wakazono
2024-02-20 14:12 Takuya Wakazono
2021-10-14 20:22 Alessandro Barbieri
2021-10-03 18:33 Alessandro Barbieri

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