[Pkg-gnupg-commit] [libassuan] annotated tag libassuan-0-6-9 created (now 9c62939)

Eric Dorland eric at moszumanska.debian.org
Fri May 22 05:35:51 UTC 2015


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

eric pushed a change to annotated tag libassuan-0-6-9
in repository libassuan.

        at  9c62939   (tag)
   tagging  96699ee8ad005886ed5c31a8f3560f2664dc3604 (commit)
  replaces  libassuan-0-6-8
 tagged by  GIT admin account
        on  Wed Dec 22 20:56:52 2004 +0000

- Log -----------------------------------------------------------------
This commit was manufactured by cvs2svn to create tag 'libassuan-0-6-9'.

Moritz Schulte (1):
      2004-12-19  Moritz Schulte  <moritz at g10code.com>

Werner Koch (10):
      Post release preps
      Avoid warnings about unknown pragmas.
      include/sys/types.h
      Script to build the W32 version
      * configure.ac: Define HAVE_W32_SYSTEM and HAVE_DOSISH_SYSTEM.
      * autogen.sh: Add Option --build-w32.
      More W32 fixes
      (assuan_init_pipe_server) [W32]: Map file
      (assuan_socket_connect): Allow for a
      Switched to automake 1.9.

-----------------------------------------------------------------------

This annotated tag includes the following new commits:

       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.

The 135 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.


-- 
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