Switch release tarballs .bz2 -> .xz

* `.bz2` = 0.86 MiB
* `.xz` = 0.70 MiB
  by switching, we save nearly 20%
This commit is contained in:
David Seifert 2021-09-05 15:01:09 +02:00
parent 5e321c80cf
commit 475ddd7a46
No known key found for this signature in database
GPG Key ID: CE36E117202E3842
3 changed files with 4 additions and 2 deletions

3
.gitignore vendored
View File

@ -48,6 +48,7 @@ build-test-tarball.mk
config.log
config.status
configure
configure~
doc/AUTHORS
doc/ChangeLog
doc/NEWS
@ -62,7 +63,7 @@ examples/sndfile-loopify
examples/sndfile-to-text
examples/sndfilehandle
include/sndfile.h
libsndfile-1.0.*
libsndfile-*.tar.xz
libsndfile-testsuite-*
libsndfile.spec
libtool

View File

@ -63,6 +63,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
The behavior of the functions for opening files on other platforms does not
change.
* Switch to .xz over .bz2 for release tarballs.
### Fixed

View File

@ -30,7 +30,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 serial-tests subdir-objects])
AM_INIT_AUTOMAKE([1.14 foreign dist-xz no-dist-gzip serial-tests subdir-objects])
AM_SILENT_RULES([yes])
dnl ====================================================================================