mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-19 08:13:21 +00:00
7668468a7b
- New runtime depends - #42: Remove print usage in favor of logging (Sergi Almacellas Abellana) - #43: PEP8 fixes (Sergi Almacellas Abellana, Tom Viner) - #45 New method _DAVResource.finalizeHeaders(environ, responseHeaders) (Samuel Fekete) - #55 Custom response handlers for PUT, GET etc. - New helpers addons.stream_tools.FileLikeQueue and StreamingFile allow to pipe / proxy PUT requests to external consumers. - #46 Wrap xml libraries with the equivalent defusedxml packages (Tom Viner) PR: 215241 Changes: https://github.com/mar10/wsgidav/blob/master/CHANGELOG.md Submitted by: Ultima1252@gmail.com (maintainer)
30 lines
786 B
Makefile
30 lines
786 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= WsgiDAV
|
|
PORTVERSION= 2.1.0
|
|
CATEGORIES= www python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= ultima1252@gmail.com
|
|
COMMENT= WSGI based WebDAV server for sharing resources
|
|
|
|
LICENSE= MIT
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}defusedxml>=0:devel/py-defusedxml
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cherrypy>=0:www/py-cherrypy \
|
|
${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest \
|
|
${PYTHON_PKGNAMEPREFIX}cov-core>=0:devel/py-cov-core \
|
|
${PYTHON_PKGNAMEPREFIX}WebTest>=0:www/py-WebTest \
|
|
${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests \
|
|
${PYTHON_PKGNAMEPREFIX}defusedxml>=0:devel/py-defusedxml
|
|
|
|
NO_ARCH= yes
|
|
USES= python zip
|
|
USE_PYTHON= distutils autoplist
|
|
|
|
post-extract:
|
|
${RM} -r ${WRKSRC}/tests
|
|
|
|
.include <bsd.port.mk>
|