Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 Aug 2018 15:58:18 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r477659 - head/devel/py-durus
Message-ID:  <201808201558.w7KFwInM060614@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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/



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