git: f6a192bd8e0e - main - security/py-authlib: Update to 1.3.0
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 25 Dec 2023 09:09:38 UTC
The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=f6a192bd8e0e6fae8c03bee51a0a45d6764caa19 commit f6a192bd8e0e6fae8c03bee51a0a45d6764caa19 Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org> AuthorDate: 2023-12-25 09:00:50 +0000 Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org> CommitDate: 2023-12-25 09:00:50 +0000 security/py-authlib: Update to 1.3.0 Changes: https://github.com/lepture/authlib/releases --- security/py-authlib/Makefile | 3 +-- security/py-authlib/distinfo | 6 +++--- security/py-authlib/files/patch-pyproject.toml | 9 +++++++++ security/py-authlib/files/patch-setup.py | 11 ----------- 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", - ],