summaryrefslogtreecommitdiff
path: root/security/gpgme/patches
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2009-11-15 18:41:55 +0000
committerdrochner <drochner@pkgsrc.org>2009-11-15 18:41:55 +0000
commit62e047b04174dbd6f117d15ac97f7209b07d7b3b (patch)
tree6aded74b63e6725c98267a679336fcaca01edb32 /security/gpgme/patches
parent1c7ffbc941d7062ff2f679b5c8bb98888a5a2cc1 (diff)
downloadpkgsrc-62e047b04174dbd6f117d15ac97f7209b07d7b3b.tar.gz
update to 1.1.8
changes: -bugfixes -API extensions -documentation improvement -The encoding of gpgme_data_t objects can affect the output encoding of export, sign and encrypt operations now -Using GPGME_KEYLIST_MODE_LOCAL combined with GPGME_KEYLIST_MODE_EXTERN is now supported
Diffstat (limited to 'security/gpgme/patches')
-rw-r--r--security/gpgme/patches/patch-aa6
-rw-r--r--security/gpgme/patches/patch-ad12
-rw-r--r--security/gpgme/patches/patch-ae18
-rw-r--r--security/gpgme/patches/patch-af6
-rw-r--r--security/gpgme/patches/patch-ah6
-rw-r--r--security/gpgme/patches/patch-aj6
-rw-r--r--security/gpgme/patches/patch-ak13
-rw-r--r--security/gpgme/patches/patch-bc29
8 files changed, 16 insertions, 80 deletions
diff --git a/security/gpgme/patches/patch-aa b/security/gpgme/patches/patch-aa
index 991b1016c12..c41cd7d2bed 100644
--- a/security/gpgme/patches/patch-aa
+++ b/security/gpgme/patches/patch-aa
@@ -1,7 +1,7 @@
-$NetBSD: patch-aa,v 1.7 2007/03/23 20:04:13 drochner Exp $
+$NetBSD: patch-aa,v 1.8 2009/11/15 18:41:55 drochner Exp $
---- gpgme/gpgme-config.in.orig 2007-01-26 06:28:37.000000000 +0100
-+++ gpgme/gpgme-config.in
+--- src/gpgme-config.in.orig 2007-01-26 06:28:37.000000000 +0100
++++ src/gpgme-config.in
@@ -29,8 +29,8 @@ libs_pth="@PTH_LDFLAGS@ @PTH_LIBS@"
cflags_pth="@PTH_CFLAGS@"
diff --git a/security/gpgme/patches/patch-ad b/security/gpgme/patches/patch-ad
deleted file mode 100644
index 688f57eba4f..00000000000
--- a/security/gpgme/patches/patch-ad
+++ /dev/null
@@ -1,12 +0,0 @@
-$NetBSD: patch-ad,v 1.1 2007/03/25 00:48:08 joerg Exp $
-
---- gpgme/posix-io.c.orig 2007-03-25 00:25:10.000000000 +0000
-+++ gpgme/posix-io.c
-@@ -33,6 +33,7 @@
- #include <sys/time.h>
- #include <sys/types.h>
- #include <sys/wait.h>
-+#include <sys/uio.h>
-
- #include "util.h"
- #include "priv-io.h"
diff --git a/security/gpgme/patches/patch-ae b/security/gpgme/patches/patch-ae
index 6e6814c43d4..bff6732ada6 100644
--- a/security/gpgme/patches/patch-ae
+++ b/security/gpgme/patches/patch-ae
@@ -1,8 +1,8 @@
-$NetBSD: patch-ae,v 1.3 2006/07/19 22:59:59 wiz Exp $
+$NetBSD: patch-ae,v 1.4 2009/11/15 18:41:55 drochner Exp $
---- gpgme/engine-gpgsm.c.orig 2005-10-01 20:14:48.000000000 +0000
-+++ gpgme/engine-gpgsm.c
-@@ -30,6 +30,9 @@
+--- src/engine-gpgsm.c.orig 2008-11-03 17:50:12.000000000 +0100
++++ src/engine-gpgsm.c
+@@ -28,6 +28,9 @@
#include <sys/types.h>
#include <assert.h>
#include <unistd.h>
@@ -12,13 +12,3 @@ $NetBSD: patch-ae,v 1.3 2006/07/19 22:59:59 wiz Exp $
#include <locale.h>
#include <fcntl.h> /* FIXME */
#include <errno.h>
-@@ -457,7 +460,8 @@ gpgsm_new (void **engine, const char *fi
-
- if (isatty (1))
- {
-- if (ttyname_r (1, dft_ttyname, sizeof (dft_ttyname)))
-+ /* ttyname_r() return numeric status */
-+ if (err = ttyname_r (1, dft_ttyname, sizeof (dft_ttyname)))
- {
- err = gpg_error_from_errno (errno);
- goto leave;
diff --git a/security/gpgme/patches/patch-af b/security/gpgme/patches/patch-af
index 11779070d7e..74192f83bf7 100644
--- a/security/gpgme/patches/patch-af
+++ b/security/gpgme/patches/patch-af
@@ -1,7 +1,7 @@
-$NetBSD: patch-af,v 1.5 2006/03/01 16:22:21 drochner Exp $
+$NetBSD: patch-af,v 1.6 2009/11/15 18:41:55 drochner Exp $
---- gpgme/get-env.c.orig 2004-12-07 21:47:40.000000000 +0100
-+++ gpgme/get-env.c
+--- src/get-env.c.orig 2004-12-07 21:47:40.000000000 +0100
++++ src/get-env.c
@@ -22,6 +22,9 @@
#include <config.h>
#endif
diff --git a/security/gpgme/patches/patch-ah b/security/gpgme/patches/patch-ah
index 7e2d2c6ce82..436d23e688f 100644
--- a/security/gpgme/patches/patch-ah
+++ b/security/gpgme/patches/patch-ah
@@ -1,7 +1,7 @@
-$NetBSD: patch-ah,v 1.2 2006/07/19 22:59:59 wiz Exp $
+$NetBSD: patch-ah,v 1.3 2009/11/15 18:41:55 drochner Exp $
---- gpgme/error.c.orig 2005-09-08 14:42:31.000000000 +0000
-+++ gpgme/error.c
+--- src/error.c.orig 2005-09-08 14:42:31.000000000 +0000
++++ src/error.c
@@ -22,6 +22,10 @@
#include <config.h>
#endif
diff --git a/security/gpgme/patches/patch-aj b/security/gpgme/patches/patch-aj
index 5ac52c71903..41286299a91 100644
--- a/security/gpgme/patches/patch-aj
+++ b/security/gpgme/patches/patch-aj
@@ -1,7 +1,7 @@
-$NetBSD: patch-aj,v 1.3 2007/03/23 20:04:13 drochner Exp $
+$NetBSD: patch-aj,v 1.4 2009/11/15 18:41:55 drochner Exp $
---- gpgme/Makefile.in.orig 2007-03-05 11:14:44.000000000 +0100
-+++ gpgme/Makefile.in
+--- src/Makefile.in.orig 2007-03-05 11:14:44.000000000 +0100
++++ src/Makefile.in
@@ -438,7 +438,7 @@ libgpgme_pthread_la_DEPENDENCIES = $(ass
@LTLIBOBJS@ $(srcdir)/libgpgme.vers
diff --git a/security/gpgme/patches/patch-ak b/security/gpgme/patches/patch-ak
deleted file mode 100644
index b8c47909485..00000000000
--- a/security/gpgme/patches/patch-ak
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ak,v 1.1 2007/03/23 20:04:13 drochner Exp $
-
---- autogen.sh.orig 2007-03-06 18:12:50.000000000 +0100
-+++ autogen.sh
-@@ -31,7 +31,7 @@ check_version () {
-
- DIE=no
- FORCE=
--if test "$1" == "--force"; then
-+if test "$1" = "--force"; then
- FORCE=" --force"
- shift
- fi
diff --git a/security/gpgme/patches/patch-bc b/security/gpgme/patches/patch-bc
deleted file mode 100644
index 85f339afa39..00000000000
--- a/security/gpgme/patches/patch-bc
+++ /dev/null
@@ -1,29 +0,0 @@
-$NetBSD: patch-bc,v 1.2 2007/03/23 20:04:13 drochner Exp $
-
---- assuan/Makefile.in.orig 2007-03-05 11:14:43.000000000 +0100
-+++ assuan/Makefile.in
-@@ -74,7 +74,7 @@ am_libassuan_la_OBJECTS = assuan-util.lo
- assuan-listen.lo assuan-connect.lo assuan-client.lo \
- assuan-pipe-server.lo assuan-socket-server.lo \
- assuan-pipe-connect.lo assuan-socket-connect.lo assuan-uds.lo \
-- funopen.lo assuan-io.lo assuan-logging.lo assuan-socket.lo
-+ assuan-io.lo assuan-logging.lo assuan-socket.lo
- libassuan_la_OBJECTS = $(am_libassuan_la_OBJECTS)
- DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
- depcomp = $(SHELL) $(top_srcdir)/depcomp
-@@ -275,7 +275,6 @@ libassuan_la_SOURCES = \
- assuan-pipe-connect.c \
- assuan-socket-connect.c \
- assuan-uds.c \
-- funopen.c \
- assuan-io.c \
- assuan-logging.c \
- assuan-socket.c
-@@ -348,7 +347,6 @@ distclean-compile:
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/assuan-socket.Plo@am__quote@
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/assuan-uds.Plo@am__quote@
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/assuan-util.Plo@am__quote@
--@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/funopen.Plo@am__quote@
-
- .c.o:
- @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \