From owner-svn-ports-all@FreeBSD.ORG Fri Dec 27 02:52:22 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8FAE8AFF; Fri, 27 Dec 2013 02:52:22 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7004616B9; Fri, 27 Dec 2013 02:52:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBR2qMaG006543; Fri, 27 Dec 2013 02:52:22 GMT (envelope-from wen@svn.freebsd.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBR2qL8O006538; Fri, 27 Dec 2013 02:52:21 GMT (envelope-from wen@svn.freebsd.org) Message-Id: <201312270252.rBR2qL8O006538@svn.freebsd.org> From: Wen Heping Date: Fri, 27 Dec 2013 02:52:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r337640 - in head/www: . py-uliweb py-uliweb/files 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.17 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: Fri, 27 Dec 2013 02:52:22 -0000 Author: wen Date: Fri Dec 27 02:52:21 2013 New Revision: 337640 URL: http://svnweb.freebsd.org/changeset/ports/337640 Log: Uliweb is a Python based web framework. WWW: https://pypi.python.org/pypi/Uliweb/ Added: head/www/py-uliweb/ head/www/py-uliweb/Makefile (contents, props changed) head/www/py-uliweb/distinfo (contents, props changed) head/www/py-uliweb/files/ head/www/py-uliweb/files/patch-uliweb-utils-setup.py (contents, props changed) head/www/py-uliweb/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Fri Dec 27 02:18:11 2013 (r337639) +++ head/www/Makefile Fri Dec 27 02:52:21 2013 (r337640) @@ -1682,6 +1682,7 @@ SUBDIR += py-tvdb_api SUBDIR += py-twistedWeb SUBDIR += py-twistedWeb2 + SUBDIR += py-uliweb SUBDIR += py-urlgrabber SUBDIR += py-urljr SUBDIR += py-utidy Added: head/www/py-uliweb/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-uliweb/Makefile Fri Dec 27 02:52:21 2013 (r337640) @@ -0,0 +1,22 @@ +# Created by: Wen Heping +# $FreeBSD$ + +PORTNAME= uliweb +PORTVERSION= 0.2.2 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= Uliweb-${DISTVERSION} + +MAINTAINER= wen@FreeBSD.org +COMMENT= Easy python web framework + +LICENSE= BSD + +USE_DOS2UNIX= yes +USE_PYTHON= yes +USE_PYDISTUTILS= easy_install +PYDISTUTILS_AUTOPLIST= yes +PYDISTUTILS_PKGNAME= Uliweb + +.include Added: head/www/py-uliweb/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-uliweb/distinfo Fri Dec 27 02:52:21 2013 (r337640) @@ -0,0 +1,2 @@ +SHA256 (Uliweb-0.2.2.tar.gz) = 813fddf5638bf9194100170a01bbd0104f7ef1598d14aa3cbed9a9746c288a05 +SIZE (Uliweb-0.2.2.tar.gz) = 590003 Added: head/www/py-uliweb/files/patch-uliweb-utils-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-uliweb/files/patch-uliweb-utils-setup.py Fri Dec 27 02:52:21 2013 (r337640) @@ -0,0 +1,13 @@ +--- uliweb/utils/setup.py.orig 2013-12-26 16:36:45.000000000 +0800 ++++ uliweb/utils/setup.py 2013-12-26 16:36:56.000000000 +0800 +@@ -4,10 +4,6 @@ + + #remove build and dist directory + import shutil +-if os.path.exists('build'): +- shutil.rmtree('build') +-if os.path.exists('dist'): +- shutil.rmtree('dist') + + def copy_dir(self, package, src, dst): + self.mkpath(dst) Added: head/www/py-uliweb/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-uliweb/pkg-descr Fri Dec 27 02:52:21 2013 (r337640) @@ -0,0 +1,3 @@ +Uliweb is a Python based web framework. + +WWW: https://pypi.python.org/pypi/Uliweb/