public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/signedjson/
@ 2022-07-09  8:16 Sam James
  0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2022-07-09  8:16 UTC (permalink / raw
  To: gentoo-commits

commit:     2ad7fe7579ecf08c2cfe974631a081454cd99c4b
Author:     Petr Vaněk <arkamar <AT> atlas <DOT> cz>
AuthorDate: Thu Jul  7 13:23:21 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jul  9 08:15:52 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ad7fe75

dev-python/signedjson: new package, add 1.1.4

Signed-off-by: Petr Vaněk <arkamar <AT> atlas.cz>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/signedjson/Manifest                |  1 +
 dev-python/signedjson/metadata.xml            | 16 ++++++++++++
 dev-python/signedjson/signedjson-1.1.4.ebuild | 35 +++++++++++++++++++++++++++
 3 files changed, 52 insertions(+)

diff --git a/dev-python/signedjson/Manifest b/dev-python/signedjson/Manifest
new file mode 100644
index 000000000000..6354a03b4e7f
--- /dev/null
+++ b/dev-python/signedjson/Manifest
@@ -0,0 +1 @@
+DIST signedjson-1.1.4.gh.tar.gz 12714 BLAKE2B 854f28074b82490bbeb6a0a0b3528d608b2ff6f5ff3cb52c913525b81f483afa6b4c8423dc25d9adaa3c3a9f269ec54409af0e7f8b5ddf3903e33a9b00c0dac8 SHA512 8928b9ecf1d6a9291a07bc3270ef57a824267ad45c114cfb720fc4db36415301f6bee26db9bb447e0051d3366c5471f718f37238bdd841bd06e73f5841f13ed6

diff --git a/dev-python/signedjson/metadata.xml b/dev-python/signedjson/metadata.xml
new file mode 100644
index 000000000000..d52dc8df1afc
--- /dev/null
+++ b/dev-python/signedjson/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person" proxied="yes">
+		<email>arkamar@atlas.cz</email>
+		<name>Petr Vaněk</name>
+	</maintainer>
+	<maintainer type="project" proxied="proxy">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="pypi">signedjson</remote-id>
+		<remote-id type="github">matrix-org/python-signedjson</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/dev-python/signedjson/signedjson-1.1.4.ebuild b/dev-python/signedjson/signedjson-1.1.4.ebuild
new file mode 100644
index 000000000000..e3119b96c7d6
--- /dev/null
+++ b/dev-python/signedjson/signedjson-1.1.4.ebuild
@@ -0,0 +1,35 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Signs JSON objects with ED25519 signatures."
+HOMEPAGE="
+	https://github.com/matrix-org/python-signedjson
+	https://pypi.python.org/pypi/signedjson
+"
+SRC_URI="https://github.com/matrix-org/python-signedjson//archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+S="${WORKDIR}/python-${P}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	dev-python/canonicaljson[${PYTHON_USEDEP}]
+	dev-python/pynacl[${PYTHON_USEDEP}]
+	dev-python/unpaddedbase64[${PYTHON_USEDEP}]
+	$(python_gen_cond_dep '
+		dev-python/importlib_metadata[${PYTHON_USEDEP}]
+	' python3_9)
+"
+
+distutils_enable_tests unittest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/signedjson/
@ 2022-07-09 10:13 Sam James
  0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2022-07-09 10:13 UTC (permalink / raw
  To: gentoo-commits

commit:     b358a1e3e9a7fe655064d5f69d5c592dac6614cd
Author:     Petr Vaněk <arkamar <AT> atlas <DOT> cz>
AuthorDate: Sat Jul  9 10:01:45 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jul  9 10:13:15 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b358a1e3

dev-python/signedjson: remove extra / from SRC_URI

Signed-off-by: Petr Vaněk <arkamar <AT> atlas.cz>
Closes: https://github.com/gentoo/gentoo/pull/26307
Signed-off-by: Sam James <sam <AT> gentoo.org>

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

diff --git a/dev-python/signedjson/signedjson-1.1.4.ebuild b/dev-python/signedjson/signedjson-1.1.4.ebuild
index e3119b96c7d6..ddefed8ba9e7 100644
--- a/dev-python/signedjson/signedjson-1.1.4.ebuild
+++ b/dev-python/signedjson/signedjson-1.1.4.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="
 	https://github.com/matrix-org/python-signedjson
 	https://pypi.python.org/pypi/signedjson
 "
-SRC_URI="https://github.com/matrix-org/python-signedjson//archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
+SRC_URI="https://github.com/matrix-org/python-signedjson/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
 
 S="${WORKDIR}/python-${P}"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/signedjson/
@ 2022-07-20 17:01 Sam James
  0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2022-07-20 17:01 UTC (permalink / raw
  To: gentoo-commits

commit:     445a0ff5173203d3bac93f5e65d95a09d683d8a7
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 20 17:00:49 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jul 20 17:00:49 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=445a0ff5

dev-python/signedjson: Keyword 1.1.4 ppc64, #859412

Signed-off-by: Sam James <sam <AT> gentoo.org>

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

diff --git a/dev-python/signedjson/signedjson-1.1.4.ebuild b/dev-python/signedjson/signedjson-1.1.4.ebuild
index ddefed8ba9e7..9807bb723e92 100644
--- a/dev-python/signedjson/signedjson-1.1.4.ebuild
+++ b/dev-python/signedjson/signedjson-1.1.4.ebuild
@@ -19,7 +19,7 @@ S="${WORKDIR}/python-${P}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~ppc64"
 
 RDEPEND="
 	dev-python/canonicaljson[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/signedjson/
@ 2022-08-23 19:29 Sam James
  0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2022-08-23 19:29 UTC (permalink / raw
  To: gentoo-commits

commit:     e0b09959d803aedeaaa95aa9804de0a9a1fa6b12
Author:     Petr Vaněk <arkamar <AT> atlas <DOT> cz>
AuthorDate: Tue Aug 23 12:55:36 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Aug 23 19:29:39 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0b09959

dev-python/signedjson: correct pypi HOMEPAGE link

Signed-off-by: Petr Vaněk <arkamar <AT> atlas.cz>
Closes: https://github.com/gentoo/gentoo/pull/26977
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/signedjson/signedjson-1.1.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/signedjson/signedjson-1.1.4.ebuild b/dev-python/signedjson/signedjson-1.1.4.ebuild
index 9807bb723e92..c4cb90c641c4 100644
--- a/dev-python/signedjson/signedjson-1.1.4.ebuild
+++ b/dev-python/signedjson/signedjson-1.1.4.ebuild
@@ -10,8 +10,8 @@ inherit distutils-r1
 
 DESCRIPTION="Signs JSON objects with ED25519 signatures."
 HOMEPAGE="
-	https://github.com/matrix-org/python-signedjson
-	https://pypi.python.org/pypi/signedjson
+	https://github.com/matrix-org/python-signedjson/
+	https://pypi.org/project/signedjson/
 "
 SRC_URI="https://github.com/matrix-org/python-signedjson/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/signedjson/
@ 2022-09-22  7:42 Agostino Sarubbo
  0 siblings, 0 replies; 9+ messages in thread
From: Agostino Sarubbo @ 2022-09-22  7:42 UTC (permalink / raw
  To: gentoo-commits

commit:     891596933c1ff7f3d60050313254de3d683389ac
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 22 07:41:12 2022 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Sep 22 07:41:12 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89159693

dev-python/signedjson: Stabilize 1.1.4 amd64, #870118

Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

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

diff --git a/dev-python/signedjson/signedjson-1.1.4.ebuild b/dev-python/signedjson/signedjson-1.1.4.ebuild
index c4cb90c641c4..8c361d0b228f 100644
--- a/dev-python/signedjson/signedjson-1.1.4.ebuild
+++ b/dev-python/signedjson/signedjson-1.1.4.ebuild
@@ -19,7 +19,7 @@ S="${WORKDIR}/python-${P}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64"
+KEYWORDS="amd64 ~ppc64"
 
 RDEPEND="
 	dev-python/canonicaljson[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/signedjson/
@ 2022-09-27 21:44 Sam James
  0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2022-09-27 21:44 UTC (permalink / raw
  To: gentoo-commits

commit:     9929a23dd725ef1849cb503d2dafb5f6ebcb10a6
Author:     Petr Vaněk <arkamar <AT> atlas <DOT> cz>
AuthorDate: Tue Sep 27 13:54:26 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Sep 27 21:42:02 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9929a23d

dev-python/signedjson: mark ALLARCHES

Signed-off-by: Petr Vaněk <arkamar <AT> atlas.cz>
Signed-off-by: Sam James <sam <AT> gentoo.org>

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

diff --git a/dev-python/signedjson/metadata.xml b/dev-python/signedjson/metadata.xml
index d52dc8df1afc..e1c378c4a4a7 100644
--- a/dev-python/signedjson/metadata.xml
+++ b/dev-python/signedjson/metadata.xml
@@ -9,6 +9,7 @@
 		<email>proxy-maint@gentoo.org</email>
 		<name>Proxy Maintainers</name>
 	</maintainer>
+	<stabilize-allarches/>
 	<upstream>
 		<remote-id type="pypi">signedjson</remote-id>
 		<remote-id type="github">matrix-org/python-signedjson</remote-id>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/signedjson/
@ 2023-05-25 21:52 Sam James
  0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2023-05-25 21:52 UTC (permalink / raw
  To: gentoo-commits

commit:     6a726ac9db835b652e39c5903c4e8d2f0a1e8e61
Author:     Petr Vaněk <arkamar <AT> atlas <DOT> cz>
AuthorDate: Wed May 24 12:47:18 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu May 25 21:52:10 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a726ac9

dev-python/signedjson: add missing bdep

setuptools-scm is needed for SETUPTOOLS_SCM_PRETEND_VERSION.

Signed-off-by: Petr Vaněk <arkamar <AT> atlas.cz>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/signedjson/signedjson-1.1.4.ebuild | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-python/signedjson/signedjson-1.1.4.ebuild b/dev-python/signedjson/signedjson-1.1.4.ebuild
index 10a241fb217b..29514814670a 100644
--- a/dev-python/signedjson/signedjson-1.1.4.ebuild
+++ b/dev-python/signedjson/signedjson-1.1.4.ebuild
@@ -29,6 +29,9 @@ RDEPEND="
 		dev-python/importlib-metadata[${PYTHON_USEDEP}]
 	' python3_9)
 "
+BDEPEND="
+	dev-python/setuptools-scm[${PYTHON_USEDEP}]
+"
 
 distutils_enable_tests unittest
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/signedjson/
@ 2023-05-28 11:36 Sam James
  0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2023-05-28 11:36 UTC (permalink / raw
  To: gentoo-commits

commit:     cc56080408ff4dffb78adfb9c8cd24c4a491eada
Author:     Petr Vaněk <arkamar <AT> atlas <DOT> cz>
AuthorDate: Sun May 28 09:49:08 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun May 28 11:35:26 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc560804

dev-python/signedjson: enable py3.12

Signed-off-by: Petr Vaněk <arkamar <AT> atlas.cz>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/signedjson/signedjson-1.1.4.ebuild | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/dev-python/signedjson/signedjson-1.1.4.ebuild b/dev-python/signedjson/signedjson-1.1.4.ebuild
index 29514814670a..ee2e179afeea 100644
--- a/dev-python/signedjson/signedjson-1.1.4.ebuild
+++ b/dev-python/signedjson/signedjson-1.1.4.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1
 
@@ -25,9 +25,6 @@ RDEPEND="
 	dev-python/canonicaljson[${PYTHON_USEDEP}]
 	dev-python/pynacl[${PYTHON_USEDEP}]
 	dev-python/unpaddedbase64[${PYTHON_USEDEP}]
-	$(python_gen_cond_dep '
-		dev-python/importlib-metadata[${PYTHON_USEDEP}]
-	' python3_9)
 "
 BDEPEND="
 	dev-python/setuptools-scm[${PYTHON_USEDEP}]


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/signedjson/
@ 2024-05-26 22:41 Petr Vaněk
  0 siblings, 0 replies; 9+ messages in thread
From: Petr Vaněk @ 2024-05-26 22:41 UTC (permalink / raw
  To: gentoo-commits

commit:     ce5aa101e163759cadebfd865d7c1d7fbe123381
Author:     Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Sun May 26 22:25:39 2024 +0000
Commit:     Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Sun May 26 22:40:26 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce5aa101

dev-python/signedjson: enable py3.13

Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>

 dev-python/signedjson/signedjson-1.1.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/signedjson/signedjson-1.1.4.ebuild b/dev-python/signedjson/signedjson-1.1.4.ebuild
index a1b79283e894..85723f6a0c1e 100644
--- a/dev-python/signedjson/signedjson-1.1.4.ebuild
+++ b/dev-python/signedjson/signedjson-1.1.4.ebuild
@@ -1,10 +1,10 @@
-# Copyright 2022-2023 Gentoo Authors
+# Copyright 2022-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} )
+PYTHON_COMPAT=( python3_{10..13} )
 
 inherit distutils-r1
 


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

end of thread, other threads:[~2024-05-26 22:41 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-23 19:29 [gentoo-commits] repo/gentoo:master commit in: dev-python/signedjson/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2024-05-26 22:41 Petr Vaněk
2023-05-28 11:36 Sam James
2023-05-25 21:52 Sam James
2022-09-27 21:44 Sam James
2022-09-22  7:42 Agostino Sarubbo
2022-07-20 17:01 Sam James
2022-07-09 10:13 Sam James
2022-07-09  8:16 Sam James

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