* [gentoo-commits] repo/gentoo:master commit in: dev-python/pydiffx/
@ 2022-05-20 9:13 Michał Górny
0 siblings, 0 replies; 12+ messages in thread
From: Michał Górny @ 2022-05-20 9:13 UTC (permalink / raw
To: gentoo-commits
commit: 2853509b84654276ab9f23b67763b70cdc3c4fe9
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri May 20 09:12:44 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri May 20 09:13:01 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2853509b
dev-python/pydiffx: New package, v1.0.1
Requested by graaff, for dev-util/rbtools.
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/pydiffx/Manifest | 1 +
dev-python/pydiffx/metadata.xml | 13 ++++++++++++
dev-python/pydiffx/pydiffx-1.0.1.ebuild | 37 +++++++++++++++++++++++++++++++++
3 files changed, 51 insertions(+)
diff --git a/dev-python/pydiffx/Manifest b/dev-python/pydiffx/Manifest
new file mode 100644
index 000000000000..623c2c5b1c61
--- /dev/null
+++ b/dev-python/pydiffx/Manifest
@@ -0,0 +1 @@
+DIST diffx-pydiffx-release-1.0.1.tar.gz 82838 BLAKE2B 80ac477ff6b72dd089f134afc988251b20f7675e05c429e12238800145ed70f57acca835ddfdd77a2b22e53767b77d741537aad02f93bdefcee06a44965c7904 SHA512 dcb6b9dad321c5bec940d13dcf64853587c4e7636d34ea3ac4bc2b54df8915e1ac9804932034c069fcfba5f10f05972cc7dc46ba0d37c2e08c684bcbb2c2409e
diff --git a/dev-python/pydiffx/metadata.xml b/dev-python/pydiffx/metadata.xml
new file mode 100644
index 000000000000..f0d405500367
--- /dev/null
+++ b/dev-python/pydiffx/metadata.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>python@gentoo.org</email>
+ <name>Python</name>
+ </maintainer>
+ <stabilize-allarches/>
+ <upstream>
+ <remote-id type="github">beanbaginc/diffx</remote-id>
+ <remote-id type="pypi">pydiffx</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-python/pydiffx/pydiffx-1.0.1.ebuild b/dev-python/pydiffx/pydiffx-1.0.1.ebuild
new file mode 100644
index 000000000000..baa4b006060e
--- /dev/null
+++ b/dev-python/pydiffx/pydiffx-1.0.1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+MY_P=diffx-pydiffx-release-${PV}
+DESCRIPTION="Python module for reading and writing DiffX files"
+HOMEPAGE="
+ https://diffx.org/pydiffx/
+ https://github.com/beanbaginc/diffx/
+ https://pypi.org/project/pydiffx/
+"
+SRC_URI="
+ https://github.com/beanbaginc/diffx/archive/pydiffx/release-${PV}.tar.gz
+ -> ${MY_P}.tar.gz
+"
+S=${WORKDIR}/${MY_P}/python
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+ dev-python/six[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ test? (
+ dev-python/kgb[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests unittest
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/pydiffx/
@ 2022-05-21 7:02 Michał Górny
0 siblings, 0 replies; 12+ messages in thread
From: Michał Górny @ 2022-05-21 7:02 UTC (permalink / raw
To: gentoo-commits
commit: 922c21deba467adacd5bbfcaa05f7e6e6d4ad4c3
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat May 21 06:59:13 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 21 06:59:13 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=922c21de
dev-python/pydiffx: Remove .dev tag from version
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
.../pydiffx/{pydiffx-1.0.1.ebuild => pydiffx-1.0.1-r1.ebuild} | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/dev-python/pydiffx/pydiffx-1.0.1.ebuild b/dev-python/pydiffx/pydiffx-1.0.1-r1.ebuild
similarity index 85%
rename from dev-python/pydiffx/pydiffx-1.0.1.ebuild
rename to dev-python/pydiffx/pydiffx-1.0.1-r1.ebuild
index baa4b006060e..d20ee3c8b60d 100644
--- a/dev-python/pydiffx/pydiffx-1.0.1.ebuild
+++ b/dev-python/pydiffx/pydiffx-1.0.1-r1.ebuild
@@ -35,3 +35,9 @@ BDEPEND="
"
distutils_enable_tests unittest
+
+src_prepare() {
+ # remove .dev tag that breaks revdeps
+ sed -i -e '/tag_build/d' setup.cfg || die
+ distutils-r1_src_prepare
+}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/pydiffx/
@ 2022-06-24 20:59 Jakov Smolić
0 siblings, 0 replies; 12+ messages in thread
From: Jakov Smolić @ 2022-06-24 20:59 UTC (permalink / raw
To: gentoo-commits
commit: f0954253a442b028898f1e42a66904901cbbacf3
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 24 20:59:43 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Fri Jun 24 20:59:43 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0954253
dev-python/pydiffx: Keyword 1.0.1-r1 x86, #846686
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
dev-python/pydiffx/pydiffx-1.0.1-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/pydiffx/pydiffx-1.0.1-r1.ebuild b/dev-python/pydiffx/pydiffx-1.0.1-r1.ebuild
index d20ee3c8b60d..a5106d25a571 100644
--- a/dev-python/pydiffx/pydiffx-1.0.1-r1.ebuild
+++ b/dev-python/pydiffx/pydiffx-1.0.1-r1.ebuild
@@ -23,7 +23,7 @@ S=${WORKDIR}/${MY_P}/python
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
RDEPEND="
dev-python/six[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/pydiffx/
@ 2022-09-19 18:35 Arthur Zamarin
0 siblings, 0 replies; 12+ messages in thread
From: Arthur Zamarin @ 2022-09-19 18:35 UTC (permalink / raw
To: gentoo-commits
commit: b5d6652cfd8e67a6771134a72740429109d7af89
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 19 17:54:40 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Sep 19 18:28:07 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5d6652c
dev-python/pydiffx: enable py3.11
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/pydiffx/pydiffx-1.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/pydiffx/pydiffx-1.1.ebuild b/dev-python/pydiffx/pydiffx-1.1.ebuild
index 0aea04e296cc..3784544a32d2 100644
--- a/dev-python/pydiffx/pydiffx-1.1.ebuild
+++ b/dev-python/pydiffx/pydiffx-1.1.ebuild
@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/pydiffx/
@ 2022-09-19 18:35 Arthur Zamarin
0 siblings, 0 replies; 12+ messages in thread
From: Arthur Zamarin @ 2022-09-19 18:35 UTC (permalink / raw
To: gentoo-commits
commit: daf0f4c6acc1e8b60f3d9ac9b642a4179ded3120
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 19 17:54:05 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Sep 19 18:28:07 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=daf0f4c6
dev-python/pydiffx: add 1.1
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/pydiffx/Manifest | 1 +
dev-python/pydiffx/pydiffx-1.1.ebuild | 43 +++++++++++++++++++++++++++++++++++
2 files changed, 44 insertions(+)
diff --git a/dev-python/pydiffx/Manifest b/dev-python/pydiffx/Manifest
index 623c2c5b1c61..c6160e1a2fe9 100644
--- a/dev-python/pydiffx/Manifest
+++ b/dev-python/pydiffx/Manifest
@@ -1 +1,2 @@
DIST diffx-pydiffx-release-1.0.1.tar.gz 82838 BLAKE2B 80ac477ff6b72dd089f134afc988251b20f7675e05c429e12238800145ed70f57acca835ddfdd77a2b22e53767b77d741537aad02f93bdefcee06a44965c7904 SHA512 dcb6b9dad321c5bec940d13dcf64853587c4e7636d34ea3ac4bc2b54df8915e1ac9804932034c069fcfba5f10f05972cc7dc46ba0d37c2e08c684bcbb2c2409e
+DIST diffx-pydiffx-release-1.1.gh.tar.gz 83721 BLAKE2B fb38b40f4385e00bd8ac45111ac6308b8a5ba7148e74c020c9e7c6b5480466b2301e580f93c98d761087f443339394c124eee061edafd454f0d71839103a6caf SHA512 596d9d70134cadcbdb8fbdd10fe22f8922276d1a822c60430e765b70b0fba9cd16578c94743aef4afaae7ab8409cc2e171028a154cd1231ad6c54dbe229b93e3
diff --git a/dev-python/pydiffx/pydiffx-1.1.ebuild b/dev-python/pydiffx/pydiffx-1.1.ebuild
new file mode 100644
index 000000000000..0aea04e296cc
--- /dev/null
+++ b/dev-python/pydiffx/pydiffx-1.1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+MY_P=diffx-pydiffx-release-${PV}
+DESCRIPTION="Python module for reading and writing DiffX files"
+HOMEPAGE="
+ https://diffx.org/pydiffx/
+ https://github.com/beanbaginc/diffx/
+ https://pypi.org/project/pydiffx/
+"
+SRC_URI="
+ https://github.com/beanbaginc/diffx/archive/pydiffx/release-${PV}.tar.gz
+ -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}/python
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+ dev-python/six[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ test? (
+ dev-python/kgb[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests unittest
+
+src_prepare() {
+ # remove .dev tag that breaks revdeps
+ sed -e '/tag_build/d' -i setup.cfg || die
+ distutils-r1_src_prepare
+}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/pydiffx/
@ 2022-10-25 9:08 Sam James
0 siblings, 0 replies; 12+ messages in thread
From: Sam James @ 2022-10-25 9:08 UTC (permalink / raw
To: gentoo-commits
commit: 08141daa23be906c99ee2e676d04827fc4b95afc
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 25 09:07:35 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Oct 25 09:07:35 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08141daa
dev-python/pydiffx: Stabilize 1.0.1-r1 x86, #878217
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/pydiffx/pydiffx-1.0.1-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/pydiffx/pydiffx-1.0.1-r1.ebuild b/dev-python/pydiffx/pydiffx-1.0.1-r1.ebuild
index a5106d25a571..8636563d287b 100644
--- a/dev-python/pydiffx/pydiffx-1.0.1-r1.ebuild
+++ b/dev-python/pydiffx/pydiffx-1.0.1-r1.ebuild
@@ -23,7 +23,7 @@ S=${WORKDIR}/${MY_P}/python
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
RDEPEND="
dev-python/six[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/pydiffx/
@ 2022-10-25 12:50 Sam James
0 siblings, 0 replies; 12+ messages in thread
From: Sam James @ 2022-10-25 12:50 UTC (permalink / raw
To: gentoo-commits
commit: f8562be83b960b0e09e615f863a9c5fe2b1599f3
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 25 12:48:59 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Oct 25 12:48:59 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8562be8
dev-python/pydiffx: Stabilize 1.0.1-r1 amd64, #878217
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/pydiffx/pydiffx-1.0.1-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/pydiffx/pydiffx-1.0.1-r1.ebuild b/dev-python/pydiffx/pydiffx-1.0.1-r1.ebuild
index 8636563d287b..92f4b98b4615 100644
--- a/dev-python/pydiffx/pydiffx-1.0.1-r1.ebuild
+++ b/dev-python/pydiffx/pydiffx-1.0.1-r1.ebuild
@@ -23,7 +23,7 @@ S=${WORKDIR}/${MY_P}/python
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
RDEPEND="
dev-python/six[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/pydiffx/
@ 2022-11-03 22:04 Sam James
0 siblings, 0 replies; 12+ messages in thread
From: Sam James @ 2022-11-03 22:04 UTC (permalink / raw
To: gentoo-commits
commit: 947806480d2431c6abe082faee4c57cba9e09978
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 3 22:04:13 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Nov 3 22:04:13 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94780648
dev-python/pydiffx: Stabilize 1.1 ALLARCHES, #879425
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/pydiffx/pydiffx-1.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/pydiffx/pydiffx-1.1.ebuild b/dev-python/pydiffx/pydiffx-1.1.ebuild
index 3784544a32d2..42854dd19c72 100644
--- a/dev-python/pydiffx/pydiffx-1.1.ebuild
+++ b/dev-python/pydiffx/pydiffx-1.1.ebuild
@@ -23,7 +23,7 @@ S=${WORKDIR}/${MY_P}/python
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
RDEPEND="
dev-python/six[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/pydiffx/
@ 2022-11-04 6:15 Michał Górny
0 siblings, 0 replies; 12+ messages in thread
From: Michał Górny @ 2022-11-04 6:15 UTC (permalink / raw
To: gentoo-commits
commit: df9a81d143a8f2b816d7914d5fafc59115d10536
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 4 06:14:03 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Nov 4 06:14:03 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df9a81d1
dev-python/pydiffx: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/pydiffx/Manifest | 1 -
dev-python/pydiffx/pydiffx-1.0.1-r1.ebuild | 43 ------------------------------
2 files changed, 44 deletions(-)
diff --git a/dev-python/pydiffx/Manifest b/dev-python/pydiffx/Manifest
index c6160e1a2fe9..da088a44fe9b 100644
--- a/dev-python/pydiffx/Manifest
+++ b/dev-python/pydiffx/Manifest
@@ -1,2 +1 @@
-DIST diffx-pydiffx-release-1.0.1.tar.gz 82838 BLAKE2B 80ac477ff6b72dd089f134afc988251b20f7675e05c429e12238800145ed70f57acca835ddfdd77a2b22e53767b77d741537aad02f93bdefcee06a44965c7904 SHA512 dcb6b9dad321c5bec940d13dcf64853587c4e7636d34ea3ac4bc2b54df8915e1ac9804932034c069fcfba5f10f05972cc7dc46ba0d37c2e08c684bcbb2c2409e
DIST diffx-pydiffx-release-1.1.gh.tar.gz 83721 BLAKE2B fb38b40f4385e00bd8ac45111ac6308b8a5ba7148e74c020c9e7c6b5480466b2301e580f93c98d761087f443339394c124eee061edafd454f0d71839103a6caf SHA512 596d9d70134cadcbdb8fbdd10fe22f8922276d1a822c60430e765b70b0fba9cd16578c94743aef4afaae7ab8409cc2e171028a154cd1231ad6c54dbe229b93e3
diff --git a/dev-python/pydiffx/pydiffx-1.0.1-r1.ebuild b/dev-python/pydiffx/pydiffx-1.0.1-r1.ebuild
deleted file mode 100644
index 92f4b98b4615..000000000000
--- a/dev-python/pydiffx/pydiffx-1.0.1-r1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-MY_P=diffx-pydiffx-release-${PV}
-DESCRIPTION="Python module for reading and writing DiffX files"
-HOMEPAGE="
- https://diffx.org/pydiffx/
- https://github.com/beanbaginc/diffx/
- https://pypi.org/project/pydiffx/
-"
-SRC_URI="
- https://github.com/beanbaginc/diffx/archive/pydiffx/release-${PV}.tar.gz
- -> ${MY_P}.tar.gz
-"
-S=${WORKDIR}/${MY_P}/python
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="
- dev-python/six[${PYTHON_USEDEP}]
-"
-BDEPEND="
- test? (
- dev-python/kgb[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests unittest
-
-src_prepare() {
- # remove .dev tag that breaks revdeps
- sed -i -e '/tag_build/d' setup.cfg || die
- distutils-r1_src_prepare
-}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/pydiffx/
@ 2023-11-23 20:11 Michał Górny
0 siblings, 0 replies; 12+ messages in thread
From: Michał Górny @ 2023-11-23 20:11 UTC (permalink / raw
To: gentoo-commits
commit: 5c79187cabdb7ac37fb8197328e55c1377e63f4a
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 23 20:11:11 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Nov 23 20:11:11 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c79187c
dev-python/pydiffx: Keyword 1.1 arm64, #917998
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/pydiffx/pydiffx-1.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/pydiffx/pydiffx-1.1.ebuild b/dev-python/pydiffx/pydiffx-1.1.ebuild
index c35d375a1651..ba4b2be55d65 100644
--- a/dev-python/pydiffx/pydiffx-1.1.ebuild
+++ b/dev-python/pydiffx/pydiffx-1.1.ebuild
@@ -23,7 +23,7 @@ S=${WORKDIR}/${MY_P}/python
LICENSE="MIT"
SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~arm64 x86"
RDEPEND="
dev-python/six[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/pydiffx/
@ 2023-11-24 16:43 Arthur Zamarin
0 siblings, 0 replies; 12+ messages in thread
From: Arthur Zamarin @ 2023-11-24 16:43 UTC (permalink / raw
To: gentoo-commits
commit: 4c64c039e4c01886734d589529e38463a2825e8c
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 24 16:43:21 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 24 16:43:21 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c64c039
dev-python/pydiffx: Stabilize 1.1 arm64, #918311
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/pydiffx/pydiffx-1.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/pydiffx/pydiffx-1.1.ebuild b/dev-python/pydiffx/pydiffx-1.1.ebuild
index ba4b2be55d65..850b78f95d84 100644
--- a/dev-python/pydiffx/pydiffx-1.1.ebuild
+++ b/dev-python/pydiffx/pydiffx-1.1.ebuild
@@ -23,7 +23,7 @@ S=${WORKDIR}/${MY_P}/python
LICENSE="MIT"
SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
+KEYWORDS="amd64 arm64 x86"
RDEPEND="
dev-python/six[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/pydiffx/
@ 2024-06-18 15:07 Petr Vaněk
0 siblings, 0 replies; 12+ messages in thread
From: Petr Vaněk @ 2024-06-18 15:07 UTC (permalink / raw
To: gentoo-commits
commit: e5f408059f11c8fd599fe593838c799f907d780e
Author: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 18 13:23:32 2024 +0000
Commit: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Tue Jun 18 15:07:10 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5f40805
dev-python/pydiffx: enable py3.13
Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>
dev-python/pydiffx/pydiffx-1.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/pydiffx/pydiffx-1.1.ebuild b/dev-python/pydiffx/pydiffx-1.1.ebuild
index 850b78f95d84..410368050c48 100644
--- a/dev-python/pydiffx/pydiffx-1.1.ebuild
+++ b/dev-python/pydiffx/pydiffx-1.1.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] 12+ messages in thread
end of thread, other threads:[~2024-06-18 15:07 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-23 20:11 [gentoo-commits] repo/gentoo:master commit in: dev-python/pydiffx/ Michał Górny
-- strict thread matches above, loose matches on Subject: below --
2024-06-18 15:07 Petr Vaněk
2023-11-24 16:43 Arthur Zamarin
2022-11-04 6:15 Michał Górny
2022-11-03 22:04 Sam James
2022-10-25 12:50 Sam James
2022-10-25 9:08 Sam James
2022-09-19 18:35 Arthur Zamarin
2022-09-19 18:35 Arthur Zamarin
2022-06-24 20:59 Jakov Smolić
2022-05-21 7:02 Michał Górny
2022-05-20 9:13 Michał Górny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox