Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 27 Nov 2024 02:42:16 GMT
From:      Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: f1933fcdfdee - main - devel/py-rq: Fix a62983b1803f4c36f3821e07108885f08ab4d321
Message-ID:  <202411270242.4AR2gG6N026549@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202411270242.4AR2gG6N026549>