From owner-svn-ports-head@freebsd.org Fri Jun 2 11:05:55 2017 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 7DEB0BF5304; Fri, 2 Jun 2017 11:05:55 +0000 (UTC) (envelope-from araujo@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 4C7CC83CB9; Fri, 2 Jun 2017 11:05:55 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v52B5sVb083813; Fri, 2 Jun 2017 11:05:54 GMT (envelope-from araujo@FreeBSD.org) Received: (from araujo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v52B5svg083810; Fri, 2 Jun 2017 11:05:54 GMT (envelope-from araujo@FreeBSD.org) Message-Id: <201706021105.v52B5svg083810@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: araujo set sender to araujo@FreeBSD.org using -f From: Marcelo Araujo Date: Fri, 2 Jun 2017 11:05:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r442375 - in head/textproc: . py-humanfriendly py3-humanfriendly 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: Fri, 02 Jun 2017 11:05:55 -0000 Author: araujo Date: Fri Jun 2 11:05:54 2017 New Revision: 442375 URL: https://svnweb.freebsd.org/changeset/ports/442375 Log: - Create a python3 version of textproc/py-humanfriendly. Added: head/textproc/py3-humanfriendly/ head/textproc/py3-humanfriendly/Makefile (contents, props changed) Modified: head/textproc/Makefile head/textproc/py-humanfriendly/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Fri Jun 2 11:04:57 2017 (r442374) +++ head/textproc/Makefile Fri Jun 2 11:05:54 2017 (r442375) @@ -1373,6 +1373,7 @@ SUBDIR += py3-asciinema SUBDIR += py3-chardet SUBDIR += py3-docutils + SUBDIR += py3-humanfriendly SUBDIR += py3-hunspell SUBDIR += py3-libxml2 SUBDIR += py3-pager Modified: head/textproc/py-humanfriendly/Makefile ============================================================================== --- head/textproc/py-humanfriendly/Makefile Fri Jun 2 11:04:57 2017 (r442374) +++ head/textproc/py-humanfriendly/Makefile Fri Jun 2 11:05:54 2017 (r442375) @@ -13,7 +13,7 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt NO_ARCH= yes -USES= python +USES?= python USE_PYTHON= autoplist distutils .include Added: head/textproc/py3-humanfriendly/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py3-humanfriendly/Makefile Fri Jun 2 11:05:54 2017 (r442375) @@ -0,0 +1,6 @@ + +MASTERDIR= ${.CURDIR}/../py-humanfriendly + +USES= python:3.3+ + +.include "${MASTERDIR}/Makefile"