public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-misc/wildq/
@ 2021-04-24  3:20 Zac Medico
  0 siblings, 0 replies; 6+ messages in thread
From: Zac Medico @ 2021-04-24  3:20 UTC (permalink / raw
  To: gentoo-commits

commit:     67f01ef43a26009e95bd8edfd8598c5f45e578bf
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 24 02:07:21 2021 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Sat Apr 24 03:17:07 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67f01ef4

app-misc/wildq: Initial import

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>

 app-misc/wildq/Manifest            |  1 +
 app-misc/wildq/metadata.xml        | 16 ++++++++++++++++
 app-misc/wildq/wildq-1.1.10.ebuild | 28 ++++++++++++++++++++++++++++
 3 files changed, 45 insertions(+)

diff --git a/app-misc/wildq/Manifest b/app-misc/wildq/Manifest
new file mode 100644
index 00000000000..a360e0aadfa
--- /dev/null
+++ b/app-misc/wildq/Manifest
@@ -0,0 +1 @@
+DIST wildq-1.1.10.tar.gz 16049 BLAKE2B ffb365e7dee7770a0ab52d189b59f1a8a9e6b2c8a63439d884b29fc7182b523eb38e2ada0ce9581d637fed9035dc5f7fc0197451bb4fcafd1d54746b0c0112af SHA512 cf10cd10757e6b933ecc11167c5ad4c548dfbfa9edad030458736ba6d29e816bb214c111fa96fa2625160d6403758d936c8374d6dc26b528e6ae22ed947de5bc

diff --git a/app-misc/wildq/metadata.xml b/app-misc/wildq/metadata.xml
new file mode 100644
index 00000000000..215bdfd0e99
--- /dev/null
+++ b/app-misc/wildq/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<upstream>
+		<remote-id type="pypi">wildq</remote-id>
+		<remote-id type="github">ahmet2mir/wildq</remote-id>
+	</upstream>
+	<maintainer type="person">
+		<email>zmedico@gentoo.org</email>
+	</maintainer>
+	<use>
+		<flag name="hcl">HCL support via pyhcl</flag>
+		<flag name="toml">TOML support via pytoml</flag>
+		<flag name="xml">XML support via xmltodict</flag>
+	</use>
+</pkgmetadata>

diff --git a/app-misc/wildq/wildq-1.1.10.ebuild b/app-misc/wildq/wildq-1.1.10.ebuild
new file mode 100644
index 00000000000..ccc4444aac8
--- /dev/null
+++ b/app-misc/wildq/wildq-1.1.10.ebuild
@@ -0,0 +1,28 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{8..9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
+inherit distutils-r1
+
+DESCRIPTION="Command-line TOML/JSON/INI/YAML/XML processor using jq c bindings"
+HOMEPAGE="https://pypi.org/project/wildq/ https://github.com/ahmet2mir/wildq"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="hcl toml xml"
+RDEPEND="
+	dev-python/jq[${PYTHON_USEDEP}]
+	hcl? ( dev-python/pyhcl[${PYTHON_USEDEP}] )
+	toml? ( dev-python/toml[${PYTHON_USEDEP}] )
+	xml? ( dev-python/xmltodict[${PYTHON_USEDEP}] )
+"
+
+python_prepare_all() {
+	# Unpin install_requires versions.
+	sed -e "s|^\\([ []'[[:alnum:]]\+\\)>=[^']*|\\1|" -i setup.py || die
+	distutils-r1_python_prepare_all
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/wildq/
@ 2021-09-20 21:24 Zac Medico
  0 siblings, 0 replies; 6+ messages in thread
From: Zac Medico @ 2021-09-20 21:24 UTC (permalink / raw
  To: gentoo-commits

commit:     0d0a0b915249e40733b3bee161089257ef82accc
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 20 21:22:20 2021 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Mon Sep 20 21:24:36 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d0a0b91

app-misc/wildq: DISTUTILS_USE_SETUPTOOLS=bdepend

Closes: https://bugs.gentoo.org/814131
Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>

 app-misc/wildq/wildq-1.1.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/wildq/wildq-1.1.10.ebuild b/app-misc/wildq/wildq-1.1.10.ebuild
index ccc4444aac8..4e59a566aac 100644
--- a/app-misc/wildq/wildq-1.1.10.ebuild
+++ b/app-misc/wildq/wildq-1.1.10.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 PYTHON_COMPAT=( python3_{8..9} )
-DISTUTILS_USE_SETUPTOOLS=rdepend
+DISTUTILS_USE_SETUPTOOLS=bdepend
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/wildq/
@ 2022-02-12 17:07 Zac Medico
  0 siblings, 0 replies; 6+ messages in thread
From: Zac Medico @ 2022-02-12 17:07 UTC (permalink / raw
  To: gentoo-commits

commit:     b9cfc6a06b485b9c9fcbc788a23fb48252405be3
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 12 17:05:24 2022 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Sat Feb 12 17:07:07 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9cfc6a0

app-misc/wildq: Bump to version 1.1.11

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>

 app-misc/wildq/Manifest            |  1 +
 app-misc/wildq/wildq-1.1.11.ebuild | 28 ++++++++++++++++++++++++++++
 2 files changed, 29 insertions(+)

diff --git a/app-misc/wildq/Manifest b/app-misc/wildq/Manifest
index a360e0aadfad..a2ad8d323558 100644
--- a/app-misc/wildq/Manifest
+++ b/app-misc/wildq/Manifest
@@ -1 +1,2 @@
 DIST wildq-1.1.10.tar.gz 16049 BLAKE2B ffb365e7dee7770a0ab52d189b59f1a8a9e6b2c8a63439d884b29fc7182b523eb38e2ada0ce9581d637fed9035dc5f7fc0197451bb4fcafd1d54746b0c0112af SHA512 cf10cd10757e6b933ecc11167c5ad4c548dfbfa9edad030458736ba6d29e816bb214c111fa96fa2625160d6403758d936c8374d6dc26b528e6ae22ed947de5bc
+DIST wildq-1.1.11.tar.gz 16753 BLAKE2B f95db636b989b4cf99c7612779c2b4f57f7dd5b185741be017a85de546cdc675592f8c846ff2aa15a8afc416e61f780c1682c956de7125e020666e83ea6a7818 SHA512 474869d13c33ae5b053d4f135a288e1a778f201471def20b0f95c5ab16152c828f77a730ed85a39e4f8619523f4685b6da89fb7954134fe2a10776255062b22d

diff --git a/app-misc/wildq/wildq-1.1.11.ebuild b/app-misc/wildq/wildq-1.1.11.ebuild
new file mode 100644
index 000000000000..3daa9013b3be
--- /dev/null
+++ b/app-misc/wildq/wildq-1.1.11.ebuild
@@ -0,0 +1,28 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{8..9} )
+DISTUTILS_USE_SETUPTOOLS=bdepend
+
+inherit distutils-r1
+
+DESCRIPTION="Command-line TOML/JSON/INI/YAML/XML processor using jq c bindings"
+HOMEPAGE="https://pypi.org/project/wildq/ https://github.com/ahmet2mir/wildq"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="hcl toml xml"
+RDEPEND="
+	dev-python/jq[${PYTHON_USEDEP}]
+	hcl? ( dev-python/pyhcl[${PYTHON_USEDEP}] )
+	toml? ( dev-python/toml[${PYTHON_USEDEP}] )
+	xml? ( dev-python/xmltodict[${PYTHON_USEDEP}] )
+"
+
+python_prepare_all() {
+	# Unpin install_requires versions.
+	sed -e "s|^\\([ []'[[:alnum:]]\+\\)>=[^']*|\\1|" -i setup.py || die
+	distutils-r1_python_prepare_all
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/wildq/
@ 2022-05-19  2:27 Zac Medico
  0 siblings, 0 replies; 6+ messages in thread
From: Zac Medico @ 2022-05-19  2:27 UTC (permalink / raw
  To: gentoo-commits

commit:     01ac1bb3da599965f7b15a09e05148db47e4c121
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Thu May 19 02:22:45 2022 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Thu May 19 02:27:02 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01ac1bb3

app-misc/wildq: drop 1.1.10

Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>

 app-misc/wildq/Manifest            |  1 -
 app-misc/wildq/wildq-1.1.10.ebuild | 28 ----------------------------
 2 files changed, 29 deletions(-)

diff --git a/app-misc/wildq/Manifest b/app-misc/wildq/Manifest
index a2ad8d323558..6b10948d4e3f 100644
--- a/app-misc/wildq/Manifest
+++ b/app-misc/wildq/Manifest
@@ -1,2 +1 @@
-DIST wildq-1.1.10.tar.gz 16049 BLAKE2B ffb365e7dee7770a0ab52d189b59f1a8a9e6b2c8a63439d884b29fc7182b523eb38e2ada0ce9581d637fed9035dc5f7fc0197451bb4fcafd1d54746b0c0112af SHA512 cf10cd10757e6b933ecc11167c5ad4c548dfbfa9edad030458736ba6d29e816bb214c111fa96fa2625160d6403758d936c8374d6dc26b528e6ae22ed947de5bc
 DIST wildq-1.1.11.tar.gz 16753 BLAKE2B f95db636b989b4cf99c7612779c2b4f57f7dd5b185741be017a85de546cdc675592f8c846ff2aa15a8afc416e61f780c1682c956de7125e020666e83ea6a7818 SHA512 474869d13c33ae5b053d4f135a288e1a778f201471def20b0f95c5ab16152c828f77a730ed85a39e4f8619523f4685b6da89fb7954134fe2a10776255062b22d

diff --git a/app-misc/wildq/wildq-1.1.10.ebuild b/app-misc/wildq/wildq-1.1.10.ebuild
deleted file mode 100644
index 4e59a566aacc..000000000000
--- a/app-misc/wildq/wildq-1.1.10.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{8..9} )
-DISTUTILS_USE_SETUPTOOLS=bdepend
-
-inherit distutils-r1
-
-DESCRIPTION="Command-line TOML/JSON/INI/YAML/XML processor using jq c bindings"
-HOMEPAGE="https://pypi.org/project/wildq/ https://github.com/ahmet2mir/wildq"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="hcl toml xml"
-RDEPEND="
-	dev-python/jq[${PYTHON_USEDEP}]
-	hcl? ( dev-python/pyhcl[${PYTHON_USEDEP}] )
-	toml? ( dev-python/toml[${PYTHON_USEDEP}] )
-	xml? ( dev-python/xmltodict[${PYTHON_USEDEP}] )
-"
-
-python_prepare_all() {
-	# Unpin install_requires versions.
-	sed -e "s|^\\([ []'[[:alnum:]]\+\\)>=[^']*|\\1|" -i setup.py || die
-	distutils-r1_python_prepare_all
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/wildq/
@ 2022-05-19  2:27 Zac Medico
  0 siblings, 0 replies; 6+ messages in thread
From: Zac Medico @ 2022-05-19  2:27 UTC (permalink / raw
  To: gentoo-commits

commit:     8f8906aa5ae5091278f79e8f3a4cf84741c26aec
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Thu May 19 02:24:59 2022 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Thu May 19 02:27:02 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f8906aa

app-misc/wildq: enable py3.10

Closes: https://bugs.gentoo.org/845531
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>

 app-misc/wildq/wildq-1.1.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/wildq/wildq-1.1.11.ebuild b/app-misc/wildq/wildq-1.1.11.ebuild
index 3daa9013b3be..227028c4c4cb 100644
--- a/app-misc/wildq/wildq-1.1.11.ebuild
+++ b/app-misc/wildq/wildq-1.1.11.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{8..9} )
+PYTHON_COMPAT=( python3_{8..10} )
 DISTUTILS_USE_SETUPTOOLS=bdepend
 
 inherit distutils-r1


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

* [gentoo-commits] repo/gentoo:master commit in: app-misc/wildq/
@ 2023-05-03 14:51 Zac Medico
  0 siblings, 0 replies; 6+ messages in thread
From: Zac Medico @ 2023-05-03 14:51 UTC (permalink / raw
  To: gentoo-commits

commit:     5bf9f094349912d82a6952e5c2f37dac2391a75f
Author:     Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Wed May  3 14:46:06 2023 +0000
Commit:     Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Wed May  3 14:51:11 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bf9f094

app-misc/wildq: enable py3.11

Closes: https://bugs.gentoo.org/896604
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>

 app-misc/wildq/wildq-1.1.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/wildq/wildq-1.1.11.ebuild b/app-misc/wildq/wildq-1.1.11.ebuild
index b6cb1be1cf1d..2d5c72c8a282 100644
--- a/app-misc/wildq/wildq-1.1.11.ebuild
+++ b/app-misc/wildq/wildq-1.1.11.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 DISTUTILS_USE_SETUPTOOLS=bdepend
 
 inherit distutils-r1 pypi


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

end of thread, other threads:[~2023-05-03 14:51 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-19  2:27 [gentoo-commits] repo/gentoo:master commit in: app-misc/wildq/ Zac Medico
  -- strict thread matches above, loose matches on Subject: below --
2023-05-03 14:51 Zac Medico
2022-05-19  2:27 Zac Medico
2022-02-12 17:07 Zac Medico
2021-09-20 21:24 Zac Medico
2021-04-24  3:20 Zac Medico

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