public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/sqlitedict/
@ 2021-09-12 21:35 James Le Cuirot
  0 siblings, 0 replies; 12+ messages in thread
From: James Le Cuirot @ 2021-09-12 21:35 UTC (permalink / raw
  To: gentoo-commits

commit:     1392f594fc02ce19511238af9a1d8a052f4fd548
Author:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 12 21:35:28 2021 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sun Sep 12 21:35:28 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1392f594

dev-python/sqlitedict: New package

Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>

 dev-python/sqlitedict/Manifest                |  1 +
 dev-python/sqlitedict/metadata.xml            | 12 +++++++++++
 dev-python/sqlitedict/sqlitedict-1.7.0.ebuild | 31 +++++++++++++++++++++++++++
 3 files changed, 44 insertions(+)

diff --git a/dev-python/sqlitedict/Manifest b/dev-python/sqlitedict/Manifest
new file mode 100644
index 00000000000..2185fa213e4
--- /dev/null
+++ b/dev-python/sqlitedict/Manifest
@@ -0,0 +1 @@
+DIST sqlitedict-1.7.0.tar.gz 28234 BLAKE2B f67187ee27acbe5525b5f0efb8fd85b68e820439e273af8f9ac4e2f223a2c267f252cb0d60366bd51ba9b55cf36d892e02bdfe727a366bfd266005d98d477c9f SHA512 1ef5e0caf81f7ac17eac0d8573c3404ea043c0c5700fe6b4b9f28ac86ad8d97416bad561318898967cf1af0d7e616684ee3044018e24dab3686d43554c74fef1

diff --git a/dev-python/sqlitedict/metadata.xml b/dev-python/sqlitedict/metadata.xml
new file mode 100644
index 00000000000..e0f2a7f3644
--- /dev/null
+++ b/dev-python/sqlitedict/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>chewi@gentoo.org</email>
+		<name>James Le Cuirot</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">piskvorky/sqlitedict</remote-id>
+		<remote-id type="pypi">sqlitedict</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/dev-python/sqlitedict/sqlitedict-1.7.0.ebuild b/dev-python/sqlitedict/sqlitedict-1.7.0.ebuild
new file mode 100644
index 00000000000..b664c9623ef
--- /dev/null
+++ b/dev-python/sqlitedict/sqlitedict-1.7.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Persistent dict in Python, backed by SQLite and pickle"
+HOMEPAGE="https://github.com/piskvorky/sqlitedict"
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+	test? ( dev-python/pytest[${PYTHON_USEDEP}] )
+"
+
+DOCS=(
+	README.rst
+)
+
+python_test() {
+	rm -f tests/db/* || die
+	py.test -v || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/sqlitedict/
@ 2021-09-14 21:47 James Le Cuirot
  0 siblings, 0 replies; 12+ messages in thread
From: James Le Cuirot @ 2021-09-14 21:47 UTC (permalink / raw
  To: gentoo-commits

commit:     da9195a8839391855da5dc329a98aa5a4fac9e00
Author:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 14 21:47:18 2021 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Tue Sep 14 21:47:18 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da9195a8

dev-python/sqlitedict: Add missing dependency on python[sqlite]

Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>

 dev-python/sqlitedict/sqlitedict-1.7.0.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/sqlitedict/sqlitedict-1.7.0.ebuild b/dev-python/sqlitedict/sqlitedict-1.7.0.ebuild
index b664c9623ef..c73539a86fb 100644
--- a/dev-python/sqlitedict/sqlitedict-1.7.0.ebuild
+++ b/dev-python/sqlitedict/sqlitedict-1.7.0.ebuild
@@ -4,6 +4,7 @@
 EAPI=8
 
 PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_REQ_USE="sqlite"
 
 inherit distutils-r1
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/sqlitedict/
@ 2021-10-26 21:55 James Le Cuirot
  0 siblings, 0 replies; 12+ messages in thread
From: James Le Cuirot @ 2021-10-26 21:55 UTC (permalink / raw
  To: gentoo-commits

commit:     f1ad199252edfd7de9c89df3c334b6913fe01c53
Author:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 26 21:52:58 2021 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Tue Oct 26 21:52:58 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1ad1992

dev-python/sqlitedict: Keyword 1.7.0 for ~arm

The tests pass.

Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>

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

diff --git a/dev-python/sqlitedict/sqlitedict-1.7.0.ebuild b/dev-python/sqlitedict/sqlitedict-1.7.0.ebuild
index c73539a86fb..599cb922409 100644
--- a/dev-python/sqlitedict/sqlitedict-1.7.0.ebuild
+++ b/dev-python/sqlitedict/sqlitedict-1.7.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm"
 IUSE="test"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/sqlitedict/
@ 2022-03-09 20:06 Arthur Zamarin
  0 siblings, 0 replies; 12+ messages in thread
From: Arthur Zamarin @ 2022-03-09 20:06 UTC (permalink / raw
  To: gentoo-commits

commit:     7539bb3dce88b35adb7047a2e2b2b291205bd12a
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Mar  9 19:48:48 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Mar  9 20:06:06 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7539bb3d

dev-python/sqlitedict: add 2.0.0

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

 dev-python/sqlitedict/Manifest                |  1 +
 dev-python/sqlitedict/sqlitedict-2.0.0.ebuild | 27 +++++++++++++++++++++++++++
 2 files changed, 28 insertions(+)

diff --git a/dev-python/sqlitedict/Manifest b/dev-python/sqlitedict/Manifest
index 2185fa213e44..dcc5d2fe7475 100644
--- a/dev-python/sqlitedict/Manifest
+++ b/dev-python/sqlitedict/Manifest
@@ -1 +1,2 @@
 DIST sqlitedict-1.7.0.tar.gz 28234 BLAKE2B f67187ee27acbe5525b5f0efb8fd85b68e820439e273af8f9ac4e2f223a2c267f252cb0d60366bd51ba9b55cf36d892e02bdfe727a366bfd266005d98d477c9f SHA512 1ef5e0caf81f7ac17eac0d8573c3404ea043c0c5700fe6b4b9f28ac86ad8d97416bad561318898967cf1af0d7e616684ee3044018e24dab3686d43554c74fef1
+DIST sqlitedict-2.0.0.tar.gz 46266 BLAKE2B c320c5b61e535ff668462fc079cd501e8aae4fb334230ed0b9c5eae0c53f569c8971a8484cddf85575b1e2d28b051d2f0fa8376a1176e3116a1a0516e36202aa SHA512 3ba84676680e5e9408804618e4ae871d09fcfdc999f06c1143f42329059e6033abb2d897ed485d9d84dc2761032fa07f00f08b259f1d9e6426c4ee0068446ed8

diff --git a/dev-python/sqlitedict/sqlitedict-2.0.0.ebuild b/dev-python/sqlitedict/sqlitedict-2.0.0.ebuild
new file mode 100644
index 000000000000..1d9e040051c0
--- /dev/null
+++ b/dev-python/sqlitedict/sqlitedict-2.0.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-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} )
+PYTHON_REQ_USE="sqlite"
+
+inherit distutils-r1
+
+DESCRIPTION="Persistent dict in Python, backed by SQLite and pickle"
+HOMEPAGE="https://github.com/piskvorky/sqlitedict"
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm"
+
+DOCS=( README.rst )
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+	tests/test_core.py::TablenamesTest::test_tablenames
+	tests/test_onimport.py::SqliteDictPython24Test::test_py24_error
+)


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/sqlitedict/
@ 2022-05-16 13:30 Michał Górny
  0 siblings, 0 replies; 12+ messages in thread
From: Michał Górny @ 2022-05-16 13:30 UTC (permalink / raw
  To: gentoo-commits

commit:     df4e348ef7d73f46d5ff60d7d6244defffaad099
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon May 16 13:28:04 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon May 16 13:28:04 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df4e348e

dev-python/sqlitedict: Remove old

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

 dev-python/sqlitedict/Manifest                |  1 -
 dev-python/sqlitedict/sqlitedict-1.7.0.ebuild | 32 ---------------------------
 2 files changed, 33 deletions(-)

diff --git a/dev-python/sqlitedict/Manifest b/dev-python/sqlitedict/Manifest
index dcc5d2fe7475..77daa8afcae4 100644
--- a/dev-python/sqlitedict/Manifest
+++ b/dev-python/sqlitedict/Manifest
@@ -1,2 +1 @@
-DIST sqlitedict-1.7.0.tar.gz 28234 BLAKE2B f67187ee27acbe5525b5f0efb8fd85b68e820439e273af8f9ac4e2f223a2c267f252cb0d60366bd51ba9b55cf36d892e02bdfe727a366bfd266005d98d477c9f SHA512 1ef5e0caf81f7ac17eac0d8573c3404ea043c0c5700fe6b4b9f28ac86ad8d97416bad561318898967cf1af0d7e616684ee3044018e24dab3686d43554c74fef1
 DIST sqlitedict-2.0.0.tar.gz 46266 BLAKE2B c320c5b61e535ff668462fc079cd501e8aae4fb334230ed0b9c5eae0c53f569c8971a8484cddf85575b1e2d28b051d2f0fa8376a1176e3116a1a0516e36202aa SHA512 3ba84676680e5e9408804618e4ae871d09fcfdc999f06c1143f42329059e6033abb2d897ed485d9d84dc2761032fa07f00f08b259f1d9e6426c4ee0068446ed8

diff --git a/dev-python/sqlitedict/sqlitedict-1.7.0.ebuild b/dev-python/sqlitedict/sqlitedict-1.7.0.ebuild
deleted file mode 100644
index 599cb922409c..000000000000
--- a/dev-python/sqlitedict/sqlitedict-1.7.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-PYTHON_REQ_USE="sqlite"
-
-inherit distutils-r1
-
-DESCRIPTION="Persistent dict in Python, backed by SQLite and pickle"
-HOMEPAGE="https://github.com/piskvorky/sqlitedict"
-SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
-	test? ( dev-python/pytest[${PYTHON_USEDEP}] )
-"
-
-DOCS=(
-	README.rst
-)
-
-python_test() {
-	rm -f tests/db/* || die
-	py.test -v || die
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/sqlitedict/
@ 2022-05-16 13:30 Michał Górny
  0 siblings, 0 replies; 12+ messages in thread
From: Michał Górny @ 2022-05-16 13:30 UTC (permalink / raw
  To: gentoo-commits

commit:     9569b11fee49609985703d55fa22aa679b63c278
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon May 16 13:29:17 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon May 16 13:29:17 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9569b11f

dev-python/sqlitedict: Update HOMEPAGE

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

 dev-python/sqlitedict/metadata.xml            | 2 +-
 dev-python/sqlitedict/sqlitedict-2.0.0.ebuild | 5 ++++-
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/dev-python/sqlitedict/metadata.xml b/dev-python/sqlitedict/metadata.xml
index e0f2a7f3644b..0405d36bf449 100644
--- a/dev-python/sqlitedict/metadata.xml
+++ b/dev-python/sqlitedict/metadata.xml
@@ -6,7 +6,7 @@
 		<name>James Le Cuirot</name>
 	</maintainer>
 	<upstream>
-		<remote-id type="github">piskvorky/sqlitedict</remote-id>
+		<remote-id type="github">RaRe-Technologies/sqlitedict</remote-id>
 		<remote-id type="pypi">sqlitedict</remote-id>
 	</upstream>
 </pkgmetadata>

diff --git a/dev-python/sqlitedict/sqlitedict-2.0.0.ebuild b/dev-python/sqlitedict/sqlitedict-2.0.0.ebuild
index 1d9e040051c0..ec3a8162d777 100644
--- a/dev-python/sqlitedict/sqlitedict-2.0.0.ebuild
+++ b/dev-python/sqlitedict/sqlitedict-2.0.0.ebuild
@@ -10,7 +10,10 @@ PYTHON_REQ_USE="sqlite"
 inherit distutils-r1
 
 DESCRIPTION="Persistent dict in Python, backed by SQLite and pickle"
-HOMEPAGE="https://github.com/piskvorky/sqlitedict"
+HOMEPAGE="
+	https://github.com/RaRe-Technologies/sqlitedict/
+	https://pypi.org/project/sqlitedict/
+"
 SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/sqlitedict/
@ 2022-10-29 14:32 Arthur Zamarin
  0 siblings, 0 replies; 12+ messages in thread
From: Arthur Zamarin @ 2022-10-29 14:32 UTC (permalink / raw
  To: gentoo-commits

commit:     79b967c5360e0a27ef4845e78c7b011ec30eb8dc
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 29 13:49:41 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Oct 29 14:32:16 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79b967c5

dev-python/sqlitedict: enable py3.11

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

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

diff --git a/dev-python/sqlitedict/sqlitedict-2.0.0.ebuild b/dev-python/sqlitedict/sqlitedict-2.0.0.ebuild
index ec3a8162d777..999fe6cac792 100644
--- a/dev-python/sqlitedict/sqlitedict-2.0.0.ebuild
+++ b/dev-python/sqlitedict/sqlitedict-2.0.0.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_COMPAT=( python3_{8..11} )
 PYTHON_REQ_USE="sqlite"
 
 inherit distutils-r1


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/sqlitedict/
@ 2022-12-10 15:32 James Le Cuirot
  0 siblings, 0 replies; 12+ messages in thread
From: James Le Cuirot @ 2022-12-10 15:32 UTC (permalink / raw
  To: gentoo-commits

commit:     899d8a948691d3b00a87bf5aeb491fb22228a5d3
Author:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 10 15:21:32 2022 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sat Dec 10 15:30:42 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=899d8a94

dev-python/sqlitedict: Bump to 2.1.0, drop old 2.0.0

Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>

 dev-python/sqlitedict/Manifest                                    | 2 +-
 .../{sqlitedict-2.0.0.ebuild => sqlitedict-2.1.0.ebuild}          | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-python/sqlitedict/Manifest b/dev-python/sqlitedict/Manifest
index 77daa8afcae4..10d3c6871266 100644
--- a/dev-python/sqlitedict/Manifest
+++ b/dev-python/sqlitedict/Manifest
@@ -1 +1 @@
-DIST sqlitedict-2.0.0.tar.gz 46266 BLAKE2B c320c5b61e535ff668462fc079cd501e8aae4fb334230ed0b9c5eae0c53f569c8971a8484cddf85575b1e2d28b051d2f0fa8376a1176e3116a1a0516e36202aa SHA512 3ba84676680e5e9408804618e4ae871d09fcfdc999f06c1143f42329059e6033abb2d897ed485d9d84dc2761032fa07f00f08b259f1d9e6426c4ee0068446ed8
+DIST sqlitedict-2.1.0.tar.gz 21846 BLAKE2B 727d37cefcd1f847b29297f15dc97d70e516d44953dec69e4453bb7649b08edcb6b090d3915826b2b607864dbe28faa489d72fc930d2b1497077e6330d76f99f SHA512 b981dfd70b0d8d0a51e71c14db484fec523adf6cd3af70fcf5c24ae743dc97694113f977cd10c89746e5220aa9334f4ebe89bcf47aebaecd03bd8a4695b03fc9

diff --git a/dev-python/sqlitedict/sqlitedict-2.0.0.ebuild b/dev-python/sqlitedict/sqlitedict-2.1.0.ebuild
similarity index 79%
rename from dev-python/sqlitedict/sqlitedict-2.0.0.ebuild
rename to dev-python/sqlitedict/sqlitedict-2.1.0.ebuild
index 999fe6cac792..c68b6e9a15f4 100644
--- a/dev-python/sqlitedict/sqlitedict-2.0.0.ebuild
+++ b/dev-python/sqlitedict/sqlitedict-2.1.0.ebuild
@@ -24,7 +24,7 @@ DOCS=( README.rst )
 
 distutils_enable_tests pytest
 
-EPYTEST_DESELECT=(
-	tests/test_core.py::TablenamesTest::test_tablenames
-	tests/test_onimport.py::SqliteDictPython24Test::test_py24_error
-)
+python_test() {
+	mkdir -p tests/db || die
+	distutils-r1_python_test
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/sqlitedict/
@ 2022-12-10 15:32 James Le Cuirot
  0 siblings, 0 replies; 12+ messages in thread
From: James Le Cuirot @ 2022-12-10 15:32 UTC (permalink / raw
  To: gentoo-commits

commit:     253170866581eaa4c842e6014d73dd1e2ebfaff9
Author:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 10 15:31:12 2022 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Sat Dec 10 15:31:12 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25317086

dev-python/sqlitedict: Keyword 2.1.0 for ~arm64

Tested and working.

Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>

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

diff --git a/dev-python/sqlitedict/sqlitedict-2.1.0.ebuild b/dev-python/sqlitedict/sqlitedict-2.1.0.ebuild
index c68b6e9a15f4..2b697ac0a09a 100644
--- a/dev-python/sqlitedict/sqlitedict-2.1.0.ebuild
+++ b/dev-python/sqlitedict/sqlitedict-2.1.0.ebuild
@@ -18,7 +18,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm"
+KEYWORDS="~amd64 ~arm ~arm64"
 
 DOCS=( README.rst )
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/sqlitedict/
@ 2023-05-26 21:12 Arthur Zamarin
  0 siblings, 0 replies; 12+ messages in thread
From: Arthur Zamarin @ 2023-05-26 21:12 UTC (permalink / raw
  To: gentoo-commits

commit:     f03c5b30d6d1c7f851fa6fa0138b1b3fe0d2bfd9
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri May 26 21:07:26 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri May 26 21:07:26 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f03c5b30

dev-python/sqlitedict: enable py3.12

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

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

diff --git a/dev-python/sqlitedict/sqlitedict-2.1.0.ebuild b/dev-python/sqlitedict/sqlitedict-2.1.0.ebuild
index 043895213284..da7495ac1ac3 100644
--- a/dev-python/sqlitedict/sqlitedict-2.1.0.ebuild
+++ b/dev-python/sqlitedict/sqlitedict-2.1.0.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 PYTHON_REQ_USE="sqlite"
 
 inherit distutils-r1 pypi


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

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

commit:     16b96ce9f776027cb4b11fe73be511bb72b09f6d
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat May 18 09:34:15 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 18 09:34:15 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16b96ce9

dev-python/sqlitedict: Enable py3.13

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

 dev-python/sqlitedict/sqlitedict-2.1.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/sqlitedict/sqlitedict-2.1.0.ebuild b/dev-python/sqlitedict/sqlitedict-2.1.0.ebuild
index da7495ac1ac3..d5fa489d2381 100644
--- a/dev-python/sqlitedict/sqlitedict-2.1.0.ebuild
+++ b/dev-python/sqlitedict/sqlitedict-2.1.0.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-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} )
 PYTHON_REQ_USE="sqlite"
 
 inherit distutils-r1 pypi


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

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

commit:     a475faf46a697dec119227936e59d35369834c3f
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat May 18 09:40:10 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 18 09:40:10 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a475faf4

dev-python/sqlitedict: Update homepage

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

 dev-python/sqlitedict/metadata.xml            | 2 +-
 dev-python/sqlitedict/sqlitedict-2.1.0.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/sqlitedict/metadata.xml b/dev-python/sqlitedict/metadata.xml
index 0405d36bf449..e0f2a7f3644b 100644
--- a/dev-python/sqlitedict/metadata.xml
+++ b/dev-python/sqlitedict/metadata.xml
@@ -6,7 +6,7 @@
 		<name>James Le Cuirot</name>
 	</maintainer>
 	<upstream>
-		<remote-id type="github">RaRe-Technologies/sqlitedict</remote-id>
+		<remote-id type="github">piskvorky/sqlitedict</remote-id>
 		<remote-id type="pypi">sqlitedict</remote-id>
 	</upstream>
 </pkgmetadata>

diff --git a/dev-python/sqlitedict/sqlitedict-2.1.0.ebuild b/dev-python/sqlitedict/sqlitedict-2.1.0.ebuild
index d5fa489d2381..6f2f16534f58 100644
--- a/dev-python/sqlitedict/sqlitedict-2.1.0.ebuild
+++ b/dev-python/sqlitedict/sqlitedict-2.1.0.ebuild
@@ -11,7 +11,7 @@ inherit distutils-r1 pypi
 
 DESCRIPTION="Persistent dict in Python, backed by SQLite and pickle"
 HOMEPAGE="
-	https://github.com/RaRe-Technologies/sqlitedict/
+	https://github.com/piskvorky/sqlitedict/
 	https://pypi.org/project/sqlitedict/
 "
 


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

end of thread, other threads:[~2024-05-18  9:41 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-10 15:32 [gentoo-commits] repo/gentoo:master commit in: dev-python/sqlitedict/ James Le Cuirot
  -- strict thread matches above, loose matches on Subject: below --
2024-05-18  9:41 Michał Górny
2024-05-18  9:41 Michał Górny
2023-05-26 21:12 Arthur Zamarin
2022-12-10 15:32 James Le Cuirot
2022-10-29 14:32 Arthur Zamarin
2022-05-16 13:30 Michał Górny
2022-05-16 13:30 Michał Górny
2022-03-09 20:06 Arthur Zamarin
2021-10-26 21:55 James Le Cuirot
2021-09-14 21:47 James Le Cuirot
2021-09-12 21:35 James Le Cuirot

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