git: 28330a0fc8b7 - main - devel/py-typer: Update to 0.5.0

From: Po-Chuan Hsieh <sunpoet_at_FreeBSD.org>
Date: Thu, 07 Jul 2022 22:24:50 UTC
The branch main has been updated by sunpoet:

URL: https://cgit.FreeBSD.org/ports/commit/?id=28330a0fc8b72a7d70ee03f7c24fdcfd30bba64c

commit 28330a0fc8b72a7d70ee03f7c24fdcfd30bba64c
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2022-07-07 22:23:56 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2022-07-07 22:23:56 +0000

    devel/py-typer: Update to 0.5.0
    
    Changes:        https://github.com/tiangolo/typer/releases
---
 devel/py-typer/Makefile       | 2 +-
 devel/py-typer/distinfo       | 6 +++---
 devel/py-typer/files/setup.py | 7 +++++--
 3 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/devel/py-typer/Makefile b/devel/py-typer/Makefile
index 0ff79c6b2bb2..49b028f9126e 100644
--- a/devel/py-typer/Makefile
+++ b/devel/py-typer/Makefile
@@ -1,7 +1,7 @@
 # Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
 
 PORTNAME=	typer
-PORTVERSION=	0.4.2
+PORTVERSION=	0.5.0
 CATEGORIES=	devel python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
diff --git a/devel/py-typer/distinfo b/devel/py-typer/distinfo
index d890ad787927..1a42256441ee 100644
--- a/devel/py-typer/distinfo
+++ b/devel/py-typer/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1657199027
-SHA256 (typer-0.4.2.tar.gz) = b8261c6c0152dd73478b5ba96ba677e5d6948c715c310f7c91079f311f62ec03
-SIZE (typer-0.4.2.tar.gz) = 223132
+TIMESTAMP = 1657230926
+SHA256 (typer-0.5.0.tar.gz) = 4c285a5585c94d32c305444af934f0078b6a8ba91464f3f85807c91cd499d195
+SIZE (typer-0.5.0.tar.gz) = 224880
diff --git a/devel/py-typer/files/setup.py b/devel/py-typer/files/setup.py
index 801e8436de86..ecc5b8a41939 100644
--- a/devel/py-typer/files/setup.py
+++ b/devel/py-typer/files/setup.py
@@ -13,7 +13,9 @@ install_requires = \
 ['click >= 7.1.1, <9.0.0']
 
 extras_require = \
-{'all': ['colorama >=0.4.3,<0.5.0', 'shellingham >=1.3.0,<2.0.0'],
+{'all': ['colorama >=0.4.3,<0.5.0',
+         'shellingham >=1.3.0,<2.0.0',
+         'rich >=10.11.0,<13.0.0'],
  'dev': ['autoflake >=1.3.1,<2.0.0',
          'flake8 >=3.8.3,<4.0.0',
          'pre-commit >=2.17.0,<3.0.0'],
@@ -28,7 +30,8 @@ extras_require = \
           'pytest-sugar >=0.9.4,<0.10.0',
           'mypy ==0.910',
           'black >=22.3.0,<23.0.0',
-          'isort >=5.0.6,<6.0.0']}
+          'isort >=5.0.6,<6.0.0',
+          'rich >=10.11.0,<13.0.0']}
 
 setup(name='typer',
       version='%%PORTVERSION%%',