public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/django-registration/
@ 2023-04-16 10:13 Alfredo Tupone
  0 siblings, 0 replies; 6+ messages in thread
From: Alfredo Tupone @ 2023-04-16 10:13 UTC (permalink / raw
  To: gentoo-commits

commit:     8083b8b3f9d28da81ec8f13e8bd48f1b3a631502
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 16 09:51:06 2023 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sun Apr 16 10:08:43 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8083b8b3

dev-python/django-registration: new package, add 3.3

Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-python/django-registration/Manifest            |  1 +
 .../django-registration-3.3.ebuild                 | 27 ++++++++++++++++++++++
 dev-python/django-registration/metadata.xml        | 12 ++++++++++
 3 files changed, 40 insertions(+)

diff --git a/dev-python/django-registration/Manifest b/dev-python/django-registration/Manifest
new file mode 100644
index 000000000000..bfddf811c2f3
--- /dev/null
+++ b/dev-python/django-registration/Manifest
@@ -0,0 +1 @@
+DIST django-registration-3.3.gh.tar.gz 77483 BLAKE2B 4d65479983a5aa104daffe07ed84218250893ccf6df44e5533473d587a6e76fe71c905124af3909efda515ea84df49f27eafc32f23480ca3e1f6ef55607b3cd7 SHA512 66ef0de4c1adb303717cf87e9d3ce7ab07ca60bab64cbc810f61f31d05a968c0b4fa216b90e7ad575e647c6fdb789ea875c428b0ca8b0104d055ed0882aae144

diff --git a/dev-python/django-registration/django-registration-3.3.ebuild b/dev-python/django-registration/django-registration-3.3.ebuild
new file mode 100644
index 000000000000..385e2ce8ccb0
--- /dev/null
+++ b/dev-python/django-registration/django-registration-3.3.ebuild
@@ -0,0 +1,27 @@
+# Copyright 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="user-registration application for Django"
+HOMEPAGE="
+	https://pypi.org/project/django-registration/
+	https://github.com/ubernostrum/django-registration/
+"
+SRC_URI="
+	https://github.com/ubernostrum/${PN}/archive/refs/tags/${PV}.tar.gz
+		-> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+RESTRICT="test" # Tests are not working here
+
+RDEPEND="dev-python/django[${PYTHON_USEDEP}]"
+
+distutils_enable_tests pytest

diff --git a/dev-python/django-registration/metadata.xml b/dev-python/django-registration/metadata.xml
new file mode 100644
index 000000000000..399da25e9adf
--- /dev/null
+++ b/dev-python/django-registration/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>tupone@gentoo.org</email>
+		<name>Tupone Alfredo</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="pypi">django-registration</remote-id>
+		<remote-id type="github">ubernostrum/django-registration</remote-id>
+	</upstream>
+</pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/django-registration/
@ 2023-07-22 12:26 Alfredo Tupone
  0 siblings, 0 replies; 6+ messages in thread
From: Alfredo Tupone @ 2023-07-22 12:26 UTC (permalink / raw
  To: gentoo-commits

commit:     f89da530cc7009af6f7f91fef63f2a278da0f0e1
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 22 12:26:21 2023 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sat Jul 22 12:26:21 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f89da530

dev-python/django-registration: fix dep and enable test

Closes: https://bugs.gentoo.org/909579
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 ...istration-3.3.ebuild => django-registration-3.3-r1.ebuild} | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/dev-python/django-registration/django-registration-3.3.ebuild b/dev-python/django-registration/django-registration-3.3-r1.ebuild
similarity index 73%
rename from dev-python/django-registration/django-registration-3.3.ebuild
rename to dev-python/django-registration/django-registration-3.3-r1.ebuild
index 385e2ce8ccb0..ae512f2de161 100644
--- a/dev-python/django-registration/django-registration-3.3.ebuild
+++ b/dev-python/django-registration/django-registration-3.3-r1.ebuild
@@ -20,8 +20,13 @@ SRC_URI="
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64"
-RESTRICT="test" # Tests are not working here
 
-RDEPEND="dev-python/django[${PYTHON_USEDEP}]"
+RDEPEND="
+	dev-python/django[${PYTHON_USEDEP}]
+	dev-python/confusable_homoglyphs[${PYTHON_USEDEP}]
+"
 
-distutils_enable_tests pytest
+python_test() {
+	"${EPYTHON}" runtests.py \
+		|| die "Tests failed with ${EPYTHON}"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/django-registration/
@ 2023-10-12 19:29 Alfredo Tupone
  0 siblings, 0 replies; 6+ messages in thread
From: Alfredo Tupone @ 2023-10-12 19:29 UTC (permalink / raw
  To: gentoo-commits

commit:     d7554704422db802bf0b3cf8a37236760c4d4bed
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 12 19:28:02 2023 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Thu Oct 12 19:28:42 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7554704

dev-python/django-registration: add 3.4

Closes: https://bugs.gentoo.org/915329
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-python/django-registration/Manifest            |  1 +
 .../django-registration-3.4.ebuild                 | 32 ++++++++++++++++++++++
 2 files changed, 33 insertions(+)

diff --git a/dev-python/django-registration/Manifest b/dev-python/django-registration/Manifest
index bfddf811c2f3..c84cc92e3e31 100644
--- a/dev-python/django-registration/Manifest
+++ b/dev-python/django-registration/Manifest
@@ -1 +1,2 @@
 DIST django-registration-3.3.gh.tar.gz 77483 BLAKE2B 4d65479983a5aa104daffe07ed84218250893ccf6df44e5533473d587a6e76fe71c905124af3909efda515ea84df49f27eafc32f23480ca3e1f6ef55607b3cd7 SHA512 66ef0de4c1adb303717cf87e9d3ce7ab07ca60bab64cbc810f61f31d05a968c0b4fa216b90e7ad575e647c6fdb789ea875c428b0ca8b0104d055ed0882aae144
+DIST django-registration-3.4.gh.tar.gz 81582 BLAKE2B bc3ee4ed806486c8a0422cc4ef62c2628f6b5880e0aa63ffdfd5ba7f90967c96c5cd7555faf58254e0a49bdb025b9bdf8eb212bfce4596db7db4f97e4eb3400d SHA512 b6c87cbaeb9548e2c2d8672078b5967aee1e881c2b880193ba410a8c293c93fd0c8e57abac8deda2cb6f61a11936fd5c72060e4954f1d74de1e3a3646b63885b

diff --git a/dev-python/django-registration/django-registration-3.4.ebuild b/dev-python/django-registration/django-registration-3.4.ebuild
new file mode 100644
index 000000000000..36c13a4671a0
--- /dev/null
+++ b/dev-python/django-registration/django-registration-3.4.ebuild
@@ -0,0 +1,32 @@
+# Copyright 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="user-registration application for Django"
+HOMEPAGE="
+	https://pypi.org/project/django-registration/
+	https://github.com/ubernostrum/django-registration/
+"
+SRC_URI="
+	https://github.com/ubernostrum/${PN}/archive/refs/tags/${PV}.tar.gz
+		-> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+	dev-python/django[${PYTHON_USEDEP}]
+	dev-python/confusable_homoglyphs[${PYTHON_USEDEP}]
+"
+
+python_test() {
+	local -x DJANGO_SETTINGS_MODULE=tests.settings
+	PYTHONPATH=. "${EPYTHON}" runtests.py || die "Tests failed with ${EPYTHON}"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/django-registration/
@ 2023-12-30 18:28 Michał Górny
  0 siblings, 0 replies; 6+ messages in thread
From: Michał Górny @ 2023-12-30 18:28 UTC (permalink / raw
  To: gentoo-commits

commit:     8278690957c624fd13a6c1ee07762f7b3cea3430
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 30 18:27:17 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Dec 30 18:27:17 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82786909

dev-python/django-registration: Remove old

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

 dev-python/django-registration/Manifest            |  1 -
 .../django-registration-3.3-r1.ebuild              | 32 ----------------------
 2 files changed, 33 deletions(-)

diff --git a/dev-python/django-registration/Manifest b/dev-python/django-registration/Manifest
index c84cc92e3e31..442eacfc477c 100644
--- a/dev-python/django-registration/Manifest
+++ b/dev-python/django-registration/Manifest
@@ -1,2 +1 @@
-DIST django-registration-3.3.gh.tar.gz 77483 BLAKE2B 4d65479983a5aa104daffe07ed84218250893ccf6df44e5533473d587a6e76fe71c905124af3909efda515ea84df49f27eafc32f23480ca3e1f6ef55607b3cd7 SHA512 66ef0de4c1adb303717cf87e9d3ce7ab07ca60bab64cbc810f61f31d05a968c0b4fa216b90e7ad575e647c6fdb789ea875c428b0ca8b0104d055ed0882aae144
 DIST django-registration-3.4.gh.tar.gz 81582 BLAKE2B bc3ee4ed806486c8a0422cc4ef62c2628f6b5880e0aa63ffdfd5ba7f90967c96c5cd7555faf58254e0a49bdb025b9bdf8eb212bfce4596db7db4f97e4eb3400d SHA512 b6c87cbaeb9548e2c2d8672078b5967aee1e881c2b880193ba410a8c293c93fd0c8e57abac8deda2cb6f61a11936fd5c72060e4954f1d74de1e3a3646b63885b

diff --git a/dev-python/django-registration/django-registration-3.3-r1.ebuild b/dev-python/django-registration/django-registration-3.3-r1.ebuild
deleted file mode 100644
index ae512f2de161..000000000000
--- a/dev-python/django-registration/django-registration-3.3-r1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 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="user-registration application for Django"
-HOMEPAGE="
-	https://pypi.org/project/django-registration/
-	https://github.com/ubernostrum/django-registration/
-"
-SRC_URI="
-	https://github.com/ubernostrum/${PN}/archive/refs/tags/${PV}.tar.gz
-		-> ${P}.gh.tar.gz
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-	dev-python/django[${PYTHON_USEDEP}]
-	dev-python/confusable_homoglyphs[${PYTHON_USEDEP}]
-"
-
-python_test() {
-	"${EPYTHON}" runtests.py \
-		|| die "Tests failed with ${EPYTHON}"
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/django-registration/
@ 2023-12-31 12:23 Alfredo Tupone
  0 siblings, 0 replies; 6+ messages in thread
From: Alfredo Tupone @ 2023-12-31 12:23 UTC (permalink / raw
  To: gentoo-commits

commit:     f0d905e58010dd06fdbd5ea21faee46818f07010
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 31 12:23:10 2023 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sun Dec 31 12:23:24 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0d905e5

dev-python/django-registration: enable py3.12

Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

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

diff --git a/dev-python/django-registration/django-registration-3.4.ebuild b/dev-python/django-registration/django-registration-3.4.ebuild
index 36c13a4671a0..1b920a7d89ac 100644
--- a/dev-python/django-registration/django-registration-3.4.ebuild
+++ b/dev-python/django-registration/django-registration-3.4.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{9..12} )
 inherit distutils-r1
 
 DESCRIPTION="user-registration application for Django"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-python/django-registration/
@ 2023-12-31 12:25 Alfredo Tupone
  0 siblings, 0 replies; 6+ messages in thread
From: Alfredo Tupone @ 2023-12-31 12:25 UTC (permalink / raw
  To: gentoo-commits

commit:     8ce3b593786f83fc071874bc3c7e6b579db88c9d
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 31 12:24:29 2023 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sun Dec 31 12:24:29 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ce3b593

dev-python/django-registration: drop python3_9

Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 ...django-registration-3.4.ebuild => django-registration-3.4-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/django-registration/django-registration-3.4.ebuild b/dev-python/django-registration/django-registration-3.4-r1.ebuild
similarity index 95%
rename from dev-python/django-registration/django-registration-3.4.ebuild
rename to dev-python/django-registration/django-registration-3.4-r1.ebuild
index 1b920a7d89ac..32821af1079c 100644
--- a/dev-python/django-registration/django-registration-3.4.ebuild
+++ b/dev-python/django-registration/django-registration-3.4-r1.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..12} )
+PYTHON_COMPAT=( python3_{10..12} )
 inherit distutils-r1
 
 DESCRIPTION="user-registration application for Django"


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

end of thread, other threads:[~2023-12-31 12:25 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-31 12:25 [gentoo-commits] repo/gentoo:master commit in: dev-python/django-registration/ Alfredo Tupone
  -- strict thread matches above, loose matches on Subject: below --
2023-12-31 12:23 Alfredo Tupone
2023-12-30 18:28 Michał Górny
2023-10-12 19:29 Alfredo Tupone
2023-07-22 12:26 Alfredo Tupone
2023-04-16 10:13 Alfredo Tupone

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