* [gentoo-commits] repo/gentoo:master commit in: dev-python/crispy-bootstrap4/
@ 2023-04-01 23:19 Sam James
0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2023-04-01 23:19 UTC (permalink / raw
To: gentoo-commits
commit: aae7329b777ab55906458a30d216d73a12e36293
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 1 23:05:05 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Apr 1 23:19:04 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aae7329b
dev-python/crispy-bootstrap4: update DESCRIPTION, HOMEPAGE (fix 3->4 typo)
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-python/crispy-bootstrap4/crispy-bootstrap4-2022.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/crispy-bootstrap4/crispy-bootstrap4-2022.1.ebuild b/dev-python/crispy-bootstrap4/crispy-bootstrap4-2022.1.ebuild
index c4ec3ed11b1c..38d53e65eb40 100644
--- a/dev-python/crispy-bootstrap4/crispy-bootstrap4-2022.1.ebuild
+++ b/dev-python/crispy-bootstrap4/crispy-bootstrap4-2022.1.ebuild
@@ -7,9 +7,9 @@ DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{9..11} )
inherit distutils-r1
-DESCRIPTION="Bootstrap3 template pack for django-crispy-forms"
+DESCRIPTION="Bootstrap4 template pack for django-crispy-forms"
HOMEPAGE="
- https://pypi.org/project/crispy-bootstrap3/
+ https://pypi.org/project/crispy-bootstrap4/
"
SRC_URI="https://github.com/django-crispy-forms/${PN}/archive/refs/tags/${PV}.tar.gz
-> ${P}.gh.tar.gz"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/crispy-bootstrap4/
@ 2023-04-02 12:44 Alfredo Tupone
0 siblings, 0 replies; 13+ messages in thread
From: Alfredo Tupone @ 2023-04-02 12:44 UTC (permalink / raw
To: gentoo-commits
commit: 1c71b614107fed9ce1cc1ae0780e8a9a02489404
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 2 12:39:20 2023 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sun Apr 2 12:44:15 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c71b614
dev-python/crispy-bootstrap4: fix test deps
Closes: https://bugs.gentoo.org/903673
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
dev-python/crispy-bootstrap4/crispy-bootstrap4-2022.1.ebuild | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/dev-python/crispy-bootstrap4/crispy-bootstrap4-2022.1.ebuild b/dev-python/crispy-bootstrap4/crispy-bootstrap4-2022.1.ebuild
index 38d53e65eb40..1603b39db3f0 100644
--- a/dev-python/crispy-bootstrap4/crispy-bootstrap4-2022.1.ebuild
+++ b/dev-python/crispy-bootstrap4/crispy-bootstrap4-2022.1.ebuild
@@ -17,8 +17,12 @@ SRC_URI="https://github.com/django-crispy-forms/${PN}/archive/refs/tags/${PV}.ta
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
+IUSE="test"
RDEPEND="dev-python/django-crispy-forms[${PYTHON_USEDEP}]"
+BDEPEND="test? (
+ dev-python/pytest-django[${PYTHON_USEDEP}]
+)"
distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/crispy-bootstrap4/
@ 2023-10-16 3:52 Michał Górny
0 siblings, 0 replies; 13+ messages in thread
From: Michał Górny @ 2023-10-16 3:52 UTC (permalink / raw
To: gentoo-commits
commit: 3c8257fba3c2b0ecd2808251d41769d1f0386345
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 16 03:51:53 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Oct 16 03:51:53 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c8257fb
dev-python/crispy-bootstrap4: Enable py3.12
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
.../crispy-bootstrap4-2022.1.ebuild | 27 ++++++++++++++--------
1 file changed, 18 insertions(+), 9 deletions(-)
diff --git a/dev-python/crispy-bootstrap4/crispy-bootstrap4-2022.1.ebuild b/dev-python/crispy-bootstrap4/crispy-bootstrap4-2022.1.ebuild
index 1603b39db3f0..98602ed39570 100644
--- a/dev-python/crispy-bootstrap4/crispy-bootstrap4-2022.1.ebuild
+++ b/dev-python/crispy-bootstrap4/crispy-bootstrap4-2022.1.ebuild
@@ -4,26 +4,35 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..12} )
+
inherit distutils-r1
DESCRIPTION="Bootstrap4 template pack for django-crispy-forms"
HOMEPAGE="
+ https://github.com/django-crispy-forms/crispy-bootstrap4/
https://pypi.org/project/crispy-bootstrap4/
"
-SRC_URI="https://github.com/django-crispy-forms/${PN}/archive/refs/tags/${PV}.tar.gz
- -> ${P}.gh.tar.gz"
+SRC_URI="
+ https://github.com/django-crispy-forms/crispy-bootstrap4/archive/${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RDEPEND="dev-python/django-crispy-forms[${PYTHON_USEDEP}]"
-BDEPEND="test? (
- dev-python/pytest-django[${PYTHON_USEDEP}]
-)"
+RDEPEND="
+ dev-python/django-crispy-forms[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ test? (
+ dev-python/pytest-django[${PYTHON_USEDEP}]
+ )
+"
distutils_enable_tests pytest
-PATCHES=( "${FILESDIR}"/${P}-test.patch )
+PATCHES=(
+ "${FILESDIR}"/${P}-test.patch
+)
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/crispy-bootstrap4/
@ 2023-10-17 3:03 Michał Górny
0 siblings, 0 replies; 13+ messages in thread
From: Michał Górny @ 2023-10-17 3:03 UTC (permalink / raw
To: gentoo-commits
commit: 0f4a76ac1ce0fbf06ac53acb1449d5ac92c82d63
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 17 02:48:44 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Oct 17 02:48:44 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f4a76ac
dev-python/crispy-bootstrap4: Bump to 2023.1
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/crispy-bootstrap4/Manifest | 1 +
.../crispy-bootstrap4-2023.1.ebuild | 35 ++++++++++++++++++++++
2 files changed, 36 insertions(+)
diff --git a/dev-python/crispy-bootstrap4/Manifest b/dev-python/crispy-bootstrap4/Manifest
index 5c4459a71470..c8ca1b4b70f4 100644
--- a/dev-python/crispy-bootstrap4/Manifest
+++ b/dev-python/crispy-bootstrap4/Manifest
@@ -1 +1,2 @@
DIST crispy-bootstrap4-2022.1.gh.tar.gz 30814 BLAKE2B 573847b614b5f6cf71fea6ed6831eeef48ac01b2c2db07653d600b5b0829209188d235a143585ed4fabb663264aff3b5f7a416d99d12a8e268d4c62edaf3db84 SHA512 7f1e5443229274de2aaf28bd63507bbe5dff7923f27509801ea9de9246fa393bfc4563a4aa6d586a1e642b87bb7dddcb3ad3403653912c0197f8638141c42229
+DIST crispy-bootstrap4-2023.1.gh.tar.gz 31707 BLAKE2B 0a3c4c1b86ba9701365f1fcfb90811e1f6793fb9f374a510410c460bc62a48e06b72a75330f0efd3a06e51380f457eea66f236488774c3ee6bf758510136f08b SHA512 fbbc8c6e0f4351b50b0fa3a4d2faefb0775906c995f42cf9ccd9688d4780e05877a9a53f065ad92785d135a560064809f429dbcebe9f257f65f063d9539973e8
diff --git a/dev-python/crispy-bootstrap4/crispy-bootstrap4-2023.1.ebuild b/dev-python/crispy-bootstrap4/crispy-bootstrap4-2023.1.ebuild
new file mode 100644
index 000000000000..91cf18b22f0e
--- /dev/null
+++ b/dev-python/crispy-bootstrap4/crispy-bootstrap4-2023.1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1
+
+DESCRIPTION="Bootstrap4 template pack for django-crispy-forms"
+HOMEPAGE="
+ https://github.com/django-crispy-forms/crispy-bootstrap4/
+ https://pypi.org/project/crispy-bootstrap4/
+"
+SRC_URI="
+ https://github.com/django-crispy-forms/crispy-bootstrap4/archive/${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+ >=dev-python/django-4.2[${PYTHON_USEDEP}]
+ >=dev-python/django-crispy-forms-2.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ test? (
+ dev-python/pytest-django[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/crispy-bootstrap4/
@ 2024-02-28 4:03 Michał Górny
0 siblings, 0 replies; 13+ messages in thread
From: Michał Górny @ 2024-02-28 4:03 UTC (permalink / raw
To: gentoo-commits
commit: 6aab79c82dbc8d2e9a0d2db9dec9ac82f4bfbee4
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 28 03:50:59 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb 28 04:02:58 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6aab79c8
dev-python/crispy-bootstrap4: Bump to 2024.1
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/crispy-bootstrap4/Manifest | 1 +
.../crispy-bootstrap4-2024.1.ebuild | 35 ++++++++++++++++++++++
2 files changed, 36 insertions(+)
diff --git a/dev-python/crispy-bootstrap4/Manifest b/dev-python/crispy-bootstrap4/Manifest
index 93eb3e0186a0..834baab14ce7 100644
--- a/dev-python/crispy-bootstrap4/Manifest
+++ b/dev-python/crispy-bootstrap4/Manifest
@@ -1 +1,2 @@
DIST crispy-bootstrap4-2023.1.gh.tar.gz 31707 BLAKE2B 0a3c4c1b86ba9701365f1fcfb90811e1f6793fb9f374a510410c460bc62a48e06b72a75330f0efd3a06e51380f457eea66f236488774c3ee6bf758510136f08b SHA512 fbbc8c6e0f4351b50b0fa3a4d2faefb0775906c995f42cf9ccd9688d4780e05877a9a53f065ad92785d135a560064809f429dbcebe9f257f65f063d9539973e8
+DIST crispy-bootstrap4-2024.1.gh.tar.gz 31818 BLAKE2B 5778544067c7c23971a410bb52556a267fed9109bee4b5a4cd7e72c9bde0888e6744c2e12aa079c92217c0b6bc0ef2709de2eae127fe92ccc92ca1acb5015aa6 SHA512 c4c4e02117a2b3cf24c9111579c20f1454c5feb8c485c954e48436354e82d0a26e34b54212fb642d010a7c370236028119e5193fdb43ff2053cabae56a01a7c2
diff --git a/dev-python/crispy-bootstrap4/crispy-bootstrap4-2024.1.ebuild b/dev-python/crispy-bootstrap4/crispy-bootstrap4-2024.1.ebuild
new file mode 100644
index 000000000000..4f779d097fda
--- /dev/null
+++ b/dev-python/crispy-bootstrap4/crispy-bootstrap4-2024.1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1
+
+DESCRIPTION="Bootstrap4 template pack for django-crispy-forms"
+HOMEPAGE="
+ https://github.com/django-crispy-forms/crispy-bootstrap4/
+ https://pypi.org/project/crispy-bootstrap4/
+"
+SRC_URI="
+ https://github.com/django-crispy-forms/crispy-bootstrap4/archive/${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+ >=dev-python/django-4.2[${PYTHON_USEDEP}]
+ >=dev-python/django-crispy-forms-2.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ test? (
+ dev-python/pytest-django[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/crispy-bootstrap4/
@ 2024-06-20 16:33 Michał Górny
0 siblings, 0 replies; 13+ messages in thread
From: Michał Górny @ 2024-06-20 16:33 UTC (permalink / raw
To: gentoo-commits
commit: cf5233b47d499ab48bd69d2292f19b19fe14b793
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 20 16:29:23 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Jun 20 16:33:15 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf5233b4
dev-python/crispy-bootstrap4: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/crispy-bootstrap4/Manifest | 1 -
.../crispy-bootstrap4-2023.1.ebuild | 35 ----------------------
2 files changed, 36 deletions(-)
diff --git a/dev-python/crispy-bootstrap4/Manifest b/dev-python/crispy-bootstrap4/Manifest
index 834baab14ce7..6abc18f0806a 100644
--- a/dev-python/crispy-bootstrap4/Manifest
+++ b/dev-python/crispy-bootstrap4/Manifest
@@ -1,2 +1 @@
-DIST crispy-bootstrap4-2023.1.gh.tar.gz 31707 BLAKE2B 0a3c4c1b86ba9701365f1fcfb90811e1f6793fb9f374a510410c460bc62a48e06b72a75330f0efd3a06e51380f457eea66f236488774c3ee6bf758510136f08b SHA512 fbbc8c6e0f4351b50b0fa3a4d2faefb0775906c995f42cf9ccd9688d4780e05877a9a53f065ad92785d135a560064809f429dbcebe9f257f65f063d9539973e8
DIST crispy-bootstrap4-2024.1.gh.tar.gz 31818 BLAKE2B 5778544067c7c23971a410bb52556a267fed9109bee4b5a4cd7e72c9bde0888e6744c2e12aa079c92217c0b6bc0ef2709de2eae127fe92ccc92ca1acb5015aa6 SHA512 c4c4e02117a2b3cf24c9111579c20f1454c5feb8c485c954e48436354e82d0a26e34b54212fb642d010a7c370236028119e5193fdb43ff2053cabae56a01a7c2
diff --git a/dev-python/crispy-bootstrap4/crispy-bootstrap4-2023.1.ebuild b/dev-python/crispy-bootstrap4/crispy-bootstrap4-2023.1.ebuild
deleted file mode 100644
index 91cf18b22f0e..000000000000
--- a/dev-python/crispy-bootstrap4/crispy-bootstrap4-2023.1.ebuild
+++ /dev/null
@@ -1,35 +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_{10..12} )
-
-inherit distutils-r1
-
-DESCRIPTION="Bootstrap4 template pack for django-crispy-forms"
-HOMEPAGE="
- https://github.com/django-crispy-forms/crispy-bootstrap4/
- https://pypi.org/project/crispy-bootstrap4/
-"
-SRC_URI="
- https://github.com/django-crispy-forms/crispy-bootstrap4/archive/${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
- >=dev-python/django-4.2[${PYTHON_USEDEP}]
- >=dev-python/django-crispy-forms-2.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
- test? (
- dev-python/pytest-django[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/crispy-bootstrap4/
@ 2024-06-20 16:33 Michał Górny
0 siblings, 0 replies; 13+ messages in thread
From: Michał Górny @ 2024-06-20 16:33 UTC (permalink / raw
To: gentoo-commits
commit: d567ea8c14d648201578b56e70d13139fbda57a7
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 20 16:32:28 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Jun 20 16:33:18 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d567ea8c
dev-python/crispy-bootstrap4: Enable py3.13
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/crispy-bootstrap4/crispy-bootstrap4-2024.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-python/crispy-bootstrap4/crispy-bootstrap4-2024.1.ebuild b/dev-python/crispy-bootstrap4/crispy-bootstrap4-2024.1.ebuild
index 4f779d097fda..a566d2401f56 100644
--- a/dev-python/crispy-bootstrap4/crispy-bootstrap4-2024.1.ebuild
+++ b/dev-python/crispy-bootstrap4/crispy-bootstrap4-2024.1.ebuild
@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/crispy-bootstrap4/
@ 2024-10-06 2:30 Michał Górny
0 siblings, 0 replies; 13+ messages in thread
From: Michał Górny @ 2024-10-06 2:30 UTC (permalink / raw
To: gentoo-commits
commit: 38f64cfed77a264113e7afd734d957ba20f1a744
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 6 02:19:11 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Oct 6 02:30:46 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38f64cfe
dev-python/crispy-bootstrap4: Bump to 2024.10
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/crispy-bootstrap4/Manifest | 1 +
.../crispy-bootstrap4-2024.10.ebuild | 35 ++++++++++++++++++++++
2 files changed, 36 insertions(+)
diff --git a/dev-python/crispy-bootstrap4/Manifest b/dev-python/crispy-bootstrap4/Manifest
index 6abc18f0806a..54a361a79d47 100644
--- a/dev-python/crispy-bootstrap4/Manifest
+++ b/dev-python/crispy-bootstrap4/Manifest
@@ -1 +1,2 @@
DIST crispy-bootstrap4-2024.1.gh.tar.gz 31818 BLAKE2B 5778544067c7c23971a410bb52556a267fed9109bee4b5a4cd7e72c9bde0888e6744c2e12aa079c92217c0b6bc0ef2709de2eae127fe92ccc92ca1acb5015aa6 SHA512 c4c4e02117a2b3cf24c9111579c20f1454c5feb8c485c954e48436354e82d0a26e34b54212fb642d010a7c370236028119e5193fdb43ff2053cabae56a01a7c2
+DIST crispy-bootstrap4-2024.10.gh.tar.gz 32278 BLAKE2B 8104bc4964fa11df05a6b6e244e4c58cc678225afdedf4a72749cc74986d8b763c6fe32aba9376d2a4077ac765c06df4582fa796caee885e82156c81369dcf16 SHA512 4cd7cde7d987baa5f6806076fe7f991e450544427deee9b0e64a45acd94b2987352369a6d277b90e6c9ff19e35225a3b5bc219336725b67e4aa0c8280cd6ac12
diff --git a/dev-python/crispy-bootstrap4/crispy-bootstrap4-2024.10.ebuild b/dev-python/crispy-bootstrap4/crispy-bootstrap4-2024.10.ebuild
new file mode 100644
index 000000000000..a566d2401f56
--- /dev/null
+++ b/dev-python/crispy-bootstrap4/crispy-bootstrap4-2024.10.ebuild
@@ -0,0 +1,35 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..13} )
+
+inherit distutils-r1
+
+DESCRIPTION="Bootstrap4 template pack for django-crispy-forms"
+HOMEPAGE="
+ https://github.com/django-crispy-forms/crispy-bootstrap4/
+ https://pypi.org/project/crispy-bootstrap4/
+"
+SRC_URI="
+ https://github.com/django-crispy-forms/crispy-bootstrap4/archive/${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+ >=dev-python/django-4.2[${PYTHON_USEDEP}]
+ >=dev-python/django-crispy-forms-2.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ test? (
+ dev-python/pytest-django[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/crispy-bootstrap4/
@ 2025-04-26 19:40 Alfredo Tupone
0 siblings, 0 replies; 13+ messages in thread
From: Alfredo Tupone @ 2025-04-26 19:40 UTC (permalink / raw
To: gentoo-commits
commit: dc0915a8e6799a846d9527471f96b261f3249db8
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 26 19:38:13 2025 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sat Apr 26 19:39:51 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc0915a8
dev-python/crispy-bootstrap4: keyword 2024.10 for ~arm64
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
dev-python/crispy-bootstrap4/crispy-bootstrap4-2024.10.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/crispy-bootstrap4/crispy-bootstrap4-2024.10.ebuild b/dev-python/crispy-bootstrap4/crispy-bootstrap4-2024.10.ebuild
index a566d2401f56..8d796e1d40f9 100644
--- a/dev-python/crispy-bootstrap4/crispy-bootstrap4-2024.10.ebuild
+++ b/dev-python/crispy-bootstrap4/crispy-bootstrap4-2024.10.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2023-2024 Gentoo Authors
+# Copyright 2023-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -20,7 +20,7 @@ SRC_URI="
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
RDEPEND="
>=dev-python/django-4.2[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/crispy-bootstrap4/
@ 2025-06-09 4:28 Michał Górny
0 siblings, 0 replies; 13+ messages in thread
From: Michał Górny @ 2025-06-09 4:28 UTC (permalink / raw
To: gentoo-commits
commit: a64b4a7a27a5151d1172d94f02123de08c8ca91c
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 9 04:12:58 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Jun 9 04:28:12 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a64b4a7a
dev-python/crispy-bootstrap4: Bump to 2025.6
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/crispy-bootstrap4/Manifest | 1 +
.../crispy-bootstrap4-2025.6.ebuild | 35 ++++++++++++++++++++++
2 files changed, 36 insertions(+)
diff --git a/dev-python/crispy-bootstrap4/Manifest b/dev-python/crispy-bootstrap4/Manifest
index 7c844f512aec..24f400a21925 100644
--- a/dev-python/crispy-bootstrap4/Manifest
+++ b/dev-python/crispy-bootstrap4/Manifest
@@ -1 +1,2 @@
DIST crispy-bootstrap4-2024.10.gh.tar.gz 32278 BLAKE2B 8104bc4964fa11df05a6b6e244e4c58cc678225afdedf4a72749cc74986d8b763c6fe32aba9376d2a4077ac765c06df4582fa796caee885e82156c81369dcf16 SHA512 4cd7cde7d987baa5f6806076fe7f991e450544427deee9b0e64a45acd94b2987352369a6d277b90e6c9ff19e35225a3b5bc219336725b67e4aa0c8280cd6ac12
+DIST crispy-bootstrap4-2025.6.gh.tar.gz 32715 BLAKE2B a239fba7c9d93d6455526d2dc577d6f1ce9bbe3d2ca5076d8376ad60bbaa1f56e7de103cd791ff9d16ffb4b81a4ff59a6fba8071f1098b1f1e10b7b7856cbb8b SHA512 10edf4d44931a593072c3089ec6eb82e1d42e37b4fcddbfa7c8313c868f880c9eff3d9b270f4bb31148285b9a88f9952348fe4485c76932300e2b788dd00cb91
diff --git a/dev-python/crispy-bootstrap4/crispy-bootstrap4-2025.6.ebuild b/dev-python/crispy-bootstrap4/crispy-bootstrap4-2025.6.ebuild
new file mode 100644
index 000000000000..064283ab920f
--- /dev/null
+++ b/dev-python/crispy-bootstrap4/crispy-bootstrap4-2025.6.ebuild
@@ -0,0 +1,35 @@
+# Copyright 2023-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..13} )
+
+inherit distutils-r1
+
+DESCRIPTION="Bootstrap4 template pack for django-crispy-forms"
+HOMEPAGE="
+ https://github.com/django-crispy-forms/crispy-bootstrap4/
+ https://pypi.org/project/crispy-bootstrap4/
+"
+SRC_URI="
+ https://github.com/django-crispy-forms/crispy-bootstrap4/archive/${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+RDEPEND="
+ >=dev-python/django-4.2[${PYTHON_USEDEP}]
+ >=dev-python/django-crispy-forms-2.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ test? (
+ dev-python/pytest-django[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/crispy-bootstrap4/
@ 2025-08-13 13:50 Michał Górny
0 siblings, 0 replies; 13+ messages in thread
From: Michał Górny @ 2025-08-13 13:50 UTC (permalink / raw
To: gentoo-commits
commit: b910128758f6d8ba203fa5bf55ed5d5bc46674ff
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 13 13:36:13 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Aug 13 13:50:05 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9101287
dev-python/crispy-bootstrap4: Use EPYTEST_PLUGINS
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/crispy-bootstrap4/crispy-bootstrap4-2025.6.ebuild | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/dev-python/crispy-bootstrap4/crispy-bootstrap4-2025.6.ebuild b/dev-python/crispy-bootstrap4/crispy-bootstrap4-2025.6.ebuild
index 064283ab920f..adb9b488dabb 100644
--- a/dev-python/crispy-bootstrap4/crispy-bootstrap4-2025.6.ebuild
+++ b/dev-python/crispy-bootstrap4/crispy-bootstrap4-2025.6.ebuild
@@ -26,10 +26,6 @@ RDEPEND="
>=dev-python/django-4.2[${PYTHON_USEDEP}]
>=dev-python/django-crispy-forms-2.0[${PYTHON_USEDEP}]
"
-BDEPEND="
- test? (
- dev-python/pytest-django[${PYTHON_USEDEP}]
- )
-"
+EPYTEST_PLUGINS=( pytest-django )
distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/crispy-bootstrap4/
@ 2025-08-13 13:50 Michał Górny
0 siblings, 0 replies; 13+ messages in thread
From: Michał Górny @ 2025-08-13 13:50 UTC (permalink / raw
To: gentoo-commits
commit: 11621e093da6feaab527e7c11decda50013ffe11
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 13 13:35:47 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Aug 13 13:50:04 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11621e09
dev-python/crispy-bootstrap4: Add python@ as co-maint.
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/crispy-bootstrap4/metadata.xml | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/dev-python/crispy-bootstrap4/metadata.xml b/dev-python/crispy-bootstrap4/metadata.xml
index d64ea15e9cf2..53f0cd875001 100644
--- a/dev-python/crispy-bootstrap4/metadata.xml
+++ b/dev-python/crispy-bootstrap4/metadata.xml
@@ -5,6 +5,11 @@
<email>tupone@gentoo.org</email>
<name>Tupone Alfredo</name>
</maintainer>
+ <maintainer type="project">
+ <email>python@gentoo.org</email>
+ <name>Python</name>
+ </maintainer>
+ <stabilize-allarches/>
<upstream>
<remote-id type="pypi">crispy-bootstrap4</remote-id>
<remote-id type="github">django-crispy-forms/crispy-bootstrap4</remote-id>
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-python/crispy-bootstrap4/
@ 2025-08-13 13:50 Michał Górny
0 siblings, 0 replies; 13+ messages in thread
From: Michał Górny @ 2025-08-13 13:50 UTC (permalink / raw
To: gentoo-commits
commit: 854d8ed73f6d0cbb4634d24ece3f94508a6aaf9d
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 13 13:35:24 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Aug 13 13:50:03 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=854d8ed7
dev-python/crispy-bootstrap4: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/crispy-bootstrap4/Manifest | 1 -
.../crispy-bootstrap4-2024.10.ebuild | 35 ----------------------
2 files changed, 36 deletions(-)
diff --git a/dev-python/crispy-bootstrap4/Manifest b/dev-python/crispy-bootstrap4/Manifest
index 24f400a21925..acd30a8823af 100644
--- a/dev-python/crispy-bootstrap4/Manifest
+++ b/dev-python/crispy-bootstrap4/Manifest
@@ -1,2 +1 @@
-DIST crispy-bootstrap4-2024.10.gh.tar.gz 32278 BLAKE2B 8104bc4964fa11df05a6b6e244e4c58cc678225afdedf4a72749cc74986d8b763c6fe32aba9376d2a4077ac765c06df4582fa796caee885e82156c81369dcf16 SHA512 4cd7cde7d987baa5f6806076fe7f991e450544427deee9b0e64a45acd94b2987352369a6d277b90e6c9ff19e35225a3b5bc219336725b67e4aa0c8280cd6ac12
DIST crispy-bootstrap4-2025.6.gh.tar.gz 32715 BLAKE2B a239fba7c9d93d6455526d2dc577d6f1ce9bbe3d2ca5076d8376ad60bbaa1f56e7de103cd791ff9d16ffb4b81a4ff59a6fba8071f1098b1f1e10b7b7856cbb8b SHA512 10edf4d44931a593072c3089ec6eb82e1d42e37b4fcddbfa7c8313c868f880c9eff3d9b270f4bb31148285b9a88f9952348fe4485c76932300e2b788dd00cb91
diff --git a/dev-python/crispy-bootstrap4/crispy-bootstrap4-2024.10.ebuild b/dev-python/crispy-bootstrap4/crispy-bootstrap4-2024.10.ebuild
deleted file mode 100644
index 8d796e1d40f9..000000000000
--- a/dev-python/crispy-bootstrap4/crispy-bootstrap4-2024.10.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 2023-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..13} )
-
-inherit distutils-r1
-
-DESCRIPTION="Bootstrap4 template pack for django-crispy-forms"
-HOMEPAGE="
- https://github.com/django-crispy-forms/crispy-bootstrap4/
- https://pypi.org/project/crispy-bootstrap4/
-"
-SRC_URI="
- https://github.com/django-crispy-forms/crispy-bootstrap4/archive/${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-RDEPEND="
- >=dev-python/django-4.2[${PYTHON_USEDEP}]
- >=dev-python/django-crispy-forms-2.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
- test? (
- dev-python/pytest-django[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 13+ messages in thread
end of thread, other threads:[~2025-08-13 13:50 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-13 13:50 [gentoo-commits] repo/gentoo:master commit in: dev-python/crispy-bootstrap4/ Michał Górny
-- strict thread matches above, loose matches on Subject: below --
2025-08-13 13:50 Michał Górny
2025-08-13 13:50 Michał Górny
2025-06-09 4:28 Michał Górny
2025-04-26 19:40 Alfredo Tupone
2024-10-06 2:30 Michał Górny
2024-06-20 16:33 Michał Górny
2024-06-20 16:33 Michał Górny
2024-02-28 4:03 Michał Górny
2023-10-17 3:03 Michał Górny
2023-10-16 3:52 Michał Górny
2023-04-02 12:44 Alfredo Tupone
2023-04-01 23:19 Sam James
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox