public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/propcache/
@ 2024-10-09  7:47 Michał Górny
  0 siblings, 0 replies; 26+ messages in thread
From: Michał Górny @ 2024-10-09  7:47 UTC (permalink / raw
  To: gentoo-commits

commit:     e2cb4c09585d5fbc981051768309e58707c538fc
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Oct  9 07:19:44 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Oct  9 07:47:29 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2cb4c09

dev-python/propcache: New package, v0.2.0

New package, split out of dev-python/yarl.  Since the code was there
already, no rekeywording.

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/propcache/Manifest               |  1 +
 dev-python/propcache/metadata.xml           | 12 +++++++
 dev-python/propcache/propcache-0.2.0.ebuild | 50 +++++++++++++++++++++++++++++
 3 files changed, 63 insertions(+)

diff --git a/dev-python/propcache/Manifest b/dev-python/propcache/Manifest
new file mode 100644
index 000000000000..1a36abc38824
--- /dev/null
+++ b/dev-python/propcache/Manifest
@@ -0,0 +1 @@
+DIST propcache-0.2.0.tar.gz 40951 BLAKE2B f3e6aed19e6dfd21c02e769a3fa3c5bb0042f0b46d3dbe71ac06d52a49cfc86c62770ed8589fed58872016b5f50905610de50e707051871b9c30930e262d9d0c SHA512 f99838627652ab13919d7f516530a91565a737fc411d728cad1492ce0ed44f25b0cefbdb6fa49b2ef516e7fee120e7c49686b6853691c5cd02f5f7db9a15d998

diff --git a/dev-python/propcache/metadata.xml b/dev-python/propcache/metadata.xml
new file mode 100644
index 000000000000..fc98db92263c
--- /dev/null
+++ b/dev-python/propcache/metadata.xml
@@ -0,0 +1,12 @@
+<?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>
+	<upstream>
+		<remote-id type="pypi">propcache</remote-id>
+		<remote-id type="github">aio-libs/propcache</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/dev-python/propcache/propcache-0.2.0.ebuild b/dev-python/propcache/propcache-0.2.0.ebuild
new file mode 100644
index 000000000000..7b568011e055
--- /dev/null
+++ b/dev-python/propcache/propcache-0.2.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=standalone
+PYTHON_COMPAT=( python3_{10..13} pypy3 )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Yet another URL library"
+HOMEPAGE="
+	https://github.com/aio-libs/propcache/
+	https://pypi.org/project/propcache/
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+IUSE="+native-extensions"
+
+BDEPEND="
+	native-extensions? (
+		dev-python/cython[${PYTHON_USEDEP}]
+	)
+	dev-python/expandvars[${PYTHON_USEDEP}]
+	dev-python/setuptools[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_compile() {
+	local -x PROPCACHE_NO_EXTENSIONS=0
+	if ! use native-extensions || [[ ${EPYTHON} != python* ]]; then
+		PROPCACHE_NO_EXTENSIONS=1
+	fi
+	distutils-r1_python_compile
+}
+
+python_test() {
+	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+	local opts=()
+	if ! use native-extensions || [[ ${EPYTHON} != python* ]]; then
+		opts+=( --no-c-extensions )
+	fi
+
+	rm -rf propcache || die
+	epytest -o addopts= "${opts[@]}"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/propcache/
@ 2024-10-26 13:10 Michał Górny
  0 siblings, 0 replies; 26+ messages in thread
From: Michał Górny @ 2024-10-26 13:10 UTC (permalink / raw
  To: gentoo-commits

commit:     e7095a8544fa3c8d589bdd6b0574c71e08c8ae1f
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 26 13:10:19 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Oct 26 13:10:19 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7095a85

dev-python/propcache: Stabilize 0.2.0 ppc64, #942255

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

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

diff --git a/dev-python/propcache/propcache-0.2.0.ebuild b/dev-python/propcache/propcache-0.2.0.ebuild
index 7b568011e055..273ad79915b7 100644
--- a/dev-python/propcache/propcache-0.2.0.ebuild
+++ b/dev-python/propcache/propcache-0.2.0.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ppc64 ~riscv ~s390 ~sparc ~x86"
 IUSE="+native-extensions"
 
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/propcache/
@ 2024-10-26 14:22 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2024-10-26 14:22 UTC (permalink / raw
  To: gentoo-commits

commit:     f9b8341ff0c04519d1b70b7897a30d5b373e430d
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 26 14:22:14 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Oct 26 14:22:14 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9b8341f

dev-python/propcache: Stabilize 0.2.0 x86, #942255

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

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

diff --git a/dev-python/propcache/propcache-0.2.0.ebuild b/dev-python/propcache/propcache-0.2.0.ebuild
index 273ad79915b7..8a336996b0de 100644
--- a/dev-python/propcache/propcache-0.2.0.ebuild
+++ b/dev-python/propcache/propcache-0.2.0.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ppc64 ~riscv ~s390 ~sparc x86"
 IUSE="+native-extensions"
 
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/propcache/
@ 2024-10-26 14:47 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2024-10-26 14:47 UTC (permalink / raw
  To: gentoo-commits

commit:     987612f1675fb5bfbcfa3de43549f9e99d11ff4b
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 26 14:46:53 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Oct 26 14:46:53 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=987612f1

dev-python/propcache: Stabilize 0.2.0 ppc, #942255

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

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

diff --git a/dev-python/propcache/propcache-0.2.0.ebuild b/dev-python/propcache/propcache-0.2.0.ebuild
index 8a336996b0de..e09b878f8796 100644
--- a/dev-python/propcache/propcache-0.2.0.ebuild
+++ b/dev-python/propcache/propcache-0.2.0.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
 IUSE="+native-extensions"
 
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/propcache/
@ 2024-10-26 17:42 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2024-10-26 17:42 UTC (permalink / raw
  To: gentoo-commits

commit:     5b2198648ddf1fef70496045dc9bf9dc6427defe
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 26 17:42:17 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Oct 26 17:42:17 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b219864

dev-python/propcache: Stabilize 0.2.0 amd64, #942255

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

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

diff --git a/dev-python/propcache/propcache-0.2.0.ebuild b/dev-python/propcache/propcache-0.2.0.ebuild
index e09b878f8796..0b61ada198e2 100644
--- a/dev-python/propcache/propcache-0.2.0.ebuild
+++ b/dev-python/propcache/propcache-0.2.0.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
 IUSE="+native-extensions"
 
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/propcache/
@ 2024-10-27  6:50 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2024-10-27  6:50 UTC (permalink / raw
  To: gentoo-commits

commit:     a76b942a9bab93376cbca02cd64bf883fb4c7528
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 27 06:50:21 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 27 06:50:21 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a76b942a

dev-python/propcache: Stabilize 0.2.0 arm64, #942255

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

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

diff --git a/dev-python/propcache/propcache-0.2.0.ebuild b/dev-python/propcache/propcache-0.2.0.ebuild
index 0b61ada198e2..c6ba0c4e9c47 100644
--- a/dev-python/propcache/propcache-0.2.0.ebuild
+++ b/dev-python/propcache/propcache-0.2.0.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
 IUSE="+native-extensions"
 
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/propcache/
@ 2024-10-28 21:30 Sam James
  0 siblings, 0 replies; 26+ messages in thread
From: Sam James @ 2024-10-28 21:30 UTC (permalink / raw
  To: gentoo-commits

commit:     51443beedd2c3788d59b5f7c6e7535b7a8ebcca9
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 28 19:55:26 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Oct 28 21:28:51 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51443bee

dev-python/propcache: Stabilize 0.2.0 sparc, #942255

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

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

diff --git a/dev-python/propcache/propcache-0.2.0.ebuild b/dev-python/propcache/propcache-0.2.0.ebuild
index c6ba0c4e9c47..3fc9b60e4913 100644
--- a/dev-python/propcache/propcache-0.2.0.ebuild
+++ b/dev-python/propcache/propcache-0.2.0.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
 IUSE="+native-extensions"
 
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/propcache/
@ 2024-10-30 22:17 Sam James
  0 siblings, 0 replies; 26+ messages in thread
From: Sam James @ 2024-10-30 22:17 UTC (permalink / raw
  To: gentoo-commits

commit:     4429f365d078ed9939ec217e833b30a479fe48de
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 30 22:17:03 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Oct 30 22:17:03 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4429f365

dev-python/propcache: Stabilize 0.2.0 hppa, #942255

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

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

diff --git a/dev-python/propcache/propcache-0.2.0.ebuild b/dev-python/propcache/propcache-0.2.0.ebuild
index 3fc9b60e4913..efe1ed3ec2b0 100644
--- a/dev-python/propcache/propcache-0.2.0.ebuild
+++ b/dev-python/propcache/propcache-0.2.0.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
 IUSE="+native-extensions"
 
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/propcache/
@ 2024-12-02  6:54 Michał Górny
  0 siblings, 0 replies; 26+ messages in thread
From: Michał Górny @ 2024-12-02  6:54 UTC (permalink / raw
  To: gentoo-commits

commit:     3f6793bb91da6d9c84c68405ef8e6a536770eb71
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Dec  2 06:14:07 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Dec  2 06:54:36 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f6793bb

dev-python/propcache: Bump to 0.2.1

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/propcache/Manifest               |  1 +
 dev-python/propcache/propcache-0.2.1.ebuild | 54 +++++++++++++++++++++++++++++
 2 files changed, 55 insertions(+)

diff --git a/dev-python/propcache/Manifest b/dev-python/propcache/Manifest
index 1a36abc38824..3a353380fe69 100644
--- a/dev-python/propcache/Manifest
+++ b/dev-python/propcache/Manifest
@@ -1 +1,2 @@
 DIST propcache-0.2.0.tar.gz 40951 BLAKE2B f3e6aed19e6dfd21c02e769a3fa3c5bb0042f0b46d3dbe71ac06d52a49cfc86c62770ed8589fed58872016b5f50905610de50e707051871b9c30930e262d9d0c SHA512 f99838627652ab13919d7f516530a91565a737fc411d728cad1492ce0ed44f25b0cefbdb6fa49b2ef516e7fee120e7c49686b6853691c5cd02f5f7db9a15d998
+DIST propcache-0.2.1.tar.gz 41735 BLAKE2B 9353846b481449f732751ce1bf419bf1d171b3e8fa5b4755637bab063677bfe8845da48c2cfc979936cd1af2ef559b6eb82368f9b9616b3b90a955f0b5bbeed7 SHA512 ce54baa27a9f4cec14d6db139721cb1af920e585153f541b6a192a22d805766b7a0248514fed9889d7073a611d05896fee6da1df526f2314206eca48942b860d

diff --git a/dev-python/propcache/propcache-0.2.1.ebuild b/dev-python/propcache/propcache-0.2.1.ebuild
new file mode 100644
index 000000000000..cfbbf5c36a53
--- /dev/null
+++ b/dev-python/propcache/propcache-0.2.1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=standalone
+PYTHON_COMPAT=( python3_{10..13} pypy3 )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Yet another URL library"
+HOMEPAGE="
+	https://github.com/aio-libs/propcache/
+	https://pypi.org/project/propcache/
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+IUSE="+native-extensions"
+
+BDEPEND="
+	native-extensions? (
+		dev-python/cython[${PYTHON_USEDEP}]
+	)
+	dev-python/expandvars[${PYTHON_USEDEP}]
+	dev-python/setuptools[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_compile() {
+	local -x PROPCACHE_NO_EXTENSIONS=0
+	if ! use native-extensions || [[ ${EPYTHON} != python* ]]; then
+		PROPCACHE_NO_EXTENSIONS=1
+	fi
+	distutils-r1_python_compile
+}
+
+python_test() {
+	local EPYTEST_IGNORE=(
+		tests/test_benchmarks.py
+	)
+
+	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+	local opts=()
+	if ! use native-extensions || [[ ${EPYTHON} != python* ]]; then
+		opts+=( --no-c-extensions )
+	fi
+
+	rm -rf propcache || die
+	epytest -o addopts= "${opts[@]}"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/propcache/
@ 2024-12-21 11:17 Michał Górny
  0 siblings, 0 replies; 26+ messages in thread
From: Michał Górny @ 2024-12-21 11:17 UTC (permalink / raw
  To: gentoo-commits

commit:     ab9b1916d84073e79b59ef2b9da754204bb65dd4
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 21 11:17:54 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Dec 21 11:17:54 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab9b1916

dev-python/propcache: Stabilize 0.2.1 ppc, #946771

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

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

diff --git a/dev-python/propcache/propcache-0.2.1.ebuild b/dev-python/propcache/propcache-0.2.1.ebuild
index cfbbf5c36a53..3e9bad12d0f0 100644
--- a/dev-python/propcache/propcache-0.2.1.ebuild
+++ b/dev-python/propcache/propcache-0.2.1.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
 IUSE="+native-extensions"
 
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/propcache/
@ 2024-12-21 11:31 Michał Górny
  0 siblings, 0 replies; 26+ messages in thread
From: Michał Górny @ 2024-12-21 11:31 UTC (permalink / raw
  To: gentoo-commits

commit:     80c595c2d305c527bd8b992e59a8d603a688da1e
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 21 11:31:07 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Dec 21 11:31:07 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80c595c2

dev-python/propcache: Stabilize 0.2.1 arm, #946771

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

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

diff --git a/dev-python/propcache/propcache-0.2.1.ebuild b/dev-python/propcache/propcache-0.2.1.ebuild
index 3e9bad12d0f0..470a27377368 100644
--- a/dev-python/propcache/propcache-0.2.1.ebuild
+++ b/dev-python/propcache/propcache-0.2.1.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~loong ~mips ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
 IUSE="+native-extensions"
 
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/propcache/
@ 2024-12-21 11:35 Michał Górny
  0 siblings, 0 replies; 26+ messages in thread
From: Michał Górny @ 2024-12-21 11:35 UTC (permalink / raw
  To: gentoo-commits

commit:     570be2ceea6f768ba7163422695712078595133a
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 21 11:34:46 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Dec 21 11:34:46 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=570be2ce

dev-python/propcache: Stabilize 0.2.1 sparc, #946771

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

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

diff --git a/dev-python/propcache/propcache-0.2.1.ebuild b/dev-python/propcache/propcache-0.2.1.ebuild
index 470a27377368..814ef76aa703 100644
--- a/dev-python/propcache/propcache-0.2.1.ebuild
+++ b/dev-python/propcache/propcache-0.2.1.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~loong ~mips ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~loong ~mips ppc ~ppc64 ~riscv ~s390 sparc ~x86"
 IUSE="+native-extensions"
 
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/propcache/
@ 2024-12-21 12:28 Michał Górny
  0 siblings, 0 replies; 26+ messages in thread
From: Michał Górny @ 2024-12-21 12:28 UTC (permalink / raw
  To: gentoo-commits

commit:     91d4d8fb6f17df3814fad87d78ad447b526af47b
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 21 12:27:48 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Dec 21 12:27:48 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91d4d8fb

dev-python/propcache: Stabilize 0.2.1 ppc64, #946771

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

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

diff --git a/dev-python/propcache/propcache-0.2.1.ebuild b/dev-python/propcache/propcache-0.2.1.ebuild
index 9bf43bf0a7a5..2fcc6ed2af58 100644
--- a/dev-python/propcache/propcache-0.2.1.ebuild
+++ b/dev-python/propcache/propcache-0.2.1.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~loong ~mips ppc ~ppc64 ~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc ~x86"
 IUSE="+native-extensions"
 
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/propcache/
@ 2024-12-21 12:28 Michał Górny
  0 siblings, 0 replies; 26+ messages in thread
From: Michał Górny @ 2024-12-21 12:28 UTC (permalink / raw
  To: gentoo-commits

commit:     1f36ef4d9643e237c1972d5dddeb20e4fac3c6f2
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 21 12:27:46 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Dec 21 12:27:46 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f36ef4d

dev-python/propcache: Stabilize 0.2.1 amd64, #946771

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

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

diff --git a/dev-python/propcache/propcache-0.2.1.ebuild b/dev-python/propcache/propcache-0.2.1.ebuild
index 814ef76aa703..9bf43bf0a7a5 100644
--- a/dev-python/propcache/propcache-0.2.1.ebuild
+++ b/dev-python/propcache/propcache-0.2.1.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~loong ~mips ppc ~ppc64 ~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~loong ~mips ppc ~ppc64 ~riscv ~s390 sparc ~x86"
 IUSE="+native-extensions"
 
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/propcache/
@ 2024-12-21 12:28 Michał Górny
  0 siblings, 0 replies; 26+ messages in thread
From: Michał Górny @ 2024-12-21 12:28 UTC (permalink / raw
  To: gentoo-commits

commit:     b23b488c9d701a3bdc40948f11a457518c231bc7
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 21 12:27:49 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Dec 21 12:27:49 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b23b488c

dev-python/propcache: Stabilize 0.2.1 arm64, #946771

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

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

diff --git a/dev-python/propcache/propcache-0.2.1.ebuild b/dev-python/propcache/propcache-0.2.1.ebuild
index 2fcc6ed2af58..c496663190eb 100644
--- a/dev-python/propcache/propcache-0.2.1.ebuild
+++ b/dev-python/propcache/propcache-0.2.1.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc ~x86"
 IUSE="+native-extensions"
 
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/propcache/
@ 2024-12-21 12:28 Michał Górny
  0 siblings, 0 replies; 26+ messages in thread
From: Michał Górny @ 2024-12-21 12:28 UTC (permalink / raw
  To: gentoo-commits

commit:     ed80e36ab68df2fe463df97f38dd34a54bba4a11
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 21 12:27:50 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Dec 21 12:27:50 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed80e36a

dev-python/propcache: Stabilize 0.2.1 x86, #946771

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

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

diff --git a/dev-python/propcache/propcache-0.2.1.ebuild b/dev-python/propcache/propcache-0.2.1.ebuild
index c496663190eb..5492747b5d9c 100644
--- a/dev-python/propcache/propcache-0.2.1.ebuild
+++ b/dev-python/propcache/propcache-0.2.1.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
 IUSE="+native-extensions"
 
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/propcache/
@ 2025-02-21  5:20 Michał Górny
  0 siblings, 0 replies; 26+ messages in thread
From: Michał Górny @ 2025-02-21  5:20 UTC (permalink / raw
  To: gentoo-commits

commit:     7e0350d7f6e009d531696fc0a7ed9784d66eba7b
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 21 04:51:13 2025 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Feb 21 05:19:55 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e0350d7

dev-python/propcache: Bump to 0.3.0

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/propcache/Manifest               |  1 +
 dev-python/propcache/propcache-0.3.0.ebuild | 54 +++++++++++++++++++++++++++++
 2 files changed, 55 insertions(+)

diff --git a/dev-python/propcache/Manifest b/dev-python/propcache/Manifest
index 3a353380fe69..55b7789ac9ad 100644
--- a/dev-python/propcache/Manifest
+++ b/dev-python/propcache/Manifest
@@ -1,2 +1,3 @@
 DIST propcache-0.2.0.tar.gz 40951 BLAKE2B f3e6aed19e6dfd21c02e769a3fa3c5bb0042f0b46d3dbe71ac06d52a49cfc86c62770ed8589fed58872016b5f50905610de50e707051871b9c30930e262d9d0c SHA512 f99838627652ab13919d7f516530a91565a737fc411d728cad1492ce0ed44f25b0cefbdb6fa49b2ef516e7fee120e7c49686b6853691c5cd02f5f7db9a15d998
 DIST propcache-0.2.1.tar.gz 41735 BLAKE2B 9353846b481449f732751ce1bf419bf1d171b3e8fa5b4755637bab063677bfe8845da48c2cfc979936cd1af2ef559b6eb82368f9b9616b3b90a955f0b5bbeed7 SHA512 ce54baa27a9f4cec14d6db139721cb1af920e585153f541b6a192a22d805766b7a0248514fed9889d7073a611d05896fee6da1df526f2314206eca48942b860d
+DIST propcache-0.3.0.tar.gz 42722 BLAKE2B 2687c2f03464b0e81c1d3e93a0b8a11364e4b03f5614de44ea89ca401867531079c1456cc97831f9c8e885dbacca8c9dbeb30e0a31b121a2aaa3666b0397ddf0 SHA512 258e2e9e6fff5c3af62d21d0afc43026e87b8c94009db9534f8beff6d81873ab05ea626c36e43ab1ee16dea1b18dde2ec732b78b93cac82cb9c1d0438e544b42

diff --git a/dev-python/propcache/propcache-0.3.0.ebuild b/dev-python/propcache/propcache-0.3.0.ebuild
new file mode 100644
index 000000000000..f9aebdde55ee
--- /dev/null
+++ b/dev-python/propcache/propcache-0.3.0.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=standalone
+PYTHON_COMPAT=( python3_{10..13} pypy3 pypy3_11 )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Yet another URL library"
+HOMEPAGE="
+	https://github.com/aio-libs/propcache/
+	https://pypi.org/project/propcache/
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+IUSE="+native-extensions"
+
+BDEPEND="
+	native-extensions? (
+		dev-python/cython[${PYTHON_USEDEP}]
+	)
+	dev-python/expandvars[${PYTHON_USEDEP}]
+	dev-python/setuptools[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_compile() {
+	local -x PROPCACHE_NO_EXTENSIONS=0
+	if ! use native-extensions || [[ ${EPYTHON} != python* ]]; then
+		PROPCACHE_NO_EXTENSIONS=1
+	fi
+	distutils-r1_python_compile
+}
+
+python_test() {
+	local EPYTEST_IGNORE=(
+		tests/test_benchmarks.py
+	)
+
+	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+	local opts=()
+	if ! use native-extensions || [[ ${EPYTHON} != python* ]]; then
+		opts+=( --no-c-extensions )
+	fi
+
+	rm -rf propcache || die
+	epytest -o addopts= "${opts[@]}"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/propcache/
@ 2025-02-27 10:48 Sam James
  0 siblings, 0 replies; 26+ messages in thread
From: Sam James @ 2025-02-27 10:48 UTC (permalink / raw
  To: gentoo-commits

commit:     508a65881233ead1ab8b0aee201494e01d4d05f7
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 27 10:48:06 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Feb 27 10:48:06 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=508a6588

dev-python/propcache: Stabilize 0.2.1 hppa, #946771

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

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

diff --git a/dev-python/propcache/propcache-0.2.1.ebuild b/dev-python/propcache/propcache-0.2.1.ebuild
index a41e95d2e9f2..99d4b346b8cd 100644
--- a/dev-python/propcache/propcache-0.2.1.ebuild
+++ b/dev-python/propcache/propcache-0.2.1.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
 IUSE="+native-extensions"
 
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/propcache/
@ 2025-02-27 13:08 Michał Górny
  0 siblings, 0 replies; 26+ messages in thread
From: Michał Górny @ 2025-02-27 13:08 UTC (permalink / raw
  To: gentoo-commits

commit:     c4ab365ed72a52b2aedc29af26c578863fbbc3ef
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 27 11:02:31 2025 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Feb 27 13:06:11 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4ab365e

dev-python/propcache: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/propcache/Manifest               |  1 -
 dev-python/propcache/propcache-0.2.0.ebuild | 50 -----------------------------
 2 files changed, 51 deletions(-)

diff --git a/dev-python/propcache/Manifest b/dev-python/propcache/Manifest
index 55b7789ac9ad..2990b3d1f3af 100644
--- a/dev-python/propcache/Manifest
+++ b/dev-python/propcache/Manifest
@@ -1,3 +1,2 @@
-DIST propcache-0.2.0.tar.gz 40951 BLAKE2B f3e6aed19e6dfd21c02e769a3fa3c5bb0042f0b46d3dbe71ac06d52a49cfc86c62770ed8589fed58872016b5f50905610de50e707051871b9c30930e262d9d0c SHA512 f99838627652ab13919d7f516530a91565a737fc411d728cad1492ce0ed44f25b0cefbdb6fa49b2ef516e7fee120e7c49686b6853691c5cd02f5f7db9a15d998
 DIST propcache-0.2.1.tar.gz 41735 BLAKE2B 9353846b481449f732751ce1bf419bf1d171b3e8fa5b4755637bab063677bfe8845da48c2cfc979936cd1af2ef559b6eb82368f9b9616b3b90a955f0b5bbeed7 SHA512 ce54baa27a9f4cec14d6db139721cb1af920e585153f541b6a192a22d805766b7a0248514fed9889d7073a611d05896fee6da1df526f2314206eca48942b860d
 DIST propcache-0.3.0.tar.gz 42722 BLAKE2B 2687c2f03464b0e81c1d3e93a0b8a11364e4b03f5614de44ea89ca401867531079c1456cc97831f9c8e885dbacca8c9dbeb30e0a31b121a2aaa3666b0397ddf0 SHA512 258e2e9e6fff5c3af62d21d0afc43026e87b8c94009db9534f8beff6d81873ab05ea626c36e43ab1ee16dea1b18dde2ec732b78b93cac82cb9c1d0438e544b42

diff --git a/dev-python/propcache/propcache-0.2.0.ebuild b/dev-python/propcache/propcache-0.2.0.ebuild
deleted file mode 100644
index 199147b0499a..000000000000
--- a/dev-python/propcache/propcache-0.2.0.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_EXT=1
-DISTUTILS_USE_PEP517=standalone
-PYTHON_COMPAT=( python3_{10..13} pypy3 )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Yet another URL library"
-HOMEPAGE="
-	https://github.com/aio-libs/propcache/
-	https://pypi.org/project/propcache/
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
-IUSE="+native-extensions"
-
-BDEPEND="
-	native-extensions? (
-		dev-python/cython[${PYTHON_USEDEP}]
-	)
-	dev-python/expandvars[${PYTHON_USEDEP}]
-	dev-python/setuptools[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-python_compile() {
-	local -x PROPCACHE_NO_EXTENSIONS=0
-	if ! use native-extensions || [[ ${EPYTHON} != python* ]]; then
-		PROPCACHE_NO_EXTENSIONS=1
-	fi
-	distutils-r1_python_compile
-}
-
-python_test() {
-	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-	local opts=()
-	if ! use native-extensions || [[ ${EPYTHON} != python* ]]; then
-		opts+=( --no-c-extensions )
-	fi
-
-	rm -rf propcache || die
-	epytest -o addopts= "${opts[@]}"
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/propcache/
@ 2025-03-08 10:48 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2025-03-08 10:48 UTC (permalink / raw
  To: gentoo-commits

commit:     ed7b43722d68395bb95abe9b4745e1bcb860e501
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  8 10:48:21 2025 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar  8 10:48:31 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed7b4372

dev-python/propcache: Stabilize 0.3.0 ppc64, #950807

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

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

diff --git a/dev-python/propcache/propcache-0.3.0.ebuild b/dev-python/propcache/propcache-0.3.0.ebuild
index f9aebdde55ee..7f130bec291b 100644
--- a/dev-python/propcache/propcache-0.3.0.ebuild
+++ b/dev-python/propcache/propcache-0.3.0.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ppc64 ~riscv ~s390 ~sparc ~x86"
 IUSE="+native-extensions"
 
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/propcache/
@ 2025-03-08 11:01 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2025-03-08 11:01 UTC (permalink / raw
  To: gentoo-commits

commit:     abd784d300acffe0da336dbf79c856a4eae665a5
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  8 11:01:55 2025 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar  8 11:01:55 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abd784d3

dev-python/propcache: Stabilize 0.3.0 arm, #950807

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

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

diff --git a/dev-python/propcache/propcache-0.3.0.ebuild b/dev-python/propcache/propcache-0.3.0.ebuild
index 7f130bec291b..7757264401c8 100644
--- a/dev-python/propcache/propcache-0.3.0.ebuild
+++ b/dev-python/propcache/propcache-0.3.0.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~loong ~mips ~ppc ppc64 ~riscv ~s390 ~sparc ~x86"
 IUSE="+native-extensions"
 
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/propcache/
@ 2025-03-08 11:20 Sam James
  0 siblings, 0 replies; 26+ messages in thread
From: Sam James @ 2025-03-08 11:20 UTC (permalink / raw
  To: gentoo-commits

commit:     92dab62d28e2fb243f8cd6028a3de2cdb0a35872
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  8 11:20:01 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar  8 11:20:01 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92dab62d

dev-python/propcache: Stabilize 0.3.0 amd64, #950807

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

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

diff --git a/dev-python/propcache/propcache-0.3.0.ebuild b/dev-python/propcache/propcache-0.3.0.ebuild
index 7757264401c8..2ca4551d1763 100644
--- a/dev-python/propcache/propcache-0.3.0.ebuild
+++ b/dev-python/propcache/propcache-0.3.0.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~loong ~mips ~ppc ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~loong ~mips ~ppc ppc64 ~riscv ~s390 ~sparc ~x86"
 IUSE="+native-extensions"
 
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/propcache/
@ 2025-03-08 11:57 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2025-03-08 11:57 UTC (permalink / raw
  To: gentoo-commits

commit:     6c383f220c4d438d2ec791cbf91bc8b6b4659dea
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  8 11:57:46 2025 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar  8 11:57:46 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c383f22

dev-python/propcache: Stabilize 0.3.0 ppc, #950807

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

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

diff --git a/dev-python/propcache/propcache-0.3.0.ebuild b/dev-python/propcache/propcache-0.3.0.ebuild
index 2ca4551d1763..34b2da9f9a3e 100644
--- a/dev-python/propcache/propcache-0.3.0.ebuild
+++ b/dev-python/propcache/propcache-0.3.0.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~loong ~mips ~ppc ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc ~x86"
 IUSE="+native-extensions"
 
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/propcache/
@ 2025-03-08 12:16 Sam James
  0 siblings, 0 replies; 26+ messages in thread
From: Sam James @ 2025-03-08 12:16 UTC (permalink / raw
  To: gentoo-commits

commit:     37492afaab0384b632a6ca0bcf5437f630b98b46
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  8 12:16:22 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar  8 12:16:22 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37492afa

dev-python/propcache: Stabilize 0.3.0 sparc, #950807

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

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

diff --git a/dev-python/propcache/propcache-0.3.0.ebuild b/dev-python/propcache/propcache-0.3.0.ebuild
index 34b2da9f9a3e..36a9544b27f9 100644
--- a/dev-python/propcache/propcache-0.3.0.ebuild
+++ b/dev-python/propcache/propcache-0.3.0.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc ~x86"
 IUSE="+native-extensions"
 
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/propcache/
@ 2025-03-08 12:58 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2025-03-08 12:58 UTC (permalink / raw
  To: gentoo-commits

commit:     bed332c9be14e793fa493a988a7807010254d979
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  8 12:57:56 2025 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar  8 12:57:56 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bed332c9

dev-python/propcache: Stabilize 0.3.0 x86, #950807

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

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

diff --git a/dev-python/propcache/propcache-0.3.0.ebuild b/dev-python/propcache/propcache-0.3.0.ebuild
index 36a9544b27f9..aab0872cbe6d 100644
--- a/dev-python/propcache/propcache-0.3.0.ebuild
+++ b/dev-python/propcache/propcache-0.3.0.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc ~x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
 IUSE="+native-extensions"
 
 BDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/propcache/
@ 2025-03-08 14:09 Sam James
  0 siblings, 0 replies; 26+ messages in thread
From: Sam James @ 2025-03-08 14:09 UTC (permalink / raw
  To: gentoo-commits

commit:     78a0bd8927c66778213b3f35f9db391b79268bc0
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  8 14:08:02 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar  8 14:08:02 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78a0bd89

dev-python/propcache: Stabilize 0.3.0 arm64, #950807

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

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

diff --git a/dev-python/propcache/propcache-0.3.0.ebuild b/dev-python/propcache/propcache-0.3.0.ebuild
index aab0872cbe6d..a41e95d2e9f2 100644
--- a/dev-python/propcache/propcache-0.3.0.ebuild
+++ b/dev-python/propcache/propcache-0.3.0.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
 IUSE="+native-extensions"
 
 BDEPEND="


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

end of thread, other threads:[~2025-03-08 14:09 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-08 12:58 [gentoo-commits] repo/gentoo:master commit in: dev-python/propcache/ Arthur Zamarin
  -- strict thread matches above, loose matches on Subject: below --
2025-03-08 14:09 Sam James
2025-03-08 12:16 Sam James
2025-03-08 11:57 Arthur Zamarin
2025-03-08 11:20 Sam James
2025-03-08 11:01 Arthur Zamarin
2025-03-08 10:48 Arthur Zamarin
2025-02-27 13:08 Michał Górny
2025-02-27 10:48 Sam James
2025-02-21  5:20 Michał Górny
2024-12-21 12:28 Michał Górny
2024-12-21 12:28 Michał Górny
2024-12-21 12:28 Michał Górny
2024-12-21 12:28 Michał Górny
2024-12-21 11:35 Michał Górny
2024-12-21 11:31 Michał Górny
2024-12-21 11:17 Michał Górny
2024-12-02  6:54 Michał Górny
2024-10-30 22:17 Sam James
2024-10-28 21:30 Sam James
2024-10-27  6:50 Arthur Zamarin
2024-10-26 17:42 Arthur Zamarin
2024-10-26 14:47 Arthur Zamarin
2024-10-26 14:22 Arthur Zamarin
2024-10-26 13:10 Michał Górny
2024-10-09  7:47 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