diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2011-02-22 15:05:01 +0100 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2011-02-22 15:05:01 +0100 |
commit | b7080ced608f012aee2566afc724c3727e75fc1b (patch) | |
tree | 6915540ec50b855f471ad56d8571f25c5a5fddb2 /test/integration | |
parent | 3c54407f8783d5e27363eabf41dbc3d031526ffe (diff) | |
parent | cd5b597cc855a535b35e88324191931c54c6fba0 (diff) |
* ftparchive/multicompress.cc, apt-inst/deb/debfile.cc:
- support xz compressor to create xz-compressed Indexes and be able
to open data.tar.xz files
* ftparchive/writer.cc:
- include xz-compressed Packages and Sources files in Release file
Diffstat (limited to 'test/integration')
-rw-r--r-- | test/integration/framework | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test/integration/framework b/test/integration/framework index 7e1d25e61..71e7e476c 100644 --- a/test/integration/framework +++ b/test/integration/framework @@ -328,10 +328,10 @@ createaptftparchiveconfig() { echo -n '"; }; Default { - Packages::Compress ". gzip bzip2 lzma"; - Sources::Compress ". gzip bzip2 lzma"; - Contents::Compress ". gzip bzip2 lzma"; - Translation::Compress ". gzip bzip2 lzma"; + Packages::Compress ". gzip bzip2 lzma xz"; + Sources::Compress ". gzip bzip2 lzma xz"; + Contents::Compress ". gzip bzip2 lzma xz"; + Translation::Compress ". gzip bzip2 lzma xz"; LongDescription "false"; }; TreeDefault { @@ -438,6 +438,7 @@ buildaptarchivefromfiles() { cat ${line} | gzip > ${line}.gz cat ${line} | bzip2 > ${line}.bz2 cat ${line} | lzma > ${line}.lzma + cat ${line} | xz > ${line}.xz msgdone "info" done generatereleasefiles |