www/py-pyocclient: Convert to USE_PYTHON=pep517

- Update pkg-descr
- Bump PORTREVISION for package change
This commit is contained in:
Po-Chuan Hsieh 2024-09-18 13:57:21 +08:00
parent 0688702246
commit fd8b8aa746
No known key found for this signature in database
GPG key ID: 9A4BD10F002DD04B
2 changed files with 10 additions and 5 deletions

View file

@ -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

View file

@ -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.