diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2011-02-27 14:05:58 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2011-02-27 14:05:58 +0000 |
commit | 525a39a01a10f98e5020220012aa803c0e6c7df0 (patch) | |
tree | 01de49bc20c5393052be157d6ed12169ea840028 | |
parent | 983e875c1c150ef73c39c27de80c430c7f2a46ea (diff) | |
download | strace-525a39a01a10f98e5020220012aa803c0e6c7df0.tar.gz |
Generate an xz tar archive of the distribution
* configure.ac (AM_INIT_AUTOMAKE): Replace dist-bzip2 with dist-xz.
* Makefile.am: Update srpm target.
* make-dist: Update for dist-xz.
* strace.spec: Update Source tag.
* debian/watch: Update regexp.
* .gitignore: Add strace-*.tar.xz.
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | Makefile.am | 4 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | debian/watch | 2 | ||||
-rwxr-xr-x | make-dist | 2 | ||||
-rw-r--r-- | strace.spec | 2 |
6 files changed, 8 insertions, 6 deletions
diff --git a/.gitignore b/.gitignore index 3adf1cf31..1043e1f13 100644 --- a/.gitignore +++ b/.gitignore @@ -29,3 +29,5 @@ Makefile.in /ioctldefs.h /ioctlsort /strace + +/strace-*.tar.xz diff --git a/Makefile.am b/Makefile.am index f623b9d9f..c13b11dd1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -93,8 +93,8 @@ EXTRA_DIST = $(man_MANS) errnoent.sh signalent.sh syscallent.sh ioctlsort.c \ xlate.el .PHONY: srpm -srpm: dist-bzip2 - rpmbuild --define '%_srcrpmdir .' -ts $(distdir).tar.bz2 +srpm: dist-xz + rpmbuild --define '%_srcrpmdir .' -ts $(distdir).tar.xz if MAINTAINER_MODE diff --git a/configure.ac b/configure.ac index ca1694bdc..be2494aea 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ AC_INIT([strace],[4.5.20]) AC_CONFIG_SRCDIR([strace.c]) AC_CONFIG_AUX_DIR([.]) AM_CONFIG_HEADER([config.h]) -AM_INIT_AUTOMAKE([foreign check-news dist-bzip2 no-dist-gzip silent-rules]) +AM_INIT_AUTOMAKE([foreign check-news dist-xz no-dist-gzip silent-rules]) AM_MAINTAINER_MODE AC_CANONICAL_HOST diff --git a/debian/watch b/debian/watch index 166cc9c87..5e4f652af 100644 --- a/debian/watch +++ b/debian/watch @@ -1,2 +1,2 @@ version=3 -opts="uversionmangle=s/-/./g" http://sf.net/strace/strace-([[:digit:].-]*)\.tar\.bz2 +opts="uversionmangle=s/-/./g" http://sf.net/strace/strace-([[:digit:].-]*)\.tar\.xz @@ -22,4 +22,4 @@ autoreconf -i -f make -s $j distcheck -mv -f *.tar.bz2 .. +mv -f strace-*.tar.xz .. diff --git a/strace.spec b/strace.spec index e046c625b..4e806d7b7 100644 --- a/strace.spec +++ b/strace.spec @@ -5,7 +5,7 @@ Release: 2%{?dist} License: BSD Group: Development/Debuggers URL: http://sourceforge.net/projects/strace/ -Source0: http://downloads.sourceforge.net/strace/%{name}-%{version}.tar.bz2 +Source: http://downloads.sourceforge.net/strace/%{name}-%{version}.tar.xz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libacl-devel, libaio-devel, time |