Date: Wed, 22 Jul 2020 15:36:18 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r542866 - branches/2020Q3/www/py-internetarchive Message-ID: <202007221536.06MFaI7n057666@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Wed Jul 22 15:36:17 2020 New Revision: 542866 URL: https://svnweb.freebsd.org/changeset/ports/542866 Log: MFH: r542814 www/py-internetarchive: Fix python dependencies Particularly, tqdm was missing. PR: 248156 Reported by: sdalu@sdalu.com Approved by: ports-secteam (joenum) Modified: branches/2020Q3/www/py-internetarchive/Makefile Directory Properties: branches/2020Q3/ (props changed) Modified: branches/2020Q3/www/py-internetarchive/Makefile ============================================================================== --- branches/2020Q3/www/py-internetarchive/Makefile Wed Jul 22 15:33:37 2020 (r542865) +++ branches/2020Q3/www/py-internetarchive/Makefile Wed Jul 22 15:36:17 2020 (r542866) @@ -2,6 +2,7 @@ PORTNAME= internetarchive DISTVERSION= 1.9.4 +PORTREVISION= 1 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,13 +13,12 @@ COMMENT= Python interface to archive.org LICENSE= AGPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}backports.csv>0:devel/py-backports.csv@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}clint>=0.4.0:devel/py-clint@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}docopt>=0.6.0:devel/py-docopt@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}docopt>=0.6.0:devel/py-docopt@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}jsonpatch>=0.4:devel/py-jsonpatch@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}requests>=2.9.1:www/py-requests@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}schema>=0.4.0:devel/py-schema@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}six>=1.0.0:devel/py-six@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}six>=1.0.0:devel/py-six@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}tqdm>=4.0.0:misc/py-tqdm@${PY_FLAVOR} USES= python USE_PYTHON= distutils concurrent autoplist
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202007221536.06MFaI7n057666>