From owner-svn-ports-all@freebsd.org Tue Feb 21 15:08:18 2017 Return-Path: Delivered-To: svn-ports-all@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 ADD01CE8F66; Tue, 21 Feb 2017 15:08:18 +0000 (UTC) (envelope-from amdmi3@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 603CEFC5; Tue, 21 Feb 2017 15:08:18 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1LF8H9Q029760; Tue, 21 Feb 2017 15:08:17 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1LF8Hwu029756; Tue, 21 Feb 2017 15:08:17 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201702211508.v1LF8Hwu029756@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 21 Feb 2017 15:08:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r434538 - in head/devel: . py-setproctitle py3-setproctitle 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.23 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: Tue, 21 Feb 2017 15:08:18 -0000 Author: amdmi3 Date: Tue Feb 21 15:08:16 2017 New Revision: 434538 URL: https://svnweb.freebsd.org/changeset/ports/434538 Log: - Add py3-setproctitle, python counterpart of py-setproctitle - While here, fix PYTHON_SITELIBDIR misuse, don't install license with docs and add PyPi WWW Added: head/devel/py3-setproctitle/ head/devel/py3-setproctitle/Makefile (contents, props changed) Modified: head/devel/Makefile head/devel/py-setproctitle/Makefile head/devel/py-setproctitle/pkg-descr Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Feb 21 14:41:16 2017 (r434537) +++ head/devel/Makefile Tue Feb 21 15:08:16 2017 (r434538) @@ -4909,6 +4909,7 @@ SUBDIR += py3-python-magic SUBDIR += py3-pytz SUBDIR += py3-rubymarshal + SUBDIR += py3-setproctitle SUBDIR += py3-simplejson SUBDIR += py3-threema-msgapi SUBDIR += py3-vcversioner Modified: head/devel/py-setproctitle/Makefile ============================================================================== --- head/devel/py-setproctitle/Makefile Tue Feb 21 14:41:16 2017 (r434537) +++ head/devel/py-setproctitle/Makefile Tue Feb 21 15:08:16 2017 (r434538) @@ -13,15 +13,15 @@ COMMENT= Python module to customize the LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYRIGHT -USES= python +USES?= python USE_PYTHON= autoplist distutils -PORTDOCS= COPYRIGHT HISTORY.rst README.rst +PORTDOCS= HISTORY.rst README.rst OPTIONS_DEFINE= DOCS post-install: - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/setproctitle.so + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/setproctitle.so post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} Modified: head/devel/py-setproctitle/pkg-descr ============================================================================== --- head/devel/py-setproctitle/pkg-descr Tue Feb 21 14:41:16 2017 (r434537) +++ head/devel/py-setproctitle/pkg-descr Tue Feb 21 15:08:16 2017 (r434538) @@ -3,4 +3,5 @@ A setproctitle implementation for Python The library allows a process to change its title (as displayed by system tools such as ps(1) and top(1). +WWW: https://pypi.python.org/pypi/setproctitle WWW: https://github.com/dvarrazzo/py-setproctitle Added: head/devel/py3-setproctitle/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py3-setproctitle/Makefile Tue Feb 21 15:08:16 2017 (r434538) @@ -0,0 +1,8 @@ +# Created by: Dmitry Marakasov +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-setproctitle + +USES= python:3 + +.include "${MASTERDIR}/Makefile"