Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 21 Feb 2016 15:51:00 +0000 (UTC)
From:      Kubilay Kocak <koobs@FreeBSD.org>
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
Message-ID:  <201602211551.u1LFp0me085242@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>

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,
+          )



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602211551.u1LFp0me085242>