* [PATCH] libassuan: Update to version 2.5.5
@ 2022-11-19 17:51 Adolf Belka
2022-11-21 9:46 ` Michael Tremer
0 siblings, 1 reply; 2+ messages in thread
From: Adolf Belka @ 2022-11-19 17:51 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2693 bytes --]
- Update from 2.5.4 to 2.5.5
- Update of rootfile
- Changelog
Release 2.5.5.
Support Unicode when starting servers on Windows.
* src/assuan-socket.c (utf8_to_wchar): Rename to
(_assuan_utf8_to_wchar): this and give global scope.
* src/system-w32.c (__assuan_spawn): Use CreateProcessW.
m4: Update with newer autoconf constructs.
* src/libassuan.m4: Replace AC_HELP_STRING to AS_HELP_STRING.
build: Update to newer autoconf constructs.
* configure.ac: Use AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER.
Use AC_USE_SYSTEM_EXTENSIONS instead of AC_GNU_SOURCE.
Use AS_HELP_STRING instead of AC_HELP_STRING.
(AC_TYPE_SIGNAL): Remove.
(AC_DECL_SYS_SIGLIST): Remove.
* m4/Makefile.am (EXTRA_DIST): Update.
* m4/gnupg-pth.m4: Remove.
* m4/onceonly.m4: Remove.
* m4/socklen.m4: Update from gnulib.
* m4/libtool.m4: Update from libgpg-error.
* m4/gpg-error.m4: Update from libgpg-error.
Fix crash when logging.
* src/assuan-logging.c (_assuan_log_control_channel): Use gpgrt_malloc.
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
config/rootfiles/packages/libassuan | 2 +-
lfs/libassuan | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/config/rootfiles/packages/libassuan b/config/rootfiles/packages/libassuan
index c1bb31883..fd57c7dd6 100644
--- a/config/rootfiles/packages/libassuan
+++ b/config/rootfiles/packages/libassuan
@@ -3,7 +3,7 @@ usr/bin/libassuan-config
#usr/lib/libassuan.la
usr/lib/libassuan.so
usr/lib/libassuan.so.0
-usr/lib/libassuan.so.0.8.4
+usr/lib/libassuan.so.0.8.5
#usr/lib/pkgconfig/libassuan.pc
#usr/share/aclocal/libassuan.m4
#usr/share/info/assuan.info
diff --git a/lfs/libassuan b/lfs/libassuan
index d8b6b97f0..4b59508ab 100644
--- a/lfs/libassuan
+++ b/lfs/libassuan
@@ -26,7 +26,7 @@ include Config
SUMMARY = IPC library used by GnuPG version 2
-VER = 2.5.4
+VER = 2.5.5
THISAPP = libassuan-$(VER)
DL_FILE = $(THISAPP).tar.bz2
@@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = libassuan
-PAK_VER = 6
+PAK_VER = 7
DEPS =
@@ -48,7 +48,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_BLAKE2 = 2eec42c47840741a4726fc35c3ed04300e5fbcd37f808b121534aeaa04d0d0f609a30ad48cfbe33a81ee4b2ebbb822b9a48a5c602268f1b802bf5d7d19d72e9c
+$(DL_FILE)_BLAKE2 = 24952e97c757b97c387ab4c2c4bf7b040f2874e9326c129805c7f5326fa14d80e083b0842e336a635531a2c8d4a66d428c816bae6b175f1c4518add1ffa3554d
install : $(TARGET)
--
2.38.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] libassuan: Update to version 2.5.5
2022-11-19 17:51 [PATCH] libassuan: Update to version 2.5.5 Adolf Belka
@ 2022-11-21 9:46 ` Michael Tremer
0 siblings, 0 replies; 2+ messages in thread
From: Michael Tremer @ 2022-11-21 9:46 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2927 bytes --]
Reviewed-by: Michael Tremer <michael.tremer(a)ipfire.org>
> On 19 Nov 2022, at 17:51, Adolf Belka <adolf.belka(a)ipfire.org> wrote:
>
> - Update from 2.5.4 to 2.5.5
> - Update of rootfile
> - Changelog
> Release 2.5.5.
> Support Unicode when starting servers on Windows.
> * src/assuan-socket.c (utf8_to_wchar): Rename to
> (_assuan_utf8_to_wchar): this and give global scope.
> * src/system-w32.c (__assuan_spawn): Use CreateProcessW.
> m4: Update with newer autoconf constructs.
> * src/libassuan.m4: Replace AC_HELP_STRING to AS_HELP_STRING.
> build: Update to newer autoconf constructs.
> * configure.ac: Use AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER.
> Use AC_USE_SYSTEM_EXTENSIONS instead of AC_GNU_SOURCE.
> Use AS_HELP_STRING instead of AC_HELP_STRING.
> (AC_TYPE_SIGNAL): Remove.
> (AC_DECL_SYS_SIGLIST): Remove.
> * m4/Makefile.am (EXTRA_DIST): Update.
> * m4/gnupg-pth.m4: Remove.
> * m4/onceonly.m4: Remove.
> * m4/socklen.m4: Update from gnulib.
> * m4/libtool.m4: Update from libgpg-error.
> * m4/gpg-error.m4: Update from libgpg-error.
> Fix crash when logging.
> * src/assuan-logging.c (_assuan_log_control_channel): Use gpgrt_malloc.
>
> Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
> ---
> config/rootfiles/packages/libassuan | 2 +-
> lfs/libassuan | 6 +++---
> 2 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/config/rootfiles/packages/libassuan b/config/rootfiles/packages/libassuan
> index c1bb31883..fd57c7dd6 100644
> --- a/config/rootfiles/packages/libassuan
> +++ b/config/rootfiles/packages/libassuan
> @@ -3,7 +3,7 @@ usr/bin/libassuan-config
> #usr/lib/libassuan.la
> usr/lib/libassuan.so
> usr/lib/libassuan.so.0
> -usr/lib/libassuan.so.0.8.4
> +usr/lib/libassuan.so.0.8.5
> #usr/lib/pkgconfig/libassuan.pc
> #usr/share/aclocal/libassuan.m4
> #usr/share/info/assuan.info
> diff --git a/lfs/libassuan b/lfs/libassuan
> index d8b6b97f0..4b59508ab 100644
> --- a/lfs/libassuan
> +++ b/lfs/libassuan
> @@ -26,7 +26,7 @@ include Config
>
> SUMMARY = IPC library used by GnuPG version 2
>
> -VER = 2.5.4
> +VER = 2.5.5
>
> THISAPP = libassuan-$(VER)
> DL_FILE = $(THISAPP).tar.bz2
> @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE)
> DIR_APP = $(DIR_SRC)/$(THISAPP)
> TARGET = $(DIR_INFO)/$(THISAPP)
> PROG = libassuan
> -PAK_VER = 6
> +PAK_VER = 7
>
> DEPS =
>
> @@ -48,7 +48,7 @@ objects = $(DL_FILE)
>
> $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
>
> -$(DL_FILE)_BLAKE2 = 2eec42c47840741a4726fc35c3ed04300e5fbcd37f808b121534aeaa04d0d0f609a30ad48cfbe33a81ee4b2ebbb822b9a48a5c602268f1b802bf5d7d19d72e9c
> +$(DL_FILE)_BLAKE2 = 24952e97c757b97c387ab4c2c4bf7b040f2874e9326c129805c7f5326fa14d80e083b0842e336a635531a2c8d4a66d428c816bae6b175f1c4518add1ffa3554d
>
> install : $(TARGET)
>
> --
> 2.38.1
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-11-21 9:46 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-19 17:51 [PATCH] libassuan: Update to version 2.5.5 Adolf Belka
2022-11-21 9:46 ` Michael Tremer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox