Next | Query returned 115 messages, browsing 1 to 10 | Previous

History of commit frequency

CVS Commit History:


   2024-06-26 21:31:56 by Adam Ciarcinski | Files touched by this commit (3) | Package updated
Log message:
libgpg-error: updated to 1.50

Noteworthy changes in version 1.50 (2024-06-19) [C37/A37/R0]
-----------------------------------------------

 * New set of process spawn functions.  [T6249]

 * Fixed return type for gpgrt_b64dec_proc and gpgrt_b64dec_finish to
   gpg_err_code_t.  This enum return type is in almost all cases
   compatible to the formerly used gpg_error_t (i.e. unsigned int).

 * Interface changes relative to the 1.49 release:
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 gpgrt_process_t                     CHANGED (never used).
 gpgrt_spawn_actions_t               NEW type.
 gpgrt_process_requests              NEW enum.
 gpgrt_process_spawn                 NEW.
 gpgrt_process_terminate             NEW.
 gpgrt_process_get_streams           NEW.
 gpgrt_process_ctl                   NEW.
 gpgrt_process_wait                  NEW.
 gpgrt_process_release               NEW.
 gpgrt_spawn_actions_new             NEW.
 gpgrt_spawn_actions_release         NEW.
 gpgrt_spawn_actions_set_redirect    NEW.
 gpgrt_spawn_actions_set_environ     NEW (posix only).
 gpgrt_spawn_actions_set_inherit_fds NEW (posix only).
 gpgrt_spawn_actions_set_atfork      NEW (posix only).
 gpgrt_spawn_actions_set_envvars     NEW (w32 only).
 gpgrt_spawn_actions_set_inherit_handles NEW (w32 only).
 GPGRT_PROCESS_DETACHED              NEW.
 GPGRT_PROCESS_NO_CONSOLE            NEW.
 GPGRT_PROCESS_NO_EUID_CHECK         NEW.
 GPGRT_PROCESS_STDIN_PIPE            NEW.
 GPGRT_PROCESS_STDOUT_PIPE           NEW.
 GPGRT_PROCESS_STDERR_PIPE           NEW.
 GPGRT_PROCESS_STDINOUT_SOCKETPAIR   NEW.
 GPGRT_PROCESS_STDIN_KEEP            NEW.
 GPGRT_PROCESS_STDOUT_KEEP           NEW.
 GPGRT_PROCESS_STDERR_KEEP           NEW.
 GPGRT_PROCESS_STDFDS_SETTING        NEW.
 GPGRT_SPAWN_INHERIT_FILE            REMOVED (never used).
 GPGRT_SPAWN_NONBLOCK                REMOVED (never used).
 GPGRT_SPAWN_RUN_ASFW                REMOVED (never used).
 GPGRT_SPAWN_DETACHED                REMOVED (never used).
 GPGRT_SPAWN_KEEP_STDIN              REMOVED (never used).
 GPGRT_SPAWN_KEEP_STDOUT             REMOVED (never used).
 GPGRT_SPAWN_KEEP_STDERR             REMOVED (never used).
   2024-04-25 11:38:02 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
libgpg-error: updated to 1.49

Noteworthy changes in version 1.49 (2024-04-25)
-----------------------------------------------

* Two new functions to improve the logging interface.  The
  gpgrt_logv_domain is currently the same as gpgrt_logv_prefix but
  allows to pass a domain string so that in future we will be able to
  select log output by domain.  It also provide a non yet functional
  feature to include a hex dump.

* Add a "trunc" keyword to gpgrt_log_printhex.

* Avoid an endless loop in the argparser due to a conf file read
  error.

* Interface changes relative to the 1.48 release:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gpgrt_add_post_log_func        NEW.
gpgrt_logv_domain              NEW.
   2024-02-25 16:05:34 by Thomas Klausner | Files touched by this commit (2) | Package updated
Log message:
libgpg-error: update to 1.48.

Noteworthy changes in version 1.48 (2024-02-23) [C35/A35/R0]
-----------------------------------------------

 * New configure option --with-libtool-modification.  [T6619]

 * New option parser flag to detect commands given without a double
   dash.  There is also the new meta command "command-mode" to set
   this flag via a config file.  [T6978]

 * Added an es_fopen mode flag "sequential" with support on Windows.
   [rE7a42ff0ec9]

 * Added an es_fopen mode flag "wipe" to cleanup internal buffers at
   close time.  [T6954]

 * New function gpgrt_wipememory.  [T6964]

 * Improvements to setenv on Windows.  [rE89e53ad90f]

 * Fixed call to estream-printf string filters.  [T6737]

 * Many improvements to the yat2m tool.

 * Updates to the build system.

 * Interface changes relative to the 1.47 release:
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 ARGPARSE_FLAG_COMMAND          NEW.
 gpgrt_wipememory               NEW.
   2024-01-13 05:16:40 by Taylor R Campbell | Files touched by this commit (2)
Log message:
security/libgpg-error: Allow cross-build on older NetBSD ports.

These ones are identified as `netbsdelf' rather than `netbsd' owing
to their prior a.out incarnations.
   2024-01-13 05:16:24 by Taylor R Campbell | Files touched by this commit (4)
Log message:
security/libgpg-error: Patch away ctype(3) abuse.
   2023-06-16 01:41:31 by Taylor R Campbell | Files touched by this commit (2)
Log message:
libgpg-error: Make this cross-compile on NetBSD.

Provide an architecture-independent definition of a structure that
wraps pthread_mutex_t.  For some reason libgpg-error tries to
discover this by a runtime test in the configure script and spit out
C approximating the declaration automagically, which is incompatible
with cross-compilation.  Since PTHREAD_MUTEX_INITIALIZER always works
on NetBSD, just use that.

No change to native compilation because it always tries
`lock-obj-pub.native.h' first -- the one it generated during
configure -- and then falls back to the cross options like this patch
adds.
   2023-04-07 11:14:48 by Adam Ciarcinski | Files touched by this commit (3) | Package updated
Log message:
libgpg-error: updated to 1.47

Noteworthy changes in version 1.47 (2023-04-06) [C34/A34/R0]
-----------------------------------------------

 * New error codes for PUKs and reset codes.  [T6421]

 * Avoid segv in logging with improper use of the "socket://".
   [rE68333be630]

 * Fixed translation of argparse's internal option --help.
   [rE885a287a57]

 * Interface changes relative to the 1.46 release:
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 GPG_ERR_SOURCE_TKD             NEW.
 GPG_ERR_BAD_PUK                NEW.
 GPG_ERR_NO_RESET_CODE          NEW.
 GPG_ERR_BAD_RESET_CODE         NEW.
 GPGRT_SPAWN_KEEP_STDIN         NEW.
 GPGRT_SPAWN_KEEP_STDOUT        NEW.
 GPGRT_SPAWN_KEEP_STDERR        NEW.
 GPGRT_SPAWN_INHERIT_FILE       NEW.
   2022-10-09 09:50:29 by Adam Ciarcinski | Files touched by this commit (3) | Package updated
Log message:
libgpg-error: updated to 1.46

Noteworthy changes in version 1.46 (2022-10-07) [C33/A33/R1]
-----------------------------------------------

 * Support for bidirectional pipes under Windows.  [T6112]

 * REG_DWORD types are now support in the Windows Registry.
   [rE745d333cf7]

 * Added ES_SYSHD_SOCK support for gpgrt_sysopen under Windows.
   [rE018ea46a30]

 * Fixed gpgrt_log_get_fd for the file case.  [T5922]

 * Avoids header problem with C11 and "noreturn".  [T4002]

 * The gpg-error-config command is not installed by default, because
   it is now replaced by use of pkg-config/gpgrt-config with
   gpg-error.pc.  Supply --enable-install-gpg-error-config configure
   option, if it's really needed.

 * Fixed support of posix-lock for FreeBSD.  [rE6e17e70bb7]

 * Build fixes for some Mingw tool chain versions.  [T5890, T4656]

 * Removed remaining support for WindowsCE.  [T5912]

 * Updated config.guess, config.sub, and config.rpath.  [T6078]

 * gpg-error-config is now only installed when enabled.  [T5683]

 * System paths are now stripped from --cflags --and --libs.  [T6136]
   2022-04-08 08:39:42 by Adam Ciarcinski | Files touched by this commit (2) | Package updated
Log message:
libgpg-error: updated to 1.45

Noteworthy changes in version 1.45 (2022-04-07)
-----------------------------------------------

 * Support the "sysopen" mode parameter for gpgrt_fopen so that file
   names longer than MAX_PATH can be supported under Windows.

 * gpgrt_access and gpgrt_mkdir now support file names longer than
   MAX_PATH.

 * gpgrt_fopen now maps "/dev/null" to "nul" on Windows.

 * Published some internal helper functions for Windows.

 * Interface changes relative to the 1.42 release:
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 gpgrt_free_wchar                 NEW.
 gpgrt_fname_to_wchar             NEW.
 gpgrt_utf8_to_wchar              NEW.
 gpgrt_wchar_to_utf8              NEW.
   2022-01-27 17:51:08 by Adam Ciarcinski | Files touched by this commit (3) | Package updated
Log message:
libgpg-error: updated to 1.44

Noteworthy changes in version 1.44 (2022-01-27)
-----------------------------------------------
* Fix dependency to gpg-error-config-test.sh.
* Run the posix locking test only on supported platforms.
* Detect Linux systems using musl.
* Fix gpg-error-config-test for PKG_CONFIG_LIBDIR.
* Fix returning of option attributes for options with args.
* Add Turkish translations.

Next | Query returned 115 messages, browsing 1 to 10 | Previous