From owner-svn-ports-all@FreeBSD.ORG Thu Nov 6 19:53:39 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5F94B811; Thu, 6 Nov 2014 19:53:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 316F7EE5; Thu, 6 Nov 2014 19:53:39 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sA6Jrd8o037454; Thu, 6 Nov 2014 19:53:39 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sA6Jrcdl037448; Thu, 6 Nov 2014 19:53:38 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201411061953.sA6Jrcdl037448@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Thu, 6 Nov 2014 19:53:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r372235 - in head/www: . py-wsgidav X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Nov 2014 19:53:39 -0000 Author: marino Date: Thu Nov 6 19:53:37 2014 New Revision: 372235 URL: https://svnweb.freebsd.org/changeset/ports/372235 QAT: https://qat.redports.org/buildarchive/r372235/ Log: Add new port www/py-wsgidav PR: 193313 Submitted by: JingFeng Yan WsgiDAV is a WebDAV server for sharing files and other resources over the web. It is based on the WSGI interface. It comes bundled with a simple WSGI web server. This package is based on PyFileServer by Ho Chun Wei. Added: head/www/py-wsgidav/ head/www/py-wsgidav/Makefile (contents, props changed) head/www/py-wsgidav/distinfo (contents, props changed) head/www/py-wsgidav/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Thu Nov 6 19:44:13 2014 (r372234) +++ head/www/Makefile Thu Nov 6 19:53:37 2014 (r372235) @@ -1697,6 +1697,7 @@ SUBDIR += py-wikitools SUBDIR += py-ws4py SUBDIR += py-wsgiauth + SUBDIR += py-wsgidav SUBDIR += py-zope.app.wsgi SUBDIR += pyblosxom SUBDIR += pydio Added: head/www/py-wsgidav/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-wsgidav/Makefile Thu Nov 6 19:53:37 2014 (r372235) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= WsgiDAV +PORTVERSION= 1.1.0 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yan_jingfeng@yahoo.com +COMMENT= WSGI based WebDAV server for sharing resources + +LICENSE= MIT + +USES= python:2 zip +USE_PYTHON= distutils autoplist + +post-extract: + ${RM} -r ${WRKSRC}/tests + +.include Added: head/www/py-wsgidav/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-wsgidav/distinfo Thu Nov 6 19:53:37 2014 (r372235) @@ -0,0 +1,2 @@ +SHA256 (WsgiDAV-1.1.0.zip) = fde76947dad2cb3e7d40201188b8aa3e2b02dd88962a09d18f5d47fa9f80a55b +SIZE (WsgiDAV-1.1.0.zip) = 206417 Added: head/www/py-wsgidav/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-wsgidav/pkg-descr Thu Nov 6 19:53:37 2014 (r372235) @@ -0,0 +1,5 @@ +WsgiDAV is a WebDAV server for sharing files and other resources over the +web. It is based on the WSGI interface. It comes bundled with a simple +WSGI web server. This package is based on PyFileServer by Ho Chun Wei. + +WWW: https://github.com/mar10/wsgidav