From: Tim Kientzle Date: Sun, 9 Nov 2008 20:02:31 +0000 (-0500) Subject: Update NEWS, version to 2.5.902a. X-Git-Tag: v2.6.0~48 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=03f87984c4dc77389b77d6ab3403411512b1c761;p=thirdparty%2Flibarchive.git Update NEWS, version to 2.5.902a. SVN-Revision: 245 --- diff --git a/NEWS b/NEWS index 5ca37c404..d527aa5f7 100644 --- a/NEWS +++ b/NEWS @@ -1,24 +1,30 @@ - -Nov 08, 2008: libarchive 2.5.901 released -Nov 07, 2008: Decompression refactor completed: The decompression - routines have been simplified; they now consume and produce - arbitrarily-sized blocks. The reblocking which used to be in - read_support_compression_none() has been pulled into the read - core. Of course, there are still some opportunities for - eliminating common code across the decompressors, but this is - a step in the right direction. This also changes the - decompression bid to multi-pass so that archive_read now - builds out a filter pipeline. This opens the door to - automatic uudecode and decryption support. (I have some ideas - for encryption support that I'd like to explore soon.) -Nov 01, 2008: lzma reader contributed by Miklos Vajna. I still have +Nov 09, 2008: libarchive 2.5.902a released +Nov 08, 2008: libarchive 2.5.901a released +Nov 08, 2008: Start of pre-release testing for libarchive 2.6 + +Nov 07, 2008: Read filter refactor: The decompression routines just + consume and produce arbitrarily-sized blocks. The reblocking + from read_support_compression_none() has been pulled into the + read core. Also, the decompression bid now makes multiple + passes and stacks read filters. +Oct 21, 2008: bsdcpio: New command-line parser. +Oct 19, 2008: Internal read_ahead change: short reads are now an error +Oct 06, 2008: bsdtar: option parser no longer uses getopt_long(), + gives consistent option parsing on all platforms. +Sep 19, 2008: Jaakko Heinonen: shar utility built on libarchive +Sep 17, 2008: Pedro Giffuni: birthtime support +Sep 17, 2008: Miklos Vajna: lzma reader and test. Note: I still have some concerns about the auto-detection (LZMA file format doesn't support auto-detection well), so this is not yet enabled under archive_read_support_compression_all(). For now, you must call archive_read_support_compression_lzma() if you want LZMA read support. -Oct 15, 2008: bsdtar and bsdcpio have custom command-line parsers now, - so we now have consistent long-option support on all platforms. +Sep 11, 2008: Ivailo Petrov: Many fixes to Windows build, new solution files +Jul 26, 2008: archive_entry now tracks which values have not been set. + This helps zip extraction (file size is often "unknown") and + time restores (tar usually doesn't know atime). +Jul 26, 2008: Joerg Sonnenberger: Performance improvements to shar writer +Jul 25, 2008: Joerg Sonnenberger: mtree write support Jul 02, 2008: libarchive 2.5.5 released diff --git a/configure.ac b/configure.ac index 1aa1c916f..2987966e2 100644 --- a/configure.ac +++ b/configure.ac @@ -4,8 +4,8 @@ dnl First, define all of the version numbers up front. dnl In particular, this allows the version macro to be used in AC_INIT dnl These first two version numbers are updated automatically on each release. -m4_define([LIBARCHIVE_VERSION_S],[2.5.901]) -m4_define([LIBARCHIVE_VERSION_N],[2005901]) +m4_define([LIBARCHIVE_VERSION_S],[2.5.902a]) +m4_define([LIBARCHIVE_VERSION_N],[2005902]) dnl bsdtar versioning tracks libarchive m4_define([BSDTAR_VERSION_S],LIBARCHIVE_VERSION_S()) diff --git a/libarchive/archive.h b/libarchive/archive.h index 17cb51c6e..ce296e34c 100644 --- a/libarchive/archive.h +++ b/libarchive/archive.h @@ -113,13 +113,13 @@ extern "C" { * (ARCHIVE_API_VERSION * 1000000 + ARCHIVE_API_FEATURE * 1000) * #endif */ -#define ARCHIVE_VERSION_NUMBER 2005901 +#define ARCHIVE_VERSION_NUMBER 2005902 __LA_DECL int archive_version_number(void); /* * Textual name/version of the library, useful for version displays. */ -#define ARCHIVE_VERSION_STRING "libarchive 2.5.901" +#define ARCHIVE_VERSION_STRING "libarchive 2.5.902a" __LA_DECL const char * archive_version_string(void); #if ARCHIVE_VERSION_NUMBER < 3000000 diff --git a/tar/Makefile b/tar/Makefile index d9d16eb8b..b8c88a5d6 100644 --- a/tar/Makefile +++ b/tar/Makefile @@ -1,7 +1,7 @@ # $FreeBSD: src/usr.bin/tar/Makefile,v 1.38 2008/08/22 01:31:13 kientzle Exp $ PROG= bsdtar -BSDTAR_VERSION_STRING=2.5.901 +BSDTAR_VERSION_STRING=2.5.902a SRCS= bsdtar.c cmdline.c getdate.y matching.c read.c siginfo.c subst.c tree.c util.c write.c WARNS?= 5 DPADD= ${LIBARCHIVE} ${LIBBZ2} ${LIBZ} diff --git a/version b/version index d0455b398..6bd668ee3 100644 --- a/version +++ b/version @@ -1 +1 @@ -2005901 +2005902a