Date: Wed, 18 Sep 2024 06:19:50 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: fd8b8aa746f0 - main - www/py-pyocclient: Convert to USE_PYTHON=pep517 Message-ID: <202409180619.48I6JoJh034412@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=fd8b8aa746f02fcb5492e51c82d9d754a9c23f9b commit fd8b8aa746f02fcb5492e51c82d9d754a9c23f9b Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org> AuthorDate: 2024-09-18 05:57:21 +0000 Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org> CommitDate: 2024-09-18 06:13:20 +0000 www/py-pyocclient: Convert to USE_PYTHON=pep517 - Update pkg-descr - Bump PORTREVISION for package change --- www/py-pyocclient/Makefile | 7 +++++-- www/py-pyocclient/pkg-descr | 8 +++++--- 2 files changed, 10 insertions(+), 5 deletions(-) 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.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202409180619.48I6JoJh034412>