From 9ab9a2c6661b7cb6bbaeeb3fbdfedd7546b0142f Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 31 Mar 2023 22:06:41 +0100 Subject: gentoo auto-resync : 31:03:2023 - 22:06:41 --- dev-python/crispy-bootstrap5/Manifest | 4 + .../crispy-bootstrap5/crispy-bootstrap5-0.7.ebuild | 25 +++ .../files/crispy-bootstrap5-0.7-test.patch | 172 +++++++++++++++++++++ dev-python/crispy-bootstrap5/metadata.xml | 12 ++ 4 files changed, 213 insertions(+) create mode 100644 dev-python/crispy-bootstrap5/Manifest create mode 100644 dev-python/crispy-bootstrap5/crispy-bootstrap5-0.7.ebuild create mode 100644 dev-python/crispy-bootstrap5/files/crispy-bootstrap5-0.7-test.patch create mode 100644 dev-python/crispy-bootstrap5/metadata.xml (limited to 'dev-python/crispy-bootstrap5') diff --git a/dev-python/crispy-bootstrap5/Manifest b/dev-python/crispy-bootstrap5/Manifest new file mode 100644 index 000000000000..364d73adb109 --- /dev/null +++ b/dev-python/crispy-bootstrap5/Manifest @@ -0,0 +1,4 @@ +AUX crispy-bootstrap5-0.7-test.patch 6530 BLAKE2B a8a987e0a32ff4976575def65e9fdd893d7b28af9d1793de62daf6e9823023275b3a0735f037d23e82d6c0fb9143cdd6fb6d2d7787aab607c8dc0075268e8f7a SHA512 b185c09df4428f729d0f9afbbe22ba33edae059083cf28eb164e85ba971e700b112eb3bbf71952ee659302b62452de0a7ac2c0aee7e21908d55cab0d50d6d3ec +DIST crispy-bootstrap5-0.7.gh.tar.gz 29728 BLAKE2B 1209ab7d8340e30c71050ed60a86d8233f454c49d2f6d4fcf4f1d6be4a7d1c470c3f907211c1ee352fc3eba9a74e8152d41162e4d6f8113538eccbb3522409a5 SHA512 c73305c6661719cd45989679c33751f44b318b39f895e0328257eaffcdd52b726be9be624ebecb6bcba35635f0f615bb83e48c775e0f05c40f8f1e6e80ab737c +EBUILD crispy-bootstrap5-0.7.ebuild 603 BLAKE2B e06ec8bf6d604bbe5733677a51e9cfac2d6f738cfb6311751dd2b3a7c31bb11671dbf7447edcb64c8a0687d9e879e963b8b97ebc70e5d35eceb72ed037f66a78 SHA512 0b35a8206df74a117240536a362774d72abd959ddf6a36d413b1dc5bf43f96c06208a7703ce06551902301809db428d05e6f5050ed69f56fe11df2a0d3f2a0d9 +MISC metadata.xml 405 BLAKE2B 4b4a3bf239037510067beb822fe736db7235f0f530504831e7e64b70b311f34d52e842b19b155ba3bad6d607b25cbda34d926bd6691da2316551f3d86b11c94e SHA512 4c44e8ae1e2729af4c84217f287316e1aa098b80c62770d77cf690bc8c34f6df03f0aed2ef4c5ef22e423270abf737058f48f64b78d7b2b882b151992b0701a8 diff --git a/dev-python/crispy-bootstrap5/crispy-bootstrap5-0.7.ebuild b/dev-python/crispy-bootstrap5/crispy-bootstrap5-0.7.ebuild new file mode 100644 index 000000000000..334d9c3af66d --- /dev/null +++ b/dev-python/crispy-bootstrap5/crispy-bootstrap5-0.7.ebuild @@ -0,0 +1,25 @@ +# 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="Bootstrap5 template pack for django-crispy-forms" +HOMEPAGE=" + https://pypi.org/project/crispy-bootstrap5/ +" +SRC_URI="https://github.com/django-crispy-forms/${PN}/archive/refs/tags/${PV}.tar.gz + -> ${P}.gh.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-python/django-crispy-forms[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest + +PATCHES=( "${FILESDIR}"/${P}-test.patch ) diff --git a/dev-python/crispy-bootstrap5/files/crispy-bootstrap5-0.7-test.patch b/dev-python/crispy-bootstrap5/files/crispy-bootstrap5-0.7-test.patch new file mode 100644 index 000000000000..914b48385437 --- /dev/null +++ b/dev-python/crispy-bootstrap5/files/crispy-bootstrap5-0.7-test.patch @@ -0,0 +1,172 @@ +From 69ff88bed286a76e6216a54ecf93a0b27d87bc8d Mon Sep 17 00:00:00 2001 +From: David Smith <39445562+smithdc1@users.noreply.github.com> +Date: Thu, 15 Dec 2022 08:01:04 +0000 +Subject: [PATCH] Fixed tests for crispy-forms 2.x (#133) + +--- + tests/templates/custom_field_template.html | 2 +- + tests/templates/custom_form_template.html | 2 +- + .../custom_form_template_with_context.html | 2 +- + tests/test_layout.py | 14 ++++++++++++-- + tests/test_layout_objects.py | 12 ++++++++++++ + tox.ini | 2 -- + 6 files changed, 27 insertions(+), 7 deletions(-) + +diff --git a/tests/templates/custom_field_template.html b/tests/templates/custom_field_template.html +index 4724226..04f0274 100644 +--- a/tests/templates/custom_field_template.html ++++ b/tests/templates/custom_field_template.html +@@ -1,2 +1,2 @@ +

Special custom field

+-{% include 'bootstrap/field.html' %} ++{% include 'bootstrap5/field.html' %} +diff --git a/tests/templates/custom_form_template.html b/tests/templates/custom_form_template.html +index f2da757..c09b4c7 100644 +--- a/tests/templates/custom_form_template.html ++++ b/tests/templates/custom_form_template.html +@@ -1,2 +1,2 @@ +

Special custom form

+-{% include "bootstrap/whole_uni_form.html" %} ++{% include "bootstrap5/whole_uni_form.html" %} +diff --git a/tests/templates/custom_form_template_with_context.html b/tests/templates/custom_form_template_with_context.html +index 2378296..477997a 100644 +--- a/tests/templates/custom_form_template_with_context.html ++++ b/tests/templates/custom_form_template_with_context.html +@@ -1,4 +1,4 @@ +

Special custom form with context passthrough

+ Got prefix: {{ prefix }}. +-{% include "bootstrap/whole_uni_form.html" %} ++{% include "bootstrap5/whole_uni_form.html" %} + Got suffix: {{ suffix }}. +diff --git a/tests/test_layout.py b/tests/test_layout.py +index 512facf..a2a72e8 100644 +--- a/tests/test_layout.py ++++ b/tests/test_layout.py +@@ -16,6 +16,7 @@ + from django.middleware.csrf import _get_new_csrf_string + from django.shortcuts import render + from django.template import Context, Template ++from django.test import override_settings + from django.urls import reverse + from django.utils.translation import gettext_lazy as _ + +@@ -36,6 +37,12 @@ + ) + from .utils import contains_partial, parse_expected, parse_form + ++CONVERTERS = { ++ "textinput": "inputtext textinput textInput", ++ "fileinput": "fileinput fileUpload", ++ "passwordinput": "textinput textInput", ++} ++ + + def test_invalid_unicode_characters(settings): + # Adds a BooleanField that uses non valid unicode characters "ñ" +@@ -331,6 +338,7 @@ def test_bs5_field_with_buttons_css_classes(): + assert parse_form(form) == parse_expected("field_with_buttons_failing.html") + + ++@override_settings(CRISPY_CLASS_CONVERTERS=CONVERTERS) + def test_formset_layout(): + SampleFormSet = formset_factory(SampleForm, extra=3) + formset = SampleFormSet() +@@ -523,6 +531,7 @@ def test_keepcontext_context_manager(): + assert response.content.count(b"form-check-input") > 0 + + ++@override_settings(CRISPY_CLASS_CONVERTERS=CONVERTERS) + def test_bootstrap5_form_inline(): + form = SampleForm() + form.helper = FormHelper() +@@ -557,7 +566,7 @@ def test_update_attributes_class(): + form.helper.layout = Layout("email", Field("password1"), "password2") + form.helper["password1"].update_attributes(css_class="hello") + html = render_crispy_form(form) +- assert html.count(' class="hello textinput') == 1 ++ assert html.count(' class="hello') == 1 + form.helper = FormHelper() + form.helper.layout = Layout( + "email", +@@ -566,7 +575,7 @@ def test_update_attributes_class(): + ) + form.helper["password1"].update_attributes(css_class="hello2") + html = render_crispy_form(form) +- assert html.count(' class="hello hello2 textinput') == 1 ++ assert html.count(' class="hello hello2') == 1 + + + def test_file_field(): +@@ -611,6 +620,7 @@ def test_html_label_escape(): + assert "<>&" in html + + ++@override_settings(CRISPY_CLASS_CONVERTERS=CONVERTERS) + def test_tabular_formset_layout(): + SampleFormSet = formset_factory(SampleForm, extra=3) + formset = SampleFormSet() +diff --git a/tests/test_layout_objects.py b/tests/test_layout_objects.py +index b386c0b..0e3dde7 100644 +--- a/tests/test_layout_objects.py ++++ b/tests/test_layout_objects.py +@@ -21,6 +21,7 @@ + from crispy_forms.utils import render_crispy_form + from django import forms + from django.template import Context, Template ++from django.test import override_settings + from django.utils.translation import activate, deactivate + from django.utils.translation import gettext as _ + +@@ -37,6 +38,12 @@ + ) + from .utils import parse_expected, parse_form + ++CONVERTERS = { ++ "textinput": "inputtext textinput textInput", ++ "fileinput": "fileinput fileUpload", ++ "passwordinput": "textinput textInput", ++} ++ + + def test_field_with_custom_template(): + test_form = SampleForm() +@@ -202,6 +209,7 @@ def test_custom_django_widget(self): + html = render_crispy_form(form) + assert 'class="form-check-input"' in html + ++ @override_settings(CRISPY_CLASS_CONVERTERS=CONVERTERS) + def test_prepended_appended_text(self): + test_form = SampleForm() + test_form.helper = FormHelper() +@@ -223,6 +231,7 @@ def test_inline_radios(self): + html = render_crispy_form(test_form) + assert html.count('form-check-inline"') == 2 + ++ @override_settings(CRISPY_CLASS_CONVERTERS=CONVERTERS) + def test_accordion_and_accordiongroup(self): + random.seed(0) + form = SampleForm() +@@ -269,6 +278,7 @@ def test_accordion_active_false_not_rendered(self): + == 0 + ) + ++ @override_settings(CRISPY_CLASS_CONVERTERS=CONVERTERS) + def test_bs5accordion(self): + random.seed(0) + form = SampleForm() +@@ -315,6 +325,7 @@ def test_bs5accordion_active_false_not_rendered(self): + == 0 + ) + ++ @override_settings(CRISPY_CLASS_CONVERTERS=CONVERTERS) + def test_bs5accordion_flush(self): + random.seed(0) + test_form = SampleForm() +@@ -329,6 +340,7 @@ def test_bs5accordion_flush(self): + ) + assert parse_form(test_form) == parse_expected("accordion_flush.html") + ++ @override_settings(CRISPY_CLASS_CONVERTERS=CONVERTERS) + def test_bs5accordion_always_open(self): + random.seed(0) + test_form = SampleForm() diff --git a/dev-python/crispy-bootstrap5/metadata.xml b/dev-python/crispy-bootstrap5/metadata.xml new file mode 100644 index 000000000000..4883d99a164b --- /dev/null +++ b/dev-python/crispy-bootstrap5/metadata.xml @@ -0,0 +1,12 @@ + + + + + tupone@gentoo.org + Tupone Alfredo + + + crispy-bootstrap5 + django-crispy-forms/crispy-bootstrap5 + + -- cgit v1.2.3