public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/memory-allocator/
@ 2023-11-29  2:10 Michael Orlitzky
  0 siblings, 0 replies; 6+ messages in thread
From: Michael Orlitzky @ 2023-11-29  2:10 UTC (permalink / raw
  To: gentoo-commits

commit:     fc801a786ba6a1d2f1b2f83471a77e5eec7be9ce
Author:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 29 02:04:33 2023 +0000
Commit:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Wed Nov 29 02:04:33 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc801a78

dev-python/memory-allocator: stabilize 0.1.3 for amd64

Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>

 dev-python/memory-allocator/memory-allocator-0.1.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/memory-allocator/memory-allocator-0.1.3.ebuild b/dev-python/memory-allocator/memory-allocator-0.1.3.ebuild
index 0f679f1e9867..46aff436fd1d 100644
--- a/dev-python/memory-allocator/memory-allocator-0.1.3.ebuild
+++ b/dev-python/memory-allocator/memory-allocator-0.1.3.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://pypi.org/project/memory-allocator/
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 BDEPEND="dev-python/cython[${PYTHON_USEDEP}]"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/memory-allocator/
@ 2024-03-25  4:47 Michał Górny
  0 siblings, 0 replies; 6+ messages in thread
From: Michał Górny @ 2024-03-25  4:47 UTC (permalink / raw
  To: gentoo-commits

commit:     4cfacce145882e825ae0f789b63235c277a706f2
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 25 04:24:52 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Mar 25 04:47:54 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cfacce1

dev-python/memory-allocator: Bump to 0.1.4

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

 dev-python/memory-allocator/Manifest               |  1 +
 .../memory-allocator/memory-allocator-0.1.4.ebuild | 31 ++++++++++++++++++++++
 2 files changed, 32 insertions(+)

diff --git a/dev-python/memory-allocator/Manifest b/dev-python/memory-allocator/Manifest
index e77cefba6398..1da50f5cf15b 100644
--- a/dev-python/memory-allocator/Manifest
+++ b/dev-python/memory-allocator/Manifest
@@ -1 +1,2 @@
 DIST memory_allocator-0.1.3.tar.gz 19692 BLAKE2B e3e33b4d35455c7cf38eede4f8acfb5bddada59364de53c8ac37fc18e0824a947b85b4c6e3ce9b2f817948c6e83709c17cdf68fa3ebbe6b562d315420235f0cf SHA512 41cb850346b1aead18c82b0eca48791336315b5da8c2beeccec4eae90f55425f545a7cfd42c8cb9bd9f8c25a3a31b7334e304c0d726fdd848df26ae72ec7b7a7
+DIST memory_allocator-0.1.4.tar.gz 19723 BLAKE2B 22643aa32ac43f0e80e76b9d214c5decb70fbb83ddf4e116739bd257df1a2f2f02cf33c4a8925d0a38af2c59b90ee4fb6ccdfe2256fccae00ad98b2a9596e1db SHA512 0cd8b4d5878fa86972f9aa91e1fef4c074c3a0afe25ac1e54a3ad5e3b1ec5e4907cdd067d790f4e2ab7706f5dc2ff44c43ca0bc8e03b1b4dc90d66d8aa49ba0f

diff --git a/dev-python/memory-allocator/memory-allocator-0.1.4.ebuild b/dev-python/memory-allocator/memory-allocator-0.1.4.ebuild
new file mode 100644
index 000000000000..82937d8dd032
--- /dev/null
+++ b/dev-python/memory-allocator/memory-allocator-0.1.4.ebuild
@@ -0,0 +1,31 @@
+# Copyright 2021-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+DISTUTILS_USE_PEP517=setuptools
+DISTUTILS_EXT=1
+inherit distutils-r1 pypi
+
+DESCRIPTION="An extension class for memory allocation in cython"
+HOMEPAGE="https://pypi.org/project/memory-allocator/
+	https://github.com/sagemath/memory_allocator"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+
+BDEPEND="dev-python/cython[${PYTHON_USEDEP}]"
+
+python_test() {
+	# The test script tries to "import memory_allocator.test" which, so
+	# long as a memory_allocator directory exists inside CWD, will look
+	# for a memory_allocator/test.py there. But there is no such file;
+	# the "test" module is a compiled extension. To let the search fall
+	# back to the correct location, we temporarily rename the directory
+	# that misleads it.
+	mv memory_allocator mv_memory_allocator || die
+	${EPYTHON} test.py || die
+	mv mv_memory_allocator memory_allocator || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/memory-allocator/
@ 2024-04-11 17:43 Arthur Zamarin
  0 siblings, 0 replies; 6+ messages in thread
From: Arthur Zamarin @ 2024-04-11 17:43 UTC (permalink / raw
  To: gentoo-commits

commit:     7e23ea630573e3ba97647c73c5b7002ac81d5b5d
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 11 17:43:42 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Apr 11 17:43:42 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e23ea63

dev-python/memory-allocator: Stabilize 0.1.4 amd64, #929154

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

 dev-python/memory-allocator/memory-allocator-0.1.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/memory-allocator/memory-allocator-0.1.4.ebuild b/dev-python/memory-allocator/memory-allocator-0.1.4.ebuild
index 82937d8dd032..bad309e2b7df 100644
--- a/dev-python/memory-allocator/memory-allocator-0.1.4.ebuild
+++ b/dev-python/memory-allocator/memory-allocator-0.1.4.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://pypi.org/project/memory-allocator/
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 BDEPEND="dev-python/cython[${PYTHON_USEDEP}]"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/memory-allocator/
@ 2024-04-11 19:04 Michał Górny
  0 siblings, 0 replies; 6+ messages in thread
From: Michał Górny @ 2024-04-11 19:04 UTC (permalink / raw
  To: gentoo-commits

commit:     12d763a4a242329488d8262b054badcd27e1f8ba
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 11 18:02:13 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Apr 11 19:04:17 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12d763a4

dev-python/memory-allocator: Remove old

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

 dev-python/memory-allocator/Manifest               |  1 -
 .../memory-allocator/memory-allocator-0.1.3.ebuild | 31 ----------------------
 2 files changed, 32 deletions(-)

diff --git a/dev-python/memory-allocator/Manifest b/dev-python/memory-allocator/Manifest
index 1da50f5cf15b..55b8884f8be1 100644
--- a/dev-python/memory-allocator/Manifest
+++ b/dev-python/memory-allocator/Manifest
@@ -1,2 +1 @@
-DIST memory_allocator-0.1.3.tar.gz 19692 BLAKE2B e3e33b4d35455c7cf38eede4f8acfb5bddada59364de53c8ac37fc18e0824a947b85b4c6e3ce9b2f817948c6e83709c17cdf68fa3ebbe6b562d315420235f0cf SHA512 41cb850346b1aead18c82b0eca48791336315b5da8c2beeccec4eae90f55425f545a7cfd42c8cb9bd9f8c25a3a31b7334e304c0d726fdd848df26ae72ec7b7a7
 DIST memory_allocator-0.1.4.tar.gz 19723 BLAKE2B 22643aa32ac43f0e80e76b9d214c5decb70fbb83ddf4e116739bd257df1a2f2f02cf33c4a8925d0a38af2c59b90ee4fb6ccdfe2256fccae00ad98b2a9596e1db SHA512 0cd8b4d5878fa86972f9aa91e1fef4c074c3a0afe25ac1e54a3ad5e3b1ec5e4907cdd067d790f4e2ab7706f5dc2ff44c43ca0bc8e03b1b4dc90d66d8aa49ba0f

diff --git a/dev-python/memory-allocator/memory-allocator-0.1.3.ebuild b/dev-python/memory-allocator/memory-allocator-0.1.3.ebuild
deleted file mode 100644
index 46aff436fd1d..000000000000
--- a/dev-python/memory-allocator/memory-allocator-0.1.3.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 2021-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..12} )
-DISTUTILS_USE_PEP517=setuptools
-DISTUTILS_EXT=1
-inherit distutils-r1 pypi
-
-DESCRIPTION="An extension class for memory allocation in cython"
-HOMEPAGE="https://pypi.org/project/memory-allocator/
-	https://github.com/sagemath/memory_allocator"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64"
-
-BDEPEND="dev-python/cython[${PYTHON_USEDEP}]"
-
-python_test() {
-	# The test script tries to "import memory_allocator.test" which, so
-	# long as a memory_allocator directory exists inside CWD, will look
-	# for a memory_allocator/test.py there. But there is no such file;
-	# the "test" module is a compiled extension. To let the search fall
-	# back to the correct location, we temporarily rename the directory
-	# that misleads it.
-	mv memory_allocator mv_memory_allocator || die
-	${EPYTHON} test.py || die
-	mv mv_memory_allocator memory_allocator || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/memory-allocator/
@ 2024-05-18  6:11 Michał Górny
  0 siblings, 0 replies; 6+ messages in thread
From: Michał Górny @ 2024-05-18  6:11 UTC (permalink / raw
  To: gentoo-commits

commit:     376cf4ec4fbe72dd485c6d1222103c66a8780dc6
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat May 18 06:06:14 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 18 06:11:13 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=376cf4ec

dev-python/memory-allocator: Enable py3.13

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

 .../memory-allocator/memory-allocator-0.1.4.ebuild   | 20 ++++++++++++--------
 1 file changed, 12 insertions(+), 8 deletions(-)

diff --git a/dev-python/memory-allocator/memory-allocator-0.1.4.ebuild b/dev-python/memory-allocator/memory-allocator-0.1.4.ebuild
index bad309e2b7df..35542831649a 100644
--- a/dev-python/memory-allocator/memory-allocator-0.1.4.ebuild
+++ b/dev-python/memory-allocator/memory-allocator-0.1.4.ebuild
@@ -3,20 +3,25 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..12} )
-DISTUTILS_USE_PEP517=setuptools
 DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
 inherit distutils-r1 pypi
 
 DESCRIPTION="An extension class for memory allocation in cython"
-HOMEPAGE="https://pypi.org/project/memory-allocator/
-	https://github.com/sagemath/memory_allocator"
+HOMEPAGE="
+	https://pypi.org/project/memory-allocator/
+	https://github.com/sagemath/memory_allocator/
+"
 
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="amd64"
 
-BDEPEND="dev-python/cython[${PYTHON_USEDEP}]"
+BDEPEND="
+	dev-python/cython[${PYTHON_USEDEP}]
+"
 
 python_test() {
 	# The test script tries to "import memory_allocator.test" which, so
@@ -25,7 +30,6 @@ python_test() {
 	# the "test" module is a compiled extension. To let the search fall
 	# back to the correct location, we temporarily rename the directory
 	# that misleads it.
-	mv memory_allocator mv_memory_allocator || die
-	${EPYTHON} test.py || die
-	mv mv_memory_allocator memory_allocator || die
+	rm -rf memory_allocator || die
+	"${EPYTHON}" test.py || die
 }


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/memory-allocator/
@ 2024-08-27  0:22 Michael Orlitzky
  0 siblings, 0 replies; 6+ messages in thread
From: Michael Orlitzky @ 2024-08-27  0:22 UTC (permalink / raw
  To: gentoo-commits

commit:     1790df20782202433f691c0bf79483d537be19cb
Author:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 26 12:24:54 2024 +0000
Commit:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Tue Aug 27 00:21:01 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1790df20

dev-python/memory-allocator: keyword 0.1.4 for ~riscv

Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>

 dev-python/memory-allocator/memory-allocator-0.1.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/memory-allocator/memory-allocator-0.1.4.ebuild b/dev-python/memory-allocator/memory-allocator-0.1.4.ebuild
index 35542831649a..64b6ebbfe4b2 100644
--- a/dev-python/memory-allocator/memory-allocator-0.1.4.ebuild
+++ b/dev-python/memory-allocator/memory-allocator-0.1.4.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64"
+KEYWORDS="amd64 ~riscv"
 
 BDEPEND="
 	dev-python/cython[${PYTHON_USEDEP}]


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

end of thread, other threads:[~2024-08-27  0:22 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-25  4:47 [gentoo-commits] repo/gentoo:master commit in: dev-python/memory-allocator/ Michał Górny
  -- strict thread matches above, loose matches on Subject: below --
2024-08-27  0:22 Michael Orlitzky
2024-05-18  6:11 Michał Górny
2024-04-11 19:04 Michał Górny
2024-04-11 17:43 Arthur Zamarin
2023-11-29  2:10 Michael Orlitzky

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