[Midnightbsd-cvs] mports [23006] trunk/security/libgcrypt: 1.8.2
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Sat Feb 17 13:09:55 EST 2018
Revision: 23006
http://svnweb.midnightbsd.org/mports/?rev=23006
Author: laffer1
Date: 2018-02-17 13:09:54 -0500 (Sat, 17 Feb 2018)
Log Message:
-----------
1.8.2
Modified Paths:
--------------
trunk/security/libgcrypt/Makefile
trunk/security/libgcrypt/distinfo
trunk/security/libgcrypt/pkg-plist
Added Paths:
-----------
trunk/security/libgcrypt/files/patch-mpi_config.links
Removed Paths:
-------------
trunk/security/libgcrypt/files/patch-cipher-Makefile.in
trunk/security/libgcrypt/files/patch-gcrypt.h.in
Modified: trunk/security/libgcrypt/Makefile
===================================================================
--- trunk/security/libgcrypt/Makefile 2018-02-17 18:06:20 UTC (rev 23005)
+++ trunk/security/libgcrypt/Makefile 2018-02-17 18:09:54 UTC (rev 23006)
@@ -1,10 +1,9 @@
# $MidnightBSD$
PORTNAME= libgcrypt
-PORTVERSION= 1.6.3
+PORTVERSION= 1.8.2
CATEGORIES= security
-MASTER_SITES= ${MASTER_SITE_GNUPG}
-MASTER_SITE_SUBDIR= ${PORTNAME}
+MASTER_SITES= GNUPG
MAINTAINER= ports at MidnightBSD.org
COMMENT= General purpose crypto library based on code used in GnuPG
@@ -12,10 +11,11 @@
LICENSE= gpl2 lgpl2.1
LICENSE_COMB= multi
-BUILD_DEPENDS= libgpg-error>=1.8:${PORTSDIR}/security/libgpg-error
-RUN_DEPENDS= libgpg-error>=1.8:${PORTSDIR}/security/libgpg-error
+BUILD_DEPENDS= libgpg-error>=1.25:${PORTSDIR}/security/libgpg-error
+RUN_DEPENDS= libgpg-error>=1.25:${PORTSDIR}/security/libgpg-error
USES= libtool makeinfo tar:bzip2
+CPE_VENDOR= gnupg
USE_CSTD= gnu89
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-drng-support
@@ -60,7 +60,7 @@
.endif
post-install:
- ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}.so.20.0.3
+ ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}.so
.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${STAGEDIR}${DOCSDIR}
Modified: trunk/security/libgcrypt/distinfo
===================================================================
--- trunk/security/libgcrypt/distinfo 2018-02-17 18:06:20 UTC (rev 23005)
+++ trunk/security/libgcrypt/distinfo 2018-02-17 18:09:54 UTC (rev 23006)
@@ -1,2 +1,3 @@
-SHA256 (libgcrypt-1.6.3.tar.bz2) = 41b4917b93ae34c6a0e2127378d7a4d66d805a2a86a09911d4f9bd871db7025f
-SIZE (libgcrypt-1.6.3.tar.bz2) = 2494052
+TIMESTAMP = 1513371062
+SHA256 (libgcrypt-1.8.2.tar.bz2) = c8064cae7558144b13ef0eb87093412380efa16c4ee30ad12ecb54886a524c07
+SIZE (libgcrypt-1.8.2.tar.bz2) = 2966534
Deleted: trunk/security/libgcrypt/files/patch-cipher-Makefile.in
===================================================================
--- trunk/security/libgcrypt/files/patch-cipher-Makefile.in 2018-02-17 18:06:20 UTC (rev 23005)
+++ trunk/security/libgcrypt/files/patch-cipher-Makefile.in 2018-02-17 18:09:54 UTC (rev 23006)
@@ -1,15 +0,0 @@
---- cipher/Makefile.in.orig 2015-01-21 19:09:47.000000000 +0100
-+++ cipher/Makefile.in 2015-01-21 19:13:35.000000000 +0100
-@@ -766,6 +766,12 @@
- tiger.lo: $(srcdir)/tiger.c
- `echo $(LTCOMPILE) -c $(srcdir)/tiger.c | $(o_flag_munging) `
-
-+salsa20.o: $(srcdir)/salsa20.c
-+ `echo $(COMPILE) -c $(srcdir)/salsa20.c | $(o_flag_munging) `
-+
-+salsa20.lo: $(srcdir)/salsa20.c
-+ `echo $(LTCOMPILE) -c $(srcdir)/salsa20.c | $(o_flag_munging) `
-+
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
- # Otherwise a system limit (for SysV at least) may be exceeded.
- .NOEXPORT:
Deleted: trunk/security/libgcrypt/files/patch-gcrypt.h.in
===================================================================
--- trunk/security/libgcrypt/files/patch-gcrypt.h.in 2018-02-17 18:06:20 UTC (rev 23005)
+++ trunk/security/libgcrypt/files/patch-gcrypt.h.in 2018-02-17 18:09:54 UTC (rev 23006)
@@ -1,20 +0,0 @@
---- src/gcrypt.h.in-orig 2014-07-28 03:54:16.000000000 +0200
-+++ src/gcrypt.h.in 2014-07-28 03:54:32.000000000 +0200
-@@ -508,7 +508,7 @@
- GCRYMPI_FLAG_USER1 = 0x0100,/* User flag 1. */
- GCRYMPI_FLAG_USER2 = 0x0200,/* User flag 2. */
- GCRYMPI_FLAG_USER3 = 0x0400,/* User flag 3. */
-- GCRYMPI_FLAG_USER4 = 0x0800,/* User flag 4. */
-+ GCRYMPI_FLAG_USER4 = 0x0800 /* User flag 4. */
- };
-
-
-@@ -1345,7 +1345,7 @@
- /* Flags used with the open function. */
- enum gcry_mac_flags
- {
-- GCRY_MAC_FLAG_SECURE = 1, /* Allocate all buffers in "secure" memory. */
-+ GCRY_MAC_FLAG_SECURE = 1 /* Allocate all buffers in "secure" memory. */
- };
-
- /* Create a MAC handle for algorithm ALGO. FLAGS may be given as an bitwise OR
Added: trunk/security/libgcrypt/files/patch-mpi_config.links
===================================================================
--- trunk/security/libgcrypt/files/patch-mpi_config.links (rev 0)
+++ trunk/security/libgcrypt/files/patch-mpi_config.links 2018-02-17 18:09:54 UTC (rev 23006)
@@ -0,0 +1,13 @@
+--- mpi/config.links.orig 2018-01-22 12:14:47 UTC
++++ mpi/config.links
+@@ -301,8 +301,8 @@ case "${host}" in
+ mpi_cpu_arch="ppc"
+ ;;
+
+- powerpc*-*-netbsd* | powerpc*-*-openbsd*)
+- echo '/* configured {Open,Net}BSD on powerpc */' >>./mpi/asm-syntax.h
++ powerpc*-*-netbsd* | powerpc*-*-openbsd* | powerpc-*-freebsd* | powerpcspe-*-freebsd*)
++ echo '/* configured {Open,Net,Free}BSD on powerpc */' >>./mpi/asm-syntax.h
+ echo '#define ELF_SYNTAX' >>./mpi/asm-syntax.h
+ cat $srcdir/mpi/powerpc32/syntax.h >>./mpi/asm-syntax.h
+ mpi_sflags="-Wa,-mppc"
Property changes on: trunk/security/libgcrypt/files/patch-mpi_config.links
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Modified: trunk/security/libgcrypt/pkg-plist
===================================================================
--- trunk/security/libgcrypt/pkg-plist 2018-02-17 18:06:20 UTC (rev 23005)
+++ trunk/security/libgcrypt/pkg-plist 2018-02-17 18:09:54 UTC (rev 23006)
@@ -5,6 +5,6 @@
include/gcrypt.h
lib/libgcrypt.so
lib/libgcrypt.so.20
-lib/libgcrypt.so.20.0.3
+lib/libgcrypt.so.20.2.2
man/man1/hmac256.1.gz
share/aclocal/libgcrypt.m4
More information about the Midnightbsd-cvs
mailing list