Skip to content
Commits on Source (3)
libzstd (1.3.4+dfsg-1) unstable; urgency=medium
* New upstream version 1.3.4+dfsg
* Update d/control:
- bump Policy to 4.1.3
- update Package-Type and remove Multi-Arch field from -udeb section
* Refresh patches, remove indexes
* Disable tests if DEB_BUILD_OPTIONS set to nocheck
* Update libzstd1.symbols file
-- Alexandre Mestiashvili <mestia@debian.org> Tue, 03 Apr 2018 13:24:49 +0200
libzstd (1.3.3+dfsg-2) unstable; urgency=medium
[ Dimitri John Ledkov ]
......
......@@ -2,7 +2,7 @@ Source: libzstd
Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org>
Uploaders: Kevin Murray <kdmfoss@gmail.com>,
Olivier Sallou <osallou@debian.org>,
Alexandre Mestiashvili <alex@biotec.tu-dresden.de>
Alexandre Mestiashvili <mestia@debian.org>
Section: libs
Priority: optional
Build-Depends: debhelper (>= 10),
......@@ -39,7 +39,6 @@ Description: fast lossless compression algorithm
Package: libzstd1-udeb
Architecture: any
Multi-Arch: same
Section: debian-installer
Depends: ${shlibs:Depends},
${misc:Depends}
......
......@@ -9,11 +9,8 @@ Subject: Add symlinks for extra manpages
create mode 100644 programs/unzstd.1
create mode 100644 programs/zstdcat.1
diff --git a/programs/unzstd.1 b/programs/unzstd.1
new file mode 100644
index 0000000..5ccdf8a
--- /dev/null
+++ b/programs/unzstd.1
+++ libzstd/programs/unzstd.1
@@ -0,0 +1,92 @@
+\"
+\" zstd.1: This is a manual page for 'zstd' program. This file is part of the
......@@ -107,11 +104,8 @@ index 0000000..5ccdf8a
+
+.SH AUTHOR
+Yann Collet
diff --git a/programs/zstdcat.1 b/programs/zstdcat.1
new file mode 100644
index 0000000..5ccdf8a
--- /dev/null
+++ b/programs/zstdcat.1
+++ libzstd/programs/zstdcat.1
@@ -0,0 +1,92 @@
+\"
+\" zstd.1: This is a manual page for 'zstd' program. This file is part of the
......
......@@ -7,11 +7,8 @@ Subject: Add help2man'd pzstd man file
1 file changed, 76 insertions(+)
create mode 100644 contrib/pzstd/pzstd.1
diff --git a/contrib/pzstd/pzstd.1 b/contrib/pzstd/pzstd.1
new file mode 100644
index 0000000..03c81cf
--- /dev/null
+++ b/contrib/pzstd/pzstd.1
+++ libzstd/contrib/pzstd/pzstd.1
@@ -0,0 +1,76 @@
+.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.4.
+.TH PZSTD "1" "October 2016" "PZSTD version: 1.1.0." "User Commands"
......
......@@ -6,10 +6,8 @@ Subject: Use bash for test script portablitity
tests/playTests.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/playTests.sh b/tests/playTests.sh
index ad70538..81b2e34 100755
--- a/tests/playTests.sh
+++ b/tests/playTests.sh
--- libzstd.orig/tests/playTests.sh
+++ libzstd/tests/playTests.sh
@@ -1,4 +1,4 @@
-#!/bin/sh -e
+#!/bin/bash -e
......
Description: Fix use of fprintf
Author: Sascha Steinbiss <satta@debian.org>
--- a/zlibWrapper/Makefile
+++ b/zlibWrapper/Makefile
@@ -13,7 +13,7 @@ ZLIB_PATH ?= .
--- libzstd.orig/zlibWrapper/Makefile
+++ libzstd/zlibWrapper/Makefile
@@ -13,7 +13,7 @@
ZSTDLIBDIR = ../lib
ZSTDLIBRARY = $(ZSTDLIBDIR)/libzstd.a
ZLIBWRAPPER_PATH = .
......@@ -11,7 +11,7 @@ Author: Sascha Steinbiss <satta@debian.org>
EXAMPLE_PATH = examples
PROGRAMS_PATH = ../programs
TEST_FILE = ../doc/zstd_compression_format.md
@@ -70,16 +70,16 @@ valgrindTest: clean example fitblk examp
@@ -70,16 +70,16 @@
#.c.o:
# $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
......@@ -32,8 +32,8 @@ Author: Sascha Steinbiss <satta@debian.org>
$(CC) $(LDFLAGS) $^ $(ZLIB_LIBRARY) -o $@
fitblk: $(EXAMPLE_PATH)/fitblk.o $(ZLIBWRAPPER_PATH)/zstd_zlibwrapper.o $(ZSTDLIBRARY)
--- a/zlibWrapper/examples/example.c
+++ b/zlibWrapper/examples/example.c
--- libzstd.orig/zlibWrapper/examples/example.c
+++ libzstd/zlibWrapper/examples/example.c
@@ -27,7 +27,7 @@
/* @(#) $Id$ */
......
Description: add shebang line to new script
Author: Sascha Steinbiss <satta@debian.org>
--- a/programs/zstdless
+++ b/programs/zstdless
--- libzstd.orig/programs/zstdless
+++ libzstd/programs/zstdless
@@ -1,2 +1,4 @@
#!/bin/sh
+
......