svn commit: r477659 - head/devel/py-durus
Yuri Victorovich
yuri at FreeBSD.org
Mon Aug 20 15:58:19 UTC 2018
Author: yuri
Date: Mon Aug 20 15:58:17 2018
New Revision: 477659
URL: https://svnweb.freebsd.org/changeset/ports/477659
Log:
devel/py-durus: Make it concurrent
Ther port changes:
* Add LICENSE_FILE
* Add stripping
* Update WWW to use https
Approved by: portmgr blanket
Modified:
head/devel/py-durus/Makefile
head/devel/py-durus/pkg-descr
Modified: head/devel/py-durus/Makefile
==============================================================================
--- head/devel/py-durus/Makefile Mon Aug 20 15:38:30 2018 (r477658)
+++ head/devel/py-durus/Makefile Mon Aug 20 15:58:17 2018 (r477659)
@@ -3,7 +3,7 @@
PORTNAME= durus
PORTVERSION= 3.9
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP \
http://www.mems-exchange.org/software/durus/
@@ -14,16 +14,19 @@ MAINTAINER= robak at FreeBSD.org
COMMENT= Persistent object storage system for Python
LICENSE= MIT
+LICENSE_FILE= ${WRKSRC}/LICENSE.txt
USES= python
-USE_PYTHON= autoplist distutils
+USE_PYTHON= autoplist concurrent distutils
OPTIONS_DEFINE= DOCS
+post-install:
+ @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/${PORTNAME}/_persistent.so
+
post-install-DOCS-on:
- @ ${MKDIR} ${STAGEDIR}${DOCSDIR}
.for docfile in ACKS.txt CHANGES.txt INSTALL.txt LICENSE.txt README.txt doc/FAQ.txt
- @ ${INSTALL_DATA} ${WRKSRC}/${docfile} ${STAGEDIR}${DOCSDIR}
+ @${INSTALL_DATA} ${WRKSRC}/${docfile} ${STAGEDIR}${DOCSDIR}
.endfor
.include <bsd.port.mk>
Modified: head/devel/py-durus/pkg-descr
==============================================================================
--- head/devel/py-durus/pkg-descr Mon Aug 20 15:38:30 2018 (r477658)
+++ head/devel/py-durus/pkg-descr Mon Aug 20 15:58:17 2018 (r477659)
@@ -8,4 +8,4 @@ instance which includes commit() and abort() methods s
are transactional. Durus is best suited to collections of less than a
million instances with relatively stable state.
-WWW: http://www.mems-exchange.org/software/durus/
+WWW: https://www.mems-exchange.org/software/
More information about the svn-ports-all
mailing list