All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/python-django: clarify licensing
@ 2025-05-22  9:48 Marcus Hoffmann via buildroot
  2025-05-22  9:48 ` [Buildroot] [PATCH 2/2] DEVELOPERS: add Marcus Hoffmann for python-django Marcus Hoffmann via buildroot
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Marcus Hoffmann via buildroot @ 2025-05-22  9:48 UTC (permalink / raw)
  To: buildroot; +Cc: James Hilliard, Oli Vogt

Django includes code from a couple of other projects, add their
respective license files and licenses to the django package.

./utils/scanpypi finds most of these. Additionally this was
cross-checked against debian's license list [1], not including some
things that no longer exist or no longer indicate separate licensing
upstream:
* django/contrib/admin/static/admin/fonts/
* django/utils/baseconv.py
* django/utils/ipv6.py
* django/utils/autoreload.py

Also not included are separate licensing for docs, which buildroot
doesn't package:
* docs/_theme/djangodocs/static/reset-fonts-grids.css
* docs/_theme/djangodocs/static/fontawesome/LICENSE.txt

[1] https://metadata.ftp-master.debian.org/changelogs//main/p/python-django/python-django_5.2-1_copyright

Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu>
---
 package/python-django/python-django.hash | 10 ++++++++++
 package/python-django/python-django.mk   | 14 ++++++++++++--
 2 files changed, 22 insertions(+), 2 deletions(-)

diff --git a/package/python-django/python-django.hash b/package/python-django/python-django.hash
index 836307f6b8..32a9ce13b8 100644
--- a/package/python-django/python-django.hash
+++ b/package/python-django/python-django.hash
@@ -3,3 +3,13 @@ md5  317174c6e0593c40e58ec1bd428b1091  django-5.2.1.tar.gz
 sha256  57fe1f1b59462caed092c80b3dd324fd92161b620d59a9ba9181c34746c97284  django-5.2.1.tar.gz
 # Locally computed sha256 checksums
 sha256  b846415d1b514e9c1dff14a22deb906d794bc546ca6129f950a18cd091e2a669  LICENSE
+sha256  dcac1c86cb7ab491702bdb4c41be680fafde51536748cc8aaee3840eec53ed17  django/contrib/gis/measure.py
+sha256  570a045a8372b6cd6a00e30ebafe8e3e8dfc0a7fe3d4ef2cc5f16d419eb63aeb  django/contrib/gis/gdal/LICENSE
+sha256  08bf24b7551238ae325295245425b1caeb9ad0f42f9e2d303c7b353502632045  django/contrib/gis/geos/LICENSE
+sha256  d48633adb736dac091477ec2206feebeee88e3e6e486aedb21c584e4b49be0ec  django/contrib/admin/static/admin/js/inlines.js
+sha256  d4db9ebe6f29f5168eac45ad713f055623ac5d0dcd5ba92da23d650ae012020d  django/contrib/admin/static/admin/js/vendor/jquery/LICENSE.txt
+sha256  4ee0cbc51370afde358652a0f977972053729ed578b6a42f5e2a037d114f0b39  django/contrib/admin/static/admin/js/vendor/select2/LICENSE.md
+sha256  73af2949bff9296cb0f816c3be19a4da4e95adc94c1f924796e8bad3f03f2f29  django/contrib/admin/static/admin/js/vendor/xregexp/LICENSE.txt
+sha256  d114faff3488c16c319b3235dc41f90239d3d63d9853733033d8f7535f5c0004  django/contrib/admin/static/admin/img/LICENSE
+sha256  54004c4b606964ebc163af16d04607c16e428f8a78a026fecb53f70c09f4a94f  django/dispatch/license.txt
+sha256  1ce0483ad554cf135efec70ad2097e82ed72790194f17e1591821dc82c2416e0  django/utils/archive.py
diff --git a/package/python-django/python-django.mk b/package/python-django/python-django.mk
index 62c8a00313..21c68cba50 100644
--- a/package/python-django/python-django.mk
+++ b/package/python-django/python-django.mk
@@ -8,8 +8,18 @@ PYTHON_DJANGO_VERSION = 5.2.1
 PYTHON_DJANGO_SOURCE = django-$(PYTHON_DJANGO_VERSION).tar.gz
 # The official Django site has an unpractical URL
 PYTHON_DJANGO_SITE = https://files.pythonhosted.org/packages/ac/10/0d546258772b8f31398e67c85e52c66ebc2b13a647193c3eef8ee433f1a8
-PYTHON_DJANGO_LICENSE = BSD-3-Clause
-PYTHON_DJANGO_LICENSE_FILES = LICENSE
+PYTHON_DJANGO_LICENSE = BSD-3-Clause, MIT (jquery, utils/archive.py), BSD-2-Clause (inlines.js)
+PYTHON_DJANGO_LICENSE_FILES = LICENSE \
+							  django/contrib/gis/measure.py \
+							  django/contrib/gis/gdal/LICENSE \
+							  django/contrib/gis/geos/LICENSE \
+							  django/contrib/admin/static/admin/js/inlines.js \
+							  django/contrib/admin/static/admin/js/vendor/jquery/LICENSE.txt \
+							  django/contrib/admin/static/admin/js/vendor/select2/LICENSE.md \
+							  django/contrib/admin/static/admin/js/vendor/xregexp/LICENSE.txt \
+							  django/contrib/admin/static/admin/img/LICENSE \
+							  django/dispatch/license.txt \
+							  django/utils/archive.py
 PYTHON_DJANGO_CPE_ID_VENDOR = djangoproject
 PYTHON_DJANGO_CPE_ID_PRODUCT = django
 PYTHON_DJANGO_SETUP_TYPE = setuptools
-- 
2.43.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 2/2] DEVELOPERS: add Marcus Hoffmann for python-django
  2025-05-22  9:48 [Buildroot] [PATCH 1/2] package/python-django: clarify licensing Marcus Hoffmann via buildroot
@ 2025-05-22  9:48 ` Marcus Hoffmann via buildroot
  2025-05-23  9:59   ` Peter Korsgaard
  2025-06-04 18:27   ` Arnout Vandecappelle via buildroot
  2025-05-23  9:59 ` [Buildroot] [PATCH 1/2] package/python-django: clarify licensing Peter Korsgaard
  2025-06-04 18:26 ` Arnout Vandecappelle via buildroot
  2 siblings, 2 replies; 6+ messages in thread
From: Marcus Hoffmann via buildroot @ 2025-05-22  9:48 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu>
---
 DEVELOPERS | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/DEVELOPERS b/DEVELOPERS
index 78bb555530..d471b9ab6f 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -2278,6 +2278,7 @@ N:	Marcus Hoffmann <bubu@bubu1.eu>
 F:	package/nethogs/
 F:	package/pico-sdk/
 F:	package/picotool/
+F:	package/python-django/
 F:	package/python-immutabledict/
 F:	package/python-jc/
 F:	package/python-pydantic/
@@ -2287,12 +2288,14 @@ F:	package/python-ruamel-yaml-clib/
 F:	package/python-typing-inspection/
 F:	package/python-tzlocal/
 F:	package/python-waitress/
+F:	support/testing/tests/package/test_python_django.py
 F:	support/testing/tests/package/test_python_fastapi.py
 F:	support/testing/tests/package/test_python_pydantic.py
 F:	support/testing/tests/package/test_python_pydantic_settings.py
 F:	support/testing/tests/package/test_python_ruamel_yaml.py
 F:	support/testing/tests/package/test_python_tzlocal.py
 F:	support/testing/tests/package/test_python_waitress.py
+F:	support/testing/tests/package/sample_python_django.py
 F:	support/testing/tests/package/sample_python_fastapi.py
 F:	support/testing/tests/package/sample_python_pydantic.py
 F:	support/testing/tests/package/sample_python_pydantic_settings.py
-- 
2.43.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/2] package/python-django: clarify licensing
  2025-05-22  9:48 [Buildroot] [PATCH 1/2] package/python-django: clarify licensing Marcus Hoffmann via buildroot
  2025-05-22  9:48 ` [Buildroot] [PATCH 2/2] DEVELOPERS: add Marcus Hoffmann for python-django Marcus Hoffmann via buildroot
@ 2025-05-23  9:59 ` Peter Korsgaard
  2025-06-04 18:26 ` Arnout Vandecappelle via buildroot
  2 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2025-05-23  9:59 UTC (permalink / raw)
  To: Marcus Hoffmann via buildroot; +Cc: Marcus Hoffmann, James Hilliard, Oli Vogt

>>>>> "Marcus" == Marcus Hoffmann via buildroot <buildroot@buildroot.org> writes:

 > Django includes code from a couple of other projects, add their
 > respective license files and licenses to the django package.

 > ./utils/scanpypi finds most of these. Additionally this was
 > cross-checked against debian's license list [1], not including some
 > things that no longer exist or no longer indicate separate licensing
 > upstream:
 > * django/contrib/admin/static/admin/fonts/
 > * django/utils/baseconv.py
 > * django/utils/ipv6.py
 > * django/utils/autoreload.py

 > Also not included are separate licensing for docs, which buildroot
 > doesn't package:
 > * docs/_theme/djangodocs/static/reset-fonts-grids.css
 > * docs/_theme/djangodocs/static/fontawesome/LICENSE.txt

 > [1] https://metadata.ftp-master.debian.org/changelogs//main/p/python-django/python-django_5.2-1_copyright

 > Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu>
 > ---
 >  package/python-django/python-django.hash | 10 ++++++++++
 >  package/python-django/python-django.mk   | 14 ++++++++++++--
 >  2 files changed, 22 insertions(+), 2 deletions(-)

 > diff --git a/package/python-django/python-django.hash b/package/python-django/python-django.hash
 > index 836307f6b8..32a9ce13b8 100644
 > --- a/package/python-django/python-django.hash
 > +++ b/package/python-django/python-django.hash
 > @@ -3,3 +3,13 @@ md5  317174c6e0593c40e58ec1bd428b1091  django-5.2.1.tar.gz
 >  sha256  57fe1f1b59462caed092c80b3dd324fd92161b620d59a9ba9181c34746c97284  django-5.2.1.tar.gz
 >  # Locally computed sha256 checksums
 >  sha256  b846415d1b514e9c1dff14a22deb906d794bc546ca6129f950a18cd091e2a669  LICENSE
 > +sha256  dcac1c86cb7ab491702bdb4c41be680fafde51536748cc8aaee3840eec53ed17  django/contrib/gis/measure.py
 > +sha256  570a045a8372b6cd6a00e30ebafe8e3e8dfc0a7fe3d4ef2cc5f16d419eb63aeb  django/contrib/gis/gdal/LICENSE
 > +sha256  08bf24b7551238ae325295245425b1caeb9ad0f42f9e2d303c7b353502632045  django/contrib/gis/geos/LICENSE
 > +sha256  d48633adb736dac091477ec2206feebeee88e3e6e486aedb21c584e4b49be0ec  django/contrib/admin/static/admin/js/inlines.js
 > +sha256  d4db9ebe6f29f5168eac45ad713f055623ac5d0dcd5ba92da23d650ae012020d  django/contrib/admin/static/admin/js/vendor/jquery/LICENSE.txt
 > +sha256  4ee0cbc51370afde358652a0f977972053729ed578b6a42f5e2a037d114f0b39  django/contrib/admin/static/admin/js/vendor/select2/LICENSE.md
 > +sha256  73af2949bff9296cb0f816c3be19a4da4e95adc94c1f924796e8bad3f03f2f29  django/contrib/admin/static/admin/js/vendor/xregexp/LICENSE.txt
 > +sha256  d114faff3488c16c319b3235dc41f90239d3d63d9853733033d8f7535f5c0004  django/contrib/admin/static/admin/img/LICENSE
 > +sha256  54004c4b606964ebc163af16d04607c16e428f8a78a026fecb53f70c09f4a94f  django/dispatch/license.txt
 > +sha256  1ce0483ad554cf135efec70ad2097e82ed72790194f17e1591821dc82c2416e0  django/utils/archive.py
 > diff --git a/package/python-django/python-django.mk b/package/python-django/python-django.mk
 > index 62c8a00313..21c68cba50 100644
 > --- a/package/python-django/python-django.mk
 > +++ b/package/python-django/python-django.mk
 > @@ -8,8 +8,18 @@ PYTHON_DJANGO_VERSION = 5.2.1
 >  PYTHON_DJANGO_SOURCE = django-$(PYTHON_DJANGO_VERSION).tar.gz
 >  # The official Django site has an unpractical URL
 >  PYTHON_DJANGO_SITE = https://files.pythonhosted.org/packages/ac/10/0d546258772b8f31398e67c85e52c66ebc2b13a647193c3eef8ee433f1a8
 > -PYTHON_DJANGO_LICENSE = BSD-3-Clause
 > -PYTHON_DJANGO_LICENSE_FILES = LICENSE
 > +PYTHON_DJANGO_LICENSE = BSD-3-Clause, MIT (jquery, utils/archive.py), BSD-2-Clause (inlines.js)
 > +PYTHON_DJANGO_LICENSE_FILES = LICENSE \
 > +							  django/contrib/gis/measure.py \
 > +							  django/contrib/gis/gdal/LICENSE \
 > +							  django/contrib/gis/geos/LICENSE \
 > +							  django/contrib/admin/static/admin/js/inlines.js \
 > +							  django/contrib/admin/static/admin/js/vendor/jquery/LICENSE.txt \
 > +							  django/contrib/admin/static/admin/js/vendor/select2/LICENSE.md \
 > +							  django/contrib/admin/static/admin/js/vendor/xregexp/LICENSE.txt \
 > +							  django/contrib/admin/static/admin/img/LICENSE \
 > +							  django/dispatch/license.txt \
 > +							  django/utils/archive.py

I've reindented this to only use one tab and committed, thanks!

>  PYTHON_DJANGO_CPE_ID_VENDOR = djangoproject
 >  PYTHON_DJANGO_CPE_ID_PRODUCT = django
 >  PYTHON_DJANGO_SETUP_TYPE = setuptools
 > -- 

 > 2.43.0

 > _______________________________________________
 > buildroot mailing list
 > buildroot@buildroot.org
 > https://lists.buildroot.org/mailman/listinfo/buildroot


-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 2/2] DEVELOPERS: add Marcus Hoffmann for python-django
  2025-05-22  9:48 ` [Buildroot] [PATCH 2/2] DEVELOPERS: add Marcus Hoffmann for python-django Marcus Hoffmann via buildroot
@ 2025-05-23  9:59   ` Peter Korsgaard
  2025-06-04 18:27   ` Arnout Vandecappelle via buildroot
  1 sibling, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2025-05-23  9:59 UTC (permalink / raw)
  To: Marcus Hoffmann via buildroot; +Cc: Marcus Hoffmann

>>>>> "Marcus" == Marcus Hoffmann via buildroot <buildroot@buildroot.org> writes:

 > Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu>

Committed, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/2] package/python-django: clarify licensing
  2025-05-22  9:48 [Buildroot] [PATCH 1/2] package/python-django: clarify licensing Marcus Hoffmann via buildroot
  2025-05-22  9:48 ` [Buildroot] [PATCH 2/2] DEVELOPERS: add Marcus Hoffmann for python-django Marcus Hoffmann via buildroot
  2025-05-23  9:59 ` [Buildroot] [PATCH 1/2] package/python-django: clarify licensing Peter Korsgaard
@ 2025-06-04 18:26 ` Arnout Vandecappelle via buildroot
  2 siblings, 0 replies; 6+ messages in thread
From: Arnout Vandecappelle via buildroot @ 2025-06-04 18:26 UTC (permalink / raw)
  To: Marcus Hoffmann, buildroot; +Cc: James Hilliard, Oli Vogt



On 22/05/2025 11:48, Marcus Hoffmann via buildroot wrote:
> Django includes code from a couple of other projects, add their
> respective license files and licenses to the django package.
> 
> ./utils/scanpypi finds most of these. Additionally this was
> cross-checked against debian's license list [1], not including some
> things that no longer exist or no longer indicate separate licensing
> upstream:
> * django/contrib/admin/static/admin/fonts/
> * django/utils/baseconv.py
> * django/utils/ipv6.py
> * django/utils/autoreload.py
> 
> Also not included are separate licensing for docs, which buildroot
> doesn't package:
> * docs/_theme/djangodocs/static/reset-fonts-grids.css
> * docs/_theme/djangodocs/static/fontawesome/LICENSE.txt
> 
> [1] https://metadata.ftp-master.debian.org/changelogs//main/p/python-django/python-django_5.2-1_copyright
> 
> Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu>

  Applied to 2025.02.x, thanks.

  Regards,
  Arnout

> ---
>   package/python-django/python-django.hash | 10 ++++++++++
>   package/python-django/python-django.mk   | 14 ++++++++++++--
>   2 files changed, 22 insertions(+), 2 deletions(-)
> 
> diff --git a/package/python-django/python-django.hash b/package/python-django/python-django.hash
> index 836307f6b8..32a9ce13b8 100644
> --- a/package/python-django/python-django.hash
> +++ b/package/python-django/python-django.hash
> @@ -3,3 +3,13 @@ md5  317174c6e0593c40e58ec1bd428b1091  django-5.2.1.tar.gz
>   sha256  57fe1f1b59462caed092c80b3dd324fd92161b620d59a9ba9181c34746c97284  django-5.2.1.tar.gz
>   # Locally computed sha256 checksums
>   sha256  b846415d1b514e9c1dff14a22deb906d794bc546ca6129f950a18cd091e2a669  LICENSE
> +sha256  dcac1c86cb7ab491702bdb4c41be680fafde51536748cc8aaee3840eec53ed17  django/contrib/gis/measure.py
> +sha256  570a045a8372b6cd6a00e30ebafe8e3e8dfc0a7fe3d4ef2cc5f16d419eb63aeb  django/contrib/gis/gdal/LICENSE
> +sha256  08bf24b7551238ae325295245425b1caeb9ad0f42f9e2d303c7b353502632045  django/contrib/gis/geos/LICENSE
> +sha256  d48633adb736dac091477ec2206feebeee88e3e6e486aedb21c584e4b49be0ec  django/contrib/admin/static/admin/js/inlines.js
> +sha256  d4db9ebe6f29f5168eac45ad713f055623ac5d0dcd5ba92da23d650ae012020d  django/contrib/admin/static/admin/js/vendor/jquery/LICENSE.txt
> +sha256  4ee0cbc51370afde358652a0f977972053729ed578b6a42f5e2a037d114f0b39  django/contrib/admin/static/admin/js/vendor/select2/LICENSE.md
> +sha256  73af2949bff9296cb0f816c3be19a4da4e95adc94c1f924796e8bad3f03f2f29  django/contrib/admin/static/admin/js/vendor/xregexp/LICENSE.txt
> +sha256  d114faff3488c16c319b3235dc41f90239d3d63d9853733033d8f7535f5c0004  django/contrib/admin/static/admin/img/LICENSE
> +sha256  54004c4b606964ebc163af16d04607c16e428f8a78a026fecb53f70c09f4a94f  django/dispatch/license.txt
> +sha256  1ce0483ad554cf135efec70ad2097e82ed72790194f17e1591821dc82c2416e0  django/utils/archive.py
> diff --git a/package/python-django/python-django.mk b/package/python-django/python-django.mk
> index 62c8a00313..21c68cba50 100644
> --- a/package/python-django/python-django.mk
> +++ b/package/python-django/python-django.mk
> @@ -8,8 +8,18 @@ PYTHON_DJANGO_VERSION = 5.2.1
>   PYTHON_DJANGO_SOURCE = django-$(PYTHON_DJANGO_VERSION).tar.gz
>   # The official Django site has an unpractical URL
>   PYTHON_DJANGO_SITE = https://files.pythonhosted.org/packages/ac/10/0d546258772b8f31398e67c85e52c66ebc2b13a647193c3eef8ee433f1a8
> -PYTHON_DJANGO_LICENSE = BSD-3-Clause
> -PYTHON_DJANGO_LICENSE_FILES = LICENSE
> +PYTHON_DJANGO_LICENSE = BSD-3-Clause, MIT (jquery, utils/archive.py), BSD-2-Clause (inlines.js)
> +PYTHON_DJANGO_LICENSE_FILES = LICENSE \
> +							  django/contrib/gis/measure.py \
> +							  django/contrib/gis/gdal/LICENSE \
> +							  django/contrib/gis/geos/LICENSE \
> +							  django/contrib/admin/static/admin/js/inlines.js \
> +							  django/contrib/admin/static/admin/js/vendor/jquery/LICENSE.txt \
> +							  django/contrib/admin/static/admin/js/vendor/select2/LICENSE.md \
> +							  django/contrib/admin/static/admin/js/vendor/xregexp/LICENSE.txt \
> +							  django/contrib/admin/static/admin/img/LICENSE \
> +							  django/dispatch/license.txt \
> +							  django/utils/archive.py
>   PYTHON_DJANGO_CPE_ID_VENDOR = djangoproject
>   PYTHON_DJANGO_CPE_ID_PRODUCT = django
>   PYTHON_DJANGO_SETUP_TYPE = setuptools

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 2/2] DEVELOPERS: add Marcus Hoffmann for python-django
  2025-05-22  9:48 ` [Buildroot] [PATCH 2/2] DEVELOPERS: add Marcus Hoffmann for python-django Marcus Hoffmann via buildroot
  2025-05-23  9:59   ` Peter Korsgaard
@ 2025-06-04 18:27   ` Arnout Vandecappelle via buildroot
  1 sibling, 0 replies; 6+ messages in thread
From: Arnout Vandecappelle via buildroot @ 2025-06-04 18:27 UTC (permalink / raw)
  To: Marcus Hoffmann, buildroot



On 22/05/2025 11:48, Marcus Hoffmann via buildroot wrote:
> Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu>

  Applied to 2025.02.x, thanks.

  Regards,
  Arnout

> ---
>   DEVELOPERS | 3 +++
>   1 file changed, 3 insertions(+)
> 
> diff --git a/DEVELOPERS b/DEVELOPERS
> index 78bb555530..d471b9ab6f 100644
> --- a/DEVELOPERS
> +++ b/DEVELOPERS
> @@ -2278,6 +2278,7 @@ N:	Marcus Hoffmann <bubu@bubu1.eu>
>   F:	package/nethogs/
>   F:	package/pico-sdk/
>   F:	package/picotool/
> +F:	package/python-django/
>   F:	package/python-immutabledict/
>   F:	package/python-jc/
>   F:	package/python-pydantic/
> @@ -2287,12 +2288,14 @@ F:	package/python-ruamel-yaml-clib/
>   F:	package/python-typing-inspection/
>   F:	package/python-tzlocal/
>   F:	package/python-waitress/
> +F:	support/testing/tests/package/test_python_django.py
>   F:	support/testing/tests/package/test_python_fastapi.py
>   F:	support/testing/tests/package/test_python_pydantic.py
>   F:	support/testing/tests/package/test_python_pydantic_settings.py
>   F:	support/testing/tests/package/test_python_ruamel_yaml.py
>   F:	support/testing/tests/package/test_python_tzlocal.py
>   F:	support/testing/tests/package/test_python_waitress.py
> +F:	support/testing/tests/package/sample_python_django.py
>   F:	support/testing/tests/package/sample_python_fastapi.py
>   F:	support/testing/tests/package/sample_python_pydantic.py
>   F:	support/testing/tests/package/sample_python_pydantic_settings.py

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2025-06-04 18:27 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-22  9:48 [Buildroot] [PATCH 1/2] package/python-django: clarify licensing Marcus Hoffmann via buildroot
2025-05-22  9:48 ` [Buildroot] [PATCH 2/2] DEVELOPERS: add Marcus Hoffmann for python-django Marcus Hoffmann via buildroot
2025-05-23  9:59   ` Peter Korsgaard
2025-06-04 18:27   ` Arnout Vandecappelle via buildroot
2025-05-23  9:59 ` [Buildroot] [PATCH 1/2] package/python-django: clarify licensing Peter Korsgaard
2025-06-04 18:26 ` Arnout Vandecappelle via buildroot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.