aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPo-Chuan Hsieh <sunpoet@FreeBSD.org>2023-12-25 09:00:50 +0000
committerPo-Chuan Hsieh <sunpoet@FreeBSD.org>2023-12-25 09:00:50 +0000
commitf6a192bd8e0e6fae8c03bee51a0a45d6764caa19 (patch)
tree9fe461b42a2532020c6bfb48a21b4c7cbfd4d285
parent023c9e1d0a7bdbb38437bb5803bbb8f06c5233aa (diff)
downloadports-f6a192bd8e0e6fae8c03bee51a0a45d6764caa19.tar.gz
ports-f6a192bd8e0e6fae8c03bee51a0a45d6764caa19.zip
security/py-authlib: Update to 1.3.0
-rw-r--r--security/py-authlib/Makefile3
-rw-r--r--security/py-authlib/distinfo6
-rw-r--r--security/py-authlib/files/patch-pyproject.toml9
-rw-r--r--security/py-authlib/files/patch-setup.py11
4 files changed, 13 insertions, 16 deletions
diff --git a/security/py-authlib/Makefile b/security/py-authlib/Makefile
index 8502331290e3..017e5f158290 100644
--- a/security/py-authlib/Makefile
+++ b/security/py-authlib/Makefile
@@ -1,6 +1,5 @@
PORTNAME= authlib
-PORTVERSION= 1.2.1
-PORTREVISION= 1
+PORTVERSION= 1.3.0
CATEGORIES= security python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
diff --git a/security/py-authlib/distinfo b/security/py-authlib/distinfo
index dbca82d36ece..876ec2dc329c 100644
--- a/security/py-authlib/distinfo
+++ b/security/py-authlib/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1688166312
-SHA256 (Authlib-1.2.1.tar.gz) = 421f7c6b468d907ca2d9afede256f068f87e34d23dd221c07d13d4c234726afb
-SIZE (Authlib-1.2.1.tar.gz) = 140416
+TIMESTAMP = 1703227920
+SHA256 (Authlib-1.3.0.tar.gz) = 959ea62a5b7b5123c5059758296122b57cd2585ae2ed1c0622c21b371ffdae06
+SIZE (Authlib-1.3.0.tar.gz) = 145865
diff --git a/security/py-authlib/files/patch-pyproject.toml b/security/py-authlib/files/patch-pyproject.toml
new file mode 100644
index 000000000000..df9d90735960
--- /dev/null
+++ b/security/py-authlib/files/patch-pyproject.toml
@@ -0,0 +1,9 @@
+--- pyproject.toml.orig 2023-12-17 23:46:24 UTC
++++ pyproject.toml
+@@ -1,5 +1,5 @@
+ [project]
+-name = "Authlib"
++name = "authlib"
+ description = "The ultimate Python library in building OAuth and OpenID Connect servers and clients."
+ authors = [{name = "Hsiaoming Yang", email="me@lepture.com"}]
+ dependencies = [
diff --git a/security/py-authlib/files/patch-setup.py b/security/py-authlib/files/patch-setup.py
deleted file mode 100644
index 42d579d55057..000000000000
--- a/security/py-authlib/files/patch-setup.py
+++ /dev/null
@@ -1,11 +0,0 @@
---- setup.py.orig 2022-12-06 07:30:31 UTC
-+++ setup.py
-@@ -3,7 +3,7 @@ from setuptools import setup
- # Metadata goes in setup.cfg. These are here for GitHub's dependency graph.
-
- setup(
-- name="Authlib",
-+ name="authlib",
- install_requires=[
- "cryptography>=3.2",
- ],