diff --git a/www/py-pyocclient/Makefile b/www/py-pyocclient/Makefile index 7ac5d14b8d2a..c3ccf195d709 100644 --- a/www/py-pyocclient/Makefile +++ b/www/py-pyocclient/Makefile @@ -1,21 +1,24 @@ PORTNAME= pyocclient PORTVERSION= 0.6 +PORTREVISION= 1 CATEGORIES= www python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= sunpoet@FreeBSD.org -COMMENT= Python Owncloud client library +COMMENT= Python client library for ownCloud WWW= https://github.com/owncloud/pyocclient LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=2.0.1:www/py-requests@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR} USES= python -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist concurrent pep517 NO_ARCH= yes diff --git a/www/py-pyocclient/pkg-descr b/www/py-pyocclient/pkg-descr index 5f61061769db..35281032de33 100644 --- a/www/py-pyocclient/pkg-descr +++ b/www/py-pyocclient/pkg-descr @@ -1,3 +1,5 @@ -This library makes it possible to connect to an ownCloud instance and perform -file, share and attribute operations in python. Please note that this is not -a sync client implementation but rather a wrapper around various APIs. +This pure python library makes it possible to connect to an ownCloud instance +and perform file, share and attribute operations. + +Please note that this is not a sync client implementation but a library that +provides functions to abstract away HTTP calls for various ownCloud APIs.