public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pymemcache/
@ 2021-09-26 18:37 Alessandro Barbieri
  0 siblings, 0 replies; 9+ messages in thread
From: Alessandro Barbieri @ 2021-09-26 18:37 UTC (permalink / raw
  To: gentoo-commits

commit:     23bc4bf2ad6a43f058840bb5f5fe94cffdb697a8
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun Sep 26 18:17:34 2021 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sun Sep 26 18:37:09 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=23bc4bf2

dev-python/pymemcache: initial import

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-python/pymemcache/Manifest                |  1 +
 dev-python/pymemcache/metadata.xml            | 24 +++++++++++++++++++
 dev-python/pymemcache/pymemcache-3.5.0.ebuild | 33 +++++++++++++++++++++++++++
 3 files changed, 58 insertions(+)

diff --git a/dev-python/pymemcache/Manifest b/dev-python/pymemcache/Manifest
new file mode 100644
index 000000000..982e71cd3
--- /dev/null
+++ b/dev-python/pymemcache/Manifest
@@ -0,0 +1 @@
+DIST pymemcache-3.5.0.tar.gz 64763 BLAKE2B 9f6970ea977e2655c8fd045ae03eb1667f3e409f19b6a2de7a1b12ffcbf1f88f1fe447749cca1dfba4726f027af771e5f2d4a9464dd630353341c2395111f260 SHA512 0244e40ae5060ad3df96ab60d239e92fe0c21d26d560ed380bed06722fd229e40d3d26e3256ff469daaf682019e05b171b11b47a1bc328e35a3d18c87d45a3fc

diff --git a/dev-python/pymemcache/metadata.xml b/dev-python/pymemcache/metadata.xml
new file mode 100644
index 000000000..164e1731a
--- /dev/null
+++ b/dev-python/pymemcache/metadata.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>lssndrbarbieri@gmail.com</email>
+		<name>Alessandro Barbieri</name>
+	</maintainer>
+	<longdescription lang="en">
+A comprehensive, fast, pure-Python memcached client.
+
+pymemcache supports the following features:
+
+Complete implementation of the memcached text protocol.
+Connections using UNIX sockets, or TCP over IPv4 or IPv6.
+Configurable timeouts for socket connect and send/recv calls.
+Access to the "noreply" flag, which can significantly increase the speed of writes.
+Flexible, modular and simple approach to serialization and deserialization.
+The (optional) ability to treat network and memcached errors as cache misses.
+	</longdescription>
+	<upstream>
+		<remote-id type="github">pinterest/pymemcache</remote-id>
+		<remote-id type="pypi">pymemcache</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/dev-python/pymemcache/pymemcache-3.5.0.ebuild b/dev-python/pymemcache/pymemcache-3.5.0.ebuild
new file mode 100644
index 000000000..adacf799a
--- /dev/null
+++ b/dev-python/pymemcache/pymemcache-3.5.0.ebuild
@@ -0,0 +1,33 @@
+# 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="A comprehensive, fast, pure-Python memcached client"
+HOMEPAGE="
+	https://github.com/pinterest/pymemcache
+	https://pypi.org/project/pymemcache
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND=""
+DEPEND="
+	${RDEPEND}
+	dev-python/six[${PYTHON_USEDEP}]
+	test? (
+		dev-python/future[${PYTHON_USEDEP}]
+		dev-python/gevent[${PYTHON_USEDEP}]
+		dev-python/pylibmc[${PYTHON_USEDEP}]
+		dev-python/python-memcached[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pymemcache/
@ 2021-10-09 17:00 Alessandro Barbieri
  0 siblings, 0 replies; 9+ messages in thread
From: Alessandro Barbieri @ 2021-10-09 17:00 UTC (permalink / raw
  To: gentoo-commits

commit:     e384c93cecd592441e0cc893aae21aa76d619b6d
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sat Oct  9 16:35:20 2021 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sat Oct  9 17:00:51 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e384c93c

dev-python/pymemcache: add mock test dependency

Closes: https://bugs.gentoo.org/817221
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-python/pymemcache/pymemcache-3.5.0.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/pymemcache/pymemcache-3.5.0.ebuild b/dev-python/pymemcache/pymemcache-3.5.0.ebuild
index 60e233f67..0fc4afa30 100644
--- a/dev-python/pymemcache/pymemcache-3.5.0.ebuild
+++ b/dev-python/pymemcache/pymemcache-3.5.0.ebuild
@@ -25,6 +25,7 @@ DEPEND="
 	test? (
 		dev-python/future[${PYTHON_USEDEP}]
 		dev-python/gevent[${PYTHON_USEDEP}]
+		dev-python/mock[${PYTHON_USEDEP}]
 		dev-python/pylibmc[${PYTHON_USEDEP}]
 		dev-python/python-memcached[${PYTHON_USEDEP}]
 	)


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pymemcache/
@ 2022-04-04 19:32 Alessandro Barbieri
  0 siblings, 0 replies; 9+ messages in thread
From: Alessandro Barbieri @ 2022-04-04 19:32 UTC (permalink / raw
  To: gentoo-commits

commit:     ea8881b36bee94f239b7e41d4b5a1d2684fbf2d1
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Mon Apr  4 18:58:48 2022 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Mon Apr  4 19:32:02 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ea8881b3

dev-python/pymemcache: add 3.5.2

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 dev-python/pymemcache/Manifest                |  1 +
 dev-python/pymemcache/pymemcache-3.5.2.ebuild | 38 +++++++++++++++++++++++++++
 2 files changed, 39 insertions(+)

diff --git a/dev-python/pymemcache/Manifest b/dev-python/pymemcache/Manifest
index 5e22f019e..9f1071a63 100644
--- a/dev-python/pymemcache/Manifest
+++ b/dev-python/pymemcache/Manifest
@@ -1 +1,2 @@
 DIST pymemcache-3.5.1.tar.gz 65073 BLAKE2B cc3e5c6db665716c9f2eb6d99a53108484827fe38b51bdfff7799354a08b212064c71801d50683ea45c0a753ee787a634ef98adb69795e7245c5596a7716a162 SHA512 da69189e7fadc8417395075d033ed3cb72a485d4f2c4ec4deb5e2ec3cb43a34ee5558111903399f27b70f618be771f8c686513c7334d2ef507a0db959c4aa27b
+DIST pymemcache-3.5.2.tar.gz 65351 BLAKE2B e515629ffb483ece7b59c43b1cb3bd41ee70a8c1cbbc3b0cde5d41d7a5aa2f74f04a0f1d7eb4c82d77384cc32d3e8199cc78408b29ba689b19f5cd040e97c2f6 SHA512 7089b3fdf424735a1922685022a30f7984686f13401a13101e4745ea1c38a3888b1c380f859653da85889e95829f3b7c6226c3c55f838baf783465321433fda5

diff --git a/dev-python/pymemcache/pymemcache-3.5.2.ebuild b/dev-python/pymemcache/pymemcache-3.5.2.ebuild
new file mode 100644
index 000000000..29ab6563e
--- /dev/null
+++ b/dev-python/pymemcache/pymemcache-3.5.2.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-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="A comprehensive, fast, pure-Python memcached client"
+HOMEPAGE="
+	https://github.com/pinterest/pymemcache
+	https://pypi.org/project/pymemcache/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND=""
+DEPEND="
+	${RDEPEND}
+	dev-python/six[${PYTHON_USEDEP}]
+"
+BDEPEND="
+	test? (
+		dev-python/future[${PYTHON_USEDEP}]
+		>=dev-python/gevent-21.12.0[${PYTHON_USEDEP}]
+		dev-python/mock[${PYTHON_USEDEP}]
+		>=dev-python/pylibmc-1.6.1[${PYTHON_USEDEP}]
+		>=dev-python/python-memcached-1.59[${PYTHON_USEDEP}]
+	)
+"
+
+PATCHES=( "${FILESDIR}/${PN}-3.5.1-no-coverage.patch" )
+
+distutils_enable_tests pytest


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pymemcache/
@ 2022-11-05 14:41 Anna Vyalkova
  0 siblings, 0 replies; 9+ messages in thread
From: Anna Vyalkova @ 2022-11-05 14:41 UTC (permalink / raw
  To: gentoo-commits

commit:     6305cf68390c7facc31d49b3a22765a43005ce16
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Fri Nov  4 06:26:50 2022 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Sat Nov  5 14:41:32 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6305cf68

dev-python/pymemcache: add 4.0.0

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 dev-python/pymemcache/Manifest                |  1 +
 dev-python/pymemcache/pymemcache-4.0.0.ebuild | 51 +++++++++++++++++++++++++++
 2 files changed, 52 insertions(+)

diff --git a/dev-python/pymemcache/Manifest b/dev-python/pymemcache/Manifest
index 9f1071a63..4a9402124 100644
--- a/dev-python/pymemcache/Manifest
+++ b/dev-python/pymemcache/Manifest
@@ -1,2 +1,3 @@
 DIST pymemcache-3.5.1.tar.gz 65073 BLAKE2B cc3e5c6db665716c9f2eb6d99a53108484827fe38b51bdfff7799354a08b212064c71801d50683ea45c0a753ee787a634ef98adb69795e7245c5596a7716a162 SHA512 da69189e7fadc8417395075d033ed3cb72a485d4f2c4ec4deb5e2ec3cb43a34ee5558111903399f27b70f618be771f8c686513c7334d2ef507a0db959c4aa27b
 DIST pymemcache-3.5.2.tar.gz 65351 BLAKE2B e515629ffb483ece7b59c43b1cb3bd41ee70a8c1cbbc3b0cde5d41d7a5aa2f74f04a0f1d7eb4c82d77384cc32d3e8199cc78408b29ba689b19f5cd040e97c2f6 SHA512 7089b3fdf424735a1922685022a30f7984686f13401a13101e4745ea1c38a3888b1c380f859653da85889e95829f3b7c6226c3c55f838baf783465321433fda5
+DIST pymemcache-4.0.0.tar.gz 70176 BLAKE2B 23f8486138e7e4afa18c0b311887dac5220466df11c476018d34f14a34331c35881bd5c26c58a3214f5d40e9bb639be69a6dfcccd5d6200b9fe81f9aef3f3654 SHA512 1a19d887559630e5b991430b8206c2698909e0d6b234df0380f9da5647574560b0fdd98396959cb96670030a61f7d56fea4ecf3272b5c394fc8c31eb2144e1a3

diff --git a/dev-python/pymemcache/pymemcache-4.0.0.ebuild b/dev-python/pymemcache/pymemcache-4.0.0.ebuild
new file mode 100644
index 000000000..4eb9d1ff7
--- /dev/null
+++ b/dev-python/pymemcache/pymemcache-4.0.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+DISTUTILS_USE_PEP517=setuptools
+inherit databases distutils-r1
+
+DESCRIPTION="A comprehensive, fast, pure-Python memcached client"
+HOMEPAGE="
+	https://github.com/pinterest/pymemcache
+	https://pypi.org/project/pymemcache/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+BDEPEND="
+	test? (
+		dev-python/Faker[${PYTHON_USEDEP}]
+		>=dev-python/gevent-21.12.0[${PYTHON_USEDEP}]
+		dev-python/zstd[${PYTHON_USEDEP}]
+		$(ememcached --get-depend)
+	)
+"
+
+DOCS=( {ChangeLog,README}.rst )
+
+EPYTEST_IGNORE=(
+	# useless
+	pymemcache/test/test_benchmark.py
+)
+
+distutils_enable_tests pytest
+
+distutils_enable_sphinx docs \
+	dev-python/sphinxcontrib-apidoc \
+	dev-python/sphinx_rtd_theme
+
+src_test() {
+	ememcached --start 11221
+	distutils-r1_src_test
+	ememcached --stop
+}
+
+python_test() {
+	epytest --override-ini="addopts=" --port 11221 pymemcache/test
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pymemcache/
@ 2022-11-16 15:09 Anna Vyalkova
  0 siblings, 0 replies; 9+ messages in thread
From: Anna Vyalkova @ 2022-11-16 15:09 UTC (permalink / raw
  To: gentoo-commits

commit:     4332ca83570d7755eae93a43e1898a7effff9b3a
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Wed Nov 16 14:46:51 2022 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Wed Nov 16 14:47:12 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4332ca83

dev-python/pymemcache: disable docs

Closes: https://bugs.gentoo.org/880015
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 dev-python/pymemcache/pymemcache-4.0.0.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-python/pymemcache/pymemcache-4.0.0.ebuild b/dev-python/pymemcache/pymemcache-4.0.0.ebuild
index 4eb9d1ff7..1b9666399 100644
--- a/dev-python/pymemcache/pymemcache-4.0.0.ebuild
+++ b/dev-python/pymemcache/pymemcache-4.0.0.ebuild
@@ -36,9 +36,9 @@ EPYTEST_IGNORE=(
 
 distutils_enable_tests pytest
 
-distutils_enable_sphinx docs \
-	dev-python/sphinxcontrib-apidoc \
-	dev-python/sphinx_rtd_theme
+#distutils_enable_sphinx docs \
+#	dev-python/sphinxcontrib-apidoc \
+#	dev-python/sphinx_rtd_theme
 
 src_test() {
 	ememcached --start 11221


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pymemcache/
@ 2022-11-17 21:22 Anna Vyalkova
  0 siblings, 0 replies; 9+ messages in thread
From: Anna Vyalkova @ 2022-11-17 21:22 UTC (permalink / raw
  To: gentoo-commits

commit:     9057df80559236cf461efeec82dc0a263baeb151
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Thu Nov 17 20:52:13 2022 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Thu Nov 17 20:52:13 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9057df80

dev-python/pymemcache: drop 3.5.1, 3.5.2

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 dev-python/pymemcache/Manifest                |  2 --
 dev-python/pymemcache/pymemcache-3.5.1.ebuild | 38 ---------------------------
 dev-python/pymemcache/pymemcache-3.5.2.ebuild | 38 ---------------------------
 3 files changed, 78 deletions(-)

diff --git a/dev-python/pymemcache/Manifest b/dev-python/pymemcache/Manifest
index 4a9402124..d64f511c7 100644
--- a/dev-python/pymemcache/Manifest
+++ b/dev-python/pymemcache/Manifest
@@ -1,3 +1 @@
-DIST pymemcache-3.5.1.tar.gz 65073 BLAKE2B cc3e5c6db665716c9f2eb6d99a53108484827fe38b51bdfff7799354a08b212064c71801d50683ea45c0a753ee787a634ef98adb69795e7245c5596a7716a162 SHA512 da69189e7fadc8417395075d033ed3cb72a485d4f2c4ec4deb5e2ec3cb43a34ee5558111903399f27b70f618be771f8c686513c7334d2ef507a0db959c4aa27b
-DIST pymemcache-3.5.2.tar.gz 65351 BLAKE2B e515629ffb483ece7b59c43b1cb3bd41ee70a8c1cbbc3b0cde5d41d7a5aa2f74f04a0f1d7eb4c82d77384cc32d3e8199cc78408b29ba689b19f5cd040e97c2f6 SHA512 7089b3fdf424735a1922685022a30f7984686f13401a13101e4745ea1c38a3888b1c380f859653da85889e95829f3b7c6226c3c55f838baf783465321433fda5
 DIST pymemcache-4.0.0.tar.gz 70176 BLAKE2B 23f8486138e7e4afa18c0b311887dac5220466df11c476018d34f14a34331c35881bd5c26c58a3214f5d40e9bb639be69a6dfcccd5d6200b9fe81f9aef3f3654 SHA512 1a19d887559630e5b991430b8206c2698909e0d6b234df0380f9da5647574560b0fdd98396959cb96670030a61f7d56fea4ecf3272b5c394fc8c31eb2144e1a3

diff --git a/dev-python/pymemcache/pymemcache-3.5.1.ebuild b/dev-python/pymemcache/pymemcache-3.5.1.ebuild
deleted file mode 100644
index f1d0c57e4..000000000
--- a/dev-python/pymemcache/pymemcache-3.5.1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-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="A comprehensive, fast, pure-Python memcached client"
-HOMEPAGE="
-	https://github.com/pinterest/pymemcache
-	https://pypi.org/project/pymemcache/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND=""
-DEPEND="
-	${RDEPEND}
-	dev-python/six[${PYTHON_USEDEP}]
-"
-BDEPEND="
-	test? (
-		dev-python/future[${PYTHON_USEDEP}]
-		>=dev-python/gevent-21.12.0[${PYTHON_USEDEP}]
-		dev-python/mock[${PYTHON_USEDEP}]
-		>=dev-python/pylibmc-1.6.1[${PYTHON_USEDEP}]
-		>=dev-python/python-memcached-1.59[${PYTHON_USEDEP}]
-	)
-"
-
-PATCHES=( "${FILESDIR}/${P}-no-coverage.patch" )
-
-distutils_enable_tests pytest

diff --git a/dev-python/pymemcache/pymemcache-3.5.2.ebuild b/dev-python/pymemcache/pymemcache-3.5.2.ebuild
deleted file mode 100644
index 29ab6563e..000000000
--- a/dev-python/pymemcache/pymemcache-3.5.2.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-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="A comprehensive, fast, pure-Python memcached client"
-HOMEPAGE="
-	https://github.com/pinterest/pymemcache
-	https://pypi.org/project/pymemcache/
-"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND=""
-DEPEND="
-	${RDEPEND}
-	dev-python/six[${PYTHON_USEDEP}]
-"
-BDEPEND="
-	test? (
-		dev-python/future[${PYTHON_USEDEP}]
-		>=dev-python/gevent-21.12.0[${PYTHON_USEDEP}]
-		dev-python/mock[${PYTHON_USEDEP}]
-		>=dev-python/pylibmc-1.6.1[${PYTHON_USEDEP}]
-		>=dev-python/python-memcached-1.59[${PYTHON_USEDEP}]
-	)
-"
-
-PATCHES=( "${FILESDIR}/${PN}-3.5.1-no-coverage.patch" )
-
-distutils_enable_tests pytest


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pymemcache/
@ 2022-11-17 21:22 Anna Vyalkova
  0 siblings, 0 replies; 9+ messages in thread
From: Anna Vyalkova @ 2022-11-17 21:22 UTC (permalink / raw
  To: gentoo-commits

commit:     bc1d763bbb7459aa7afa27e54f3df0a47f050e86
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Thu Nov 17 20:54:59 2022 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Thu Nov 17 20:54:59 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bc1d763b

dev-python/pymemcache: drop dev-python/gevent test dep

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

 dev-python/pymemcache/pymemcache-4.0.0.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-python/pymemcache/pymemcache-4.0.0.ebuild b/dev-python/pymemcache/pymemcache-4.0.0.ebuild
index 1b9666399..89fbef6ca 100644
--- a/dev-python/pymemcache/pymemcache-4.0.0.ebuild
+++ b/dev-python/pymemcache/pymemcache-4.0.0.ebuild
@@ -21,7 +21,6 @@ KEYWORDS="~amd64"
 BDEPEND="
 	test? (
 		dev-python/Faker[${PYTHON_USEDEP}]
-		>=dev-python/gevent-21.12.0[${PYTHON_USEDEP}]
 		dev-python/zstd[${PYTHON_USEDEP}]
 		$(ememcached --get-depend)
 	)


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pymemcache/
@ 2024-01-22 17:52 Anna Vyalkova
  0 siblings, 0 replies; 9+ messages in thread
From: Anna Vyalkova @ 2024-01-22 17:52 UTC (permalink / raw
  To: gentoo-commits

commit:     5270b561df8f4091e65de23ded129b270838d185
Author:     Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Mon Jan 22 17:46:21 2024 +0000
Commit:     Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Mon Jan 22 17:51:53 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5270b561

dev-python/pymemcache: sync with databases.eclass

Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>

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

diff --git a/dev-python/pymemcache/pymemcache-4.0.0.ebuild b/dev-python/pymemcache/pymemcache-4.0.0.ebuild
index c0b9d34de5..ab8dc24d41 100644
--- a/dev-python/pymemcache/pymemcache-4.0.0.ebuild
+++ b/dev-python/pymemcache/pymemcache-4.0.0.ebuild
@@ -19,9 +19,9 @@ KEYWORDS="~amd64"
 
 BDEPEND="
 	test? (
+		${DATABASES_DEPEND[memcached]}
 		dev-python/Faker[${PYTHON_USEDEP}]
 		dev-python/zstd[${PYTHON_USEDEP}]
-		$(ememcached --get-depend)
 	)
 "
 


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

* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pymemcache/
@ 2024-05-14 19:07 Julien Roy
  0 siblings, 0 replies; 9+ messages in thread
From: Julien Roy @ 2024-05-14 19:07 UTC (permalink / raw
  To: gentoo-commits

commit:     f6307667101cc1691e246442e7dc21305566e03a
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Tue May 14 16:01:21 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Tue May 14 16:33:25 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f6307667

dev-python/pymemcache: enable py3.12

Bug: https://bugs.gentoo.org/928259
Closes: https://bugs.gentoo.org/931406
Signed-off-by: Julien Roy <julien <AT> jroy.ca>

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

diff --git a/dev-python/pymemcache/pymemcache-4.0.0.ebuild b/dev-python/pymemcache/pymemcache-4.0.0.ebuild
index ab8dc24d41..b56ccd2712 100644
--- a/dev-python/pymemcache/pymemcache-4.0.0.ebuild
+++ b/dev-python/pymemcache/pymemcache-4.0.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 DISTUTILS_USE_PEP517=setuptools
 inherit databases distutils-r1 pypi
 


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

end of thread, other threads:[~2024-05-14 19:07 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-04 19:32 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/pymemcache/ Alessandro Barbieri
  -- strict thread matches above, loose matches on Subject: below --
2024-05-14 19:07 Julien Roy
2024-01-22 17:52 Anna Vyalkova
2022-11-17 21:22 Anna Vyalkova
2022-11-17 21:22 Anna Vyalkova
2022-11-16 15:09 Anna Vyalkova
2022-11-05 14:41 Anna Vyalkova
2021-10-09 17:00 Alessandro Barbieri
2021-09-26 18:37 Alessandro Barbieri

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