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; 8+ 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] 8+ 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; 8+ 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] 8+ 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; 8+ 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] 8+ 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; 8+ 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] 8+ 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; 8+ 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] 8+ 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; 8+ 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] 8+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/django-registration/
@ 2024-11-08 20:27 Michał Górny
  0 siblings, 0 replies; 8+ messages in thread
From: Michał Górny @ 2024-11-08 20:27 UTC (permalink / raw
  To: gentoo-commits

commit:     d958a498ab4663d54906de14d5dfc31e634636f9
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Nov  8 20:08:06 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Nov  8 20:26:53 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d958a498

dev-python/django-registration: Bump to 5.1.0

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

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

diff --git a/dev-python/django-registration/Manifest b/dev-python/django-registration/Manifest
index 442eacfc477c..9f61ba456cd8 100644
--- a/dev-python/django-registration/Manifest
+++ b/dev-python/django-registration/Manifest
@@ -1 +1,2 @@
 DIST django-registration-3.4.gh.tar.gz 81582 BLAKE2B bc3ee4ed806486c8a0422cc4ef62c2628f6b5880e0aa63ffdfd5ba7f90967c96c5cd7555faf58254e0a49bdb025b9bdf8eb212bfce4596db7db4f97e4eb3400d SHA512 b6c87cbaeb9548e2c2d8672078b5967aee1e881c2b880193ba410a8c293c93fd0c8e57abac8deda2cb6f61a11936fd5c72060e4954f1d74de1e3a3646b63885b
+DIST django-registration-5.1.0.gh.tar.gz 92245 BLAKE2B ccd1c0c34a0a579877b36eb25639887d148132ce552ef3fa9df5f36a0f05a5f7d290f6f1a5b2e8584dec53b6646cdf776a0a2154792f06432d38813badf98975 SHA512 81feb228c27ed433a97546e4ace794f8718d6c3a5d741507d36cb142a63aa20f31259604945dde0020656d8240e0e4cf46295b0e9082e2e1a9cb4fb025472ff8

diff --git a/dev-python/django-registration/django-registration-5.1.0.ebuild b/dev-python/django-registration/django-registration-5.1.0.ebuild
new file mode 100644
index 000000000000..3596be0ba0de
--- /dev/null
+++ b/dev-python/django-registration/django-registration-5.1.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=pdm-backend
+PYTHON_COMPAT=( python3_{10..13} )
+
+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/confusable-homoglyphs-3.0[${PYTHON_USEDEP}]
+	>=dev-python/django-4.2[${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] 8+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/django-registration/
@ 2024-12-20 21:24 Alfredo Tupone
  0 siblings, 0 replies; 8+ messages in thread
From: Alfredo Tupone @ 2024-12-20 21:24 UTC (permalink / raw
  To: gentoo-commits

commit:     f5ea786b65f93389b3280c48a6117ef43420bc1a
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 20 21:24:20 2024 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Fri Dec 20 21:24:20 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5ea786b

dev-python/django-registration: fix deps for musl

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

 ...ngo-registration-5.1.0.ebuild => django-registration-5.1.0-r1.ebuild} | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/django-registration/django-registration-5.1.0.ebuild b/dev-python/django-registration/django-registration-5.1.0-r1.ebuild
similarity index 95%
rename from dev-python/django-registration/django-registration-5.1.0.ebuild
rename to dev-python/django-registration/django-registration-5.1.0-r1.ebuild
index 3596be0ba0de..d74dfaecf947 100644
--- a/dev-python/django-registration/django-registration-5.1.0.ebuild
+++ b/dev-python/django-registration/django-registration-5.1.0-r1.ebuild
@@ -25,6 +25,7 @@ KEYWORDS="~amd64"
 RDEPEND="
 	>=dev-python/confusable-homoglyphs-3.0[${PYTHON_USEDEP}]
 	>=dev-python/django-4.2[${PYTHON_USEDEP}]
+	elibc_musl? ( dev-python/tzdata )
 "
 
 python_test() {


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

end of thread, other threads:[~2024-12-20 21:25 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-08 20:27 [gentoo-commits] repo/gentoo:master commit in: dev-python/django-registration/ Michał Górny
  -- strict thread matches above, loose matches on Subject: below --
2024-12-20 21:24 Alfredo Tupone
2023-12-31 12:25 Alfredo Tupone
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