From owner-svn-ports-head@freebsd.org Sun Feb 21 15:51:02 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 18849AAF6BE; Sun, 21 Feb 2016 15:51:02 +0000 (UTC) (envelope-from koobs@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 CE3A618BF; Sun, 21 Feb 2016 15:51:01 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1LFp0Kb085245; Sun, 21 Feb 2016 15:51:00 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1LFp0me085242; Sun, 21 Feb 2016 15:51:00 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201602211551.u1LFp0me085242@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Sun, 21 Feb 2016 15:51:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r409299 - in head/devel/py-posix_ipc: . files 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.20 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, 21 Feb 2016 15:51:02 -0000 Author: koobs Date: Sun Feb 21 15:51:00 2016 New Revision: 409299 URL: https://svnweb.freebsd.org/changeset/ports/409299 Log: devel/py-dateutil: Update to 2.4.2 - Update PORTVERSION and distinfo checksum (2.4.2) - six is only a RUN_DEPENDS, remove from BUILD_DEPENDS - Enable NO_ARCH (architecture independence) - Add test target Added: head/devel/py-posix_ipc/files/ head/devel/py-posix_ipc/files/patch-setup.py (contents, props changed) Modified: head/devel/py-posix_ipc/Makefile head/devel/py-posix_ipc/distinfo Modified: head/devel/py-posix_ipc/Makefile ============================================================================== --- head/devel/py-posix_ipc/Makefile Sun Feb 21 15:37:33 2016 (r409298) +++ head/devel/py-posix_ipc/Makefile Sun Feb 21 15:51:00 2016 (r409299) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= posix_ipc -PORTVERSION= 0.9.8 +PORTVERSION= 1.0.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,8 +11,15 @@ MAINTAINER= koobs@FreeBSD.org COMMENT= POSIX IPC primitives for Python LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE USES= python USE_PYTHON= distutils autoplist +post-install: + ${STRIP_CMD} ${STAGEDIR}/${PYTHONPREFIX_SITELIBDIR}/posix_ipc.so + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test + .include Modified: head/devel/py-posix_ipc/distinfo ============================================================================== --- head/devel/py-posix_ipc/distinfo Sun Feb 21 15:37:33 2016 (r409298) +++ head/devel/py-posix_ipc/distinfo Sun Feb 21 15:51:00 2016 (r409299) @@ -1,2 +1,2 @@ -SHA256 (posix_ipc-0.9.8.tar.gz) = 271446eb133efb7410eb51265807aa54e0acb8eb7c2abcf027e51b4cb36d36dd -SIZE (posix_ipc-0.9.8.tar.gz) = 66589 +SHA256 (posix_ipc-1.0.0.tar.gz) = 9c93070374ca672725575e5c9874930c8cde69367fb90378b2255e048e31efcb +SIZE (posix_ipc-1.0.0.tar.gz) = 74774 Added: head/devel/py-posix_ipc/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-posix_ipc/files/patch-setup.py Sun Feb 21 15:51:00 2016 (r409299) @@ -0,0 +1,18 @@ +--- setup.py.orig 2016-02-21 15:13:28 UTC ++++ setup.py +@@ -32,6 +32,7 @@ classifiers = [ "Development Status :: 5 + "Topic :: Utilities" ] + license = "http://creativecommons.org/licenses/BSD/" + keywords = "ipc inter-process communication semaphore shared memory shm message queue" ++test_suite = "tests" + + libraries = [ ] + +@@ -65,5 +66,6 @@ duc.setup(name = name, + classifiers = classifiers, + license = license, + keywords = keywords, +- ext_modules = ext_modules ++ ext_modules = ext_modules, ++ test_suite = test_suite, + )