-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Charles Wilson wrote: > The xz package is the successor to lzma. Its command-line tools > support both .lzma files and the new .xz format, and it ships with > compatibility links so you don't even need to retrain your fingers: > 'lzma', 'lzcat', etc, are all still present. However, you probably > should: .xz files are already being used by some upstream source > distribution sites, including GNU FSF, and the new format includes > features (such as internal integrity checks) that the old .lzma > format lacks.
So if I'm reading this right, is the attached patch for cygport correct? Yaakov -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (Cygwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEAREIAAYFAkm9yvAACgkQpiWmPGlmQSMSpgCgnfNDamXcjsZGkwue/rZbWjGi ACcAoN2qUvsChi2FhCSdgLOclhFygzqV =Cr4s -----END PGP SIGNATURE-----
Index: bin/cygport.in =================================================================== --- bin/cygport.in (revision 6005) +++ bin/cygport.in (working copy) @@ -602,9 +602,9 @@ *.asc|*.md5|*.sig|*.sign) continue ;; *.tar.bz2|*.tbz2|*.tar.bz|*.tbz) unpack_cmd="tar jxf" ;; *.tar.gz|*.tgz|*.tar.Z) unpack_cmd="tar zxf" ;; - *.tar.lzma) - check_prog_req lzma - unpack_cmd="tar --lzma -xf" + *.tar.lzma|*.tar.xz) + check_prog_req xz + unpack_cmd="tar --xz -xf" ;; *.tar.lzo) check_prog_req lzop
-- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/