git: f1933fcdfdee - main - devel/py-rq: Fix a62983b1803f4c36f3821e07108885f08ab4d321

From: Po-Chuan Hsieh <sunpoet_at_FreeBSD.org>
Date: Wed, 27 Nov 2024 02:42:16 UTC
The branch main has been updated by sunpoet:

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

commit f1933fcdfdee3fe5f11e1e82efccbb57a7b129ad
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2024-11-27 02:37:10 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2024-11-27 02:37:10 +0000

    devel/py-rq: Fix a62983b1803f4c36f3821e07108885f08ab4d321
    
    - Fix version requirement of RUN_DEPENDS
    - Fix CONFLICTS_INSTALL
    
    from pyproject.toml:
    dependencies = [
      "click>=5",
      "redis>=3.5",
    ]
    
    Approved by:    portmgr (blanket)
    Reference:      https://github.com/rq/rq/blob/v2.0/pyproject.toml#L48-L51
---
 devel/py-rq/Makefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/devel/py-rq/Makefile b/devel/py-rq/Makefile
index ea13351a17ab..996fbe3b7f2a 100644
--- a/devel/py-rq/Makefile
+++ b/devel/py-rq/Makefile
@@ -12,13 +12,13 @@ LICENSE=	BSD2CLAUSE
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
 BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}hatchling>0:devel/py-hatchling@${PY_FLAVOR}
-RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}click>=5.0.0:devel/py-click@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}redis>=4.0.0:databases/py-redis@${PY_FLAVOR}
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}click>=5:devel/py-click@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}redis>=3.5:databases/py-redis@${PY_FLAVOR}
 
 USES=		python
 USE_PYTHON=	autoplist concurrent pep517
 
-CONFLICTS_INSTALL=	${PYTHON_PKGNAMEPREFIX}-rq1
+CONFLICTS_INSTALL=	${PYTHON_PKGNAMEPREFIX}rq1
 
 NO_ARCH=	yes