aboutsummaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authorpawel <pawel@FreeBSD.org>2013-03-20 04:36:34 +0800
committerpawel <pawel@FreeBSD.org>2013-03-20 04:36:34 +0800
commitbd6fb49fb3b5c94b42c86503c2ad56757f0adfda (patch)
treedd8707f8fdc1c55f66c75abf37dfec27674d4936 /security
parent285ee0da14ae92ee3bb17d79ffebd0efd60f7326 (diff)
downloadfreebsd-ports-gnome-bd6fb49fb3b5c94b42c86503c2ad56757f0adfda.tar.gz
freebsd-ports-gnome-bd6fb49fb3b5c94b42c86503c2ad56757f0adfda.tar.zst
freebsd-ports-gnome-bd6fb49fb3b5c94b42c86503c2ad56757f0adfda.zip
- Update security/ykpers to version 1.12.0 [1]
- Update security/libyubikey to version 1.10 [2] - Bump security/pam_yubico affected by security/ykpers ABI change PR: ports/177098 [1] PR: ports/177099 [2] Submitted by: Matt Stofko <matt@mjslabs.com> (maintainer)
Diffstat (limited to 'security')
-rw-r--r--security/libyubikey/Makefile2
-rw-r--r--security/libyubikey/distinfo4
-rw-r--r--security/pam_yubico/Makefile1
-rw-r--r--security/ykpers/Makefile4
-rw-r--r--security/ykpers/distinfo4
-rw-r--r--security/ykpers/files/patch-tests-test__args__to__config.c32
6 files changed, 8 insertions, 39 deletions
diff --git a/security/libyubikey/Makefile b/security/libyubikey/Makefile
index 3a1c306dc048..e9e3c1a47aed 100644
--- a/security/libyubikey/Makefile
+++ b/security/libyubikey/Makefile
@@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= libyubikey
-PORTVERSION= 1.9
+PORTVERSION= 1.10
CATEGORIES= security devel
MASTER_SITES= GOOGLE_CODE
diff --git a/security/libyubikey/distinfo b/security/libyubikey/distinfo
index 5087c6d9c3e2..6944eee68102 100644
--- a/security/libyubikey/distinfo
+++ b/security/libyubikey/distinfo
@@ -1,2 +1,2 @@
-SHA256 (libyubikey-1.9.tar.gz) = fb720bd683dd37968904e1ff3d4486307d3d5933f6c6cdc96f81ab27a19c46a6
-SIZE (libyubikey-1.9.tar.gz) = 321889
+SHA256 (libyubikey-1.10.tar.gz) = 8cabfe4a547550bcf6eea1fa830fd78bfdef35d1368de5455a29cfdfa30bc00a
+SIZE (libyubikey-1.10.tar.gz) = 330630
diff --git a/security/pam_yubico/Makefile b/security/pam_yubico/Makefile
index 3787074aada2..0de844ac80b0 100644
--- a/security/pam_yubico/Makefile
+++ b/security/pam_yubico/Makefile
@@ -2,6 +2,7 @@
PORTNAME= pam_yubico
PORTVERSION= 2.13
+PORTREVISION= 1
CATEGORIES= security
MASTER_SITES= GOOGLE_CODE
diff --git a/security/ykpers/Makefile b/security/ykpers/Makefile
index 02d28736b0fc..244607711f7d 100644
--- a/security/ykpers/Makefile
+++ b/security/ykpers/Makefile
@@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= ykpers
-PORTVERSION= 1.11.3
+PORTVERSION= 1.12.0
CATEGORIES= security
MASTER_SITES= GOOGLE_CODE
@@ -31,7 +31,7 @@ PLIST_FILES= bin/ykchalresp \
lib/libykpers-1.a \
lib/libykpers-1.la \
lib/libykpers-1.so \
- lib/libykpers-1.so.12 \
+ lib/libykpers-1.so.13 \
libdata/pkgconfig/ykpers-1.pc
PLIST_DIRS= include/ykpers-1
diff --git a/security/ykpers/distinfo b/security/ykpers/distinfo
index 44b4c00769db..111f1e54a9b0 100644
--- a/security/ykpers/distinfo
+++ b/security/ykpers/distinfo
@@ -1,2 +1,2 @@
-SHA256 (ykpers-1.11.3.tar.gz) = 9c89fa2ffe68612d10e7d4b733372706360abddbc3e7442958023f4f6110dac6
-SIZE (ykpers-1.11.3.tar.gz) = 463589
+SHA256 (ykpers-1.12.0.tar.gz) = b6968982b9e9c3435a245ba6c3096a823dcb722967b5700402d91b8614a72429
+SIZE (ykpers-1.12.0.tar.gz) = 464464
diff --git a/security/ykpers/files/patch-tests-test__args__to__config.c b/security/ykpers/files/patch-tests-test__args__to__config.c
deleted file mode 100644
index 38eae8724ec9..000000000000
--- a/security/ykpers/files/patch-tests-test__args__to__config.c
+++ /dev/null
@@ -1,32 +0,0 @@
---- tests/test_args_to_config.c.orig 2013-01-26 18:31:02.000000000 -0800
-+++ tests/test_args_to_config.c 2013-01-26 18:40:07.000000000 -0800
-@@ -123,7 +123,13 @@
- int rc;
-
- ykp_errno = 0;
-- optind = 0; /* getopt reinit */
-+
-+/* Handle both GNU and BSD getopt reinit */
-+#ifdef __GLIBC__
-+ optind = 0;
-+#else
-+ optind = optreset = 1;
-+#endif
-
- /* copy version number from st into cfg */
- assert(ykp_configure_for(cfg, 1, st) == 1);
-@@ -308,7 +314,13 @@
- int argc = 7;
-
- ykp_errno = 0;
-- optind = 0; /* getopt reinit */
-+
-+/* Handle both GNU and BSD getopt reinit */
-+#ifdef __GLIBC__
-+ optind = 0;
-+#else
-+ optind = optreset = 1;
-+#endif
-
- /* copy version number from st into cfg */
- ykp_configure_version(cfg, st);