[gentoo-commits] repo/gentoo:master commit in: dev-python/django-cacheops/

2023-11-23 Thread Arthur Zamarin
commit: 493e9c7779628ff74be665a7312c91fb3afe6384
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Nov 23 20:35:09 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Nov 23 20:35:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=493e9c77

dev-python/django-cacheops: Keyword 7.0.2 arm64, #917864

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/django-cacheops/django-cacheops-7.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/django-cacheops/django-cacheops-7.0.2.ebuild 
b/dev-python/django-cacheops/django-cacheops-7.0.2.ebuild
index 32d703bbe33f..06d5a9db3a7c 100644
--- a/dev-python/django-cacheops/django-cacheops-7.0.2.ebuild
+++ b/dev-python/django-cacheops/django-cacheops-7.0.2.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm64"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-cacheops/

2023-10-25 Thread Michał Górny
commit: 7e48097ac77e28fe6557a3dce349735db81ecb5d
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 25 07:41:09 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 25 07:43:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e48097a

dev-python/django-cacheops: Bump to 7.0.2

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

 dev-python/django-cacheops/Manifest|  1 +
 .../django-cacheops/django-cacheops-7.0.2.ebuild   | 71 ++
 2 files changed, 72 insertions(+)

diff --git a/dev-python/django-cacheops/Manifest 
b/dev-python/django-cacheops/Manifest
index 347d5b027944..1395befd31e1 100644
--- a/dev-python/django-cacheops/Manifest
+++ b/dev-python/django-cacheops/Manifest
@@ -1 +1,2 @@
 DIST django-cacheops-7.0.1.tar.gz 70830 BLAKE2B 
a90c5b145475f9942de5fee4403c5d237a6754026a0e581d1cab56a1b538cbb041fa50fcc67b0a7c922274c49b510d833e2924d8744e62e5a71149d6ddd6144d
 SHA512 
a73b24acd668d9104b8b8f27859d643ea9b80bf53375389cb21b2bbd3d97ea508f826752df2fa5ed576e91a35ba5c6cfb0e8dded772b2c47babf739e6b26dd38
+DIST django-cacheops-7.0.2.tar.gz 71747 BLAKE2B 
ceb5a536b1ee25c2b25beb9bac4b193325d74b58f7abc6f8edf62a9327eeb25fe8fd68292d5887aa02655f14290e7430d18747ccd487a4f44cdad7fa991f458c
 SHA512 
cd6ea11c54d0c49c52a912033b0ef5d1940c9f061b5a248b4238bf22efa17aefdc48c10a3724613401e9972226e0ad20cbd607b4b63812efc5ae78c35968b767

diff --git a/dev-python/django-cacheops/django-cacheops-7.0.2.ebuild 
b/dev-python/django-cacheops/django-cacheops-7.0.2.ebuild
new file mode 100644
index ..32d703bbe33f
--- /dev/null
+++ b/dev-python/django-cacheops/django-cacheops-7.0.2.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="ORM cache with automatic granular event-driven invalidation for 
Django"
+HOMEPAGE="
+   https://github.com/Suor/django-cacheops/
+   https://pypi.org/project/django-cacheops/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-python/django-3.2[${PYTHON_USEDEP}]
+   >=dev-python/redis-2.9.1[${PYTHON_USEDEP}]
+   >=dev-python/funcy-1.8[${PYTHON_USEDEP}]
+   >=dev-python/six-1.4.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   ${RDEPEND}
+   dev-db/redis
+   dev-python/dill[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+
+src_prepare() {
+   # Remove test dependent on unpackaged before_after
+   sed -e 's/test_lock/_&/' -i tests/test_extras.py || die
+   # Remove upper bounds on dependencies
+   sed -i -e 's:,<[0-9]*::' setup.py || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local -x DJANGO_SETTINGS_MODULE=tests.settings
+   local -x PYTHONPATH=.
+   django-admin test -v 2 || die
+}
+
+src_test() {
+   local redis_pid="${T}"/redis.pid
+   local redis_port=6379
+
+   einfo "Spawning Redis"
+   einfo "NOTE: Port ${redis_port} must be free"
+   "${EPREFIX}"/usr/sbin/redis-server - <<-EOF || die
+   daemonize yes
+   pidfile ${redis_pid}
+   port ${redis_port}
+   bind 127.0.0.1
+   EOF
+
+   # Run the tests
+   distutils-r1_src_test
+
+   # Clean up afterwards
+   kill "$(<"${redis_pid}")" || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-cacheops/

2023-07-28 Thread Michał Górny
commit: 70da4ea031e01ee4d0688b0895a5a1d7bc09d1ed
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jul 28 15:50:05 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jul 28 15:58:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70da4ea0

dev-python/django-cacheops: Enable py3.12

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

 dev-python/django-cacheops/django-cacheops-7.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/django-cacheops/django-cacheops-7.0.1.ebuild 
b/dev-python/django-cacheops/django-cacheops-7.0.1.ebuild
index 59f2aaf7ab0e..32d703bbe33f 100644
--- a/dev-python/django-cacheops/django-cacheops-7.0.1.ebuild
+++ b/dev-python/django-cacheops/django-cacheops-7.0.1.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
 PYPI_NO_NORMALIZE=1
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
 
 inherit distutils-r1 pypi
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-cacheops/

2023-07-24 Thread Michał Górny
commit: f4128154e0d76612adf80af0df4a119d8b54193a
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jul 24 11:18:33 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jul 24 11:31:00 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4128154

dev-python/django-cacheops: Remove old

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

 dev-python/django-cacheops/Manifest|  1 -
 .../django-cacheops/django-cacheops-7.0-r1.ebuild  | 74 --
 2 files changed, 75 deletions(-)

diff --git a/dev-python/django-cacheops/Manifest 
b/dev-python/django-cacheops/Manifest
index 5441631c9741..347d5b027944 100644
--- a/dev-python/django-cacheops/Manifest
+++ b/dev-python/django-cacheops/Manifest
@@ -1,2 +1 @@
 DIST django-cacheops-7.0.1.tar.gz 70830 BLAKE2B 
a90c5b145475f9942de5fee4403c5d237a6754026a0e581d1cab56a1b538cbb041fa50fcc67b0a7c922274c49b510d833e2924d8744e62e5a71149d6ddd6144d
 SHA512 
a73b24acd668d9104b8b8f27859d643ea9b80bf53375389cb21b2bbd3d97ea508f826752df2fa5ed576e91a35ba5c6cfb0e8dded772b2c47babf739e6b26dd38
-DIST django-cacheops-7.0.gh.tar.gz 56009 BLAKE2B 
7829c6308db163dce5e75170093107c5a9d7dc6c5caccdea55b81631f43664ddea767ce9320221abdfc9c52af6bea363a62b5e7e86e0afa54208fabf3baf431a
 SHA512 
bae0005e377ab8d9f9dc6da50a845966affc75b57846eb432bd7090f20b644e1b7ce9e963a9b6e84270661c23a51c7cf0436fc8448d34fb3c2f3f3245f98f7f7

diff --git a/dev-python/django-cacheops/django-cacheops-7.0-r1.ebuild 
b/dev-python/django-cacheops/django-cacheops-7.0-r1.ebuild
deleted file mode 100644
index 2f101f8d547e..
--- a/dev-python/django-cacheops/django-cacheops-7.0-r1.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-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="ORM cache with automatic granular event-driven invalidation for 
Django"
-HOMEPAGE="
-   https://github.com/Suor/django-cacheops/
-   https://pypi.org/project/django-cacheops/
-"
-SRC_URI="
-   https://github.com/Suor/django-cacheops/archive/${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   >=dev-python/django-3.2[${PYTHON_USEDEP}]
-   >=dev-python/redis-2.9.1[${PYTHON_USEDEP}]
-   >=dev-python/funcy-1.8[${PYTHON_USEDEP}]
-   >=dev-python/six-1.4.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   ${RDEPEND}
-   dev-db/redis
-   dev-python/dill[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}]
-   )
-"
-
-src_prepare() {
-   # Remove test dependent on unpackaged before_after
-   sed -e 's/test_lock/_&/' -i tests/test_extras.py || die
-   # Remove upper bounds on dependencies
-   sed -i -e 's:,<[0-9]*::' setup.py || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local -x DJANGO_SETTINGS_MODULE=tests.settings
-   local -x PYTHONPATH=.
-   django-admin test -v 2 || die
-}
-
-src_test() {
-   local redis_pid="${T}"/redis.pid
-   local redis_port=6379
-
-   einfo "Spawning Redis"
-   einfo "NOTE: Port ${redis_port} must be free"
-   "${EPREFIX}"/usr/sbin/redis-server - <<-EOF || die
-   daemonize yes
-   pidfile ${redis_pid}
-   port ${redis_port}
-   bind 127.0.0.1
-   EOF
-
-   # Run the tests
-   distutils-r1_src_test
-
-   # Clean up afterwards
-   kill "$(<"${redis_pid}")" || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-cacheops/

2023-05-11 Thread Michał Górny
commit: 89e3bb97257bad6e675968c2279253022ab277a7
Author: Michał Górny  gentoo  org>
AuthorDate: Thu May 11 06:28:48 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu May 11 06:28:48 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89e3bb97

dev-python/django-cacheops: Bump to 7.0.1

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

 dev-python/django-cacheops/Manifest|  1 +
 .../django-cacheops/django-cacheops-7.0.1.ebuild   | 71 ++
 2 files changed, 72 insertions(+)

diff --git a/dev-python/django-cacheops/Manifest 
b/dev-python/django-cacheops/Manifest
index a6d48b49ffcf..5441631c9741 100644
--- a/dev-python/django-cacheops/Manifest
+++ b/dev-python/django-cacheops/Manifest
@@ -1 +1,2 @@
+DIST django-cacheops-7.0.1.tar.gz 70830 BLAKE2B 
a90c5b145475f9942de5fee4403c5d237a6754026a0e581d1cab56a1b538cbb041fa50fcc67b0a7c922274c49b510d833e2924d8744e62e5a71149d6ddd6144d
 SHA512 
a73b24acd668d9104b8b8f27859d643ea9b80bf53375389cb21b2bbd3d97ea508f826752df2fa5ed576e91a35ba5c6cfb0e8dded772b2c47babf739e6b26dd38
 DIST django-cacheops-7.0.gh.tar.gz 56009 BLAKE2B 
7829c6308db163dce5e75170093107c5a9d7dc6c5caccdea55b81631f43664ddea767ce9320221abdfc9c52af6bea363a62b5e7e86e0afa54208fabf3baf431a
 SHA512 
bae0005e377ab8d9f9dc6da50a845966affc75b57846eb432bd7090f20b644e1b7ce9e963a9b6e84270661c23a51c7cf0436fc8448d34fb3c2f3f3245f98f7f7

diff --git a/dev-python/django-cacheops/django-cacheops-7.0.1.ebuild 
b/dev-python/django-cacheops/django-cacheops-7.0.1.ebuild
new file mode 100644
index ..59f2aaf7ab0e
--- /dev/null
+++ b/dev-python/django-cacheops/django-cacheops-7.0.1.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="ORM cache with automatic granular event-driven invalidation for 
Django"
+HOMEPAGE="
+   https://github.com/Suor/django-cacheops/
+   https://pypi.org/project/django-cacheops/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-python/django-3.2[${PYTHON_USEDEP}]
+   >=dev-python/redis-2.9.1[${PYTHON_USEDEP}]
+   >=dev-python/funcy-1.8[${PYTHON_USEDEP}]
+   >=dev-python/six-1.4.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   ${RDEPEND}
+   dev-db/redis
+   dev-python/dill[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+
+src_prepare() {
+   # Remove test dependent on unpackaged before_after
+   sed -e 's/test_lock/_&/' -i tests/test_extras.py || die
+   # Remove upper bounds on dependencies
+   sed -i -e 's:,<[0-9]*::' setup.py || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local -x DJANGO_SETTINGS_MODULE=tests.settings
+   local -x PYTHONPATH=.
+   django-admin test -v 2 || die
+}
+
+src_test() {
+   local redis_pid="${T}"/redis.pid
+   local redis_port=6379
+
+   einfo "Spawning Redis"
+   einfo "NOTE: Port ${redis_port} must be free"
+   "${EPREFIX}"/usr/sbin/redis-server - <<-EOF || die
+   daemonize yes
+   pidfile ${redis_pid}
+   port ${redis_port}
+   bind 127.0.0.1
+   EOF
+
+   # Run the tests
+   distutils-r1_src_test
+
+   # Clean up afterwards
+   kill "$(<"${redis_pid}")" || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-cacheops/

2023-04-06 Thread Michał Górny
commit: fd5ae5e11df9fd3cb7e2a8cca191a7ac4fdd4fa0
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Apr  6 15:37:10 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Apr  6 15:38:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd5ae5e1

dev-python/django-cacheops: Remove unnecessary dependency pins

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

 .../{django-cacheops-7.0.ebuild => django-cacheops-7.0-r1.ebuild}   | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-python/django-cacheops/django-cacheops-7.0.ebuild 
b/dev-python/django-cacheops/django-cacheops-7.0-r1.ebuild
similarity index 94%
rename from dev-python/django-cacheops/django-cacheops-7.0.ebuild
rename to dev-python/django-cacheops/django-cacheops-7.0-r1.ebuild
index f7d4a8683991..2f101f8d547e 100644
--- a/dev-python/django-cacheops/django-cacheops-7.0.ebuild
+++ b/dev-python/django-cacheops/django-cacheops-7.0-r1.ebuild
@@ -42,6 +42,8 @@ BDEPEND="
 src_prepare() {
# Remove test dependent on unpackaged before_after
sed -e 's/test_lock/_&/' -i tests/test_extras.py || die
+   # Remove upper bounds on dependencies
+   sed -i -e 's:,<[0-9]*::' setup.py || die
distutils-r1_src_prepare
 }
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-cacheops/

2023-03-15 Thread Arthur Zamarin
commit: 61b71a4de793517b9ee111a2d62129344118b6e2
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Mar 15 18:29:27 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Mar 15 18:33:53 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61b71a4d

dev-python/django-cacheops: add 7.0

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/django-cacheops/Manifest|  1 +
 .../django-cacheops/django-cacheops-7.0.ebuild | 72 ++
 2 files changed, 73 insertions(+)

diff --git a/dev-python/django-cacheops/Manifest 
b/dev-python/django-cacheops/Manifest
index f8370f4d98c3..6b493af5a502 100644
--- a/dev-python/django-cacheops/Manifest
+++ b/dev-python/django-cacheops/Manifest
@@ -1,2 +1,3 @@
 DIST django-cacheops-6.1.gh.tar.gz 52972 BLAKE2B 
bdcd045912100ebdfdfd9add23b0df634b029cc2ffe41c351176e327f1e21c90457cfca9e45348dddce60e39fee5c431428ff7f2c954194e4c06c8bc09d78945
 SHA512 
43dcd4f302afee1acf73125aae7c2e2eece560cc6f07f3374391ac54e0438fd59b80a24e65f52bd7aa4978fd8a428939a8d607c7aa4b25f47d68373cfc12772f
 DIST django-cacheops-6.2.gh.tar.gz 55279 BLAKE2B 
9fa05d6701e0cb705a012714f4ef5b98e6a56fe916033567e71256f2425ef844451d98cf7b2dd78023a680e19eab52b2f8cc4100ccf037e3d2e33f814eb47ead
 SHA512 
48e51de2fd13c16a97085b9c6e61833f6c8b0252a0ede9e8a4beaa973e509fe34731804830b0d80926c0ae0f75aef939b7b21368de7ac17053bb1c10c0a7d104
+DIST django-cacheops-7.0.gh.tar.gz 56009 BLAKE2B 
7829c6308db163dce5e75170093107c5a9d7dc6c5caccdea55b81631f43664ddea767ce9320221abdfc9c52af6bea363a62b5e7e86e0afa54208fabf3baf431a
 SHA512 
bae0005e377ab8d9f9dc6da50a845966affc75b57846eb432bd7090f20b644e1b7ce9e963a9b6e84270661c23a51c7cf0436fc8448d34fb3c2f3f3245f98f7f7

diff --git a/dev-python/django-cacheops/django-cacheops-7.0.ebuild 
b/dev-python/django-cacheops/django-cacheops-7.0.ebuild
new file mode 100644
index ..f7d4a8683991
--- /dev/null
+++ b/dev-python/django-cacheops/django-cacheops-7.0.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-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="ORM cache with automatic granular event-driven invalidation for 
Django"
+HOMEPAGE="
+   https://github.com/Suor/django-cacheops/
+   https://pypi.org/project/django-cacheops/
+"
+SRC_URI="
+   https://github.com/Suor/django-cacheops/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-python/django-3.2[${PYTHON_USEDEP}]
+   >=dev-python/redis-2.9.1[${PYTHON_USEDEP}]
+   >=dev-python/funcy-1.8[${PYTHON_USEDEP}]
+   >=dev-python/six-1.4.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   ${RDEPEND}
+   dev-db/redis
+   dev-python/dill[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+
+src_prepare() {
+   # Remove test dependent on unpackaged before_after
+   sed -e 's/test_lock/_&/' -i tests/test_extras.py || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local -x DJANGO_SETTINGS_MODULE=tests.settings
+   local -x PYTHONPATH=.
+   django-admin test -v 2 || die
+}
+
+src_test() {
+   local redis_pid="${T}"/redis.pid
+   local redis_port=6379
+
+   einfo "Spawning Redis"
+   einfo "NOTE: Port ${redis_port} must be free"
+   "${EPREFIX}"/usr/sbin/redis-server - <<-EOF || die
+   daemonize yes
+   pidfile ${redis_pid}
+   port ${redis_port}
+   bind 127.0.0.1
+   EOF
+
+   # Run the tests
+   distutils-r1_src_test
+
+   # Clean up afterwards
+   kill "$(<"${redis_pid}")" || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-cacheops/

2023-02-22 Thread Michał Górny
commit: 782591dc4ba427aa25ec7874cadcf0753b3675e9
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Feb 23 05:39:43 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Feb 23 06:18:06 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=782591dc

dev-python/django-cacheops: Bump to 6.2

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

 dev-python/django-cacheops/Manifest|  1 +
 .../django-cacheops/django-cacheops-6.2.ebuild | 72 ++
 2 files changed, 73 insertions(+)

diff --git a/dev-python/django-cacheops/Manifest 
b/dev-python/django-cacheops/Manifest
index 3deefef610a6..f8370f4d98c3 100644
--- a/dev-python/django-cacheops/Manifest
+++ b/dev-python/django-cacheops/Manifest
@@ -1 +1,2 @@
 DIST django-cacheops-6.1.gh.tar.gz 52972 BLAKE2B 
bdcd045912100ebdfdfd9add23b0df634b029cc2ffe41c351176e327f1e21c90457cfca9e45348dddce60e39fee5c431428ff7f2c954194e4c06c8bc09d78945
 SHA512 
43dcd4f302afee1acf73125aae7c2e2eece560cc6f07f3374391ac54e0438fd59b80a24e65f52bd7aa4978fd8a428939a8d607c7aa4b25f47d68373cfc12772f
+DIST django-cacheops-6.2.gh.tar.gz 55279 BLAKE2B 
9fa05d6701e0cb705a012714f4ef5b98e6a56fe916033567e71256f2425ef844451d98cf7b2dd78023a680e19eab52b2f8cc4100ccf037e3d2e33f814eb47ead
 SHA512 
48e51de2fd13c16a97085b9c6e61833f6c8b0252a0ede9e8a4beaa973e509fe34731804830b0d80926c0ae0f75aef939b7b21368de7ac17053bb1c10c0a7d104

diff --git a/dev-python/django-cacheops/django-cacheops-6.2.ebuild 
b/dev-python/django-cacheops/django-cacheops-6.2.ebuild
new file mode 100644
index ..9e64deb2d434
--- /dev/null
+++ b/dev-python/django-cacheops/django-cacheops-6.2.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-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="ORM cache with automatic granular event-driven invalidation for 
Django"
+HOMEPAGE="
+   https://github.com/Suor/django-cacheops/
+   https://pypi.org/project/django-cacheops/
+"
+SRC_URI="
+   https://github.com/Suor/django-cacheops/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-python/django-1.8[${PYTHON_USEDEP}]
+   >=dev-python/redis-2.9.1[${PYTHON_USEDEP}]
+   >=dev-python/funcy-1.8[${PYTHON_USEDEP}]
+   >=dev-python/six-1.4.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   ${RDEPEND}
+   dev-db/redis
+   dev-python/dill[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+
+src_prepare() {
+   # Remove test dependent on unpackaged before_after
+   sed -e 's/test_lock/_&/' -i tests/test_extras.py || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local -x DJANGO_SETTINGS_MODULE=tests.settings
+   local -x PYTHONPATH=.
+   django-admin test -v 2 || die
+}
+
+src_test() {
+   local redis_pid="${T}"/redis.pid
+   local redis_port=6379
+
+   einfo "Spawning Redis"
+   einfo "NOTE: Port ${redis_port} must be free"
+   "${EPREFIX}"/usr/sbin/redis-server - <<-EOF || die
+   daemonize yes
+   pidfile ${redis_pid}
+   port ${redis_port}
+   bind 127.0.0.1
+   EOF
+
+   # Run the tests
+   distutils-r1_src_test
+
+   # Clean up afterwards
+   kill "$(<"${redis_pid}")" || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-cacheops/

2022-06-22 Thread Sam James
commit: ed2c5a3e298ebf2813a88b127c93f04b89ac567c
Author: Sam James  gentoo  org>
AuthorDate: Thu Jun 23 05:11:02 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jun 23 05:11:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed2c5a3e

dev-python/django-cacheops: add missing mock test dep

Closes: https://bugs.gentoo.org/834588
Signed-off-by: Sam James  gentoo.org>

 dev-python/django-cacheops/django-cacheops-6.1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/django-cacheops/django-cacheops-6.1.ebuild 
b/dev-python/django-cacheops/django-cacheops-6.1.ebuild
index 9b7a1f421dc7..8efce8ba040e 100644
--- a/dev-python/django-cacheops/django-cacheops-6.1.ebuild
+++ b/dev-python/django-cacheops/django-cacheops-6.1.ebuild
@@ -35,6 +35,7 @@ BDEPEND="
${RDEPEND}
dev-db/redis
dev-python/dill[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
)
 "
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-cacheops/

2022-06-16 Thread Michał Górny
commit: 0fba729bc24c2cef24277fd1314d40a8143356a8
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun 16 08:04:45 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jun 16 08:04:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fba729b

dev-python/django-cacheops: Remove old

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

 dev-python/django-cacheops/Manifest|  1 -
 .../django-cacheops/django-cacheops-6.0.ebuild | 62 --
 2 files changed, 63 deletions(-)

diff --git a/dev-python/django-cacheops/Manifest 
b/dev-python/django-cacheops/Manifest
index f0d6fb486eba..3deefef610a6 100644
--- a/dev-python/django-cacheops/Manifest
+++ b/dev-python/django-cacheops/Manifest
@@ -1,2 +1 @@
-DIST django-cacheops-6.0.tar.gz 70280 BLAKE2B 
9efe5a10d86f9ad25ad67701005de962185d2c491305bb56920203718c2d5fd0b28d43f2463e28c7c00c7592a78a3adea66090b398a205d5e361dfbcf90ae887
 SHA512 
54ecec62ff255a867b382bb1157117c8d14d7185891aacaae33ea11283beeae2fae60659621699a52f86d536b5a582d31f24f3b00f16c2e81c1a78ea4079504e
 DIST django-cacheops-6.1.gh.tar.gz 52972 BLAKE2B 
bdcd045912100ebdfdfd9add23b0df634b029cc2ffe41c351176e327f1e21c90457cfca9e45348dddce60e39fee5c431428ff7f2c954194e4c06c8bc09d78945
 SHA512 
43dcd4f302afee1acf73125aae7c2e2eece560cc6f07f3374391ac54e0438fd59b80a24e65f52bd7aa4978fd8a428939a8d607c7aa4b25f47d68373cfc12772f

diff --git a/dev-python/django-cacheops/django-cacheops-6.0.ebuild 
b/dev-python/django-cacheops/django-cacheops-6.0.ebuild
deleted file mode 100644
index ecfd5010beb1..
--- a/dev-python/django-cacheops/django-cacheops-6.0.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit distutils-r1
-
-DESCRIPTION="ORM cache with automatic granular event-driven invalidation for 
Django"
-HOMEPAGE="https://github.com/Suor/django-cacheops;
-SRC_URI="mirror://pypi/${PN:0:1}"/${PN}/${P}.tar.gz
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   >=dev-python/django-1.8[${PYTHON_USEDEP}]
-   >=dev-python/redis-py-2.9.1[${PYTHON_USEDEP}]
-   >=dev-python/funcy-1.8[${PYTHON_USEDEP}]
-   >=dev-python/six-1.4.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   ${RDEPEND}
-   dev-db/redis
-   dev-python/dill[${PYTHON_USEDEP}]
-   )
-"
-
-src_prepare() {
-   # Remove test dependent on unpackaged before_after
-   sed -e 's/test_lock/_&/' -i tests/test_extras.py || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local -x DJANGO_SETTINGS_MODULE=tests.settings
-   django-admin test -v 2 || die
-}
-
-src_test() {
-   local redis_pid="${T}"/redis.pid
-   local redis_port=6379
-
-   einfo "Spawning Redis"
-   einfo "NOTE: Port ${redis_port} must be free"
-   "${EPREFIX}"/usr/sbin/redis-server - <<-EOF || die
-   daemonize yes
-   pidfile ${redis_pid}
-   port ${redis_port}
-   bind 127.0.0.1
-   EOF
-
-   # Run the tests
-   distutils-r1_src_test
-
-   # Clean up afterwards
-   kill "$(<"${redis_pid}")" || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-cacheops/

2022-05-27 Thread Michał Górny
commit: 4b06a6aeb967336e9d4a7c91a11a2ee3003f1c88
Author: Michał Górny  gentoo  org>
AuthorDate: Sat May 28 04:50:49 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat May 28 05:00:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b06a6ae

dev-python/django-cacheops: Bump to 6.1

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

 dev-python/django-cacheops/Manifest|  1 +
 .../django-cacheops/django-cacheops-6.1.ebuild | 71 ++
 2 files changed, 72 insertions(+)

diff --git a/dev-python/django-cacheops/Manifest 
b/dev-python/django-cacheops/Manifest
index aebea256451f..f0d6fb486eba 100644
--- a/dev-python/django-cacheops/Manifest
+++ b/dev-python/django-cacheops/Manifest
@@ -1 +1,2 @@
 DIST django-cacheops-6.0.tar.gz 70280 BLAKE2B 
9efe5a10d86f9ad25ad67701005de962185d2c491305bb56920203718c2d5fd0b28d43f2463e28c7c00c7592a78a3adea66090b398a205d5e361dfbcf90ae887
 SHA512 
54ecec62ff255a867b382bb1157117c8d14d7185891aacaae33ea11283beeae2fae60659621699a52f86d536b5a582d31f24f3b00f16c2e81c1a78ea4079504e
+DIST django-cacheops-6.1.gh.tar.gz 52972 BLAKE2B 
bdcd045912100ebdfdfd9add23b0df634b029cc2ffe41c351176e327f1e21c90457cfca9e45348dddce60e39fee5c431428ff7f2c954194e4c06c8bc09d78945
 SHA512 
43dcd4f302afee1acf73125aae7c2e2eece560cc6f07f3374391ac54e0438fd59b80a24e65f52bd7aa4978fd8a428939a8d607c7aa4b25f47d68373cfc12772f

diff --git a/dev-python/django-cacheops/django-cacheops-6.1.ebuild 
b/dev-python/django-cacheops/django-cacheops-6.1.ebuild
new file mode 100644
index ..9b7a1f421dc7
--- /dev/null
+++ b/dev-python/django-cacheops/django-cacheops-6.1.ebuild
@@ -0,0 +1,71 @@
+# 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} )
+
+inherit distutils-r1
+
+DESCRIPTION="ORM cache with automatic granular event-driven invalidation for 
Django"
+HOMEPAGE="
+   https://github.com/Suor/django-cacheops/
+   https://pypi.org/project/django-cacheops/
+"
+SRC_URI="
+   https://github.com/Suor/django-cacheops/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-python/django-1.8[${PYTHON_USEDEP}]
+   >=dev-python/redis-py-2.9.1[${PYTHON_USEDEP}]
+   >=dev-python/funcy-1.8[${PYTHON_USEDEP}]
+   >=dev-python/six-1.4.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   ${RDEPEND}
+   dev-db/redis
+   dev-python/dill[${PYTHON_USEDEP}]
+   )
+"
+
+src_prepare() {
+   # Remove test dependent on unpackaged before_after
+   sed -e 's/test_lock/_&/' -i tests/test_extras.py || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local -x DJANGO_SETTINGS_MODULE=tests.settings
+   local -x PYTHONPATH=.
+   django-admin test -v 2 || die
+}
+
+src_test() {
+   local redis_pid="${T}"/redis.pid
+   local redis_port=6379
+
+   einfo "Spawning Redis"
+   einfo "NOTE: Port ${redis_port} must be free"
+   "${EPREFIX}"/usr/sbin/redis-server - <<-EOF || die
+   daemonize yes
+   pidfile ${redis_pid}
+   port ${redis_port}
+   bind 127.0.0.1
+   EOF
+
+   # Run the tests
+   distutils-r1_src_test
+
+   # Clean up afterwards
+   kill "$(<"${redis_pid}")" || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-cacheops/

2021-11-14 Thread Michał Górny
commit: 48d40a1397fa6f541331d5c84db8298635df6a95
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Nov 14 08:38:28 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Nov 14 08:46:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48d40a13

dev-python/django-cacheops: Remove old

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

 dev-python/django-cacheops/Manifest|  1 -
 .../django-cacheops/django-cacheops-5.1.ebuild | 61 --
 2 files changed, 62 deletions(-)

diff --git a/dev-python/django-cacheops/Manifest 
b/dev-python/django-cacheops/Manifest
index 8ff19a8f58d7..aebea256451f 100644
--- a/dev-python/django-cacheops/Manifest
+++ b/dev-python/django-cacheops/Manifest
@@ -1,2 +1 @@
-DIST django-cacheops-5.1.tar.gz 67776 BLAKE2B 
d89ac7aeccecdb69e02e03a46c9d4250439319a840f4902a51909c762cdcb8b422c2b2be2921ac256cf4a3d3248782ece0378c19b99109038b2f4e2262c57bcd
 SHA512 
c7c5b284af4a7ec4faf88613de8eaf2bee298208ef13efbb4bb337c1e71817f36afe51ae4cbfa566a999e2dcf1361f84684189d9748a08de32675820f8b9c91b
 DIST django-cacheops-6.0.tar.gz 70280 BLAKE2B 
9efe5a10d86f9ad25ad67701005de962185d2c491305bb56920203718c2d5fd0b28d43f2463e28c7c00c7592a78a3adea66090b398a205d5e361dfbcf90ae887
 SHA512 
54ecec62ff255a867b382bb1157117c8d14d7185891aacaae33ea11283beeae2fae60659621699a52f86d536b5a582d31f24f3b00f16c2e81c1a78ea4079504e

diff --git a/dev-python/django-cacheops/django-cacheops-5.1.ebuild 
b/dev-python/django-cacheops/django-cacheops-5.1.ebuild
deleted file mode 100644
index 35821ca12dd2..
--- a/dev-python/django-cacheops/django-cacheops-5.1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-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="ORM cache with automatic granular event-driven invalidation for 
Django"
-HOMEPAGE="https://github.com/Suor/django-cacheops;
-SRC_URI="mirror://pypi/${PN:0:1}"/${PN}/${P}.tar.gz
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   >=dev-python/django-1.8[${PYTHON_USEDEP}]
-   >=dev-python/redis-py-2.9.1[${PYTHON_USEDEP}]
-   >=dev-python/funcy-1.8[${PYTHON_USEDEP}]
-   >=dev-python/six-1.4.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   ${RDEPEND}
-   dev-db/redis
-   )
-"
-
-src_prepare() {
-   # Remove test dependent on unpackaged before_after
-   sed -e 's/test_lock/_&/' -i tests/test_extras.py || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   local -x DJANGO_SETTINGS_MODULE=tests.settings
-   django-admin test -v 2 || die
-}
-
-src_test() {
-   local redis_pid="${T}"/redis.pid
-   local redis_port=6379
-
-   einfo "Spawning Redis"
-   einfo "NOTE: Port ${redis_port} must be free"
-   "${EPREFIX}"/usr/sbin/redis-server - <<-EOF || die
-   daemonize yes
-   pidfile ${redis_pid}
-   port ${redis_port}
-   bind 127.0.0.1
-   EOF
-
-   # Run the tests
-   distutils-r1_src_test
-
-   # Clean up afterwards
-   kill "$(<"${redis_pid}")" || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-cacheops/

2021-11-01 Thread Arthur Zamarin
commit: bb1205d8e53cce7b9f0f0e666de2d6bdc066735d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Nov  1 10:00:32 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Nov  1 10:08:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb1205d8

dev-python/django-cacheops: add 6.0, enable py3.10

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/django-cacheops/Manifest|  1 +
 .../django-cacheops/django-cacheops-6.0.ebuild | 62 ++
 2 files changed, 63 insertions(+)

diff --git a/dev-python/django-cacheops/Manifest 
b/dev-python/django-cacheops/Manifest
index 23223cae2c2..8ff19a8f58d 100644
--- a/dev-python/django-cacheops/Manifest
+++ b/dev-python/django-cacheops/Manifest
@@ -1 +1,2 @@
 DIST django-cacheops-5.1.tar.gz 67776 BLAKE2B 
d89ac7aeccecdb69e02e03a46c9d4250439319a840f4902a51909c762cdcb8b422c2b2be2921ac256cf4a3d3248782ece0378c19b99109038b2f4e2262c57bcd
 SHA512 
c7c5b284af4a7ec4faf88613de8eaf2bee298208ef13efbb4bb337c1e71817f36afe51ae4cbfa566a999e2dcf1361f84684189d9748a08de32675820f8b9c91b
+DIST django-cacheops-6.0.tar.gz 70280 BLAKE2B 
9efe5a10d86f9ad25ad67701005de962185d2c491305bb56920203718c2d5fd0b28d43f2463e28c7c00c7592a78a3adea66090b398a205d5e361dfbcf90ae887
 SHA512 
54ecec62ff255a867b382bb1157117c8d14d7185891aacaae33ea11283beeae2fae60659621699a52f86d536b5a582d31f24f3b00f16c2e81c1a78ea4079504e

diff --git a/dev-python/django-cacheops/django-cacheops-6.0.ebuild 
b/dev-python/django-cacheops/django-cacheops-6.0.ebuild
new file mode 100644
index 000..ecfd5010beb
--- /dev/null
+++ b/dev-python/django-cacheops/django-cacheops-6.0.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="ORM cache with automatic granular event-driven invalidation for 
Django"
+HOMEPAGE="https://github.com/Suor/django-cacheops;
+SRC_URI="mirror://pypi/${PN:0:1}"/${PN}/${P}.tar.gz
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-python/django-1.8[${PYTHON_USEDEP}]
+   >=dev-python/redis-py-2.9.1[${PYTHON_USEDEP}]
+   >=dev-python/funcy-1.8[${PYTHON_USEDEP}]
+   >=dev-python/six-1.4.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   ${RDEPEND}
+   dev-db/redis
+   dev-python/dill[${PYTHON_USEDEP}]
+   )
+"
+
+src_prepare() {
+   # Remove test dependent on unpackaged before_after
+   sed -e 's/test_lock/_&/' -i tests/test_extras.py || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local -x DJANGO_SETTINGS_MODULE=tests.settings
+   django-admin test -v 2 || die
+}
+
+src_test() {
+   local redis_pid="${T}"/redis.pid
+   local redis_port=6379
+
+   einfo "Spawning Redis"
+   einfo "NOTE: Port ${redis_port} must be free"
+   "${EPREFIX}"/usr/sbin/redis-server - <<-EOF || die
+   daemonize yes
+   pidfile ${redis_pid}
+   port ${redis_port}
+   bind 127.0.0.1
+   EOF
+
+   # Run the tests
+   distutils-r1_src_test
+
+   # Clean up afterwards
+   kill "$(<"${redis_pid}")" || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-cacheops/

2021-11-01 Thread Arthur Zamarin
commit: 871be66ad55bc2a7d8beaf466a1e7772b0106a5a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Nov  1 10:00:52 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Nov  1 10:08:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=871be66a

dev-python/django-cacheops: mark ALLARCHES

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/django-cacheops/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/django-cacheops/metadata.xml 
b/dev-python/django-cacheops/metadata.xml
index 714d3e5a5e7..4ee4d9bf540 100644
--- a/dev-python/django-cacheops/metadata.xml
+++ b/dev-python/django-cacheops/metadata.xml
@@ -4,6 +4,7 @@

pyt...@gentoo.org

+   

django-cacheops
Suor/django-cacheops



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-cacheops/

2021-11-01 Thread Arthur Zamarin
commit: f8a484a18c7566ad0656531a0efdb8d385471cbb
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Nov  1 09:57:04 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Nov  1 10:08:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8a484a1

dev-python/django-cacheops: enable tests

Closes: https://bugs.gentoo.org/797865
Signed-off-by: Arthur Zamarin  gentoo.org>

 .../django-cacheops/django-cacheops-5.1.ebuild | 41 --
 1 file changed, 39 insertions(+), 2 deletions(-)

diff --git a/dev-python/django-cacheops/django-cacheops-5.1.ebuild 
b/dev-python/django-cacheops/django-cacheops-5.1.ebuild
index 2bcc4a8d194..35821ca12dd 100644
--- a/dev-python/django-cacheops/django-cacheops-5.1.ebuild
+++ b/dev-python/django-cacheops/django-cacheops-5.1.ebuild
@@ -13,12 +13,49 @@ SRC_URI="mirror://pypi/${PN:0:1}"/${PN}/${P}.tar.gz
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
 
-DEPEND="
+RDEPEND="
>=dev-python/django-1.8[${PYTHON_USEDEP}]
>=dev-python/redis-py-2.9.1[${PYTHON_USEDEP}]
>=dev-python/funcy-1.8[${PYTHON_USEDEP}]
>=dev-python/six-1.4.0[${PYTHON_USEDEP}]
 "
+BDEPEND="
+   test? (
+   ${RDEPEND}
+   dev-db/redis
+   )
+"
+
+src_prepare() {
+   # Remove test dependent on unpackaged before_after
+   sed -e 's/test_lock/_&/' -i tests/test_extras.py || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local -x DJANGO_SETTINGS_MODULE=tests.settings
+   django-admin test -v 2 || die
+}
+
+src_test() {
+   local redis_pid="${T}"/redis.pid
+   local redis_port=6379
+
+   einfo "Spawning Redis"
+   einfo "NOTE: Port ${redis_port} must be free"
+   "${EPREFIX}"/usr/sbin/redis-server - <<-EOF || die
+   daemonize yes
+   pidfile ${redis_pid}
+   port ${redis_port}
+   bind 127.0.0.1
+   EOF
+
+   # Run the tests
+   distutils-r1_src_test
 
-RDEPEND="${DEPEND}"
+   # Clean up afterwards
+   kill "$(<"${redis_pid}")" || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-cacheops/

2021-11-01 Thread Arthur Zamarin
commit: 96c1bff2b9c0d167788b7231a2ddc5e3fbdc0cd4
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Nov  1 09:48:17 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Nov  1 10:08:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96c1bff2

dev-python/django-cacheops: add github upstream metadata

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/django-cacheops/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/django-cacheops/metadata.xml 
b/dev-python/django-cacheops/metadata.xml
index e46e99b8443..714d3e5a5e7 100644
--- a/dev-python/django-cacheops/metadata.xml
+++ b/dev-python/django-cacheops/metadata.xml
@@ -6,5 +6,6 @@


django-cacheops
+   Suor/django-cacheops

 



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-cacheops/

2021-04-25 Thread William Hubbs
commit: 8a77e4e1dd1c25f0efecd4d522794a1a9d82f96c
Author: William Hubbs  gentoo  org>
AuthorDate: Sun Apr 25 18:09:55 2021 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sun Apr 25 18:10:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a77e4e1

dev-python/django-cacheops" remove myself from maintainers

Signed-off-by: William Hubbs  gentoo.org>

 dev-python/django-cacheops/metadata.xml | 4 
 1 file changed, 4 deletions(-)

diff --git a/dev-python/django-cacheops/metadata.xml 
b/dev-python/django-cacheops/metadata.xml
index 17ae2620bcc..4b1330958db 100644
--- a/dev-python/django-cacheops/metadata.xml
+++ b/dev-python/django-cacheops/metadata.xml
@@ -4,10 +4,6 @@

pyt...@gentoo.org

-   
-   willi...@gentoo.org
-   William Hubbs
-   

django-cacheops




[gentoo-commits] repo/gentoo:master commit in: dev-python/django-cacheops/

2021-01-30 Thread Conrad Kostecki
commit: 3048da9627af31ea68f0c0bf5f26c04c28cbc894
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sat Jan 30 19:24:31 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jan 30 20:26:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3048da96

dev-python/django-cacheops: drop old version

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-python/django-cacheops/Manifest |  1 -
 .../django-cacheops/django-cacheops-4.2.ebuild  | 21 -
 2 files changed, 22 deletions(-)

diff --git a/dev-python/django-cacheops/Manifest 
b/dev-python/django-cacheops/Manifest
index d000cc96814..23223cae2c2 100644
--- a/dev-python/django-cacheops/Manifest
+++ b/dev-python/django-cacheops/Manifest
@@ -1,2 +1 @@
-DIST django-cacheops-4.2.tar.gz 50240 BLAKE2B 
87ef35097f3c521ac21e614adf3b05d871b562d2a463921ba70ce3f7f4a4f7c1b6966e27077dd95016f10649cc1127fe1f7f65bd6353f86cc4395c59d20ea60e
 SHA512 
8caa9b9ffed45bbc6039cb14ce311f714160aca2111408ae1505bbd78d0b8b4057e9414994bd0d0c1334392e83b4c27ca59e0ac1db01e3a56c409f2806bdaa27
 DIST django-cacheops-5.1.tar.gz 67776 BLAKE2B 
d89ac7aeccecdb69e02e03a46c9d4250439319a840f4902a51909c762cdcb8b422c2b2be2921ac256cf4a3d3248782ece0378c19b99109038b2f4e2262c57bcd
 SHA512 
c7c5b284af4a7ec4faf88613de8eaf2bee298208ef13efbb4bb337c1e71817f36afe51ae4cbfa566a999e2dcf1361f84684189d9748a08de32675820f8b9c91b

diff --git a/dev-python/django-cacheops/django-cacheops-4.2.ebuild 
b/dev-python/django-cacheops/django-cacheops-4.2.ebuild
deleted file mode 100644
index d2ceef319c8..000
--- a/dev-python/django-cacheops/django-cacheops-4.2.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_6 python3_7 )
-inherit distutils-r1
-
-DESCRIPTION="ORM cache with automatic granular event-driven invalidation for 
Django"
-HOMEPAGE="https://github.com/Suor/django-cacheops;
-SRC_URI="mirror://pypi/${PN:0:1}"/${PN}/${P}.tar.gz
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-
-DEPEND=">=dev-python/django-1.8[${PYTHON_USEDEP}]
-   >=dev-python/redis-py-2.9.1[${PYTHON_USEDEP}]
-   >=dev-python/funcy-1.8[${PYTHON_USEDEP}]
-   >=dev-python/six-1.4.0[${PYTHON_USEDEP}]"
-RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-cacheops/

2021-01-30 Thread Conrad Kostecki
commit: ca3cda1a64a25fc4995c56a91e375d6c896735a9
Author: Conrad Kostecki  gentoo  org>
AuthorDate: Sat Jan 30 19:21:41 2021 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Sat Jan 30 20:26:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca3cda1a

dev-python/django-cacheops: bump to version 5.1

Also added python3_9 support.

Closes: https://bugs.gentoo.org/766992
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-python/django-cacheops/Manifest|  1 +
 .../django-cacheops/django-cacheops-5.1.ebuild | 24 ++
 2 files changed, 25 insertions(+)

diff --git a/dev-python/django-cacheops/Manifest 
b/dev-python/django-cacheops/Manifest
index 0a004a7eddb..d000cc96814 100644
--- a/dev-python/django-cacheops/Manifest
+++ b/dev-python/django-cacheops/Manifest
@@ -1 +1,2 @@
 DIST django-cacheops-4.2.tar.gz 50240 BLAKE2B 
87ef35097f3c521ac21e614adf3b05d871b562d2a463921ba70ce3f7f4a4f7c1b6966e27077dd95016f10649cc1127fe1f7f65bd6353f86cc4395c59d20ea60e
 SHA512 
8caa9b9ffed45bbc6039cb14ce311f714160aca2111408ae1505bbd78d0b8b4057e9414994bd0d0c1334392e83b4c27ca59e0ac1db01e3a56c409f2806bdaa27
+DIST django-cacheops-5.1.tar.gz 67776 BLAKE2B 
d89ac7aeccecdb69e02e03a46c9d4250439319a840f4902a51909c762cdcb8b422c2b2be2921ac256cf4a3d3248782ece0378c19b99109038b2f4e2262c57bcd
 SHA512 
c7c5b284af4a7ec4faf88613de8eaf2bee298208ef13efbb4bb337c1e71817f36afe51ae4cbfa566a999e2dcf1361f84684189d9748a08de32675820f8b9c91b

diff --git a/dev-python/django-cacheops/django-cacheops-5.1.ebuild 
b/dev-python/django-cacheops/django-cacheops-5.1.ebuild
new file mode 100644
index 000..2bcc4a8d194
--- /dev/null
+++ b/dev-python/django-cacheops/django-cacheops-5.1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-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="ORM cache with automatic granular event-driven invalidation for 
Django"
+HOMEPAGE="https://github.com/Suor/django-cacheops;
+SRC_URI="mirror://pypi/${PN:0:1}"/${PN}/${P}.tar.gz
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="
+   >=dev-python/django-1.8[${PYTHON_USEDEP}]
+   >=dev-python/redis-py-2.9.1[${PYTHON_USEDEP}]
+   >=dev-python/funcy-1.8[${PYTHON_USEDEP}]
+   >=dev-python/six-1.4.0[${PYTHON_USEDEP}]
+"
+
+RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-cacheops/

2020-03-26 Thread Michał Górny
commit: 4c8be87bfcc8ac7ef795d9afac129ab78ad4cef8
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar 26 20:40:44 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Mar 26 20:40:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c8be87b

dev-python/django-cacheops: Remove redundant versions

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

 dev-python/django-cacheops/Manifest |  1 -
 .../django-cacheops/django-cacheops-4.1.ebuild  | 21 -
 2 files changed, 22 deletions(-)

diff --git a/dev-python/django-cacheops/Manifest 
b/dev-python/django-cacheops/Manifest
index 8cfb1cae89e..0a004a7eddb 100644
--- a/dev-python/django-cacheops/Manifest
+++ b/dev-python/django-cacheops/Manifest
@@ -1,2 +1 @@
-DIST django-cacheops-4.1.tar.gz 53766 BLAKE2B 
f74fa8b93700fa930f31e8db83b161c48eb520894d3e2072bf50ca4e18b20a8563438ac95ef5920a1371b3215a0d3b7c2a216a9d1f040cc51f4d468da438a966
 SHA512 
ea66f0744d9b0e3b03e92ee7083c17150c050a992e25159c50f766898d7ab9e2bcb0432db135abcc2dac03587d2e86a8216ddf9afcdbb6c7400c3844ac02
 DIST django-cacheops-4.2.tar.gz 50240 BLAKE2B 
87ef35097f3c521ac21e614adf3b05d871b562d2a463921ba70ce3f7f4a4f7c1b6966e27077dd95016f10649cc1127fe1f7f65bd6353f86cc4395c59d20ea60e
 SHA512 
8caa9b9ffed45bbc6039cb14ce311f714160aca2111408ae1505bbd78d0b8b4057e9414994bd0d0c1334392e83b4c27ca59e0ac1db01e3a56c409f2806bdaa27

diff --git a/dev-python/django-cacheops/django-cacheops-4.1.ebuild 
b/dev-python/django-cacheops/django-cacheops-4.1.ebuild
deleted file mode 100644
index b3307f6ba05..000
--- a/dev-python/django-cacheops/django-cacheops-4.1.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_6 )
-inherit distutils-r1
-
-DESCRIPTION="ORM cache with automatic granular event-driven invalidation for 
Django"
-HOMEPAGE="https://github.com/Suor/django-cacheops;
-SRC_URI="mirror://pypi/${PN:0:1}"/${PN}/${P}.tar.gz
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-
-DEPEND=">=dev-python/django-1.8[${PYTHON_USEDEP}]
-   >=dev-python/redis-py-2.9.1[${PYTHON_USEDEP}]
-   >=dev-python/funcy-1.8[${PYTHON_USEDEP}]
-   >=dev-python/six-1.4.0[${PYTHON_USEDEP}]"
-RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-cacheops/

2020-02-11 Thread William Hubbs
commit: bde7ce3d8ec7d6a2137540b866a2cced08f28fd6
Author: William Hubbs  sony  com>
AuthorDate: Tue Feb 11 18:39:14 2020 +
Commit: William Hubbs  gentoo  org>
CommitDate: Tue Feb 11 20:10:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bde7ce3d

dev-python/django-cachops: add python 3.8

Signed-off-by: William Hubbs  gentoo.org>

 dev-python/django-cacheops/django-cacheops-4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/django-cacheops/django-cacheops-4.2.ebuild 
b/dev-python/django-cacheops/django-cacheops-4.2.ebuild
index d2ceef319c8..943f7f0b726 100644
--- a/dev-python/django-cacheops/django-cacheops-4.2.ebuild
+++ b/dev-python/django-cacheops/django-cacheops-4.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_6 python3_7 )
+PYTHON_COMPAT=( python3_6 python3_7 python3_8 )
 inherit distutils-r1
 
 DESCRIPTION="ORM cache with automatic granular event-driven invalidation for 
Django"



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-cacheops/

2020-02-04 Thread Michał Górny
commit: 1ff0c6581b95717531baced806161c5925b7ffcb
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Feb  5 05:29:42 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Feb  5 05:50:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ff0c658

dev-python/django-cacheops: Remove py2

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

 dev-python/django-cacheops/django-cacheops-4.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/django-cacheops/django-cacheops-4.2.ebuild 
b/dev-python/django-cacheops/django-cacheops-4.2.ebuild
index 70cd85f5d6e..d2ceef319c8 100644
--- a/dev-python/django-cacheops/django-cacheops-4.2.ebuild
+++ b/dev-python/django-cacheops/django-cacheops-4.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python2_7 python3_6 python3_7 )
+PYTHON_COMPAT=( python3_6 python3_7 )
 inherit distutils-r1
 
 DESCRIPTION="ORM cache with automatic granular event-driven invalidation for 
Django"



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-cacheops/

2020-01-26 Thread William Hubbs
commit: 3a38d708b52faa8c261c48d2507962492c8cfd60
Author: William Hubbs  gentoo  org>
AuthorDate: Sun Jan 26 20:00:34 2020 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sun Jan 26 20:00:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a38d708

dev-python/django-cacheops: 4.2 bump

Signed-off-by: William Hubbs  gentoo.org>

 dev-python/django-cacheops/Manifest |  1 +
 .../django-cacheops/django-cacheops-4.2.ebuild  | 21 +
 2 files changed, 22 insertions(+)

diff --git a/dev-python/django-cacheops/Manifest 
b/dev-python/django-cacheops/Manifest
index 5154104c4b9..8cfb1cae89e 100644
--- a/dev-python/django-cacheops/Manifest
+++ b/dev-python/django-cacheops/Manifest
@@ -1 +1,2 @@
 DIST django-cacheops-4.1.tar.gz 53766 BLAKE2B 
f74fa8b93700fa930f31e8db83b161c48eb520894d3e2072bf50ca4e18b20a8563438ac95ef5920a1371b3215a0d3b7c2a216a9d1f040cc51f4d468da438a966
 SHA512 
ea66f0744d9b0e3b03e92ee7083c17150c050a992e25159c50f766898d7ab9e2bcb0432db135abcc2dac03587d2e86a8216ddf9afcdbb6c7400c3844ac02
+DIST django-cacheops-4.2.tar.gz 50240 BLAKE2B 
87ef35097f3c521ac21e614adf3b05d871b562d2a463921ba70ce3f7f4a4f7c1b6966e27077dd95016f10649cc1127fe1f7f65bd6353f86cc4395c59d20ea60e
 SHA512 
8caa9b9ffed45bbc6039cb14ce311f714160aca2111408ae1505bbd78d0b8b4057e9414994bd0d0c1334392e83b4c27ca59e0ac1db01e3a56c409f2806bdaa27

diff --git a/dev-python/django-cacheops/django-cacheops-4.2.ebuild 
b/dev-python/django-cacheops/django-cacheops-4.2.ebuild
new file mode 100644
index 000..70cd85f5d6e
--- /dev/null
+++ b/dev-python/django-cacheops/django-cacheops-4.2.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_6 python3_7 )
+inherit distutils-r1
+
+DESCRIPTION="ORM cache with automatic granular event-driven invalidation for 
Django"
+HOMEPAGE="https://github.com/Suor/django-cacheops;
+SRC_URI="mirror://pypi/${PN:0:1}"/${PN}/${P}.tar.gz
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND=">=dev-python/django-1.8[${PYTHON_USEDEP}]
+   >=dev-python/redis-py-2.9.1[${PYTHON_USEDEP}]
+   >=dev-python/funcy-1.8[${PYTHON_USEDEP}]
+   >=dev-python/six-1.4.0[${PYTHON_USEDEP}]"
+RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-cacheops/

2020-01-25 Thread Michał Górny
commit: d2c509d4f72f48179542b5af74bb459f785f1530
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jan 25 20:34:48 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jan 25 20:53:59 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2c509d4

dev-python/django-cacheops: Remove Python 2

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

 dev-python/django-cacheops/django-cacheops-4.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/django-cacheops/django-cacheops-4.1.ebuild 
b/dev-python/django-cacheops/django-cacheops-4.1.ebuild
index af2b5741984..b3307f6ba05 100644
--- a/dev-python/django-cacheops/django-cacheops-4.1.ebuild
+++ b/dev-python/django-cacheops/django-cacheops-4.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-PYTHON_COMPAT=( python2_7 python3_6 )
+PYTHON_COMPAT=( python3_6 )
 inherit distutils-r1
 
 DESCRIPTION="ORM cache with automatic granular event-driven invalidation for 
Django"



[gentoo-commits] repo/gentoo:master commit in: dev-python/django-cacheops/

2019-07-15 Thread William Hubbs
commit: e0ea4cedc7e653c12547dcbd099c64f8060561a1
Author: William Hubbs  sony  com>
AuthorDate: Mon Jul 15 23:13:01 2019 +
Commit: William Hubbs  gentoo  org>
CommitDate: Mon Jul 15 23:16:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0ea4ced

dev-python/django-cacheops: cache with automatic event-driven invalidation

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: William Hubbs  gentoo.org>

 dev-python/django-cacheops/Manifest |  1 +
 .../django-cacheops/django-cacheops-4.1.ebuild  | 21 +
 dev-python/django-cacheops/metadata.xml | 11 +++
 3 files changed, 33 insertions(+)

diff --git a/dev-python/django-cacheops/Manifest 
b/dev-python/django-cacheops/Manifest
new file mode 100644
index 000..5154104c4b9
--- /dev/null
+++ b/dev-python/django-cacheops/Manifest
@@ -0,0 +1 @@
+DIST django-cacheops-4.1.tar.gz 53766 BLAKE2B 
f74fa8b93700fa930f31e8db83b161c48eb520894d3e2072bf50ca4e18b20a8563438ac95ef5920a1371b3215a0d3b7c2a216a9d1f040cc51f4d468da438a966
 SHA512 
ea66f0744d9b0e3b03e92ee7083c17150c050a992e25159c50f766898d7ab9e2bcb0432db135abcc2dac03587d2e86a8216ddf9afcdbb6c7400c3844ac02

diff --git a/dev-python/django-cacheops/django-cacheops-4.1.ebuild 
b/dev-python/django-cacheops/django-cacheops-4.1.ebuild
new file mode 100644
index 000..af2b5741984
--- /dev/null
+++ b/dev-python/django-cacheops/django-cacheops-4.1.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_6 )
+inherit distutils-r1
+
+DESCRIPTION="ORM cache with automatic granular event-driven invalidation for 
Django"
+HOMEPAGE="https://github.com/Suor/django-cacheops;
+SRC_URI="mirror://pypi/${PN:0:1}"/${PN}/${P}.tar.gz
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND=">=dev-python/django-1.8[${PYTHON_USEDEP}]
+   >=dev-python/redis-py-2.9.1[${PYTHON_USEDEP}]
+   >=dev-python/funcy-1.8[${PYTHON_USEDEP}]
+   >=dev-python/six-1.4.0[${PYTHON_USEDEP}]"
+RDEPEND="${DEPEND}"

diff --git a/dev-python/django-cacheops/metadata.xml 
b/dev-python/django-cacheops/metadata.xml
new file mode 100644
index 000..5d3d9dc0e2a
--- /dev/null
+++ b/dev-python/django-cacheops/metadata.xml
@@ -0,0 +1,11 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   pyt...@gentoo.org
+   
+   
+   willi...@gentoo.org
+   William Hubbs
+   
+