* [gentoo-commits] repo/gentoo:master commit in: dev-python/dbfread/
@ 2021-06-21 7:14 Zac Medico
0 siblings, 0 replies; 9+ messages in thread
From: Zac Medico @ 2021-06-21 7:14 UTC (permalink / raw
To: gentoo-commits
commit: 2a01bc82f43e079c49fb4637583e7503544d2197
Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 21 07:05:49 2021 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Mon Jun 21 07:05:49 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a01bc82
dev-python/dbfread: Initial import
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
dev-python/dbfread/Manifest | 1 +
dev-python/dbfread/dbfread-2.0.7.ebuild | 17 +++++++++++++++++
dev-python/dbfread/metadata.xml | 13 +++++++++++++
3 files changed, 31 insertions(+)
diff --git a/dev-python/dbfread/Manifest b/dev-python/dbfread/Manifest
new file mode 100644
index 00000000000..f6f5ebe70b1
--- /dev/null
+++ b/dev-python/dbfread/Manifest
@@ -0,0 +1 @@
+DIST dbfread-2.0.7.tar.gz 33212 BLAKE2B 03c9a0d93b13c7573b5bcec6c5af1ac43bd00ead2b3e83638f45344b2344062e86d764b095e699afdaea2405176ee15122c975a2f72b25bd167f5faaaf33043b SHA512 86c3a29e351b985984be67401a6dfe3e39cd92451a122788ade83d65313dde37a3706ce36c4365bd36ba1df62ee057b625f1e0f077aa4a248c7456258189f548
diff --git a/dev-python/dbfread/dbfread-2.0.7.ebuild b/dev-python/dbfread/dbfread-2.0.7.ebuild
new file mode 100644
index 00000000000..f9a2f585866
--- /dev/null
+++ b/dev-python/dbfread/dbfread-2.0.7.ebuild
@@ -0,0 +1,17 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{8..10} )
+DISTUTILS_USE_SETUPTOOLS=bdepend
+
+inherit distutils-r1
+
+DESCRIPTION="Read DBF Files with Python"
+HOMEPAGE="https://github.com/olemb/dbfread https://pypi.org/project/dbfread/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+RDEPEND=""
diff --git a/dev-python/dbfread/metadata.xml b/dev-python/dbfread/metadata.xml
new file mode 100644
index 00000000000..756d2b8b2cf
--- /dev/null
+++ b/dev-python/dbfread/metadata.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>zmedico@gentoo.org</email>
+ </maintainer>
+ <upstream>
+ <bugs-to>https://github.com/olemb/dbfread/issues</bugs-to>
+ <changelog>https://github.com/olemb/dbfread/commits/master</changelog>
+ <remote-id type="pypi">dbfread</remote-id>
+ <remote-id type="github">olemb/dbfread</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/dbfread/
@ 2021-06-22 3:21 Zac Medico
0 siblings, 0 replies; 9+ messages in thread
From: Zac Medico @ 2021-06-22 3:21 UTC (permalink / raw
To: gentoo-commits
commit: 63890c82da54646f07ea58c92e86d51961e9f445
Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 22 03:16:31 2021 +0000
Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
CommitDate: Tue Jun 22 03:18:14 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63890c82
dev-python/dbfread: Enable unit tests (bug 797310)
dbfread/test_field_parser.py::test_0 PASSED [ 6%]
dbfread/test_field_parser.py::test_C PASSED [ 12%]
dbfread/test_field_parser.py::test_D PASSED [ 18%]
dbfread/test_field_parser.py::test_F PASSED [ 25%]
dbfread/test_field_parser.py::test_I PASSED [ 31%]
dbfread/test_field_parser.py::test_L PASSED [ 37%]
dbfread/test_field_parser.py::test_M PASSED [ 43%]
dbfread/test_field_parser.py::test_B PASSED [ 50%]
dbfread/test_field_parser.py::test_N PASSED [ 56%]
dbfread/test_field_parser.py::test_O PASSED [ 62%]
dbfread/test_field_parser.py::test_T PASSED [ 68%]
dbfread/test_field_parser.py::test_Y PASSED [ 75%]
dbfread/test_field_parser.py::test_hex_field PASSED [ 81%]
dbfread/test_invalid_value.py::test_repr PASSED [ 87%]
dbfread/test_invalid_value.py::test_type PASSED [ 93%]
dbfread/test_memo.py::test_missing_memofile PASSED [100%]
Reported-py: Michał Górny <mgorny <AT> gentoo.org>
Closes: https://bugs.gentoo.org/797310
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
dev-python/dbfread/Manifest | 1 +
dev-python/dbfread/dbfread-2.0.7.ebuild | 25 ++++++++++++++++++++++++-
2 files changed, 25 insertions(+), 1 deletion(-)
diff --git a/dev-python/dbfread/Manifest b/dev-python/dbfread/Manifest
index f6f5ebe70b1..0d551756ca3 100644
--- a/dev-python/dbfread/Manifest
+++ b/dev-python/dbfread/Manifest
@@ -1 +1,2 @@
+DIST dbfread-2.0.7-src.tar.gz 33045 BLAKE2B 96798f00aba4c30e7e83b468f368ca6730a7e095c9fec5bf5515ac6a152022adbf5339cd9e68e85f4eccac211ed4e307b9abf22249ef6420d722fa213210d7d7 SHA512 cf591fa5800e5471025175a4bbbb54cb26dc2a83bf328776e4386860370d9421edd9edd62cb9e3d463794d526c561a0f4744bb67b5e376edd471dc95100bc2c7
DIST dbfread-2.0.7.tar.gz 33212 BLAKE2B 03c9a0d93b13c7573b5bcec6c5af1ac43bd00ead2b3e83638f45344b2344062e86d764b095e699afdaea2405176ee15122c975a2f72b25bd167f5faaaf33043b SHA512 86c3a29e351b985984be67401a6dfe3e39cd92451a122788ade83d65313dde37a3706ce36c4365bd36ba1df62ee057b625f1e0f077aa4a248c7456258189f548
diff --git a/dev-python/dbfread/dbfread-2.0.7.ebuild b/dev-python/dbfread/dbfread-2.0.7.ebuild
index f9a2f585866..a2df9605710 100644
--- a/dev-python/dbfread/dbfread-2.0.7.ebuild
+++ b/dev-python/dbfread/dbfread-2.0.7.ebuild
@@ -9,9 +9,32 @@ inherit distutils-r1
DESCRIPTION="Read DBF Files with Python"
HOMEPAGE="https://github.com/olemb/dbfread https://pypi.org/project/dbfread/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
+ test? ( https://github.com/olemb/dbfread/archive/refs/tags/${PV}.tar.gz -> ${P}-src.tar.gz )"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND=""
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+ sed -e 's|\[pytest\]|[tool:pytest]|' -i setup.cfg || die
+ distutils-r1_python_prepare_all
+}
+
+python_test() {
+ local pytest_args test_name xfails
+
+ xfails=(
+ dbfread/test_read_and_length.py::test_len
+ dbfread/test_read_and_length.py::test_list
+ )
+
+ for test_name in "${xfails[@]}"; do
+ pytest_args+=(--deselect "${test_name}")
+ done
+
+ epytest "${pytest_args[@]}" || die
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/dbfread/
@ 2021-08-08 20:32 Louis Sautier
0 siblings, 0 replies; 9+ messages in thread
From: Louis Sautier @ 2021-08-08 20:32 UTC (permalink / raw
To: gentoo-commits
commit: 949744485dd1dc8bf31eef2fb76a10dec1f3d665
Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 8 20:30:42 2021 +0000
Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
CommitDate: Sun Aug 8 20:31:04 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94974448
dev-python/dbfread: remove superfluous die after epytest
Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
dev-python/dbfread/dbfread-2.0.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/dbfread/dbfread-2.0.7.ebuild b/dev-python/dbfread/dbfread-2.0.7.ebuild
index a2df9605710..4a571406dac 100644
--- a/dev-python/dbfread/dbfread-2.0.7.ebuild
+++ b/dev-python/dbfread/dbfread-2.0.7.ebuild
@@ -36,5 +36,5 @@ python_test() {
pytest_args+=(--deselect "${test_name}")
done
- epytest "${pytest_args[@]}" || die
+ epytest "${pytest_args[@]}"
}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/dbfread/
@ 2022-06-17 8:10 Arthur Zamarin
0 siblings, 0 replies; 9+ messages in thread
From: Arthur Zamarin @ 2022-06-17 8:10 UTC (permalink / raw
To: gentoo-commits
commit: cedd9e9694db8b62fee1a579b8f45e9f10c20e9b
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 17 06:46:08 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jun 17 08:10:16 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cedd9e96
dev-python/dbfread: EAPI=8, PEP517, cleanup
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/dbfread/dbfread-2.0.7-r1.ebuild | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/dev-python/dbfread/dbfread-2.0.7-r1.ebuild b/dev-python/dbfread/dbfread-2.0.7-r1.ebuild
new file mode 100644
index 000000000000..116e2142b96c
--- /dev/null
+++ b/dev-python/dbfread/dbfread-2.0.7-r1.ebuild
@@ -0,0 +1,30 @@
+# 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="Read DBF Files with Python"
+HOMEPAGE="https://github.com/olemb/dbfread https://pypi.org/project/dbfread/"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
+ test? ( https://github.com/olemb/dbfread/archive/refs/tags/${PV}.tar.gz -> ${P}-src.tar.gz )"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+ dbfread/test_read_and_length.py::test_len
+ dbfread/test_read_and_length.py::test_list
+)
+
+python_prepare_all() {
+ sed -e 's|\[pytest\]|[tool:pytest]|' -i setup.cfg || die
+ distutils-r1_python_prepare_all
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/dbfread/
@ 2022-06-17 8:10 Arthur Zamarin
0 siblings, 0 replies; 9+ messages in thread
From: Arthur Zamarin @ 2022-06-17 8:10 UTC (permalink / raw
To: gentoo-commits
commit: 65ec3a97725e54dcb6118a226086d9370c4dea89
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 17 06:47:20 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jun 17 08:10:16 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65ec3a97
dev-python/dbfread: enable py3.11
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-python/dbfread/dbfread-2.0.7-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/dbfread/dbfread-2.0.7-r1.ebuild b/dev-python/dbfread/dbfread-2.0.7-r1.ebuild
index 116e2142b96c..5d327e0b6ace 100644
--- a/dev-python/dbfread/dbfread-2.0.7-r1.ebuild
+++ b/dev-python/dbfread/dbfread-2.0.7-r1.ebuild
@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/dbfread/
@ 2022-11-14 4:36 Michał Górny
0 siblings, 0 replies; 9+ messages in thread
From: Michał Górny @ 2022-11-14 4:36 UTC (permalink / raw
To: gentoo-commits
commit: a7e219af729ce3ac1b2051b5eaaf5f3a81108f6e
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 14 04:34:48 2022 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Nov 14 04:34:48 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7e219af
dev-python/dbfread: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/dbfread/dbfread-2.0.7.ebuild | 40 ---------------------------------
1 file changed, 40 deletions(-)
diff --git a/dev-python/dbfread/dbfread-2.0.7.ebuild b/dev-python/dbfread/dbfread-2.0.7.ebuild
deleted file mode 100644
index 4a571406dac8..000000000000
--- a/dev-python/dbfread/dbfread-2.0.7.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{8..10} )
-DISTUTILS_USE_SETUPTOOLS=bdepend
-
-inherit distutils-r1
-
-DESCRIPTION="Read DBF Files with Python"
-HOMEPAGE="https://github.com/olemb/dbfread https://pypi.org/project/dbfread/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
- test? ( https://github.com/olemb/dbfread/archive/refs/tags/${PV}.tar.gz -> ${P}-src.tar.gz )"
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-RDEPEND=""
-
-distutils_enable_tests pytest
-
-python_prepare_all() {
- sed -e 's|\[pytest\]|[tool:pytest]|' -i setup.cfg || die
- distutils-r1_python_prepare_all
-}
-
-python_test() {
- local pytest_args test_name xfails
-
- xfails=(
- dbfread/test_read_and_length.py::test_len
- dbfread/test_read_and_length.py::test_list
- )
-
- for test_name in "${xfails[@]}"; do
- pytest_args+=(--deselect "${test_name}")
- done
-
- epytest "${pytest_args[@]}"
-}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/dbfread/
@ 2023-03-17 5:32 Michał Górny
0 siblings, 0 replies; 9+ messages in thread
From: Michał Górny @ 2023-03-17 5:32 UTC (permalink / raw
To: gentoo-commits
commit: 92dc29073bcddb80388c9bc4f98e430f12fc2b6c
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 16 18:57:34 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Mar 17 05:31:50 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92dc2907
dev-python/dbfread: Use pypi.eclass
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/dbfread/dbfread-2.0.7-r1.ebuild | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/dev-python/dbfread/dbfread-2.0.7-r1.ebuild b/dev-python/dbfread/dbfread-2.0.7-r1.ebuild
index 0239c3505ed4..0bd2f60bfd50 100644
--- a/dev-python/dbfread/dbfread-2.0.7-r1.ebuild
+++ b/dev-python/dbfread/dbfread-2.0.7-r1.ebuild
@@ -6,12 +6,16 @@ EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{9..11} )
-inherit distutils-r1
+inherit distutils-r1 pypi
DESCRIPTION="Read DBF Files with Python"
HOMEPAGE="https://github.com/olemb/dbfread https://pypi.org/project/dbfread/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
- test? ( https://github.com/olemb/dbfread/archive/refs/tags/${PV}.tar.gz -> ${P}-src.tar.gz )"
+SRC_URI+="
+ test? (
+ https://github.com/olemb/dbfread/archive/refs/tags/${PV}.tar.gz
+ -> ${P}-src.tar.gz
+ )
+"
LICENSE="MIT"
SLOT="0"
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/dbfread/
@ 2023-05-31 16:05 Michał Górny
0 siblings, 0 replies; 9+ messages in thread
From: Michał Górny @ 2023-05-31 16:05 UTC (permalink / raw
To: gentoo-commits
commit: ee54de98503250fda6672de376b399d6b8a9a523
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed May 31 15:37:19 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed May 31 16:05:39 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee54de98
dev-python/dbfread: Enable py3.12
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/dbfread/Manifest | 2 +-
dev-python/dbfread/dbfread-2.0.7-r1.ebuild | 11 +++++++----
2 files changed, 8 insertions(+), 5 deletions(-)
diff --git a/dev-python/dbfread/Manifest b/dev-python/dbfread/Manifest
index 0d551756ca38..e7f589d475b5 100644
--- a/dev-python/dbfread/Manifest
+++ b/dev-python/dbfread/Manifest
@@ -1,2 +1,2 @@
-DIST dbfread-2.0.7-src.tar.gz 33045 BLAKE2B 96798f00aba4c30e7e83b468f368ca6730a7e095c9fec5bf5515ac6a152022adbf5339cd9e68e85f4eccac211ed4e307b9abf22249ef6420d722fa213210d7d7 SHA512 cf591fa5800e5471025175a4bbbb54cb26dc2a83bf328776e4386860370d9421edd9edd62cb9e3d463794d526c561a0f4744bb67b5e376edd471dc95100bc2c7
+DIST dbfread-2.0.7.gh.tar.gz 33045 BLAKE2B 96798f00aba4c30e7e83b468f368ca6730a7e095c9fec5bf5515ac6a152022adbf5339cd9e68e85f4eccac211ed4e307b9abf22249ef6420d722fa213210d7d7 SHA512 cf591fa5800e5471025175a4bbbb54cb26dc2a83bf328776e4386860370d9421edd9edd62cb9e3d463794d526c561a0f4744bb67b5e376edd471dc95100bc2c7
DIST dbfread-2.0.7.tar.gz 33212 BLAKE2B 03c9a0d93b13c7573b5bcec6c5af1ac43bd00ead2b3e83638f45344b2344062e86d764b095e699afdaea2405176ee15122c975a2f72b25bd167f5faaaf33043b SHA512 86c3a29e351b985984be67401a6dfe3e39cd92451a122788ade83d65313dde37a3706ce36c4365bd36ba1df62ee057b625f1e0f077aa4a248c7456258189f548
diff --git a/dev-python/dbfread/dbfread-2.0.7-r1.ebuild b/dev-python/dbfread/dbfread-2.0.7-r1.ebuild
index 0bd2f60bfd50..e4b8f12535c3 100644
--- a/dev-python/dbfread/dbfread-2.0.7-r1.ebuild
+++ b/dev-python/dbfread/dbfread-2.0.7-r1.ebuild
@@ -4,16 +4,19 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
inherit distutils-r1 pypi
DESCRIPTION="Read DBF Files with Python"
-HOMEPAGE="https://github.com/olemb/dbfread https://pypi.org/project/dbfread/"
+HOMEPAGE="
+ https://github.com/olemb/dbfread/
+ https://pypi.org/project/dbfread/
+"
SRC_URI+="
test? (
- https://github.com/olemb/dbfread/archive/refs/tags/${PV}.tar.gz
- -> ${P}-src.tar.gz
+ https://github.com/olemb/dbfread/archive/${PV}.tar.gz
+ -> ${P}.gh.tar.gz
)
"
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/dbfread/
@ 2024-05-17 14:31 Michał Górny
0 siblings, 0 replies; 9+ messages in thread
From: Michał Górny @ 2024-05-17 14:31 UTC (permalink / raw
To: gentoo-commits
commit: 58666ca85a413a1074bc3f10286228e8aa259758
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri May 17 14:29:29 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri May 17 14:31:47 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58666ca8
dev-python/dbfread: Enable py3.13
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/dbfread/dbfread-2.0.7-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/dbfread/dbfread-2.0.7-r1.ebuild b/dev-python/dbfread/dbfread-2.0.7-r1.ebuild
index 71d9e4719c1a..636e463c2a0e 100644
--- a/dev-python/dbfread/dbfread-2.0.7-r1.ebuild
+++ b/dev-python/dbfread/dbfread-2.0.7-r1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 2021-2023 Gentoo Authors
+# Copyright 2021-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
inherit distutils-r1 pypi
^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-05-17 14:31 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-17 14:31 [gentoo-commits] repo/gentoo:master commit in: dev-python/dbfread/ Michał Górny
-- strict thread matches above, loose matches on Subject: below --
2023-05-31 16:05 Michał Górny
2023-03-17 5:32 Michał Górny
2022-11-14 4:36 Michał Górny
2022-06-17 8:10 Arthur Zamarin
2022-06-17 8:10 Arthur Zamarin
2021-08-08 20:32 Louis Sautier
2021-06-22 3:21 Zac Medico
2021-06-21 7:14 Zac Medico
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox