aboutsummaryrefslogtreecommitdiff
path: root/security/py-pyblake2
diff options
context:
space:
mode:
authorAntoine Brodin <antoine@FreeBSD.org>2018-01-24 14:48:23 +0000
committerAntoine Brodin <antoine@FreeBSD.org>2018-01-24 14:48:23 +0000
commita065908c9b0bd5d5db508969b9747fbb7197c3ea (patch)
tree46bd1b3457aba4c3b5906b93db8ebf792e634c92 /security/py-pyblake2
parenta20ba2e0418e447bcc2a4369bc5f3af40fad7086 (diff)
downloadports-a065908c9b0bd5d5db508969b9747fbb7197c3ea.tar.gz
ports-a065908c9b0bd5d5db508969b9747fbb7197c3ea.zip
Notes
Diffstat (limited to 'security/py-pyblake2')
-rw-r--r--security/py-pyblake2/Makefile2
-rw-r--r--security/py-pyblake2/distinfo6
-rw-r--r--security/py-pyblake2/files/patch-setup.py11
3 files changed, 4 insertions, 15 deletions
diff --git a/security/py-pyblake2/Makefile b/security/py-pyblake2/Makefile
index 2855365cd920..9fa7cc92156c 100644
--- a/security/py-pyblake2/Makefile
+++ b/security/py-pyblake2/Makefile
@@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= pyblake2
-PORTVERSION= 0.9.3
+PORTVERSION= 1.1.0
CATEGORIES= security python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
diff --git a/security/py-pyblake2/distinfo b/security/py-pyblake2/distinfo
index 684fe0e49f49..9fe8ac567f1c 100644
--- a/security/py-pyblake2/distinfo
+++ b/security/py-pyblake2/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1509626218
-SHA256 (pyblake2-0.9.3.tar.gz) = 626448e1fe1cc01d2197118954bec9f158378577e12686d5b01979f7f0fa2212
-SIZE (pyblake2-0.9.3.tar.gz) = 130641
+TIMESTAMP = 1516627250
+SHA256 (pyblake2-1.1.0.tar.gz) = 3a850036bf42053c74bfc52c063323ca78e40ba1f326b01777da5750a143631a
+SIZE (pyblake2-1.1.0.tar.gz) = 125855
diff --git a/security/py-pyblake2/files/patch-setup.py b/security/py-pyblake2/files/patch-setup.py
deleted file mode 100644
index ca0c8f412082..000000000000
--- a/security/py-pyblake2/files/patch-setup.py
+++ /dev/null
@@ -1,11 +0,0 @@
---- setup.py.orig 2014-04-13 10:53:47 UTC
-+++ setup.py
-@@ -22,7 +22,7 @@ import platform
-
- # Version of optimized implementation to use.
-
--if platform.machine() == "x86_64":
-+if platform.machine() == "x86_64" or platform.machine() == "amd64":
- # Every x86_64 machine has at least SSE2.
- opt_version = "BLAKE2_COMPRESS_SSE2"
- else: