svn commit: r401892 - head/security/py-SecretStorage
Ruslan Makhmatkhanov
rm at FreeBSD.org
Wed Nov 18 20:05:27 UTC 2015
Author: rm
Date: Wed Nov 18 20:05:25 2015
New Revision: 401892
URL: https://svnweb.freebsd.org/changeset/ports/401892
Log:
security/py-SecretStorage: update to 2.1.2
SecretStorage 2.1.2, 2015-06-30
===============================
* Add Item.unlock() method.
* Use setuptools when it is available.
* Documentation now uses Alabaster sphinx theme.
* Other documentation fixes and improvements.
While here let it build with python3 by picking correct py-dbus port
according to python version used in the build.
PR: 204581
Submitted by: douglas at douglasthrift.net (maintainer)
Modified:
head/security/py-SecretStorage/Makefile
head/security/py-SecretStorage/distinfo
Modified: head/security/py-SecretStorage/Makefile
==============================================================================
--- head/security/py-SecretStorage/Makefile Wed Nov 18 20:03:41 2015 (r401891)
+++ head/security/py-SecretStorage/Makefile Wed Nov 18 20:05:25 2015 (r401892)
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= SecretStorage
-PORTVERSION= 1.1.0
+PORTVERSION= 2.1.2
CATEGORIES= security python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@@ -12,9 +12,18 @@ COMMENT= Store passwords using the Secre
LICENSE= BSD3CLAUSE
-RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dbus>=0.84.0:${PORTSDIR}/devel/py-dbus
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pycrypto>0:${PORTSDIR}/security/py-pycrypto
+NO_ARCH= yes
USES= python
-USE_PYTHON= distutils autoplist
+USE_PYTHON= autoplist distutils
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+.if ${PYTHON_REL} > 3000
+RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dbus>=0.84.0:${PORTSDIR}/devel/py3-dbus
+.else
+RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}dbus>=0.84.0:${PORTSDIR}/devel/py-dbus
+.endif
+
+.include <bsd.port.post.mk>
Modified: head/security/py-SecretStorage/distinfo
==============================================================================
--- head/security/py-SecretStorage/distinfo Wed Nov 18 20:03:41 2015 (r401891)
+++ head/security/py-SecretStorage/distinfo Wed Nov 18 20:05:25 2015 (r401892)
@@ -1,2 +1,2 @@
-SHA256 (SecretStorage-1.1.0.tar.gz) = 439d23ef00abb673a9a119c58bb8733e8ce6f57f82afc016547af4b742d49383
-SIZE (SecretStorage-1.1.0.tar.gz) = 14242
+SHA256 (SecretStorage-2.1.2.tar.gz) = 61da7f2ff9d44abf7b053f58360fa844de0a35b16de4efdc0b545c286cecc082
+SIZE (SecretStorage-2.1.2.tar.gz) = 18128
More information about the svn-ports-head
mailing list