git: d657352d82cd - main - www/py-openbrokerapi: Fix build after www/py-flask update

From: Emanuel Haupt <ehaupt_at_FreeBSD.org>
Date: Wed, 29 Nov 2023 23:53:34 UTC
The branch main has been updated by ehaupt:

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

commit d657352d82cdb6c1db0d221d52efd1d9fc94dc74
Author:     Emanuel Haupt <ehaupt@FreeBSD.org>
AuthorDate: 2023-11-29 23:50:19 +0000
Commit:     Emanuel Haupt <ehaupt@FreeBSD.org>
CommitDate: 2023-11-29 23:50:19 +0000

    www/py-openbrokerapi: Fix build after www/py-flask update
    
    After the recent update of www/py-openbrokerapi in commit 3232af189573,
    module dependencies must now be defined in all lowercase.
    
    Reported by:    pkg-fallout
    Pointy hat to:  wen
---
 www/py-openbrokerapi/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www/py-openbrokerapi/Makefile b/www/py-openbrokerapi/Makefile
index d1aba9d3c491..7ca62b650531 100644
--- a/www/py-openbrokerapi/Makefile
+++ b/www/py-openbrokerapi/Makefile
@@ -11,7 +11,7 @@ WWW=		https://pypi.org/project/openbrokerapi/
 LICENSE=	MIT
 
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}click>0:devel/py-click@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}Flask>=2.2.3:www/py-flask@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}flask>=2.2.3:www/py-flask@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}gevent>0:devel/py-gevent@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}greenlet>0:devel/py-greenlet@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}itsdangerous>0:security/py-itsdangerous@${PY_FLAVOR} \