git: cd103f9fc593 - main - www/py-httpx-oauth: Update to 0.4.2
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 18 Mar 2022 02:01:11 UTC
The branch main has been updated by nc: URL: https://cgit.FreeBSD.org/ports/commit/?id=cd103f9fc5934308c5d5b2aa0a8092d74692311e commit cd103f9fc5934308c5d5b2aa0a8092d74692311e Author: Goran Mekić <meka@tilda.center> AuthorDate: 2022-03-18 02:00:42 +0000 Commit: Neel Chauhan <nc@FreeBSD.org> CommitDate: 2022-03-18 02:00:42 +0000 www/py-httpx-oauth: Update to 0.4.2 Changes: https://github.com/frankie567/httpx-oauth/releases/tag/v0.4.2 PR: 262627 --- www/py-httpx-oauth/Makefile | 2 +- www/py-httpx-oauth/distinfo | 6 +++--- www/py-httpx-oauth/files/patch-setup.py | 28 ---------------------------- 3 files changed, 4 insertions(+), 32 deletions(-) diff --git a/www/py-httpx-oauth/Makefile b/www/py-httpx-oauth/Makefile index e076dc3c954c..0c7fe71727e4 100644 --- a/www/py-httpx-oauth/Makefile +++ b/www/py-httpx-oauth/Makefile @@ -1,5 +1,5 @@ PORTNAME= httpx-oauth -DISTVERSION= 0.4.1 +DISTVERSION= 0.4.2 CATEGORIES= www devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/www/py-httpx-oauth/distinfo b/www/py-httpx-oauth/distinfo index b3751120c20d..3fbf9ab0aa6e 100644 --- a/www/py-httpx-oauth/distinfo +++ b/www/py-httpx-oauth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1643132368 -SHA256 (httpx-oauth-0.4.1.tar.gz) = ee777ee8c33ab521b8bee26158bed1c5eb709034559bd53442509e736458ffee -SIZE (httpx-oauth-0.4.1.tar.gz) = 15272 +TIMESTAMP = 1647541938 +SHA256 (httpx-oauth-0.4.2.tar.gz) = a4edd403a14acf654fd129e5fa215a555359370a0b86e5c2167779f32823eee0 +SIZE (httpx-oauth-0.4.2.tar.gz) = 15584 diff --git a/www/py-httpx-oauth/files/patch-setup.py b/www/py-httpx-oauth/files/patch-setup.py deleted file mode 100644 index a02860017a80..000000000000 --- a/www/py-httpx-oauth/files/patch-setup.py +++ /dev/null @@ -1,28 +0,0 @@ ---- setup.py.orig 2022-01-25 17:47:55 UTC -+++ setup.py -@@ -0,0 +1,25 @@ -+#!/usr/bin/env python -+# setup.py generated by flit for tools that don't yet use PEP 517 -+ -+from distutils.core import setup -+ -+packages = \ -+['httpx_oauth', 'httpx_oauth.clients', 'httpx_oauth.integrations'] -+ -+package_data = \ -+{'': ['*']} -+ -+install_requires = \ -+['httpx >=0.18,<0.22', 'typing-extensions'] -+ -+setup(name='httpx-oauth', -+ version='0.4.1', -+ description='Async OAuth client using HTTPX.', -+ author='François Voron', -+ author_email='fvoron@gmail.com', -+ url='https://github.com/frankie567/httpx-oauth', -+ packages=packages, -+ package_data=package_data, -+ install_requires=install_requires, -+ python_requires='>=3.7', -+ )