From aadb05032235fd61179e8e806a18a9437e0540bc Mon Sep 17 00:00:00 2001 From: David Seifert Date: Sat, 4 Sep 2021 16:49:07 +0200 Subject: [PATCH] Switch release tarballs `.bz2` -> `.xz` * `.bz2` = 3.57 MiB * `.xz` = 3.18 MiB by switching, we save over 10% Fixes #170 --- .gitignore | 2 +- NEWS | 1 + configure.ac | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index bab46028..c7e5e81a 100644 --- a/.gitignore +++ b/.gitignore @@ -26,7 +26,7 @@ Octave/make_src_filter Win32/Makefile.mingw aclocal.m4 autom4te.cache -libsamplerate-*.tar.bz2 +libsamplerate-*.tar.xz compile config.* !/config.h.in diff --git a/NEWS b/NEWS index 6ba45aab..b01dee42 100644 --- a/NEWS +++ b/NEWS @@ -9,6 +9,7 @@ Unreleased platforms. * Fixes and improvements for CMake build system. * Fixes and improvements for Autotools build system. + * Switch to .xz over .bz2 for release tarballs. * Minor bug fixes and updates. Version 0.2.1 (2021-01-23) diff --git a/configure.ac b/configure.ac index 10afe905..dff6fffa 100644 --- a/configure.ac +++ b/configure.ac @@ -27,7 +27,7 @@ AC_CANONICAL_HOST AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_HEADERS([src/config.h]) -AM_INIT_AUTOMAKE([1.14 foreign dist-bzip2 no-dist-gzip subdir-objects serial-tests]) +AM_INIT_AUTOMAKE([1.14 foreign dist-xz no-dist-gzip subdir-objects serial-tests]) AM_SILENT_RULES([yes]) dnl ====================================================================================