From c4266f3b831251cbf4113c4afe2097f618a6968c6c5077393d1e22c7999e68b4 Mon Sep 17 00:00:00 2001 From: Pedro Monreal Gonzalez Date: Thu, 20 Jun 2024 15:21:20 +0000 Subject: [PATCH] - Update to 1.50: * 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. OBS-URL: https://build.opensuse.org/package/show/Base:System/libgpg-error?expand=0&rev=108 --- libgpg-error-1.49.tar.bz2 | 3 --- libgpg-error-1.49.tar.bz2.sig | Bin 119 -> 0 bytes libgpg-error-1.50.tar.bz2 | 3 +++ libgpg-error-1.50.tar.bz2.sig | Bin 0 -> 119 bytes libgpg-error.changes | 46 ++++++++++++++++++++++++++++++++++ libgpg-error.spec | 2 +- 6 files changed, 50 insertions(+), 4 deletions(-) delete mode 100644 libgpg-error-1.49.tar.bz2 delete mode 100644 libgpg-error-1.49.tar.bz2.sig create mode 100644 libgpg-error-1.50.tar.bz2 create mode 100644 libgpg-error-1.50.tar.bz2.sig diff --git a/libgpg-error-1.49.tar.bz2 b/libgpg-error-1.49.tar.bz2 deleted file mode 100644 index 910efcb..0000000 --- a/libgpg-error-1.49.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8b79d54639dbf4abc08b5406fb2f37e669a2dec091dd024fb87dd367131c63a9 -size 1081175 diff --git a/libgpg-error-1.49.tar.bz2.sig b/libgpg-error-1.49.tar.bz2.sig deleted file mode 100644 index d92eb703ec53161288c4c17996b3237c85940f78bf09da8de9876704fe59959d..0000000000000000000000000000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 119 zcmeAuWnmEGV2~A4WXWBXm$E!p!y#PSlPRcU`VKV*t6Qv0X`aZe74{rBf}!gz(&JJ$4=Qg!+-T5#s9dL Tn)!3T?`R2l8$T(=>m(xpi%2b3 diff --git a/libgpg-error-1.50.tar.bz2 b/libgpg-error-1.50.tar.bz2 new file mode 100644 index 0000000..043db7b --- /dev/null +++ b/libgpg-error-1.50.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69405349e0a633e444a28c5b35ce8f14484684518a508dc48a089992fe93e20a +size 1082003 diff --git a/libgpg-error-1.50.tar.bz2.sig b/libgpg-error-1.50.tar.bz2.sig new file mode 100644 index 0000000000000000000000000000000000000000000000000000000000000000..e59f14c78a4f58b88d4525e62c44779f89dc04b9e9232bfbd35b5aa499c0e764 GIT binary patch literal 119 zcmeAuWnmEGV2~A4WXWBXm$E!p!y#PSlPRcU`VKV*t6Qv0X+?818MrtFU?M4%4F4>a z1|_9xEewizq@y{%Www;#wUA2%*OeyA{pxY&|32A~;eXlO;&6?kOuzUzXU#ji)wvj| UJ=bjCGk0?3lNk&4?aX5Z0G%W*t^fc4 literal 0 HcmV?d00001 diff --git a/libgpg-error.changes b/libgpg-error.changes index bedc835..151c5ee 100644 --- a/libgpg-error.changes +++ b/libgpg-error.changes @@ -1,3 +1,49 @@ +------------------------------------------------------------------- +Thu Jun 20 07:57:01 UTC 2024 - Pedro Monreal + +- Update to 1.50: + * 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). + * Release-info: https://dev.gnupg.org/T7102 + ------------------------------------------------------------------- Mon Apr 29 06:32:24 UTC 2024 - Pedro Monreal diff --git a/libgpg-error.spec b/libgpg-error.spec index 40b0c97..5422781 100644 --- a/libgpg-error.spec +++ b/libgpg-error.spec @@ -17,7 +17,7 @@ Name: libgpg-error -Version: 1.49 +Version: 1.50 Release: 0 Summary: Library That Defines Common Error Values for All GnuPG Components License: GPL-2.0-or-later AND LGPL-2.1-or-later