aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 2004-12-07 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-12-07121-1609/+2645
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * README: Refer to COPYING.LESSER and "each file" instead of COPYING. * COPYING.LESSER: New file. * gpgme.spec.in (%doc): Add COPYING.LESSER. * acinclude.m4, configure.ac, Makefile.am: Change license to LGPL 2.1 or later. * TODO: Add copyright notice. * README.CVS: Likewise. assuan/ 2004-12-07 Marcus Brinkmann <[email protected]> * README.1st: Add copyright notice. doc/ 2004-12-07 Marcus Brinkmann <[email protected]> * Makefile.am: Change license to LGPL. (gpgme_TEXINFOS): Replace gpl.texi with lesser.texi. * gpgme.texi: Change license to LGPL (also for documentation of GPGME's license). * lesser.texi: New file. * gpl.texi: File removed. gpgme/ 2004-12-07 Marcus Brinkmann <[email protected]> * putc_unlocked.c, funopen.c: I just claim copyright on these files and change their license to LGPL, because they are totally trivial wrapper functions. * isascii.c: Change copyright notice to the one from ctype/ctype.h in the GNU C Library (CVS Head 2004-10-10), where isascii is defined as a macro doing exactly the same as the function in this file. * memrchr.c: Update from the GNU C Library (CVS Head 2001-07-06). * stpcpy.c: Update from the GNU C Library (CVS Head 2004-10-10). * ath.c, ath-compat.c, ath.h, ath-pth.c, ath-pth-compat.c, ath-pthread.c, ath-pthread-compat.c, context.h, conversion.c, data.c, data-compat.c, data-fd.c, data.h, data-mem.c, data-stream.c, data-user.c, debug.c, debug.h, decrypt.c, decrypt-verify.c, delete.c, edit.c, encrypt.c, encrypt-sign.c, engine-backend.h, engine.c, engine-gpgsm.c, engine.h, error.c, export.c, genkey.c, get-env.c, gpgme.c, gpgme.h, import.c, io.h, key.c, keylist.c, mkstatus, Makefile.am, ops.h, op-support.c, passphrase.c, posix-io.c, posix-sema.c, posix-util.c, progress.c, rungpg.c, sema.h, sign.c, signers.c, trust-item.c, trustlist.c, util.h, verify.c, version.c, w32-io.c, w32-sema.c, w32-util.c, wait.c, wait-global.c, wait.h, wait-private.c, wait-user.c: Change license to LGPL. tests/ 2004-12-07 Marcus Brinkmann <[email protected]> * gpg/mkdemodirs: Add copyright notice. * gpgsm/Makefile.am, gpgsm/t-support.h, gpgsm/t-decrypt.c, gpgsm/t-encrypt.c, gpgsm/t-export.c, gpgsm/t-genkey.c, gpgsm/t-import.c, gpgsm/t-keylist.c, gpgsm/t-sign.c, gpgsm/t-verify.c, gpg/Makefile.am, gpg/t-decrypt.c, gpg/t-decrypt-verify.c, gpg/t-edit.c, gpg/t-encrypt.c, gpg/t-encrypt-sign.c, gpg/t-encrypt-sym.c, gpg/t-eventloop.c, gpg/t-export.c, gpg/t-genkey.c, gpg/t-import.c, gpg/t-keylist.c, gpg/t-keylist-sig.c, gpg/t-sign.c, gpg/t-signers.c, gpg/t-support.h, gpg/t-thread1.c, gpg/t-trustlist.c, gpg/t-verify.c, Makefile.am, t-data.c, t-engine-info.c, t-version.c: Change license to LGPL.
* Add Noel Torres <[email protected]>.Marcus Brinkmann2004-12-071-0/+6
|
* 2004-12-07 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-12-072-2/+7
| | | | | | * gpgme.texi (Creating Contexts): Fix cut&paste error. Reported by Noel Torres <[email protected]>.
* Update.Marcus Brinkmann2004-12-071-3/+4
|
* 2004-12-07 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-12-0714-87/+478
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * libgpgme.vers (GPGME_1.1): New version. * engine-backend.h (struct engine_ops): Add argument FILE_NAME to member get_version(). Add arguments FILE_NAME and HOME_DIR to member new(). Change return type of get_file_name and get_version to char *. * engine-gpgsm.c (gpgsm_get_version): Change return type to char pointer. Do not cache result. (gpgsm_new): Add file_name and home_dir argument, and use them instead of the defaults, if set. * rungpg.c (struct engine_gpg): New member file_name. (gpg_get_version): Change return type to char pointer, and do not cache result. (gpg_release): Free gpg->file_name. (gpg_new): Take new arguments file_name and home_dir. Set the --homedir argument if HOME_DIR is not NULL. Set gpg->file_name. (start): Use gpg->file_name instead _gpgme_get_gpg_path, if set. * engine.h (_gpgme_engine_info_copy, _gpgme_engine_info_release): New prototypes. (_gpgme_engine_new): Change first argument to gpgme_engine_info_t info. * engine.c: Include <assert.h>. (gpgme_get_engine_info): Set *INFO within the lock. Move ENGINE_INFO and ENGINE_INFO_LOCK to .... (engine_info, engine_info_lock): ... here. New static variables. (engine_get_version): Add file_name argument to get_version invocation. Change return type to char pointer. (gpgme_engine_check_version): Rewritten to free() the return value of engine_get_version after using it. (_gpgme_engine_info_release): New function. (gpgme_get_engine_info): Rewritten. (_gpgme_engine_info_copy): New function. (_gpgme_set_engine_info): New function. (gpgme_set_engine_info): New function. (_gpgme_engine_new): Change first argument to gpgme_engine_info_t info, and use that. * gpgme.h (struct _gpgme_engine_info): Change type of file_name and version to char * (remove the const). New member home_dir. (gpgme_set_engine_info, gpgme_ctx_get_engine_info, gpgme_ctx_set_engine_info): New prototypes. * context.h (struct gpgme_context): New member engine_info. * gpgme.c (gpgme_new): Allocate CTX->engine_info. (gpgme_release): Deallocate CTX->engine_info. (gpgme_ctx_get_engine_info, gpgme_ctx_set_engine_info): New functions. * op-support.c (_gpgme_op_reset): Look for correct engine info and pass it to _gpgme_engine_new. * version.c (gpgme_check_version): Adjust to _gpgme_compare_versions returning an int. (_gpgme_compare_versions): Return an int value, not a const char pointer. * ops.h (_gpgme_compare_versions): Same for prototype.
* 2004-12-07 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-12-072-1/+5
| | | | | * configure.ac (GPGSM_VERSION): Fix filter to get it.
* Fix up gpgme-1.0.1 release changes. Somehow the correct change didn'tgpgme-1-0-1Marcus Brinkmann2004-12-072-4/+4
| | | | | make it into the repository.
* Revert change to fix up gpgme-1.0.1 release tag glitch.Marcus Brinkmann2004-12-072-5/+1
|
* 2004-12-07 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-12-072-1/+5
| | | | | * configure.ac (GPGSM_VERSION): Fix filter to get it.
* .Werner Koch2004-11-041-0/+1
|
* 2004-10-22 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-10-221-0/+2
| | | | | | * configure.ac (LIBGPGME_LT_REVISION): Bump up to 2. (AC_INIT): Set version to 1.0.1.
* 2004-10-22 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-10-222-2/+5
| | | | | | * configure.ac (LIBGPGME_LT_REVISION): Bump up to 2. (AC_INIT): Set version to 1.0.1.
* 2004-10-22 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-10-222-1/+5
| | | | | * configure.ac: Set HAVE_GPGSM to true only if $GPGSM is not "no".
* Add item about 1.0.1.Marcus Brinkmann2004-10-221-0/+7
|
* 2004-10-03 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-10-222-1/+15
| | | | | | | * verify.c (parse_trust): If no reason is provided, set SIG->validity_reason to 0. (calc_sig_summary): Set GPGME_SIGSUM_CRL_TOO_OLD if appropriate.
* 2004-10-22 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-10-222-1/+11
| | | | | | | * engine-gpgsm.c (map_assuan_error): Return 0 if ERR is 0. (start): Call map_assuan_error on return value of assuan_write_line.
* 2004-10-05 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-10-052-1/+6
| | | | | | * op-support.c (_gpgme_op_data_lookup): Use char pointer for pointer arithmetic.
* Add some more info.gpgme-1-basegpgme-1-0-0Marcus Brinkmann2004-09-301-0/+84
|
* 2004-09-30 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-09-304-424/+33
| | | | | | | * Makefile.am (gpgme_TEXINFOS): Remove fdl.texi. * gpgme.texi: Do not include fdl.texi. Change license to GPL. * fdl.texi: File removed.
* Update the information before release, for what it's worth.Marcus Brinkmann2004-09-301-8/+8
|
* Update for 1.0.0 release.Marcus Brinkmann2004-09-301-1/+13
|
* 2004-09-30 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-09-302-2/+7
| | | | | | | | Released 1.0.0. * configure.ac (LIBGPGME_LT_REVISION): Bump up to 1. (AC_INIT): Set version to 1.0.0.
* Update information.Marcus Brinkmann2004-09-301-10/+14
|
* 2004-09-30 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-09-303-2/+6
| | | | | | * Makefile.am (EXTRA_DIST): Remove README-alpha. * README-alpha: Remove file.
* 2004-09-30 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-09-302-3/+66
| | | | | * gpgme.m4: Implement the --api-version check.
* 2004-09-30 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-09-302-23/+29
| | | | | | | * rungpg.c (read_status): Move the polling of the output data pipe to just before removing the command fd, from just before adding it. This avoids buffering problems.
* 2004-09-30 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-09-302-1/+6
| | | | | | * data.c (_gpgme_data_inbound_handler): Use _gpgme_io_read, not read, to improve debug output.
* Update some entries.Marcus Brinkmann2004-09-281-11/+1
|
* doc/Marcus Brinkmann2004-09-284-26/+36
| | | | | | | | | | | | | | | | | | | | 2004-09-29 Marcus Brinkmann <[email protected]> * gpgme.texi (Key Management): Change type of keylist_mode in gpgme_key_t to gpgme_keylist_mode_t. gpgme/ 2004-09-29 Marcus Brinkmann <[email protected]> * gpgme.h (GPGME_IMPORT_NEW, GPGME_IMPORT_UID, GPGME_IMPORT_SIG, GPGME_IMPORT_SUBKEY, GPGME_IMPORT_SECRET, (GPGME_KEYLIST_MODE_LOCAL, GPGME_KEYLIST_MODERN_EXTERN, GPGME_KEYLIST_MODE_SIGS, GPGME_KEYLIST_MODE_VALIDATE): Change from enum to macros. (gpgme_keylist_mode_t): Define as unsigned int. (gpgme_key_t): Change type of keylist_mode to gpgme_keylist_mode_t.
* 2004-09-28 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-09-282-1/+5
| | | | | * gpgme.texi (Passphrase Callback): Fix last change.
* 2004-09-27 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-09-272-1/+6
| | | | | | * gpgme.texi (Passphrase Callback): Document GPG_ERR_NOT_IMPLEMENTED.
* 2004-09-27 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-09-272-1/+6
| | | | | * gpgme.texi: Update copyright year for tex version.
* 2004-09-23 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-09-232-1/+15
| | | | | | * data.c (_gpgme_data_outbound_handler): Close the file descriptor if we get an EPIPE.
* 2004-09-23 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-09-234-5/+32
| | | | | | | | | | | * data-stream.c (stream_seek): Call ftello and return the current offset. * data.h (struct gpgme_data): Change type of data.mem.offset to off_t. * data.c (gpgme_data_seek): Check dh->cbs->seek callback, not read callback. If SEEK_CUR, adjust the offset by the pending buffer size. Clear pending buffer on success.
* Add entry about AC_CONFIG_MACRO_DIR.Marcus Brinkmann2004-09-161-1/+3
|
* 2004-09-17 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-09-162-1/+6
| | | | | * configure.ac: Disable AC_CONFIG_MACRO_DIR for now.
* 2004-09-14 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-09-142-4/+34
| | | | | * configure.ac: Improve diagnostics with version check.
* 2004-09-14 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-09-142-7/+97
| | | | | | | | | * configure.ac: Print diagnostics about found thread libraries at the end. Check for the versions of GPG and GPGSM and print the found versions at the end. (HAVE_GPGSM): Do not require GPGSM to exist and be readable. (AC_CONFIG_MACRO_DIR): Invoke with argument m4.
* 2004-09-14 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-09-142-2/+14
| | | | | * gpgme.m4: Add copyright notice.
* 2004-09-14 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-09-142-26/+31
| | | | | | * pth.m4: Disable _ac_pth_line, and don't fail if Pth is not found.
* 2004-09-14 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-09-146-506/+545
| | | | | | | | | | | | | | * acinclude.m4: Add copyright notice. (jm_GLIBC21, AM_PATH_GPG_ERROR, _AC_PTH_ERROR, _AC_PTH_VERBOSE, AC_CHECK_PTH): Removed. m4/ 2004-09-14 Marcus Brinkmann <[email protected]> * glibc21.m4: New file. * gpg-error.m4: New file. * pth.m4: New file.
* 2004-08-18 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-08-183-5/+5
| | | | | | * passphrase.c (_gpgme_passphrase_status_handler): Always run the status handler.
* 2004-08-17 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-08-172-2/+6
| | | | | * rungpg.c (build_argv): Use --no-sk-comment, not --no-comment.
* 2004-08-17 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-08-173-9/+27
| | | | | | | | | | * gpgsm/t-keylist.c (struct): Add new fields VALIDITY and KEY_LENGTH. (main): Use them. * gpgsm/t-import.c (check_result): New argument total_stat. (main): Pass this argument. Reduce number of total considered keys to 1 for the second test.
* 2004-07-29 Moritz Schulte <[email protected]>Moritz Schulte2004-07-292-1/+6
| | | | | | * gpgme.texi (Verify): Fix gpgme_get_key example (ancient force_update argument was still there).
* 2004-06-23 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-06-232-3/+12
| | | | | | | | * key.c (_gpgme_key_append_name): Make sure tail points to the byte following the uid. (_gpgme_key_add_sig): Likewise. Don't use calloc, but malloc and memset.
* Update version number.Marcus Brinkmann2004-06-231-1/+1
|
* 2004-06-23 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-06-234-3/+25
| | | | | | | | | | * configure.ac: Check for <sys/uio.h>. assuan 2004-06-23 Marcus Brinkmann <[email protected]> * assuan-domain-connect.c [HAVE_SYS_UIO_H]: Include <sys/uio.h>.
* 2004-06-23 Marcus Brinkmann <[email protected]>Marcus Brinkmann2004-06-232-0/+5
| | | | | * assuan-handler.c: Include <errno.h>.
* D'oh, forget the release date in the released NEWS entry!Marcus Brinkmann2004-06-082-2/+6
| | | | | Prepare for upcoming release.