* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2020-11-28 9:15 Joonas Niilola
0 siblings, 0 replies; 35+ messages in thread
From: Joonas Niilola @ 2020-11-28 9:15 UTC (permalink / raw
To: gentoo-commits
commit: e578f931a24d8568a124697f3ead291fcba67446
Author: Martin Dummer <martin.dummer <AT> gmx <DOT> net>
AuthorDate: Wed Nov 25 11:24:36 2020 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sat Nov 28 09:15:21 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e578f931
dev-python/reedsolomon: new ebuild
Pure-Python Reed Solomon encoder/decoder
necessary as new dependency for dev-embedded/esptool-3.0
Closes: https://bugs.gentoo.org/756427
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Martin Dummer <martin.dummer <AT> gmx.net>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-python/reedsolomon/Manifest | 1 +
dev-python/reedsolomon/metadata.xml | 15 +++++++++++++++
dev-python/reedsolomon/reedsolomon-1.5.4.ebuild | 22 ++++++++++++++++++++++
3 files changed, 38 insertions(+)
diff --git a/dev-python/reedsolomon/Manifest b/dev-python/reedsolomon/Manifest
new file mode 100644
index 00000000000..c2cbce4dc1f
--- /dev/null
+++ b/dev-python/reedsolomon/Manifest
@@ -0,0 +1 @@
+DIST reedsolomon-1.5.4.tar.gz 283778 BLAKE2B 5354b8d320db1533469ae1fd706c0412a81bb408675041af5dbf42b42014e4b779b937fa8e3b3d0a5e67e62d9fd7ce9ac519022dd98dbc82a156ee0cda7914ce SHA512 c738f817c8f536ee86e5bcd3de73a4cf6a3e606ba196a359b6c09e7372dba31316ddb8b134d7c335100e4c2ff0158ff07caa35fee9bc20768bde23cd803e274a
diff --git a/dev-python/reedsolomon/metadata.xml b/dev-python/reedsolomon/metadata.xml
new file mode 100644
index 00000000000..f4f98f9eb8c
--- /dev/null
+++ b/dev-python/reedsolomon/metadata.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>martin.dummer@gmx.net</email>
+ <name>Martin Dummer</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">tomerfiliba/reedsolomon</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild b/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild
new file mode 100644
index 00000000000..e3c9f2928bd
--- /dev/null
+++ b/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild
@@ -0,0 +1,22 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6..9} )
+inherit distutils-r1
+
+DESCRIPTION="Pure-Python Reed Solomon encoder/decoder"
+HOMEPAGE="https://github.com/tomerfiliba/reedsolomon https://pypi.org/project/reedsolo/"
+SRC_URI="https://github.com/tomerfiliba/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+python_test() {
+ ${EPYTHON} tests/test_creedsolo.py || die "creedsolo test failed with ${EPYTHON}"
+ ${EPYTHON} tests/test_reedsolo.py || die "reedsolo test failed with ${EPYTHON}"
+}
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2020-12-07 16:41 Joonas Niilola
0 siblings, 0 replies; 35+ messages in thread
From: Joonas Niilola @ 2020-12-07 16:41 UTC (permalink / raw
To: gentoo-commits
commit: 271cb56e621f9ce5fca615df93612fa85e72a0f2
Author: Martin Dummer <martin.dummer <AT> gmx <DOT> net>
AuthorDate: Mon Nov 30 21:47:14 2020 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Dec 7 16:41:35 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=271cb56e
dev-python/reedsolomon: fix ebuild, add necessary dependency
Unfortunately the buildtime dependency dev-python/cython is missing.
This ebuild fixes this.
Closes: https://bugs.gentoo.org/757486
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Martin Dummer <martin.dummer <AT> gmx.net>
Closes: https://github.com/gentoo/gentoo/pull/18465
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-python/reedsolomon/reedsolomon-1.5.4.ebuild | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild b/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild
index e3c9f2928bd..70f3dc5d7f7 100644
--- a/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild
+++ b/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild
@@ -16,6 +16,10 @@ KEYWORDS="~amd64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
+BDEPEND="
+ dev-python/cython[${PYTHON_USEDEP}]
+"
+
python_test() {
${EPYTHON} tests/test_creedsolo.py || die "creedsolo test failed with ${EPYTHON}"
${EPYTHON} tests/test_reedsolo.py || die "reedsolo test failed with ${EPYTHON}"
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2020-12-12 4:27 Sam James
0 siblings, 0 replies; 35+ messages in thread
From: Sam James @ 2020-12-12 4:27 UTC (permalink / raw
To: gentoo-commits
commit: 27509376601353f7179d9be92d7f100b7914cdc8
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 12 04:26:04 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Dec 12 04:26:04 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27509376
dev-python/reedsolomon: Keyword 1.5.4 arm, #759019
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/reedsolomon/reedsolomon-1.5.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild b/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild
index 70f3dc5d7f7..92a1c6a68c3 100644
--- a/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild
+++ b/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/tomerfiliba/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2020-12-12 4:32 Sam James
0 siblings, 0 replies; 35+ messages in thread
From: Sam James @ 2020-12-12 4:32 UTC (permalink / raw
To: gentoo-commits
commit: 7d6d563ab0c150e11c2fbaa6c049b9d29bde65bb
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 12 04:32:08 2020 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Dec 12 04:32:08 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d6d563a
dev-python/reedsolomon: arm64 keyworded (bug #759019)
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/reedsolomon/reedsolomon-1.5.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild b/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild
index 92a1c6a68c3..fb707b51b17 100644
--- a/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild
+++ b/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/tomerfiliba/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2021-02-04 14:09 Sam James
0 siblings, 0 replies; 35+ messages in thread
From: Sam James @ 2021-02-04 14:09 UTC (permalink / raw
To: gentoo-commits
commit: 57c7c45ffc23447b292751e679ef1583c06adbee
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 4 14:09:15 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Feb 4 14:09:15 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57c7c45f
dev-python/reedsolomon: Stabilize 1.5.4 amd64, #768600
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/reedsolomon/reedsolomon-1.5.4.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild b/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild
index 50fa2ec5e05..bc9cfd708b5 100644
--- a/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild
+++ b/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020 Gentoo Authors
+# Copyright 2020-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/tomerfiliba/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2021-02-04 14:42 Agostino Sarubbo
0 siblings, 0 replies; 35+ messages in thread
From: Agostino Sarubbo @ 2021-02-04 14:42 UTC (permalink / raw
To: gentoo-commits
commit: 7a3be17e1ed5dd8f2512e7796c01082f2029a715
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 4 14:42:02 2021 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Feb 4 14:42:02 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a3be17e
dev-python/reedsolomon: x86 stable wrt bug #768600
Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-python/reedsolomon/reedsolomon-1.5.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild b/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild
index bc9cfd708b5..93597cac24f 100644
--- a/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild
+++ b/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/tomerfiliba/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2022-03-04 13:53 Joonas Niilola
0 siblings, 0 replies; 35+ messages in thread
From: Joonas Niilola @ 2022-03-04 13:53 UTC (permalink / raw
To: gentoo-commits
commit: 916961a83b18eeb22b99e94dc3d0f3a6eef31a5e
Author: Martin Dummer <martin.dummer <AT> gmx <DOT> net>
AuthorDate: Thu Feb 3 08:19:33 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Mar 4 13:53:50 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=916961a8
dev-python/reedsolomon: add python:3.10 compat
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Martin Dummer <martin.dummer <AT> gmx.net>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-python/reedsolomon/reedsolomon-1.5.4-r1.ebuild | 31 ++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/dev-python/reedsolomon/reedsolomon-1.5.4-r1.ebuild b/dev-python/reedsolomon/reedsolomon-1.5.4-r1.ebuild
new file mode 100644
index 000000000000..25842d39935f
--- /dev/null
+++ b/dev-python/reedsolomon/reedsolomon-1.5.4-r1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Pure-Python Reed Solomon encoder/decoder"
+HOMEPAGE="https://github.com/tomerfiliba/reedsolomon https://pypi.org/project/reedsolo/"
+SRC_URI="https://github.com/tomerfiliba/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+ dev-python/cython[${PYTHON_USEDEP}]
+"
+
+src_prepare() {
+ default
+ rm creedsolo.c || die
+}
+
+python_test() {
+ "${EPYTHON}" tests/test_creedsolo.py || die "creedsolo test failed with ${EPYTHON}"
+ "${EPYTHON}" tests/test_reedsolo.py || die "reedsolo test failed with ${EPYTHON}"
+}
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2022-04-06 6:32 Agostino Sarubbo
0 siblings, 0 replies; 35+ messages in thread
From: Agostino Sarubbo @ 2022-04-06 6:32 UTC (permalink / raw
To: gentoo-commits
commit: 790424b98030f1b8d6ab5dc6d2aa0d65c9542478
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 6 06:32:47 2022 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Apr 6 06:32:47 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=790424b9
dev-python/reedsolomon: x86 stable wrt bug #836809
Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-python/reedsolomon/reedsolomon-1.5.4-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/reedsolomon/reedsolomon-1.5.4-r1.ebuild b/dev-python/reedsolomon/reedsolomon-1.5.4-r1.ebuild
index 25842d39935f..dc269813e559 100644
--- a/dev-python/reedsolomon/reedsolomon-1.5.4-r1.ebuild
+++ b/dev-python/reedsolomon/reedsolomon-1.5.4-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/tomerfiliba/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2022-04-06 20:57 Jakov Smolić
0 siblings, 0 replies; 35+ messages in thread
From: Jakov Smolić @ 2022-04-06 20:57 UTC (permalink / raw
To: gentoo-commits
commit: 78bbf0ac43f995bcae829b945927875751a44ff8
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 6 20:56:56 2022 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Wed Apr 6 20:56:56 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78bbf0ac
dev-python/reedsolomon: Stabilize 1.5.4-r1 amd64, #836809
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
dev-python/reedsolomon/reedsolomon-1.5.4-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/reedsolomon/reedsolomon-1.5.4-r1.ebuild b/dev-python/reedsolomon/reedsolomon-1.5.4-r1.ebuild
index dc269813e559..f2ff6d41a05f 100644
--- a/dev-python/reedsolomon/reedsolomon-1.5.4-r1.ebuild
+++ b/dev-python/reedsolomon/reedsolomon-1.5.4-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/tomerfiliba/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2022-04-06 21:09 Michał Górny
0 siblings, 0 replies; 35+ messages in thread
From: Michał Górny @ 2022-04-06 21:09 UTC (permalink / raw
To: gentoo-commits
commit: 329171cbd549ed8c5114bff742b2820738428606
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 6 21:09:34 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Apr 6 21:09:34 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=329171cb
dev-python/reedsolomon: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/reedsolomon/reedsolomon-1.5.4.ebuild | 26 -------------------------
1 file changed, 26 deletions(-)
diff --git a/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild b/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild
deleted file mode 100644
index 93597cac24f4..000000000000
--- a/dev-python/reedsolomon/reedsolomon-1.5.4.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-inherit distutils-r1
-
-DESCRIPTION="Pure-Python Reed Solomon encoder/decoder"
-HOMEPAGE="https://github.com/tomerfiliba/reedsolomon https://pypi.org/project/reedsolo/"
-SRC_URI="https://github.com/tomerfiliba/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
- dev-python/cython[${PYTHON_USEDEP}]
-"
-
-python_test() {
- ${EPYTHON} tests/test_creedsolo.py || die "creedsolo test failed with ${EPYTHON}"
- ${EPYTHON} tests/test_reedsolo.py || die "reedsolo test failed with ${EPYTHON}"
-}
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2022-05-29 18:38 Arthur Zamarin
0 siblings, 0 replies; 35+ messages in thread
From: Arthur Zamarin @ 2022-05-29 18:38 UTC (permalink / raw
To: gentoo-commits
commit: 008ec671d5c5eccab25e848a5b5950726f44e444
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun May 29 18:34:23 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun May 29 18:34:23 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=008ec671
dev-python/reedsolomon: Use PEP517 build
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild | 32 ++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild b/dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild
new file mode 100644
index 000000000000..7161053b5d12
--- /dev/null
+++ b/dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild
@@ -0,0 +1,32 @@
+# Copyright 2021-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
+
+DESCRIPTION="Pure-Python Reed Solomon encoder/decoder"
+HOMEPAGE="https://github.com/tomerfiliba/reedsolomon https://pypi.org/project/reedsolo/"
+SRC_URI="https://github.com/tomerfiliba/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+ dev-python/cython[${PYTHON_USEDEP}]
+"
+
+src_prepare() {
+ default
+ rm creedsolo.c || die
+}
+
+python_test() {
+ "${EPYTHON}" tests/test_creedsolo.py || die "creedsolo test failed with ${EPYTHON}"
+ "${EPYTHON}" tests/test_reedsolo.py || die "reedsolo test failed with ${EPYTHON}"
+}
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2022-05-29 18:38 Arthur Zamarin
0 siblings, 0 replies; 35+ messages in thread
From: Arthur Zamarin @ 2022-05-29 18:38 UTC (permalink / raw
To: gentoo-commits
commit: 58ba7f5cb2dd9999c9bb4495754f159a3ecc85bd
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun May 29 18:35:47 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun May 29 18:35:47 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58ba7f5c
dev-python/reedsolomon: enable py3.11
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild b/dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild
index 7161053b5d12..d00545330c78 100644
--- a/dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild
+++ b/dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild
@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
DESCRIPTION="Pure-Python Reed Solomon encoder/decoder"
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2022-06-29 0:11 Sam James
0 siblings, 0 replies; 35+ messages in thread
From: Sam James @ 2022-06-29 0:11 UTC (permalink / raw
To: gentoo-commits
commit: a3945ace38af931518c9c079d18ee4d47442cf66
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 29 00:10:13 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jun 29 00:10:13 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3945ace
dev-python/reedsolomon: Stabilize 1.5.4-r2 x86, #854927
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild b/dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild
index d00545330c78..5dc49b5abd16 100644
--- a/dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild
+++ b/dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/tomerfiliba/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2022-06-29 6:00 Joonas Niilola
0 siblings, 0 replies; 35+ messages in thread
From: Joonas Niilola @ 2022-06-29 6:00 UTC (permalink / raw
To: gentoo-commits
commit: f3bdf7669af02e19668db4f94e03c29da4b8ab7a
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 29 05:59:56 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Jun 29 05:59:56 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3bdf766
dev-python/reedsolomon: Stabilize 1.5.4-r2 amd64, #854927
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild b/dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild
index 5dc49b5abd16..aaf1728840ff 100644
--- a/dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild
+++ b/dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/tomerfiliba/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2022-06-29 13:05 Michał Górny
0 siblings, 0 replies; 35+ messages in thread
From: Michał Górny @ 2022-06-29 13:05 UTC (permalink / raw
To: gentoo-commits
commit: 703a60d5ca84566d12fc44e0765e5a79092ccaef
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 29 11:06:53 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Jun 29 13:05:01 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=703a60d5
dev-python/reedsolomon: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/reedsolomon/reedsolomon-1.5.4-r1.ebuild | 31 ----------------------
1 file changed, 31 deletions(-)
diff --git a/dev-python/reedsolomon/reedsolomon-1.5.4-r1.ebuild b/dev-python/reedsolomon/reedsolomon-1.5.4-r1.ebuild
deleted file mode 100644
index f2ff6d41a05f..000000000000
--- a/dev-python/reedsolomon/reedsolomon-1.5.4-r1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 2021-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="Pure-Python Reed Solomon encoder/decoder"
-HOMEPAGE="https://github.com/tomerfiliba/reedsolomon https://pypi.org/project/reedsolo/"
-SRC_URI="https://github.com/tomerfiliba/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
- dev-python/cython[${PYTHON_USEDEP}]
-"
-
-src_prepare() {
- default
- rm creedsolo.c || die
-}
-
-python_test() {
- "${EPYTHON}" tests/test_creedsolo.py || die "creedsolo test failed with ${EPYTHON}"
- "${EPYTHON}" tests/test_reedsolo.py || die "reedsolo test failed with ${EPYTHON}"
-}
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2022-12-09 5:05 Michał Górny
0 siblings, 0 replies; 35+ messages in thread
From: Michał Górny @ 2022-12-09 5:05 UTC (permalink / raw
To: gentoo-commits
commit: d8087b5ab5f7ae5f369327dc4bed198f8a3ff346
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 9 04:56:53 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Dec 9 04:56:53 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8087b5a
dev-python/reedsolomon: Bump to 1.6.0
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/reedsolomon/Manifest | 1 +
dev-python/reedsolomon/reedsolomon-1.6.0.ebuild | 34 +++++++++++++++++++++++++
2 files changed, 35 insertions(+)
diff --git a/dev-python/reedsolomon/Manifest b/dev-python/reedsolomon/Manifest
index c2cbce4dc1f5..3c352a15bda8 100644
--- a/dev-python/reedsolomon/Manifest
+++ b/dev-python/reedsolomon/Manifest
@@ -1 +1,2 @@
DIST reedsolomon-1.5.4.tar.gz 283778 BLAKE2B 5354b8d320db1533469ae1fd706c0412a81bb408675041af5dbf42b42014e4b779b937fa8e3b3d0a5e67e62d9fd7ce9ac519022dd98dbc82a156ee0cda7914ce SHA512 c738f817c8f536ee86e5bcd3de73a4cf6a3e606ba196a359b6c09e7372dba31316ddb8b134d7c335100e4c2ff0158ff07caa35fee9bc20768bde23cd803e274a
+DIST reedsolomon-1.6.0.gh.tar.gz 62527 BLAKE2B 100e0152ca8d05605f961dbddcc41552941356a72b488375cb1237cf45938382abf6bfd439b572a9aed11a12068258027fae0bc867e7577280829779d21f53a3 SHA512 ddf73b0bdc78856d9aa76e7bf3fcb9715b9b7f922c2d72dc4bd13a4d5a233844757e2946ef96c545ab7979bc6b62a1f33286711f927871a6689a269d20a81b44
diff --git a/dev-python/reedsolomon/reedsolomon-1.6.0.ebuild b/dev-python/reedsolomon/reedsolomon-1.6.0.ebuild
new file mode 100644
index 000000000000..e5e8cdfe1f9c
--- /dev/null
+++ b/dev-python/reedsolomon/reedsolomon-1.6.0.ebuild
@@ -0,0 +1,34 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python Reed Solomon encoder/decoder"
+HOMEPAGE="
+ https://github.com/tomerfiliba/reedsolomon/
+ https://pypi.org/project/reedsolo/
+"
+SRC_URI="
+ https://github.com/tomerfiliba/reedsolomon/archive/v${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+ dev-python/cython[${PYTHON_USEDEP}]
+"
+
+python_test() {
+ "${EPYTHON}" tests/test_creedsolo.py || die "creedsolo test failed with ${EPYTHON}"
+ "${EPYTHON}" tests/test_reedsolo.py || die "reedsolo test failed with ${EPYTHON}"
+}
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2023-01-07 4:54 Michał Górny
0 siblings, 0 replies; 35+ messages in thread
From: Michał Górny @ 2023-01-07 4:54 UTC (permalink / raw
To: gentoo-commits
commit: bb8fa3b51bc751644b4aaa95878afe5721c0ce91
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 7 04:13:52 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jan 7 04:13:52 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb8fa3b5
dev-python/reedsolomon: Bump to 1.6.1
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/reedsolomon/Manifest | 1 +
dev-python/reedsolomon/reedsolomon-1.6.1.ebuild | 34 +++++++++++++++++++++++++
2 files changed, 35 insertions(+)
diff --git a/dev-python/reedsolomon/Manifest b/dev-python/reedsolomon/Manifest
index 3c352a15bda8..e2e019b5a033 100644
--- a/dev-python/reedsolomon/Manifest
+++ b/dev-python/reedsolomon/Manifest
@@ -1,2 +1,3 @@
DIST reedsolomon-1.5.4.tar.gz 283778 BLAKE2B 5354b8d320db1533469ae1fd706c0412a81bb408675041af5dbf42b42014e4b779b937fa8e3b3d0a5e67e62d9fd7ce9ac519022dd98dbc82a156ee0cda7914ce SHA512 c738f817c8f536ee86e5bcd3de73a4cf6a3e606ba196a359b6c09e7372dba31316ddb8b134d7c335100e4c2ff0158ff07caa35fee9bc20768bde23cd803e274a
DIST reedsolomon-1.6.0.gh.tar.gz 62527 BLAKE2B 100e0152ca8d05605f961dbddcc41552941356a72b488375cb1237cf45938382abf6bfd439b572a9aed11a12068258027fae0bc867e7577280829779d21f53a3 SHA512 ddf73b0bdc78856d9aa76e7bf3fcb9715b9b7f922c2d72dc4bd13a4d5a233844757e2946ef96c545ab7979bc6b62a1f33286711f927871a6689a269d20a81b44
+DIST reedsolomon-1.6.1.gh.tar.gz 63944 BLAKE2B 58845e726fdf2096af280bf14feb981d883b2368a47904d33a2386db0fb5d94091ecdc22e48bfa415e2abd9c4b3c99446b3b51bca9cce510961172697a273a0d SHA512 323f91e3e43847023f23087e1038ae240572b87c29ee26be1a05a6ee49824aa86cb706d1856b27e28841fbb14efaf897d1b8e0cb626529fe7cdeaa7fbda6ce27
diff --git a/dev-python/reedsolomon/reedsolomon-1.6.1.ebuild b/dev-python/reedsolomon/reedsolomon-1.6.1.ebuild
new file mode 100644
index 000000000000..9dad1d4feb55
--- /dev/null
+++ b/dev-python/reedsolomon/reedsolomon-1.6.1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 2021-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python Reed Solomon encoder/decoder"
+HOMEPAGE="
+ https://github.com/tomerfiliba/reedsolomon/
+ https://pypi.org/project/reedsolo/
+"
+SRC_URI="
+ https://github.com/tomerfiliba/reedsolomon/archive/v${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
+
+LICENSE="Unlicense" # or MIT-0
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+ dev-python/cython[${PYTHON_USEDEP}]
+"
+
+python_test() {
+ "${EPYTHON}" tests/test_creedsolo.py || die "creedsolo test failed with ${EPYTHON}"
+ "${EPYTHON}" tests/test_reedsolo.py || die "reedsolo test failed with ${EPYTHON}"
+}
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2023-01-07 14:43 Michał Górny
0 siblings, 0 replies; 35+ messages in thread
From: Michał Górny @ 2023-01-07 14:43 UTC (permalink / raw
To: gentoo-commits
commit: 76d03db7793668d92133e7807972984311aa16b0
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 7 14:43:13 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jan 7 14:43:13 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76d03db7
dev-python/reedsolomon: Update LICENSE after MIT-0 inclusion
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/reedsolomon/reedsolomon-1.6.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/reedsolomon/reedsolomon-1.6.1.ebuild b/dev-python/reedsolomon/reedsolomon-1.6.1.ebuild
index 9dad1d4feb55..19784a96e732 100644
--- a/dev-python/reedsolomon/reedsolomon-1.6.1.ebuild
+++ b/dev-python/reedsolomon/reedsolomon-1.6.1.ebuild
@@ -18,7 +18,7 @@ SRC_URI="
-> ${P}.gh.tar.gz
"
-LICENSE="Unlicense" # or MIT-0
+LICENSE="|| ( Unlicense MIT-0 )"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE="test"
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2023-01-11 21:24 Sam James
0 siblings, 0 replies; 35+ messages in thread
From: Sam James @ 2023-01-11 21:24 UTC (permalink / raw
To: gentoo-commits
commit: 4636dc02244a33ea1673460927164dcdc78fe954
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 11 21:24:47 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jan 11 21:24:47 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4636dc02
dev-python/reedsolomon: Stabilize 1.6.0 amd64, #890533
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/reedsolomon/reedsolomon-1.6.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/reedsolomon/reedsolomon-1.6.0.ebuild b/dev-python/reedsolomon/reedsolomon-1.6.0.ebuild
index e5e8cdfe1f9c..f58e38023de4 100644
--- a/dev-python/reedsolomon/reedsolomon-1.6.0.ebuild
+++ b/dev-python/reedsolomon/reedsolomon-1.6.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021-2022 Gentoo Authors
+# Copyright 2021-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -20,7 +20,7 @@ SRC_URI="
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2023-01-11 21:40 Sam James
0 siblings, 0 replies; 35+ messages in thread
From: Sam James @ 2023-01-11 21:40 UTC (permalink / raw
To: gentoo-commits
commit: 88c3cefd7ca329a2ab8ce9920ce0d54590b953f3
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 11 21:39:32 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jan 11 21:39:44 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88c3cefd
dev-python/reedsolomon: Stabilize 1.6.0 x86, #890529
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/reedsolomon/reedsolomon-1.6.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/reedsolomon/reedsolomon-1.6.0.ebuild b/dev-python/reedsolomon/reedsolomon-1.6.0.ebuild
index f58e38023de4..d13e928a0705 100644
--- a/dev-python/reedsolomon/reedsolomon-1.6.0.ebuild
+++ b/dev-python/reedsolomon/reedsolomon-1.6.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
LICENSE="public-domain"
SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2023-01-12 6:14 Michał Górny
0 siblings, 0 replies; 35+ messages in thread
From: Michał Górny @ 2023-01-12 6:14 UTC (permalink / raw
To: gentoo-commits
commit: af94760567e715adb02f750ece849ff678053d9c
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 12 05:51:42 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Jan 12 06:13:54 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af947605
dev-python/reedsolomon: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/reedsolomon/Manifest | 1 -
dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild | 32 ----------------------
2 files changed, 33 deletions(-)
diff --git a/dev-python/reedsolomon/Manifest b/dev-python/reedsolomon/Manifest
index e2e019b5a033..243c59d156ee 100644
--- a/dev-python/reedsolomon/Manifest
+++ b/dev-python/reedsolomon/Manifest
@@ -1,3 +1,2 @@
-DIST reedsolomon-1.5.4.tar.gz 283778 BLAKE2B 5354b8d320db1533469ae1fd706c0412a81bb408675041af5dbf42b42014e4b779b937fa8e3b3d0a5e67e62d9fd7ce9ac519022dd98dbc82a156ee0cda7914ce SHA512 c738f817c8f536ee86e5bcd3de73a4cf6a3e606ba196a359b6c09e7372dba31316ddb8b134d7c335100e4c2ff0158ff07caa35fee9bc20768bde23cd803e274a
DIST reedsolomon-1.6.0.gh.tar.gz 62527 BLAKE2B 100e0152ca8d05605f961dbddcc41552941356a72b488375cb1237cf45938382abf6bfd439b572a9aed11a12068258027fae0bc867e7577280829779d21f53a3 SHA512 ddf73b0bdc78856d9aa76e7bf3fcb9715b9b7f922c2d72dc4bd13a4d5a233844757e2946ef96c545ab7979bc6b62a1f33286711f927871a6689a269d20a81b44
DIST reedsolomon-1.6.1.gh.tar.gz 63944 BLAKE2B 58845e726fdf2096af280bf14feb981d883b2368a47904d33a2386db0fb5d94091ecdc22e48bfa415e2abd9c4b3c99446b3b51bca9cce510961172697a273a0d SHA512 323f91e3e43847023f23087e1038ae240572b87c29ee26be1a05a6ee49824aa86cb706d1856b27e28841fbb14efaf897d1b8e0cb626529fe7cdeaa7fbda6ce27
diff --git a/dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild b/dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild
deleted file mode 100644
index aaf1728840ff..000000000000
--- a/dev-python/reedsolomon/reedsolomon-1.5.4-r2.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 2021-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..11} )
-inherit distutils-r1
-
-DESCRIPTION="Pure-Python Reed Solomon encoder/decoder"
-HOMEPAGE="https://github.com/tomerfiliba/reedsolomon https://pypi.org/project/reedsolo/"
-SRC_URI="https://github.com/tomerfiliba/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
- dev-python/cython[${PYTHON_USEDEP}]
-"
-
-src_prepare() {
- default
- rm creedsolo.c || die
-}
-
-python_test() {
- "${EPYTHON}" tests/test_creedsolo.py || die "creedsolo test failed with ${EPYTHON}"
- "${EPYTHON}" tests/test_reedsolo.py || die "reedsolo test failed with ${EPYTHON}"
-}
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2023-01-18 7:34 Michał Górny
0 siblings, 0 replies; 35+ messages in thread
From: Michał Górny @ 2023-01-18 7:34 UTC (permalink / raw
To: gentoo-commits
commit: 1eb3b4a3867b7f659510d7bb55737d6a8dad02e9
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 18 07:27:28 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Jan 18 07:33:58 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1eb3b4a3
dev-python/reedsolomon: Bump to 1.7.0
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/reedsolomon/Manifest | 1 +
dev-python/reedsolomon/reedsolomon-1.7.0.ebuild | 38 +++++++++++++++++++++++++
2 files changed, 39 insertions(+)
diff --git a/dev-python/reedsolomon/Manifest b/dev-python/reedsolomon/Manifest
index 243c59d156ee..472243e1b411 100644
--- a/dev-python/reedsolomon/Manifest
+++ b/dev-python/reedsolomon/Manifest
@@ -1,2 +1,3 @@
DIST reedsolomon-1.6.0.gh.tar.gz 62527 BLAKE2B 100e0152ca8d05605f961dbddcc41552941356a72b488375cb1237cf45938382abf6bfd439b572a9aed11a12068258027fae0bc867e7577280829779d21f53a3 SHA512 ddf73b0bdc78856d9aa76e7bf3fcb9715b9b7f922c2d72dc4bd13a4d5a233844757e2946ef96c545ab7979bc6b62a1f33286711f927871a6689a269d20a81b44
DIST reedsolomon-1.6.1.gh.tar.gz 63944 BLAKE2B 58845e726fdf2096af280bf14feb981d883b2368a47904d33a2386db0fb5d94091ecdc22e48bfa415e2abd9c4b3c99446b3b51bca9cce510961172697a273a0d SHA512 323f91e3e43847023f23087e1038ae240572b87c29ee26be1a05a6ee49824aa86cb706d1856b27e28841fbb14efaf897d1b8e0cb626529fe7cdeaa7fbda6ce27
+DIST reedsolomon-1.7.0.gh.tar.gz 64279 BLAKE2B 304abdf3709dff52c4c515598c511b8e3080475c0755ab68eb9468652f12d2cdb2763bdf88f5fe5e69813928646a8b8378fee9cb2b24d54ce9a6f2b5fb985ac9 SHA512 c7d2ae8444c9e3d6646587f85fe0085a7579cc58d2f4bca3fb89632df4873e2664c81f06ee2e75e928248bb558a7fd8d101a043187ce05e70a079b031981c374
diff --git a/dev-python/reedsolomon/reedsolomon-1.7.0.ebuild b/dev-python/reedsolomon/reedsolomon-1.7.0.ebuild
new file mode 100644
index 000000000000..06ae21367731
--- /dev/null
+++ b/dev-python/reedsolomon/reedsolomon-1.7.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 2021-2023 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="Python Reed Solomon encoder/decoder"
+HOMEPAGE="
+ https://github.com/tomerfiliba/reedsolomon/
+ https://pypi.org/project/reedsolo/
+"
+SRC_URI="
+ https://github.com/tomerfiliba/reedsolomon/archive/v${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
+
+LICENSE="|| ( Unlicense MIT-0 )"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+ dev-python/cython[${PYTHON_USEDEP}]
+"
+
+src_configure() {
+ DISTUTILS_ARGS=( --cythonize )
+}
+
+python_test() {
+ "${EPYTHON}" tests/test_creedsolo.py || die "creedsolo test failed with ${EPYTHON}"
+ "${EPYTHON}" tests/test_reedsolo.py || die "reedsolo test failed with ${EPYTHON}"
+}
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2023-02-16 10:01 Sam James
0 siblings, 0 replies; 35+ messages in thread
From: Sam James @ 2023-02-16 10:01 UTC (permalink / raw
To: gentoo-commits
commit: 149a131188ebce76a87fd8363fb212f5f1620a02
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 16 10:00:59 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Feb 16 10:00:59 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=149a1311
dev-python/reedsolomon: Stabilize 1.7.0 x86, #894102
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/reedsolomon/reedsolomon-1.7.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/reedsolomon/reedsolomon-1.7.0.ebuild b/dev-python/reedsolomon/reedsolomon-1.7.0.ebuild
index ecf35f1cdd2d..8ed3b28bcdd7 100644
--- a/dev-python/reedsolomon/reedsolomon-1.7.0.ebuild
+++ b/dev-python/reedsolomon/reedsolomon-1.7.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
LICENSE="|| ( Unlicense MIT-0 )"
SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2023-02-16 10:01 Sam James
0 siblings, 0 replies; 35+ messages in thread
From: Sam James @ 2023-02-16 10:01 UTC (permalink / raw
To: gentoo-commits
commit: ebef7d7f1b18293c4458da9d13ed35c3c62952e4
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 16 10:00:57 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Feb 16 10:00:57 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebef7d7f
dev-python/reedsolomon: Stabilize 1.7.0 amd64, #894102
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/reedsolomon/reedsolomon-1.7.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/reedsolomon/reedsolomon-1.7.0.ebuild b/dev-python/reedsolomon/reedsolomon-1.7.0.ebuild
index 06ae21367731..ecf35f1cdd2d 100644
--- a/dev-python/reedsolomon/reedsolomon-1.7.0.ebuild
+++ b/dev-python/reedsolomon/reedsolomon-1.7.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
LICENSE="|| ( Unlicense MIT-0 )"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2023-02-16 14:18 Michał Górny
0 siblings, 0 replies; 35+ messages in thread
From: Michał Górny @ 2023-02-16 14:18 UTC (permalink / raw
To: gentoo-commits
commit: beedaf82bd7abd72a654e26627774aef38590149
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 16 14:14:28 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Feb 16 14:14:28 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=beedaf82
dev-python/reedsolomon: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/reedsolomon/Manifest | 2 --
dev-python/reedsolomon/reedsolomon-1.6.0.ebuild | 34 -------------------------
dev-python/reedsolomon/reedsolomon-1.6.1.ebuild | 34 -------------------------
3 files changed, 70 deletions(-)
diff --git a/dev-python/reedsolomon/Manifest b/dev-python/reedsolomon/Manifest
index 472243e1b411..45e654225b64 100644
--- a/dev-python/reedsolomon/Manifest
+++ b/dev-python/reedsolomon/Manifest
@@ -1,3 +1 @@
-DIST reedsolomon-1.6.0.gh.tar.gz 62527 BLAKE2B 100e0152ca8d05605f961dbddcc41552941356a72b488375cb1237cf45938382abf6bfd439b572a9aed11a12068258027fae0bc867e7577280829779d21f53a3 SHA512 ddf73b0bdc78856d9aa76e7bf3fcb9715b9b7f922c2d72dc4bd13a4d5a233844757e2946ef96c545ab7979bc6b62a1f33286711f927871a6689a269d20a81b44
-DIST reedsolomon-1.6.1.gh.tar.gz 63944 BLAKE2B 58845e726fdf2096af280bf14feb981d883b2368a47904d33a2386db0fb5d94091ecdc22e48bfa415e2abd9c4b3c99446b3b51bca9cce510961172697a273a0d SHA512 323f91e3e43847023f23087e1038ae240572b87c29ee26be1a05a6ee49824aa86cb706d1856b27e28841fbb14efaf897d1b8e0cb626529fe7cdeaa7fbda6ce27
DIST reedsolomon-1.7.0.gh.tar.gz 64279 BLAKE2B 304abdf3709dff52c4c515598c511b8e3080475c0755ab68eb9468652f12d2cdb2763bdf88f5fe5e69813928646a8b8378fee9cb2b24d54ce9a6f2b5fb985ac9 SHA512 c7d2ae8444c9e3d6646587f85fe0085a7579cc58d2f4bca3fb89632df4873e2664c81f06ee2e75e928248bb558a7fd8d101a043187ce05e70a079b031981c374
diff --git a/dev-python/reedsolomon/reedsolomon-1.6.0.ebuild b/dev-python/reedsolomon/reedsolomon-1.6.0.ebuild
deleted file mode 100644
index f47e9661b9e1..000000000000
--- a/dev-python/reedsolomon/reedsolomon-1.6.0.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 2021-2023 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="Python Reed Solomon encoder/decoder"
-HOMEPAGE="
- https://github.com/tomerfiliba/reedsolomon/
- https://pypi.org/project/reedsolo/
-"
-SRC_URI="
- https://github.com/tomerfiliba/reedsolomon/archive/v${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
- dev-python/cython[${PYTHON_USEDEP}]
-"
-
-python_test() {
- "${EPYTHON}" tests/test_creedsolo.py || die "creedsolo test failed with ${EPYTHON}"
- "${EPYTHON}" tests/test_reedsolo.py || die "reedsolo test failed with ${EPYTHON}"
-}
diff --git a/dev-python/reedsolomon/reedsolomon-1.6.1.ebuild b/dev-python/reedsolomon/reedsolomon-1.6.1.ebuild
deleted file mode 100644
index 9c603f62875f..000000000000
--- a/dev-python/reedsolomon/reedsolomon-1.6.1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 2021-2023 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="Python Reed Solomon encoder/decoder"
-HOMEPAGE="
- https://github.com/tomerfiliba/reedsolomon/
- https://pypi.org/project/reedsolo/
-"
-SRC_URI="
- https://github.com/tomerfiliba/reedsolomon/archive/v${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="|| ( Unlicense MIT-0 )"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
- dev-python/cython[${PYTHON_USEDEP}]
-"
-
-python_test() {
- "${EPYTHON}" tests/test_creedsolo.py || die "creedsolo test failed with ${EPYTHON}"
- "${EPYTHON}" tests/test_reedsolo.py || die "reedsolo test failed with ${EPYTHON}"
-}
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2023-04-10 6:07 Michał Górny
0 siblings, 0 replies; 35+ messages in thread
From: Michał Górny @ 2023-04-10 6:07 UTC (permalink / raw
To: gentoo-commits
commit: 66a78b379c8b44d0a932002878b85685141ed874
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 10 05:58:58 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Apr 10 06:06:57 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66a78b37
dev-python/reedsolomon: Add python@ as co-maint.
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/reedsolomon/metadata.xml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/dev-python/reedsolomon/metadata.xml b/dev-python/reedsolomon/metadata.xml
index 0a1f26beb6e6..e5b66b4a2002 100644
--- a/dev-python/reedsolomon/metadata.xml
+++ b/dev-python/reedsolomon/metadata.xml
@@ -9,6 +9,10 @@
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
+ <maintainer type="project">
+ <email>python@gentoo.org</email>
+ <name>Python</name>
+ </maintainer>
<upstream>
<remote-id type="github">tomerfiliba-org/reedsolomon</remote-id>
<remote-id type="pypi">reedsolo</remote-id>
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2023-04-10 6:07 Michał Górny
0 siblings, 0 replies; 35+ messages in thread
From: Michał Górny @ 2023-04-10 6:07 UTC (permalink / raw
To: gentoo-commits
commit: 76ee0c2fd8957aeb9d743bff7e278213f1ff26c3
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 10 05:57:34 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Apr 10 06:06:57 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76ee0c2f
dev-python/reedsolomon: Bump to 2.0.31_beta1
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/reedsolomon/Manifest | 1 +
dev-python/reedsolomon/metadata.xml | 5 ++-
.../reedsolomon/reedsolomon-2.0.31_beta1.ebuild | 37 ++++++++++++++++++++++
3 files changed, 42 insertions(+), 1 deletion(-)
diff --git a/dev-python/reedsolomon/Manifest b/dev-python/reedsolomon/Manifest
index 45e654225b64..e42d671cebfe 100644
--- a/dev-python/reedsolomon/Manifest
+++ b/dev-python/reedsolomon/Manifest
@@ -1 +1,2 @@
+DIST reedsolo-2.0.31b1.tar.gz 379032 BLAKE2B cc7d838f2d3a4c8257cf7865ba31dce3c94f47b64cb3d8c187d7ddc0166f82a01abd41d0671b7776c7b63b09673a14e2ff0401091e03fe72fcb1b1621373784a SHA512 f98cfb058a0c670f7de5b0803b5fc537b2da8f49e39c01e44de1cf659957380775a4c1e93fd0b91f2883e4883b16150c3cbd03fb4ee01314f2d8bdf24a622063
DIST reedsolomon-1.7.0.gh.tar.gz 64279 BLAKE2B 304abdf3709dff52c4c515598c511b8e3080475c0755ab68eb9468652f12d2cdb2763bdf88f5fe5e69813928646a8b8378fee9cb2b24d54ce9a6f2b5fb985ac9 SHA512 c7d2ae8444c9e3d6646587f85fe0085a7579cc58d2f4bca3fb89632df4873e2664c81f06ee2e75e928248bb558a7fd8d101a043187ce05e70a079b031981c374
diff --git a/dev-python/reedsolomon/metadata.xml b/dev-python/reedsolomon/metadata.xml
index f6dd8837456f..0a1f26beb6e6 100644
--- a/dev-python/reedsolomon/metadata.xml
+++ b/dev-python/reedsolomon/metadata.xml
@@ -10,7 +10,10 @@
<name>Proxy Maintainers</name>
</maintainer>
<upstream>
- <remote-id type="github">tomerfiliba/reedsolomon</remote-id>
+ <remote-id type="github">tomerfiliba-org/reedsolomon</remote-id>
<remote-id type="pypi">reedsolo</remote-id>
</upstream>
+ <use>
+ <flag name="native-extensions">Compile native C extensions.</flag>
+ </use>
</pkgmetadata>
diff --git a/dev-python/reedsolomon/reedsolomon-2.0.31_beta1.ebuild b/dev-python/reedsolomon/reedsolomon-2.0.31_beta1.ebuild
new file mode 100644
index 000000000000..266c7d19915b
--- /dev/null
+++ b/dev-python/reedsolomon/reedsolomon-2.0.31_beta1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 2021-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYPI_PN=reedsolo
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Python Reed Solomon encoder/decoder"
+HOMEPAGE="
+ https://github.com/tomerfiliba-org/reedsolomon/
+ https://pypi.org/project/reedsolo/
+"
+
+LICENSE="|| ( Unlicense MIT-0 )"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="+native-extensions"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+ sed -i -e '/pytest-cov/d' pyproject.toml || die
+ distutils-r1_src_prepare
+}
+
+src_configure() {
+ if use native-extensions; then
+ DISTUTILS_ARGS=(
+ # TODO: switch to --cythonize once we're on cython-3
+ --native-compile
+ )
+ fi
+}
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2023-04-12 4:49 Michał Górny
0 siblings, 0 replies; 35+ messages in thread
From: Michał Górny @ 2023-04-12 4:49 UTC (permalink / raw
To: gentoo-commits
commit: c1fab6cd24e74123de2613954b1b7a943588596e
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 12 04:19:05 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Apr 12 04:49:11 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1fab6cd
dev-python/reedsolomon: Bump to 2.1.0_beta1
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/reedsolomon/Manifest | 1 +
.../reedsolomon/reedsolomon-2.1.0_beta1.ebuild | 37 ++++++++++++++++++++++
2 files changed, 38 insertions(+)
diff --git a/dev-python/reedsolomon/Manifest b/dev-python/reedsolomon/Manifest
index e42d671cebfe..e753381a050a 100644
--- a/dev-python/reedsolomon/Manifest
+++ b/dev-python/reedsolomon/Manifest
@@ -1,2 +1,3 @@
DIST reedsolo-2.0.31b1.tar.gz 379032 BLAKE2B cc7d838f2d3a4c8257cf7865ba31dce3c94f47b64cb3d8c187d7ddc0166f82a01abd41d0671b7776c7b63b09673a14e2ff0401091e03fe72fcb1b1621373784a SHA512 f98cfb058a0c670f7de5b0803b5fc537b2da8f49e39c01e44de1cf659957380775a4c1e93fd0b91f2883e4883b16150c3cbd03fb4ee01314f2d8bdf24a622063
+DIST reedsolo-2.1.0b1.tar.gz 379041 BLAKE2B 860d5d67fb7653b92a8163b72143ff3a5b1a482359339a596acd5e7f99eda1a2d6d208548e6689dca63018f5893d536a0c7040956cfee6077d9016fe7ca1d485 SHA512 1ae25c53f315cedcaaa4530388557c3dba1902856fe1543a061a65dc3c5c4201c1d8a5959786c3bf15a0f9799f984c8ba84e630ad1e75efbe44260346a650251
DIST reedsolomon-1.7.0.gh.tar.gz 64279 BLAKE2B 304abdf3709dff52c4c515598c511b8e3080475c0755ab68eb9468652f12d2cdb2763bdf88f5fe5e69813928646a8b8378fee9cb2b24d54ce9a6f2b5fb985ac9 SHA512 c7d2ae8444c9e3d6646587f85fe0085a7579cc58d2f4bca3fb89632df4873e2664c81f06ee2e75e928248bb558a7fd8d101a043187ce05e70a079b031981c374
diff --git a/dev-python/reedsolomon/reedsolomon-2.1.0_beta1.ebuild b/dev-python/reedsolomon/reedsolomon-2.1.0_beta1.ebuild
new file mode 100644
index 000000000000..266c7d19915b
--- /dev/null
+++ b/dev-python/reedsolomon/reedsolomon-2.1.0_beta1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 2021-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYPI_PN=reedsolo
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Python Reed Solomon encoder/decoder"
+HOMEPAGE="
+ https://github.com/tomerfiliba-org/reedsolomon/
+ https://pypi.org/project/reedsolo/
+"
+
+LICENSE="|| ( Unlicense MIT-0 )"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="+native-extensions"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+ sed -i -e '/pytest-cov/d' pyproject.toml || die
+ distutils-r1_src_prepare
+}
+
+src_configure() {
+ if use native-extensions; then
+ DISTUTILS_ARGS=(
+ # TODO: switch to --cythonize once we're on cython-3
+ --native-compile
+ )
+ fi
+}
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2023-05-04 16:56 Michał Górny
0 siblings, 0 replies; 35+ messages in thread
From: Michał Górny @ 2023-05-04 16:56 UTC (permalink / raw
To: gentoo-commits
commit: b8f855aedfe9638aa4acd22794e67244a7782e4a
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu May 4 16:54:24 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu May 4 16:56:33 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8f855ae
dev-python/reedsolomon: Set DISTUTILS_EXT=1
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/reedsolomon/reedsolomon-2.1.0_beta1.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev-python/reedsolomon/reedsolomon-2.1.0_beta1.ebuild b/dev-python/reedsolomon/reedsolomon-2.1.0_beta1.ebuild
index 266c7d19915b..51c786a9ff0d 100644
--- a/dev-python/reedsolomon/reedsolomon-2.1.0_beta1.ebuild
+++ b/dev-python/reedsolomon/reedsolomon-2.1.0_beta1.ebuild
@@ -3,6 +3,7 @@
EAPI=8
+DISTUTILS_EXT=1
DISTUTILS_USE_PEP517=setuptools
PYPI_PN=reedsolo
PYTHON_COMPAT=( python3_{9..11} )
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2023-05-13 11:35 Arthur Zamarin
0 siblings, 0 replies; 35+ messages in thread
From: Arthur Zamarin @ 2023-05-13 11:35 UTC (permalink / raw
To: gentoo-commits
commit: 8b997b5e7122679dda6982b0cbe1ce952e827dd1
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat May 13 11:34:58 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat May 13 11:34:58 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b997b5e
dev-python/reedsolomon: Stabilize 2.0.31_beta1 amd64, #906279
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/reedsolomon/reedsolomon-2.0.31_beta1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/reedsolomon/reedsolomon-2.0.31_beta1.ebuild b/dev-python/reedsolomon/reedsolomon-2.0.31_beta1.ebuild
index 266c7d19915b..3a5c984d9cd4 100644
--- a/dev-python/reedsolomon/reedsolomon-2.0.31_beta1.ebuild
+++ b/dev-python/reedsolomon/reedsolomon-2.0.31_beta1.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
LICENSE="|| ( Unlicense MIT-0 )"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~x86"
IUSE="+native-extensions"
distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2023-05-13 12:21 Arthur Zamarin
0 siblings, 0 replies; 35+ messages in thread
From: Arthur Zamarin @ 2023-05-13 12:21 UTC (permalink / raw
To: gentoo-commits
commit: c5a018c4f1ff9ee24d0a1ed44f7a6b3f524fb2fa
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat May 13 12:21:33 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat May 13 12:21:33 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5a018c4
dev-python/reedsolomon: Stabilize 2.0.31_beta1 x86, #906279
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/reedsolomon/reedsolomon-2.0.31_beta1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/reedsolomon/reedsolomon-2.0.31_beta1.ebuild b/dev-python/reedsolomon/reedsolomon-2.0.31_beta1.ebuild
index 3a5c984d9cd4..85bf4ac27957 100644
--- a/dev-python/reedsolomon/reedsolomon-2.0.31_beta1.ebuild
+++ b/dev-python/reedsolomon/reedsolomon-2.0.31_beta1.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
LICENSE="|| ( Unlicense MIT-0 )"
SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
IUSE="+native-extensions"
distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2023-05-13 16:04 Michał Górny
0 siblings, 0 replies; 35+ messages in thread
From: Michał Górny @ 2023-05-13 16:04 UTC (permalink / raw
To: gentoo-commits
commit: 87f46670001e6898789075b5145063312dfc39e3
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat May 13 15:46:28 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 13 16:03:56 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87f46670
dev-python/reedsolomon: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/reedsolomon/Manifest | 1 -
dev-python/reedsolomon/reedsolomon-1.7.0.ebuild | 38 -------------------------
2 files changed, 39 deletions(-)
diff --git a/dev-python/reedsolomon/Manifest b/dev-python/reedsolomon/Manifest
index e753381a050a..9d19967e6d56 100644
--- a/dev-python/reedsolomon/Manifest
+++ b/dev-python/reedsolomon/Manifest
@@ -1,3 +1,2 @@
DIST reedsolo-2.0.31b1.tar.gz 379032 BLAKE2B cc7d838f2d3a4c8257cf7865ba31dce3c94f47b64cb3d8c187d7ddc0166f82a01abd41d0671b7776c7b63b09673a14e2ff0401091e03fe72fcb1b1621373784a SHA512 f98cfb058a0c670f7de5b0803b5fc537b2da8f49e39c01e44de1cf659957380775a4c1e93fd0b91f2883e4883b16150c3cbd03fb4ee01314f2d8bdf24a622063
DIST reedsolo-2.1.0b1.tar.gz 379041 BLAKE2B 860d5d67fb7653b92a8163b72143ff3a5b1a482359339a596acd5e7f99eda1a2d6d208548e6689dca63018f5893d536a0c7040956cfee6077d9016fe7ca1d485 SHA512 1ae25c53f315cedcaaa4530388557c3dba1902856fe1543a061a65dc3c5c4201c1d8a5959786c3bf15a0f9799f984c8ba84e630ad1e75efbe44260346a650251
-DIST reedsolomon-1.7.0.gh.tar.gz 64279 BLAKE2B 304abdf3709dff52c4c515598c511b8e3080475c0755ab68eb9468652f12d2cdb2763bdf88f5fe5e69813928646a8b8378fee9cb2b24d54ce9a6f2b5fb985ac9 SHA512 c7d2ae8444c9e3d6646587f85fe0085a7579cc58d2f4bca3fb89632df4873e2664c81f06ee2e75e928248bb558a7fd8d101a043187ce05e70a079b031981c374
diff --git a/dev-python/reedsolomon/reedsolomon-1.7.0.ebuild b/dev-python/reedsolomon/reedsolomon-1.7.0.ebuild
deleted file mode 100644
index 8ed3b28bcdd7..000000000000
--- a/dev-python/reedsolomon/reedsolomon-1.7.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 2021-2023 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="Python Reed Solomon encoder/decoder"
-HOMEPAGE="
- https://github.com/tomerfiliba/reedsolomon/
- https://pypi.org/project/reedsolo/
-"
-SRC_URI="
- https://github.com/tomerfiliba/reedsolomon/archive/v${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="|| ( Unlicense MIT-0 )"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
- dev-python/cython[${PYTHON_USEDEP}]
-"
-
-src_configure() {
- DISTUTILS_ARGS=( --cythonize )
-}
-
-python_test() {
- "${EPYTHON}" tests/test_creedsolo.py || die "creedsolo test failed with ${EPYTHON}"
- "${EPYTHON}" tests/test_reedsolo.py || die "reedsolo test failed with ${EPYTHON}"
-}
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2023-06-03 18:09 Arthur Zamarin
0 siblings, 0 replies; 35+ messages in thread
From: Arthur Zamarin @ 2023-06-03 18:09 UTC (permalink / raw
To: gentoo-commits
commit: c1e25f27d4c2344a8e1e13de4492e82d6a0b1eda
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 3 18:08:46 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jun 3 18:08:46 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1e25f27
dev-python/reedsolomon: Stabilize 2.1.0_beta1 x86, #907784
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/reedsolomon/reedsolomon-2.1.0_beta1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/reedsolomon/reedsolomon-2.1.0_beta1.ebuild b/dev-python/reedsolomon/reedsolomon-2.1.0_beta1.ebuild
index 51c786a9ff0d..1a7854bd4550 100644
--- a/dev-python/reedsolomon/reedsolomon-2.1.0_beta1.ebuild
+++ b/dev-python/reedsolomon/reedsolomon-2.1.0_beta1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="
LICENSE="|| ( Unlicense MIT-0 )"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 x86"
IUSE="+native-extensions"
distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2023-06-03 18:12 Arthur Zamarin
0 siblings, 0 replies; 35+ messages in thread
From: Arthur Zamarin @ 2023-06-03 18:12 UTC (permalink / raw
To: gentoo-commits
commit: 4fb5d32ebc353bd5439f08e80f1f398117b79df4
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 3 18:12:37 2023 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jun 3 18:12:37 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fb5d32e
dev-python/reedsolomon: Stabilize 2.1.0_beta1 amd64, #907784
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/reedsolomon/reedsolomon-2.1.0_beta1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/reedsolomon/reedsolomon-2.1.0_beta1.ebuild b/dev-python/reedsolomon/reedsolomon-2.1.0_beta1.ebuild
index 1a7854bd4550..ca1cc20301c6 100644
--- a/dev-python/reedsolomon/reedsolomon-2.1.0_beta1.ebuild
+++ b/dev-python/reedsolomon/reedsolomon-2.1.0_beta1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="
LICENSE="|| ( Unlicense MIT-0 )"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
IUSE="+native-extensions"
distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 35+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/
@ 2023-06-03 19:17 Michał Górny
0 siblings, 0 replies; 35+ messages in thread
From: Michał Górny @ 2023-06-03 19:17 UTC (permalink / raw
To: gentoo-commits
commit: ae8056fedc174137b86b630a286d5114e2b345ab
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 3 19:14:21 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jun 3 19:14:21 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae8056fe
dev-python/reedsolomon: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/reedsolomon/Manifest | 1 -
.../reedsolomon/reedsolomon-2.0.31_beta1.ebuild | 37 ----------------------
2 files changed, 38 deletions(-)
diff --git a/dev-python/reedsolomon/Manifest b/dev-python/reedsolomon/Manifest
index 9d19967e6d56..adea65a57305 100644
--- a/dev-python/reedsolomon/Manifest
+++ b/dev-python/reedsolomon/Manifest
@@ -1,2 +1 @@
-DIST reedsolo-2.0.31b1.tar.gz 379032 BLAKE2B cc7d838f2d3a4c8257cf7865ba31dce3c94f47b64cb3d8c187d7ddc0166f82a01abd41d0671b7776c7b63b09673a14e2ff0401091e03fe72fcb1b1621373784a SHA512 f98cfb058a0c670f7de5b0803b5fc537b2da8f49e39c01e44de1cf659957380775a4c1e93fd0b91f2883e4883b16150c3cbd03fb4ee01314f2d8bdf24a622063
DIST reedsolo-2.1.0b1.tar.gz 379041 BLAKE2B 860d5d67fb7653b92a8163b72143ff3a5b1a482359339a596acd5e7f99eda1a2d6d208548e6689dca63018f5893d536a0c7040956cfee6077d9016fe7ca1d485 SHA512 1ae25c53f315cedcaaa4530388557c3dba1902856fe1543a061a65dc3c5c4201c1d8a5959786c3bf15a0f9799f984c8ba84e630ad1e75efbe44260346a650251
diff --git a/dev-python/reedsolomon/reedsolomon-2.0.31_beta1.ebuild b/dev-python/reedsolomon/reedsolomon-2.0.31_beta1.ebuild
deleted file mode 100644
index 85bf4ac27957..000000000000
--- a/dev-python/reedsolomon/reedsolomon-2.0.31_beta1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 2021-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYPI_PN=reedsolo
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Python Reed Solomon encoder/decoder"
-HOMEPAGE="
- https://github.com/tomerfiliba-org/reedsolomon/
- https://pypi.org/project/reedsolo/
-"
-
-LICENSE="|| ( Unlicense MIT-0 )"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
-IUSE="+native-extensions"
-
-distutils_enable_tests pytest
-
-src_prepare() {
- sed -i -e '/pytest-cov/d' pyproject.toml || die
- distutils-r1_src_prepare
-}
-
-src_configure() {
- if use native-extensions; then
- DISTUTILS_ARGS=(
- # TODO: switch to --cythonize once we're on cython-3
- --native-compile
- )
- fi
-}
^ permalink raw reply related [flat|nested] 35+ messages in thread
end of thread, other threads:[~2023-06-03 19:17 UTC | newest]
Thread overview: 35+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-16 14:18 [gentoo-commits] repo/gentoo:master commit in: dev-python/reedsolomon/ Michał Górny
-- strict thread matches above, loose matches on Subject: below --
2023-06-03 19:17 Michał Górny
2023-06-03 18:12 Arthur Zamarin
2023-06-03 18:09 Arthur Zamarin
2023-05-13 16:04 Michał Górny
2023-05-13 12:21 Arthur Zamarin
2023-05-13 11:35 Arthur Zamarin
2023-05-04 16:56 Michał Górny
2023-04-12 4:49 Michał Górny
2023-04-10 6:07 Michał Górny
2023-04-10 6:07 Michał Górny
2023-02-16 10:01 Sam James
2023-02-16 10:01 Sam James
2023-01-18 7:34 Michał Górny
2023-01-12 6:14 Michał Górny
2023-01-11 21:40 Sam James
2023-01-11 21:24 Sam James
2023-01-07 14:43 Michał Górny
2023-01-07 4:54 Michał Górny
2022-12-09 5:05 Michał Górny
2022-06-29 13:05 Michał Górny
2022-06-29 6:00 Joonas Niilola
2022-06-29 0:11 Sam James
2022-05-29 18:38 Arthur Zamarin
2022-05-29 18:38 Arthur Zamarin
2022-04-06 21:09 Michał Górny
2022-04-06 20:57 Jakov Smolić
2022-04-06 6:32 Agostino Sarubbo
2022-03-04 13:53 Joonas Niilola
2021-02-04 14:42 Agostino Sarubbo
2021-02-04 14:09 Sam James
2020-12-12 4:32 Sam James
2020-12-12 4:27 Sam James
2020-12-07 16:41 Joonas Niilola
2020-11-28 9:15 Joonas Niilola
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox