From owner-svn-ports-head@freebsd.org Mon Jun 12 19:38:18 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 E97FFC314AB; Mon, 12 Jun 2017 19:38:18 +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 B92787B95C; Mon, 12 Jun 2017 19:38:18 +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 v5CJcHdH054886; Mon, 12 Jun 2017 19:38:17 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v5CJcH8n054885; Mon, 12 Jun 2017 19:38:17 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201706121938.v5CJcH8n054885@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 12 Jun 2017 19:38:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443462 - head/devel/py-twisted 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: Mon, 12 Jun 2017 19:38:19 -0000 Author: sunpoet Date: Mon Jun 12 19:38:17 2017 New Revision: 443462 URL: https://svnweb.freebsd.org/changeset/ports/443462 Log: Simplify Makefile - Use bsd.port.mk instead of bsd.port.pre.mk + bsd.port.post.mk Modified: head/devel/py-twisted/Makefile Modified: head/devel/py-twisted/Makefile ============================================================================== --- head/devel/py-twisted/Makefile Mon Jun 12 19:20:27 2017 (r443461) +++ head/devel/py-twisted/Makefile Mon Jun 12 19:38:17 2017 (r443462) @@ -21,19 +21,13 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}zope.interface>=3. ${PYTHON_PKGNAMEPREFIX}incremental>=16.10.1:devel/py-incremental \ ${PYTHON_PKGNAMEPREFIX}Automat>=0.3.0:devel/py-Automat -# Actually 2.7,3.3+ USES= python tar:bzip2 USE_PYTHON= autoplist concurrent distutils -.include - post-install: -.if ${PYTHON_REL} < 3000 - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/twisted/python/_sendmsg.so -.endif - ${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/twisted/test/raiser.so + ${FIND} ${STAGEDIR}${PYTHON_SITELIBDIR}/ -name '*.so' -exec ${STRIP_CMD} {} + do-test: @cd ${WRKSRC} && ${PYTHON_CMD} -m twisted.trial -e twisted -.include +.include