[Pkg-gnupg-commit] [libassuan] branch upstream updated (3cd29e2 -> 0654d05)

Eric Dorland eric at moszumanska.debian.org
Fri May 22 05:34:14 UTC 2015


This is an automated email from the git hooks/post-receive script.

eric pushed a change to branch upstream
in repository libassuan.

      from  3cd29e2   Imported Upstream version 2.2.0
       new  092da66   New repository initialized by cvs2svn.
       new  360de5a   First chunk of code for the Assuan library
       new  06a04ea   gpgsm does now build and a dummy server can be started.
       new  d5aea23   Assuan server mode is now basically usable
       new  3273d72   we are now able to check self-signed certificates
       new  4a06ed3   	* assuan-connect.c (assuan_pipe_connect): New function. 	(assuan_pipe_disconnect): Likewise. 	* assuan-defs.h (struct assuan_context_s): New member PID.
       new  e91d747   Allow to store an arbitrary pointer in the context. Added assuan_write_status().
       new  8837bf9   Added code for data lines.  For ease of implementation we need glibc (custom streams).
       new  84e785b   	* assuan-connect.c (assuan_pipe_connect): Require NAME to be set. 	Using ARGV[0] automatically is bad mojo.
       new  61756e7   	* assuan.h: Prototype assuan_pipe_connect and assuan_pipe_disconnect.
       new  91d758a   Signing does now work.  There is no secret key management yet, so you should set GPGSM_FAKE_KEY=1 before you try to verify a signature created by gpgsm --sign or the SIGN server command.
       new  3330fe3   * assuan-buffer.c (_assuan_read_line): Deal with reads of more than a line. * assuan-defs.h: Add space in the context for this.
       new  e4eb731   * assuan-connect.c (assuan_get_pid): New - actually done by Marcus in gpgme. Set the line length back to the old value.
       new  c08d23f   Add a copyright note to the bottom
       new  e78360c   * assuan-handler.c (assuan_register_bye_notify) (assuan_register_reset_notify) (assuan_register_cancel_notify): New and call them from the standard handlers.
       new  39ab39d   (assuan_process): Moved bulk of function to .. (process_request): .. new. (assuan_process_next): One shot version of above. (assuan_get_active_fds): New. NOTE - this has not been tested yet.
       new  bef98f1   * assuan.h: Added more status codes.
       new  27a3b31   More error codes
       new  47e100a   * assuan-handler.c (assuan_register_input_notify): New. (assuan_register_output_notify): New.
       new  e9a8c90   assuan-connect.c (assuan_pipe_connect): Add more error reporting. assuan-client.c: New. assuan-inquire.c: New. assuan-handler.c (process_request): Check for nested invocations.
       new  7f3bee6   new error codes
       new  fa5bb50   * assuan-connect.c (assuan_pipe_connect): Implemented the inital handshake. * assuan-client.c (read_from_server): Renamed to (_assuan_read_from_server): this and made external.
       new  8bb0195   Fixed INPUT/OUTPUT command
       new  07ac854   2001-12-13  Marcus Brinkmann  <marcus at gnu.org>
       new  d2b43a6   assuan/ 2001-12-14  Marcus Brinkmann  <marcus at g10code.de>
       new  b55899b   2001-12-14  Marcus Brinkmann  <marcus at g10code.de>
       new  1bc91ac   Change history, doubleplusgood.
       new  bf3161a   * util.h (digitp, hexdigitp): New ctype like macros. (atoi_1,atoi_2,atoi_4,xtoi_1,xtoi_2): New.
       new  cfe7dde   * assuan-listen.c (assuan_close_input_fd): New. (assuan_close_output_fd): New. * assuan-handler.c (std_handler_reset): Always close them after a reset command. (std_handler_bye): Likewise.
       new  176f371   assuan/ 2001-12-14  Marcus Brinkmann  <marcus at g10code.de>
       new  09e2199   The last log had an incorrect changelog entry, and was missing a fix.
       new  0ee0e9e   * assuan-handler.c (assuan_set_okay_line): New. (process_request): And use it here.
       new  e9c52c1   new error codes
       new  385bea7   * assuan-client.c (_assuan_read_from_server): Skip spaces after the keyword.
       new  ba6c275   * maperror.c: Add mapping for Not_Trusted.
       new  c5698a4   * assuan-buffer.c (_assuan_read_line): Add output logging. (assuan_write_line): Ditto. (_assuan_cookie_write_data): Ditto. (_assuan_cookie_write_flush): Ditto. * assuan-util.c (_assuan_log_print_buffer): New. (assuan_set_log_stream): New. (assuan_begin_confidential): New. (assuan_end_confidential): New.
       new  dbcd183   * assuan.h: Added Invalid Option error code.
       new  c314434   * assuan-connect.c: Move all except assuan_get_pid to... * assuan-pipe-connect.c: this. (assuan_pipe_disconnect): Removed. (do_finish, do_deinit): New (assuan_pipe_connect): and set them into the context. * assuan-socket-connect.c: New.
       new  f1a52d6   2002-01-22  Marcus Brinkmann  <marcus at g10code.de>
       new  eebe742   * assuan-socket-connect.c (LOGERRORX): and removed typo.
       new  403225e   2002-02-01  Marcus Brinkmann  <marcus at g10code.de>
       new  19267c9   * assuan-buffer.c (writen,readline) [USE_GNU_PT]: Use pth_read/write. * assuan-socket-server.c (accept_connection) [USE_GNU_PTH]: Ditto.
       new  e60dc86   A bunch of new features.  Allow empty responses on an inquiry.
       new  52d4471   * assuan-client.c (assuan_transact): Add 2 more arguments to support status lines. Passing NULL yields the old behaviour. * assuan-handler.c (process_request): Flush data lines send without using the data fp.
       new  6726410   Minor fixes; about to release 0.3.1
       new  47464f1   * assuan-client.c (_assuan_read_from_server): Detect END. (assuan_transact): Pass it to the data callback.
       new  ae6bc7f   * assuan-buffer.c (my_log_prefix): New.  Use it for all i/o debug output.
       new  1e45cc2   * assuan-util.c (assuan_set_io_func): New. * assuan-buffer.c (writen, readline): Use the new functions instead of pth. * assuan-socket-server.c (accept_connection): Don't use the pth_accept - using the assuan included accept code would be a bad idea within Pth so we don't need a replacement function.
       new  f874380   * assuan-buffer.c (assuan_write_line): Make sure we never accidently print an extra LF.
       new  6b39e12   * gpgsm.c (main): Use GNUPG_DEFAULT_HOMEDIR constant.
       new  947f488   Changed the lincese for Assuan to LGPL.
       new  57bf030   * assuan.h: Renamed Bad_Certificate_Path to Bad_Certificate_Chain.
       new  94ed737   2002-09-05  Neal H. Walfield  <neal at g10code.de>
       new  e638b33   2002-10-31  Neal H. Walfield  <neal at g10code.de>
       new  724fb11   * assuan-pipe-connect.c (assuan_pipe_connect): Changed the order of the dups to handle cases where we have already used fd 2 for other things.
       new  84d1178   Be more generous in typing equal signs and better watch out for compiler suggestions.  Ah well, actually test before commiting.
       new  d9a1391   2002-11-20  Neal H. Walfield  <neal at g10code.de>
       new  8949282   2002-11-20  Neal H. Walfield  <neal at g10code.de>
       new  68ddb41   2002-11-23  Neal H. Walfield  <neal at g10code.de>
       new  bcce4af   2002-11-23  Neal H. Walfield  <neal at cs.uml.edu>
       new  a7cfdee   2002-11-24  Neal H. Walfield  <neal at g10code.de>
       new  9404e15   2002-11-24  Neal H. Walfield  <neal at g10code.de>
       new  5d0f173   2002-11-24  Neal H. Walfield  <neal at cs.uml.edu>
       new  48b5a49   Fix tyop.
       new  e936232   2002-11-24  Neal H. Walfield  <neal at g10code.de>
       new  95f307d   2003-02-17  Neal H. Walfield  <neal at g10code.de>
       new  2d91075   2003-02-17  Neal H. Walfield  <neal at g10code.de>
       new  6d5bd86   2003-02-17  Neal H. Walfield  <neal at g10code.de>
       new  20b3230   2003-02-18  Neal H. Walfield  <neal at cs.uml.edu>
       new  c96af16   /
       new  a234d2e   /
       new  469fe68   /
       new  f6b9357   2003-02-18  Neal H. Walfield  <neal at g10code.de>
       new  3ac8aa2   2003-02-22  Neal H. Walfield  <neal at g10code.de>
       new  e6203aa   * libassuan.m4: New. Based on libgrypt.m4. * Makefile.am (m4data_DATA): New.
       new  0386fb7   	* mkerrors: Kludge to print libgpg-error values in an easier 	readable way.
       new  17ff688   Cleanups for newer autoconf.
       new  4a9f2da   * lgpl.texi: New. * gpl.texi: Removed. * assuan.texi: Dropped requirement vor invariant sections, front- and back-cover texts.  Include lgpg.texi.
       new  25d061e   Bumbed version number for next development cycle
       new  a4a6a61   (assuan_inquire): Increase length of cmdbuf to the Assuan limit.
       new  fc2f925   2003-11-11  Moritz Schulte  <mo at g10code.com>
       new  98e9ecc   (process_request): Kludge to print better error messages for gpg-error enabled programs.
       new  aec3280   About to release 0.6.1
       new  3b7e023   Post release version bumb
       new  5341231   * TODO: New. * Makefile.am: Add README.CVS and autogen.sh * README.CVS: New. * autogen.sh: Revamped. * configure.ac: Add automake version number for autgen.sh use.
       new  57264e4   doc typo fixes
       new  78d816f   added file we want to keep in the CVS
       new  b12834e   * Makefile.am: Add README.CVS and autogen.sh.  Removed m4/Makefile.
       new  16d5599   * funopen.c (_assuan_funopen): Renamed from funopen, to keep the name space clean and avoid duplicate definitions if another library uses the same replacement. * assuan-defs.h (funopen): Renamed prototype and add a macro.
       new  d413ddc   Add some notes
       new  effc464   * assuan-buffer.c: Changed formatting of the debug output prefix. * assuan-util.c (assuan_set_log_stream): Set global log stream if it has not been done yet. * assuan-logging.c (_assuan_set_default_log_stream): New. (assuan_set_assuan_log_prefix): New.
       new  86fc3e4   Getting ready for a new release
       new  dfb1fee   getting ready for a new release.
       new  eff56e9   Last typo fix.
       new  1de407d   Add file
       new  64e4d31   post release version number bump.
       new  498be7b   (_assuan_cookie_write_data): Return the requested size to indicate successful operation.  Fixes a spurious bug we previously fixed using fflush().
       new  b208c86   (assuan_pipe_connect2): New as an extension of assuan_pipe_connect. Made the latter call this one.
       new  53af6ee   Released 0.6.3
       new  f0d0850   Removed the unneeded alloca.h.
       new  a3c5e71   (memrchr): Fixed implementation. Taken from gpgme.
       new  9bd34b9   (assuan_get_data_fp): Fail with ENOSYS if we can't implement this.
       new  9096d0a   About to release 0.6.4
       new  a6a1643   post release version number bump
       new  b85a6d5   Include <errno.h>.  Reported by Bernd Kuhls.
       new  7cdf6c6   2004-04-02  Thomas Schwinge  <schwinge at nic-nac-project.de>
       new  66a8726   * assuan-socket-server.c, assuan-socket-connect.c: Includes sys/types.h.  Reported by Michael Nottebrock. * assuan-domain-connect.c: Ditto.
       new  93595de   * assuan-socket-server.c (accept_connection_bottom): Save the pid of the peer if it is available. * assuan-socket-connect.c (assuan_socket_connect): Do not save the dummy SERVED_PID arg. * assuan-pipe-connect.c (do_finish): Don't wait if the pid is 0. (assuan_pipe_connect2): Store the parents pid in the environment of the child. * assuan-pipe-server.c (assuan_init_pipe_server): Initialize the peer's pid from the environment. * assuan-connect.c (assuan_get_pid): Do no [...]
       new  59df999   2004-04-22  Marcus Brinkmann  <marcus at g10code.de>
       new  0cf29d7   * assuan-socket-connect.c: Include string.h. * assuan-logging.c: Ditto.
       new  8d504f5   About to release 0.6.5
       new  7de36ba   post release version bump
       new  2284687   * assuan-listen.c (assuan_set_hello_line, assuan_accept): Allow for multi line hello strings.
       new  cae925e   about to release 0.6.6.
       new  f1e16fe   post release version bump
       new  07c136c   2004-06-23  Marcus Brinkmann  <marcus at g10code.de>
       new  bc7fe97   about to release 0.6.7
       new  a62e6e6   .
       new  858ce96   * assuan-socket-connect.c: Define SUN_LEN, AF_LOCAL and PF_LOCAL if they are not available. * assuan-domain-connect.c: Define PF_LOCAL and AF_LOCAL if needed.
       new  db40441   * assuan-socket-connect.c (LOG): Fixed macro to print not only the prefix. * assuan-domain-connect.c, assuan-socket-connect.c (LOG): Ditto.
       new  c36b968   2004-11-23  Timo Schulz  <twoaday at g10code.com>
       new  7fe365f   Small API update and Windows fixes
       new  c24914d   * assuan-logging.c (_assuan_log_printf): New. * assuan-domain-connect.c (LOG): Removed and replaced all callers by _assuan_log_printf.  This is needed for C89 and gcc 2.95 which both don't have C99 style variable arg macros. * assuan-pipe-connect.c (LOG): Ditto. * assuan-socket-connect.c (LOG): Ditto.
       new  21219a4   Released 0.6.8
       new  a4a0a2f   Post release preps
       new  86aed4c   Avoid warnings about unknown pragmas.
       new  d6788fa   include/sys/types.h
       new  386d51a   Script to build the W32 version
       new  b259303   * configure.ac: Define HAVE_W32_SYSTEM and HAVE_DOSISH_SYSTEM. Add -lwsock2 to the config lib flags for W32.
       new  4ccc9ca   * autogen.sh: Add Option --build-w32.
       new  a60b4b9   More W32 fixes
       new  06d9a26   2004-12-19  Moritz Schulte  <moritz at g10code.com>
       new  90e65a7   (assuan_init_pipe_server) [W32]: Map file descriptors using _get_osfhandle.
       new  bbada39   (assuan_socket_connect): Allow for a drive letter in the path.
       new  96699ee   Switched to automake 1.9.
       new  88d6d14   post release updates
       new  39002ae   (struct assuan_io): Renamed elements READ and WRITE to READFNC and WRITEFNC to avoid problems with read defined as macros.  Changed callers.  Noted by Ville Skytt��.
       new  d5ff07b   (_assuan_calloc): Avoid integer overflow.
       new  4f91409   * assuan-util.c (assuan_set_flag, assuan_get_flag): New. * assuan-defs.h (struct assuan_context_s): New field flags. * assuan.h (assuan_flag_t): New with one flag value ASSUAN_NO_WAITPID for now. * assuan-pipe-connect.c (do_finish): Take care of the no_waitpid flag.
       new  4b99c3d   Preparing for 0.6.10
       new  0eaa341   post release version number update
       new  e0c9ab2   * mkerrors: Include config.h into assuan-errors.c.  This is required so that assuan.h knows about the W32 macro.
       new  8ef598a   2005-09-08  Marcus Brinkmann  <marcus at g10code.com>
       new  d934d1e   2005-10-01  Marcus Brinkmann  <marcus at g10code.de>
       new  2a5f006   2005-10-01  Marcus Brinkmann  <marcus at g10code.de>
       new  7c557c3   2005-10-07  Marcus Brinkmann  <marcus at g10code.de>
       new  33ec464   2005-10-08  Marcus Brinkmann  <marcus at g10code.de>
       new  b8d5e8f   2005-10-08  Marcus Brinkmann  <marcus at g10code.de>
       new  9a7d471   Fixed and clarified copyright notices
       new  8f03bae   Doc updates.
       new  a731887   Changes to support gpg-error style error codes.
       new  5e2b62c   fixes
       new  116df36   Added stuff to the manual. Minor prototype cleanups.
       new  d1210ab   Integrated descriptor passing.
       new  7a22110   More tweaks for descriptor passing. gpg-connect-agent may now be used as a test program.
       new  f4f9081   Preparing a new release
       new  46dd058   2006-09-19  Marcus Brinkmann  <marcus at g10code.de>
       new  c5ef3c8   2006-09-19  Marcus Brinkmann  <marcus at g10code.de>
       new  d1401bc   2006-09-19  Marcus Brinkmann  <marcus at g10code.de>
       new  5c751af   2006-09-19  Marcus Brinkmann  <marcus at g10code.de>
       new  2c22ab8   2006-09-19  Marcus Brinkmann  <marcus at g10code.de>
       new  32a50e8   Fixed problems Nelson H. F. Beebe reported when doing build tests on several platforms.
       new  0693b5a   distribute motd
       new  dfecf7a   2006-09-19  Marcus Brinkmann  <marcus at g10code.de>
       new  4677bde   2006-09-28  Marcus Brinkmann  <marcus at g10code.de>
       new  939e8f7   Preparing a new release
       new  53d33af   Littel fix to make Cancel returns from pinnetry work again. (At least with the forthcoming gnupg 1.9.91)
       new  a0c2238   The second release of today.
       new  fa35790   Splitted up into a standad lib and an pth enabled one. Also enhanced libassuan-config and libassuan.m4. Not really tested!
       new  51eedb2   portability fixes
       new  b96ec03   Mapped another error.
       new  958d413   Fix for pthread
       new  2c14b19   Preparing the 1.0.0 release.
       new  373491c   Post release updates
       new  2cf3dcd   New functions assuan_set_io_monitor and assuan_register_post_cmd_notify
       new  a4dbf91   Fix for newer Pth versions. Fix memory leak. Add convenience option for cross build to amd64
       new  86015ec   Makefile fixes.
       new  e064b81   Preparing a release
       new  67246ae   Final fix.
       new  9815596   Again one of these last commits
       new  ca755ea   2006-12-01  Marcus Brinkmann  <marcus at g10code.de>
       new  bf75c2e   2006-12-02  Marcus Brinkmann  <marcus at g10code.de>
       new  43dbdb3   2006-12-03  Marcus Brinkmann  <marcus at g10code.de>
       new  5175eab   Small pointer arithmetics fix
       new  27031cc   Forgot to commit that file
       new  6746803   2007-05-06  Marcus Brinkmann  <marcus at g10code.de>
       new  6c61bc4   Various minor changes for W32
       new  70e2314   2007-06-15  Marcus Brinkmann  <marcus at g10code.de>
       new  9786fe2   A couple of Changes for Windows
       new  fc6a186   2007-07-04  Marcus Brinkmann  <marcus at g10code.de>
       new  49a4ba3   Switched to LGPLv3.
       new  12d7563   2007-07-08  Marcus Brinkmann  <marcus at g10code.de>
       new  35fedf1   Introduced new type for better support of W32 HADNLES vs. file descriptors.
       new  343ee20   Better error code mapping.
       new  0571557   doc/ 2007-08-09  Marcus Brinkmann  <marcus at g10code.de>
       new  4ab8feb   Preparing 1.0.3
       new  7db465f   Preparing 1.0.3
       new  7422d02   doc/ 2007-09-03  Marcus Brinkmann  <marcus at g10code.de>
       new  b3de8cd   doc/ 2007-09-03  Marcus Brinkmann  <marcus at g10code.de>
       new  6d31f63   2007-09-03  Marcus Brinkmann  <marcus at g10code.de>
       new  00bc103   Fix filename at top of file.
       new  469154b   2007-09-05  Marcus Brinkmann  <marcus at g10code.de>
       new  b1495f8   2007-09-07  Moritz Schulte  <moritz at g10code.com>
       new  641963a   2007-09-07  Marcus Brinkmann  <marcus at g10code.de>
       new  94e2c41   Fix last change.
       new  2b9a27d   2007-09-07  Marcus Brinkmann  <marcus at g10code.de>
       new  0caa69e   2007-09-07  Marcus Brinkmann  <marcus at g10code.de>
       new  7971b1b   Set is_cvs.
       new  f49f03c   Really enable snapshop packagin.
       new  6e7ee27   2007-09-11  Marcus Brinkmann  <marcus at g10code.de>
       new  5002bab   2007-09-14  Marcus Brinkmann  <marcus at g10code.de>
       new  32be0c9   2007-09-24  Marcus Brinkmann  <marcus at g10code.de>
       new  f83a4ce   Fixed a name clash in internal symbols used only under W32.
       new  88fa870   Add socket wrapper API. Changed the ABI ofthe W32 socket emulation.
       new  28f7b6e   Add new API assuan_set_sock_nonce. Fixed a blocking problem on Windows.
       new  7e4a5b0   Better error mapping.
       new  ba56511   2007-10-05  Marcus Brinkmann  <marcus at g10code.de>
       new  0c12494   2007-10-05  Marcus Brinkmann  <marcus at g10code.de>
       new  5ba735f   Map WSANOTINITIALIZED to ENOSYS.
       new  d0395d1   2007-10-05  Marcus Brinkmann  <marcus at g10code.de>
       new  52bd1cd   2007-10-05  Marcus Brinkmann  <marcus at g10code.de>
       new  9d7b9ba   Add assuan_set_io_hooks.
       new  1f7a5ba   doc/ 2007-10-18  Marcus Brinkmann  <marcus at g10code.de>
       new  2b34191   2007-11-12  Marcus Brinkmann  <marcus at g10code.de>
       new  5940007   2007-11-23  Marcus Brinkmann  <marcus at g10code.de>
       new  0d29897   Documentaion updates. Preparing a release.
       new  3162172   Post release updates
       new  8dcefc3   2008-03-21  Marcus Brinkmann  <marcus at g10code.de>
       new  3de69e5   2008-03-21  Marcus Brinkmann  <marcus at g10code.de>
       new  df7e9c0   2008-03-25  Marcus Brinkmann  <marcus at g10code.de>
       new  2e31d40   Preparing a release.
       new  6f3011d   Get ready for the envisioned API changes
       new  b0e3375   Support sustems without nanosleep()
       new  8381abc   check for nanosleep
       new  18f5967   Typo fix. flush full debug lines.
       new  d1347f6   src/ 2008-10-29  Marcus Brinkmann  <marcus at g10code.de>
       new  94f821b   2008-11-03  Marcus Brinkmann  <marcus at g10code.de>
       new  4ca662e   Tweak test for nanosleep.
       new  b29e199   Add hack for the inquiry feature.
       new  5809572   Doc fixes.
       new  bca49a4   2009-08-26  Marcus Brinkmann  <marcus at g10code.de>
       new  00fc388   2009-09-01  Marcus Brinkmann  <marcus at g10code.de>
       new  9b516f2   Add to last commit.
       new  a974403   2009-09-01  Marcus Brinkmann  <marcus at g10code.de>
       new  ddd3bd6   2009-08-28  Marcus Brinkmann  <marcus at g10code.de>
       new  7389cbf   doc/ 2009-09-01  Marcus Brinkmann  <marcus at g10code.de>
       new  0650eaa   2009-09-08  Marcus Brinkmann  <marcus at g10code.de>
       new  cd87e56   2009-09-19  Marcus Brinkmann  <marcus at g10code.de>
       new  134e9db   Allow apssing NULL to assuan_release.
       new  497b585   Comment fix.
       new  6e96c1d   2009-10-08  Marcus Brinkmann  <marcus at g10code.de>
       new  a7eaf02   Really delete.
       new  1dce008   Add new ducntion assuan_get_command_name.  This makes error reporting in the server much easier.
       new  5e15cf9   2009-10-16  Marcus Brinkmann  <marcus at g10code.de>
       new  8d0b868   2009-10-19  Marcus Brinkmann  <marcus at g10code.com>
       new  cab352d   2009-10-20  Marcus Brinkmann  <marcus at g10code.de>
       new  f7a6127   2009-10-30  Marcus Brinkmann  <marcus at g10code.de>
       new  f342672   2009-11-02  Marcus Brinkmann  <marcus at g10code.de>
       new  8b30641   Extended HELP command.
       new  a0cb80c   doc/ 2009-11-05  Marcus Brinkmann  <marcus at g10code.de>
       new  66f0ccb   Fix last commit.
       new  420da92   2009-11-05  Marcus Brinkmann  <marcus at g10code.de>
       new  0e44330   2009-11-10  Marcus Brinkmann  <marcus at g10code.de>
       new  7cceb82   2009-11-10  Marcus Brinkmann  <marcus at g10code.de>
       new  cb53f86   2009-11-19  Marcus Brinkmann  <marcus at g10code.de>
       new  abcfd15   doc/ 2009-11-24  Marcus Brinkmann  <marcus at g10code.de>
       new  b41cc03   doc/ 2009-11-25  Marcus Brinkmann  <marcus at g10code.de>
       new  4b6374b   2009-11-27  Marcus Brinkmann  <marcus at g10code.de>
       new  a35b4e3   2009-12-01  Marcus Brinkmann  <marcus at g10code.de>
       new  a294204   src/ 2009-12-02  Marcus Brinkmann  <marcus at g10code.de>
       new  58ddb04   2009-12-03  Marcus Brinkmann  <marcus at g10code.de>
       new  bfa7d62   2009-12-08  Marcus Brinkmann  <marcus at g10code.de>
       new  6cf9364   2009-12-08  Marcus Brinkmann  <marcus at g10code.de>
       new  8af605b   Fix changelog.
       new  b4f82b8   doc/ 2009-12-08  Marcus Brinkmann  <marcus at g10code.de>
       new  3d2c39e   2009-12-08  Marcus Brinkmann  <marcus at g10code.de>
       new  e7faad4   2009-12-08  Marcus Brinkmann  <marcus at g10code.de>
       new  25066fa   2009-12-08  Marcus Brinkmann  <marcus at g10code.de>
       new  ea49473   Another one.
       new  3fd1733   Return and parse comment lines with the assuan_client_ functions.
       new  6c94b93   Just some pre-release clean ups.
       new  42ccca3   2009-12-15  Marcus Brinkmann  <marcus at g10code.de>
       new  011ccd6   Oops, changed wrong line.
       new  79a55c3   2009-12-22  Marcus Brinkmann  <marcus at g10code.de>
       new  9fb2db1   Add comments.
       new  28f8339   2010-01-05  Marcus Brinkmann  <marcus at g10code.de>
       new  808e43c   2010-01-05  Marcus Brinkmann  <marcus at g10code.de>
       new  fefdb27   Pre-release fixup.
       new  eaab965   Post release fixup.
       new  000aa9f   Change history.  Urgs.
       new  f03ab2c   Post release fixup.
       new  4f05e4c   Fix NULL de-reference in debug code.
       new  6403ba9   Prepare for a port to WindowsCE.
       new  c01cfaf   Changes to build for W32CE - does not yet work, though.
       new  1a457c5   Cleanups for W32CE. Implement getenv replacement for W32CE.
       new  882d56a   First take on Server for W32CE
       new  46783cb   Add some commands to the test server.
       new  7963ff2   Add a run command.
       new  0963358   2010-02-03  Marcus Brinkmann  <marcus at g10code.de>
       new  d20a4d4   A couple of changes to eventually fully support W32ce.
       new  3c85529   Fix DLL creation.
       new  5c0a0af   Add options and documentation for gpgcedev.
       new  59cc5ff   Cleaned up the logging
       new  4266559   Refactored platform system code.
       new  f807c38   Changed the implementation of CreatePipe under W32CE. Reorganized the source.
       new  2c51af4   Do not distribute assuan.h.
       new  e68c68f   typo fixes and fix w32ce message formatting
       new  6cb3a90   Removed sysdep stuff from assuan.h. fixed a problem for W32CE and Pth.
       new  d2d2cd6   2010-04-14  Marcus Brinkmann  <marcus at g10code.de>
       new  9356bf0   Changes for W32CE
       new  9d55488   Rename device driver during install
       new  123da25   Updated.
       new  00927b8   2010-04-16  Marcus Brinkmann  <marcus at g10code.de>
       new  fc70cc0   More robust detection of sockets
       new  e83d4ed   comment fix
       new  a00b1ed   Sho the pid in the the hello line.
       new  863135d   2010-06-07  Marcus Brinkmann  <marcus at g10code.de>
       new  64360f7   2010-06-09  Marcus Brinkmann  <marcus at g10code.de>
       new  9ab3e9b   2010-06-10  Marcus Brinkmann  <marcus at g10code.de>
       new  9f4ec52   2010-06-11  Marcus Brinkmann  <marcus at g10code.de>
       new  4b46af9   Handle NOTIFY event.
       new  60b31b4   2010-08-03  Marcus Brinkmann  <marcus at g10code.de>
       new  ff42063   2010-08-03  Marcus Brinkmann  <marcus at g10code.de>
       new  674448c   Release 2.0.1
       new  72f0274   Post release updates.
       new  5650dc3   Add ASSUAN_CONVEY_COMMENTS flag.
       new  c942aef   doc changes
       new  1fa59a0   Prepare for a gpg-error change
       new  8a403a6   Add a no_logging flag.
       new  e19ed1b   Fix portability bug#1282.
       new  03efb5f   Fix bug#1205
       new  8fbda44   Changes to allow building the CE version with MSC.
       new  d1a697a   2010-11-01  Marcus Brinkmann  <marcus.brinkmann at ruhr-uni-bochum.de>
       new  ce484b9   2010-11-01  Marcus Brinkmann  <marcus.brinkmann at ruhr-uni-bochum.de>
       new  08031c8   Replace open/fdopen stuff by CreateFile et al.
       new  2830f13   New ChangeLog file for contrib.
       new  585c110   Chnage directory layout for MSC builds
       new  23480d5   Add log device to gpgcedev
       new  4454035   Fixes for the MSC build
       new  f0d891b   2010-11-15  Marcus Brinkmann  <mb at g10code.com>
       new  455c434   2010-11-17  Marcus Brinkmann  <mb at g10code.com>
       new  e940277   2010-11-17  Marcus Brinkmann  <mb at g10code.com>
       new  a15e434   Typo fixes. Improved gpgcemgr
       new  20b033a   Check malloc and CreateEvent return codes.
       new  88d8aea   * configure.ac: Add a git commit identifier to the version.
       new  1875301   Extend system hooks table by socket and connect functions.
       new  6d96537   Fix C++ users.
       new  a7e76c4   Fix C++ users.
       new  5560095   Reroute all socket and connect through the nonce implemenation in assuan-socket.c.
       new  97eb757   assuan_register_pre_cmd_notify().
       new  1a55322   Add ChangeLog entry for last patch
       new  65078fa   Pass only the command name to the pre_cmd_notify() callback to keep ABI compatibility.
       new  8660e89   Simplify libassuan.vers
       new  79bb873   Let an existing command previously registered with assuan_register_command() be updated with new values. This fixes overriding the HELP command for example.
       new  5666ade   Added assuan_socket_connect_fd() to attach an existing socket file descriptor to a context.
       new  b00ae50   Replace strcasecmp by ascii_strcasecmp variant/
       new  b74a70f   Include sys/select.h in a test utility.
       new  b20e8f0   Add a version string to the binary.
       new  2b00b47   Update gpg-error.me and add check for the git hook
       new  a0e05ba   Prepare for building for a W64 host.
       new  76d3001   Add option --host to libassuan-config.
       new  2adbf87   Fix Makefile for rename of README.SVN to README.GIT.
       new  cdce637   Release 2.0.2
       new  1843bf3   Unreleased.
       new  02c1355   Add new flag ASSUAN_FORCE_CLOSE.
       new  01bc928   Update libtool and other framework stuff.
       new  2e037ba   accept --with-libgpg-error-prefix as well as --with-gpg-error-prefix
       new  165a57d   Generate the ChangeLog from commit logs.
       new  ff9a8c2   vasprintf.c: Improve test code.
       new  edbe8fd   Fix assuan_get_pid for pipe servers.
       new  132c70f   Update gitlog-to-changelog to support --tear-off.
       new  3ebe00d   Release version 2.0.3.
       new  6ff1083   Post release version number update
       new  e23e6f2   Make assuan portable to NPTH.
       new  cef5514   Fix npth port file handle use.
       new  dbfbc90   Require gitlog-to-changelog to be installed.
       new  5c00c7c   Make new functions also visible on non-W32.
       new  861d19e   State new contribution rules.
       new  f40f803   Wrap reference to END with @code.
       new  7cf99d0   Update example code for pipe server.
       new  ca3f8e4   src/assuan-handler.c: add help strings for standard commands.
       new  e6688ee   Fix non-portable use of chmod in autogen.sh.
       new  76ceeb3   Improve parsing of the GIT revision number.
       new  76ea68c   Support LOCAL_PEEREID (NetBSD) and getpeereid() (FreeBSD)
       new  cd96daf   Check for getpeerucred().
       new  f17039b   Make assuan_transact more robust against inquiry errors.
       new  0884e91   Update helper scripts.
       new  97ce28a   Fix --with-{lib,}gpg-error-prefix.
       new  807d9cd   Modernize release version management.
       new  e321c69   w32: Allow overriding a toolchain via ~/.gnupg-autogen.rc.
       new  3eec7a1   w32ce: Adjust to changed API and make it build again.
       new  c6c8041   Beautify the BUILD_TIMESTAMP and put it into the binary.
       new  a4d64a0   w32: Fix header inclusion order for newer toolchain.
       new  ab2e015   Add assuan_check_version and ASSUAN_VERSION_NUMBER.
       new  7d227ac   Release version 2.1.0.
       new  fb51987   Post release version bump.
       new  61f5ca4   Support building for w64.
       new  f88eb9e   Add hack to have different names for 64 bit Windows DLLs.
       new  6ba18ca   Changes to support W64.
       new  cf1e6f6   Release 2.1.1.
       new  fd255da   Post release version bump.
       new  46b6d97   Add build support for ppc64le.
       new  e78abe4   Update libtool and autogen.sh.
       new  a9c9aac   Move helper scripts to build-aux.
       new  a5a6aea   Use the generic autogen.sh script.
       new  326a291   Fix NULL deref when tracing is enabled and malloc fails.
       new  134c045   Avoid a vasprintf call if tracing has not been enabled.
       new  b6da2da   Fix possible segv in a call to _assuan_debug.
       new  5865eee   Update copyright info
       new  49a930a   Update build system
       new  a5d7f49   Release 2.1.2.
       new  416d045   Post release updates
       new  1023508   w32: Remove I/O delays due to our 100ms delay after an EAGAIN.
       new  3003c5d   Release 2.1.3.
       new  2f040c0   Post release updates.
       new  1f99031   Implement socket file redirection.
       new  0fce017   Do not allow LFs in the redirected name.
       new  261498d   Release 2.2.0
       new  61e24ad   Post release updates
       new  054f7c2   Comment updates
       new  ab5264b   Fix WSAEADDRINUSE EADDRINUSE mismatch.
       new  dfc0463   doc: Fix syntax problems in lgpg.tex and gpl.texi
       new  5e0a01f   Fix gcc warning about unused values.
       new  91a98e2   w32: Fix assuan_connect_fd
       new  77dfed4   Require the use of automake 1.14
       new  4655d54   Update config.* and other build-aux files
       new  5cdc9c4   w32: Use -static-libgcc to avoid linking to libgcc_s_sjlj-1.dll.
       new  ccd1811   Documentation cleanups.
       new  e6e51c0   clean up assuan documentation
       new  1f0896c   Release 2.2.1
       new  28f8b39   Post release updates
       new  e0d1719   Merge the original 'upstream' branch with upstream's new master branch
       new  0654d05   Imported Upstream version 2.2.1

The 433 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 ChangeLog                   |   39 +
 Makefile.in                 |  351 +--
 NEWS                        |    8 +
 VERSION                     |    2 +-
 aclocal.m4                  |  743 +++---
 build-aux/config.guess      |  173 +-
 build-aux/config.sub        |   38 +-
 build-aux/depcomp           |   38 +-
 build-aux/mdate-sh          |   89 +-
 build-aux/missing           |  450 ++--
 build-aux/texinfo.tex       | 5515 +++++++++++++++++++++++++++++++++----------
 config.h.in                 |    3 -
 configure                   |  550 +++--
 configure.ac                |   11 +-
 doc/Makefile.am             |    7 +-
 doc/Makefile.in             |  176 +-
 doc/assuan.info             | 2026 ++++++++--------
 doc/assuan.texi             |  256 +-
 doc/gpl.texi                |    9 +-
 doc/lgpl.texi               |   19 +-
 doc/stamp-vti               |    8 +-
 doc/version.texi            |    8 +-
 m4/Makefile.in              |  101 +-
 src/Makefile.am             |    6 +-
 src/Makefile.in             |  223 +-
 src/assuan-inquire.c        |   30 +-
 src/assuan-socket-connect.c |   31 +-
 src/assuan-socket.c         |    2 +-
 src/debug.h                 |   47 +-
 src/w32-sock-nonce.inc.h    |    6 +-
 tests/Makefile.in           |  206 +-
 31 files changed, 7318 insertions(+), 3853 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-gnupg/libassuan.git



More information about the Pkg-gnupg-commit mailing list