diff options
author | decke <decke@FreeBSD.org> | 2016-11-16 16:18:27 +0000 |
---|---|---|
committer | decke <decke@FreeBSD.org> | 2016-11-16 16:18:27 +0000 |
commit | 0a14a2f9297b4cb6cd37a7fc901f0b4cfeac23d2 (patch) | |
tree | 0d0369d77de93342cf2589917d8b6d23cd0c38a2 | |
parent | a9cd60dcd0b7338f16f41d6318433f86eca1d58a (diff) | |
download | FreeBSD-ports-0a14a2f9297b4cb6cd37a7fc901f0b4cfeac23d2.zip FreeBSD-ports-0a14a2f9297b4cb6cd37a7fc901f0b4cfeac23d2.tar.gz |
- Add missing runtime dependencies (requests, argparse)
- Bump PORTREVISION
PR: 210674
Submitted by: Jochen Breuer <brejoc@gmail.com>
-rw-r--r-- | print/cloudprint/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/print/cloudprint/Makefile b/print/cloudprint/Makefile index d70cbc8..dead649 100644 --- a/print/cloudprint/Makefile +++ b/print/cloudprint/Makefile @@ -3,7 +3,7 @@ PORTNAME= cloudprint PORTVERSION= 0.14 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= print MAINTAINER= decke@FreeBSD.org @@ -12,7 +12,9 @@ COMMENT= Google Cloud Print proxy for local CUPS printers LICENSE= GPLv3 RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pycups>=0:print/py-pycups \ - ${PYTHON_PKGNAMEPREFIX}daemon>0:devel/py-daemon + ${PYTHON_PKGNAMEPREFIX}daemon>0:devel/py-daemon \ + ${PYTHON_PKGNAMEPREFIX}argparse>=0:devel/py-argparse \ + ${PYTHON_PKGNAMEPREFIX}requests>=2.7.0:www/py-requests USE_GITHUB= yes GH_ACCOUNT= armooo |