From owner-svn-ports-head@freebsd.org Sun Feb 25 05:33:14 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AB1E3F07635; Sun, 25 Feb 2018 05:33:14 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3171E6BB38; Sun, 25 Feb 2018 05:33:14 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 11A5B791; Sun, 25 Feb 2018 05:33:14 +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 w1P5XDDx065315; Sun, 25 Feb 2018 05:33:13 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1P5XDD5065313; Sun, 25 Feb 2018 05:33:13 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201802250533.w1P5XDD5065313@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 25 Feb 2018 05:33:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462919 - head/devel/py-yappi X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/py-yappi X-SVN-Commit-Revision: 462919 X-SVN-Commit-Repository: ports 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.25 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: Sun, 25 Feb 2018 05:33:14 -0000 Author: sunpoet Date: Sun Feb 25 05:33:13 2018 New Revision: 462919 URL: https://svnweb.freebsd.org/changeset/ports/462919 Log: Clean up Makefile - Do not silence installation messages - Add Bitbucket repository to WWW - Take maintainership Modified: head/devel/py-yappi/Makefile head/devel/py-yappi/pkg-descr Modified: head/devel/py-yappi/Makefile ============================================================================== --- head/devel/py-yappi/Makefile Sun Feb 25 05:33:08 2018 (r462918) +++ head/devel/py-yappi/Makefile Sun Feb 25 05:33:13 2018 (r462919) @@ -7,24 +7,24 @@ CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Yet Another Python Profiler LICENSE= MIT +USES= python +USE_PYTHON= autoplist concurrent distutils + OPTIONS_DEFINE= DOCS PORTDOCS= * -USES= python -USE_PYTHON= distutils concurrent autoplist +post-install: + ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/_yappi.so post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} - -post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/_yappi.so do-test: @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test Modified: head/devel/py-yappi/pkg-descr ============================================================================== --- head/devel/py-yappi/pkg-descr Sun Feb 25 05:33:08 2018 (r462918) +++ head/devel/py-yappi/pkg-descr Sun Feb 25 05:33:13 2018 (r462919) @@ -4,3 +4,4 @@ It is possible to profile an application, retrieve sta start later on the fly without affecting the profiled application. WWW: https://pypi.python.org/pypi/yappi +WWW: https://bitbucket.org/sumerc/yappi