From: Werner Koch Date: Mon, 12 Jan 2004 13:28:36 +0000 (+0000) Subject: About to release 0.4.4: X-Git-Tag: gpgme-0-4-4~2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=215da10c1c9e29878a130324816cd981e9ab8487;p=gpgme.git About to release 0.4.4: * configure.ac: Bumbed LT_Revision; now at C12/A1/R1. (NEED_GPGSM_VERSION): Set to 1.9.3. * sign.c: Include util.h for prototype of _gpgme_parse_timestamp. * gpg/t-keylist-sig.c (main): Temporary disabled one test due top gpg 1.3.4 problems. * gpg/t-import.c (check_result): Likewise. --- diff --git a/ChangeLog b/ChangeLog index 576c222..30cb71c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2004-01-12 Werner Koch + + Released 0.4.4. + + * configure.ac: Bumbed LT_Revision; now at C12/A1/R1. + (NEED_GPGSM_VERSION): Set to 1.9.3. + 2003-11-19 Werner Koch * acinclude.m4: Add AM_PATH_GPG_ERROR. diff --git a/NEWS b/NEWS index 4818a78..6231750 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -Noteworthy changes in version 0.4.4 (unreleased) +Noteworthy changes in version 0.4.4 (2004-01-12) ------------------------------------------------ * The member "class" in gpgme_key_sig_t and gpgme_new_signature_t has diff --git a/TODO b/TODO index aab0da9..afb47dd 100644 --- a/TODO +++ b/TODO @@ -2,6 +2,7 @@ Hey Emacs, this is -*- outline -*- mode! * Before release: ** Some gpg tests fail with gpg 1.3.4-cvs (gpg/t-keylist-sig) + The test is currently disabled tehre and in gpg/t-import. * ABI's to break: ** I/O and User Data could be made extensible. But this can be done diff --git a/configure.ac b/configure.ac index acc52a3..864b13d 100644 --- a/configure.ac +++ b/configure.ac @@ -30,9 +30,9 @@ AC_INIT(gpgme, 0.4.4, [bug-gpgme@gnupg.org]) # LIBGPGME_LT_CURRENT=12 LIBGPGME_LT_AGE=1 -LIBGPGME_LT_REVISION=0 +LIBGPGME_LT_REVISION=1 NEED_GPG_VERSION=1.2.2 -NEED_GPGSM_VERSION=0.9.0 +NEED_GPGSM_VERSION=1.9.3 ############################################## AC_PREREQ(2.52) AC_REVISION($Revision$) diff --git a/gpgme/ChangeLog b/gpgme/ChangeLog index 6506525..b7c0f81 100644 --- a/gpgme/ChangeLog +++ b/gpgme/ChangeLog @@ -1,3 +1,7 @@ +2004-01-12 Werner Koch + + * sign.c: Include util.h for prototype of _gpgme_parse_timestamp. + 2003-12-25 Marcus Brinkmann * gpgme.h (_GPGME_D_CLASS): Revert this change. diff --git a/gpgme/sign.c b/gpgme/sign.c index 4e1a523..2c0ae3f 100644 --- a/gpgme/sign.c +++ b/gpgme/sign.c @@ -28,6 +28,7 @@ #include "gpgme.h" #include "context.h" #include "ops.h" +#include "util.h" typedef struct diff --git a/tests/ChangeLog b/tests/ChangeLog index 1ca2e37..f17e812 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,9 @@ +2004-01-12 Werner Koch + + * gpg/t-keylist-sig.c (main): Temporary disabled one test due top + gpg 1.3.4 problems. + * gpg/t-import.c (check_result): Likewise. + 2003-11-19 Werner Koch * gpg/t-support.h (DIM): Added. diff --git a/tests/gpg/t-import.c b/tests/gpg/t-import.c index 22528e0..4a304d8 100644 --- a/tests/gpg/t-import.c +++ b/tests/gpg/t-import.c @@ -83,7 +83,10 @@ check_result (gpgme_import_result_t result, char *fpr, int secret) { fprintf (stderr, "Unexpected number of new signatures %i\n", result->new_signatures); - exit (1); + if (result->new_signatures == 2) + fprintf (stderr, "### ignored due to gpg 1.3.4 problems\n"); + else + exit (1); } if (result->new_revocations != 0) { diff --git a/tests/gpg/t-keylist-sig.c b/tests/gpg/t-keylist-sig.c index 6578eeb..9edaf03 100644 --- a/tests/gpg/t-keylist-sig.c +++ b/tests/gpg/t-keylist-sig.c @@ -456,7 +456,13 @@ main (int argc, char **argv) key->uids->next->email); exit (1); } - if (key->uids && (!key->uids->next->signatures || key->uids->next->signatures->next)) + /*FIXME: There is a bug in gpg 1.3.4 which duplicates a signaure + after importing the secret key. We disable this test for + now. */ +#ifdef __GNUC__ +#warning test disabled due to problems with gpg 1.3.4 +#endif + if (key->uids && (!key->uids->next->signatures /*|| key->uids->next->signatures->next*/)) { fprintf (stderr, "Second user ID unexpected number of signatures\n"); exit (1);