Skip to content

Commit 894691a

Browse files
committed
lzlib - update from 1.14 to 1.15
1 parent 45aa783 commit 894691a

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

build/lzlib/build.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
# http://www.illumos.org/license/CDDL.
1313
# }}}
1414

15-
# Copyright 2024 OmniOS Community Edition (OmniOSce) Association.
15+
# Copyright 2025 OmniOS Community Edition (OmniOSce) Association.
1616

1717
. ../../lib/build.sh
1818

1919
PROG=lzlib
2020
PKG=library/lzlib
21-
VER=1.14
21+
VER=1.15
2222
SUMMARY="Data compression library"
2323
DESC="$SUMMARY providing in-memory LZMA (de-)compression functions"
2424

build/lzlib/patches/ld-soname.patch

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
diff -wpruN --no-dereference '--exclude=*.orig' a~/Makefile.in a/Makefile.in
22
--- a~/Makefile.in 1970-01-01 00:00:00
33
+++ a/Makefile.in 1970-01-01 00:00:00
4-
@@ -26,7 +26,7 @@ lib$(libname).a : lzlib.o
4+
@@ -29,7 +29,7 @@ lib$(libname).a : lzlib.o
55
$(AR) $(ARFLAGS) $@ $<
66

7-
lib$(libname).so.$(pkgversion) : lzlib_sh.o
8-
- $(CC) $(CFLAGS) $(LDFLAGS) -fpic -fPIC -shared -Wl,--soname=lib$(libname).so.$(soversion) -o $@ $<
9-
+ $(CC) $(CFLAGS) $(LDFLAGS) -fpic -fPIC -shared -Wl,-h,lib$(libname).so.$(soversion) -o $@ $<
7+
lib$(libname).so.$(soversion) : lzlib_sh.o
8+
- $(CC) $(CFLAGS) $(LDFLAGS) -fpic -fPIC -shared -Wl,--soname=$@ -o $@ $< || \
9+
+ $(CC) $(CFLAGS) $(LDFLAGS) -fpic -fPIC -shared -Wl,-h,$@ -o $@ $< || \
10+
$(CC) $(CFLAGS) $(LDFLAGS) -fpic -fPIC -shared -o $@ $<
1011

11-
$(progname) : $(objs) lib$(libname).a
12-
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(objs) lib$(libname).a
12+
bin : $(progname_static) $(progname_shared)

build/lzlib/testsuite.log

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
testing lzlib-1.14...
1+
testing lzlib-1.15...
22
testing decompression...
33
testing compression...
44
testing bad input...

doc/packages.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
| library/libuv | 1.49.2 | https://github.com/libuv/libuv/releases | Currently used solely by bind
5050
| library/libxml2 | 2.13.5 | https://github.com/GNOME/libxml2/tags http://xmlsoft.org/news.html
5151
| library/libxslt | 1.1.42 | https://gitlab.gnome.org/api/v4/projects/GNOME%2Flibxslt/releases https://gitlab.gnome.org/GNOME/libxslt/-/releases
52-
| library/lzlib | 1.14 | https://download.savannah.gnu.org/releases/lzip/lzlib/
52+
| library/lzlib | 1.15 | https://download.savannah.gnu.org/releases/lzip/lzlib/
5353
| library/nettle | 3.10.1 | https://ftp.gnu.org/gnu/nettle/ https://www.lysator.liu.se/~nisse/nettle/ | Used solely by chrony
5454
| library/ncurses | 6.5 | https://ftp.gnu.org/gnu/ncurses/
5555
| library/nghttp2 | 1.64.0 | https://github.com/nghttp2/nghttp2/releases

0 commit comments

Comments
 (0)