From owner-svn-ports-head@freebsd.org Sat Dec 24 13:10:47 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 932E2C8EBDD; Sat, 24 Dec 2016 13:10:47 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 625921453; Sat, 24 Dec 2016 13:10:47 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBODAkf2031103; Sat, 24 Dec 2016 13:10:46 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBODAkg9031100; Sat, 24 Dec 2016 13:10:46 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201612241310.uBODAkg9031100@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 24 Dec 2016 13:10:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r429351 - in head/www: . py-cssutils py3-cssutils X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Dec 2016 13:10:47 -0000 Author: sunpoet Date: Sat Dec 24 13:10:46 2016 New Revision: 429351 URL: https://svnweb.freebsd.org/changeset/ports/429351 Log: - Add py3-cssutils: slave port of py-cssutils Added: head/www/py3-cssutils/ head/www/py3-cssutils/Makefile (contents, props changed) Modified: head/www/Makefile head/www/py-cssutils/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sat Dec 24 13:04:12 2016 (r429350) +++ head/www/Makefile Sat Dec 24 13:10:46 2016 (r429351) @@ -1834,6 +1834,7 @@ SUBDIR += py-wsgiauth SUBDIR += py-wsgidav SUBDIR += py-zope.app.wsgi + SUBDIR += py3-cssutils SUBDIR += py33-requests SUBDIR += py34-requests SUBDIR += py35-requests Modified: head/www/py-cssutils/Makefile ============================================================================== --- head/www/py-cssutils/Makefile Sat Dec 24 13:04:12 2016 (r429350) +++ head/www/py-cssutils/Makefile Sat Dec 24 13:10:46 2016 (r429351) @@ -18,10 +18,12 @@ OPTIONS_DEFINE= EXAMPLES NO_ARCH= yes USE_PYTHON= autoplist concurrent distutils -USES= python zip +USES?= python zip PORTEXAMPLES= * +SLAVEDIRS= www/py3-cssutils + post-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/ ${INSTALL_DATA} ${WRKSRC}/examples/* ${STAGEDIR}${EXAMPLESDIR}/ Added: head/www/py3-cssutils/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py3-cssutils/Makefile Sat Dec 24 13:10:46 2016 (r429351) @@ -0,0 +1,8 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-cssutils + +USES= python:3.3+ zip + +.include "${MASTERDIR}/Makefile"