aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--www/py-drf-spectacular/Makefile3
-rw-r--r--www/py-drf-spectacular/distinfo6
-rw-r--r--www/py-drf-spectacular/files/patch-pyproject.toml22
3 files changed, 11 insertions, 20 deletions
diff --git a/www/py-drf-spectacular/Makefile b/www/py-drf-spectacular/Makefile
index f5b1dcb256d0..2832482a23eb 100644
--- a/www/py-drf-spectacular/Makefile
+++ b/www/py-drf-spectacular/Makefile
@@ -1,6 +1,5 @@
PORTNAME= drf-spectacular
-DISTVERSION= 0.29.0
-PORTREVISION= 1
+DISTVERSION= 0.30.0
CATEGORIES= www python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
diff --git a/www/py-drf-spectacular/distinfo b/www/py-drf-spectacular/distinfo
index f7f3bb44d0fc..0e6e429d55bc 100644
--- a/www/py-drf-spectacular/distinfo
+++ b/www/py-drf-spectacular/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1762158117
-SHA256 (drf_spectacular-0.29.0.tar.gz) = 0a069339ea390ce7f14a75e8b5af4a0860a46e833fd4af027411a3e94fc1a0cc
-SIZE (drf_spectacular-0.29.0.tar.gz) = 241722
+TIMESTAMP = 1783883294
+SHA256 (drf_spectacular-0.30.0.tar.gz) = 53e79e7ba00e240441b63c32273754a5368e4c2ab44a19f2595277cc1cd559c9
+SIZE (drf_spectacular-0.30.0.tar.gz) = 252311
diff --git a/www/py-drf-spectacular/files/patch-pyproject.toml b/www/py-drf-spectacular/files/patch-pyproject.toml
index 8314ea492d9f..117ca3939881 100644
--- a/www/py-drf-spectacular/files/patch-pyproject.toml
+++ b/www/py-drf-spectacular/files/patch-pyproject.toml
@@ -1,30 +1,22 @@
-Relax version requirements of py-setuptools and enable build for older versions
-of it.
+Enable build for older versions of py-setuptools.
---- pyproject.toml.orig 2025-11-03 11:21:39 UTC
+--- pyproject.toml.orig 2026-07-06 11:29:33 UTC
+++ pyproject.toml
-@@ -4,7 +4,6 @@ requires-python = ">=3.7"
+@@ -4,7 +4,6 @@ requires-python = ">=3.8"
description = "Sane and flexible OpenAPI 3 schema generation for Django REST framework"
readme = "README.rst"
- requires-python = ">=3.7"
+ requires-python = ">=3.8"
-license = "BSD-3-Clause"
authors = [
{name = "T. Franzel", email = "tfranzel@gmail.com"}
]
@@ -57,6 +56,9 @@ Documentation = "https://drf-spectacular.readthedocs.i
+ Homepage = "https://github.com/tfranzel/drf-spectacular"
Source = "https://github.com/tfranzel/drf-spectacular"
Documentation = "https://drf-spectacular.readthedocs.io"
-
++
+[project.license]
+text = "BSD-3-Clause"
-+
+
[tool.setuptools.dynamic]
version = {attr = "drf_spectacular.__version__"}
-
-@@ -72,5 +74,5 @@ drf_spectacular = [
- ]
-
- [build-system]
--requires = ["setuptools>=75.3.2", "wheel"]
-+requires = ["setuptools", "wheel"]
- build-backend = "setuptools.build_meta"