From 5e06e3c7249b2c9fabcd94a917da5967e85c74de Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Wed, 12 Mar 2008 13:19:10 +0000 Subject: [PATCH] Version leap to 0.1.3 --- README | 10 +-- configure.ac | 16 ++--- libisoburn/libisoburn.h | 2 +- xorriso/README | 16 +++-- xorriso/configure_ac.txt | 2 +- xorriso/make_xorriso_standalone.sh | 2 +- xorriso/xorriso_eng.html | 106 ++++++++++++++++++++--------- xorriso/xorriso_private.h | 2 +- xorriso/xorriso_timestamp.h | 2 +- xorriso/xorrisoburn.h | 2 +- 10 files changed, 103 insertions(+), 57 deletions(-) diff --git a/README b/README index f08ffb65..5bdfde3f 100644 --- a/README +++ b/README @@ -25,17 +25,17 @@ By using this software you agree to the disclaimer at the end of this text: Compilation, First Glimpse, Installation -Dynamic library and compile time header requirements for libisoburn-0.1.1 : +Dynamic library and compile time header requirements for libisoburn-0.1.3 : - libburn.so.4 , version libburn-0.4.2 or higher -- libisofs.so.6 , version libisofs-0.6.2 or higher +- libisofs.so.6 , version libisofs-0.6.3 or higher libisoburn and xorriso will not start with libraries which are older than their headers seen at compile time. So compile in the oldest possible installation setup unless you have reason to enforce a newer bug fix level. -Obtain libisoburn-0.1.1.tar.gz, take it to a directory of your choice and do: +Obtain libisoburn-0.1.3.tar.gz, take it to a directory of your choice and do: - tar xzf libisoburn-0.1.1.tar.gz - cd libisoburn-0.1.1 + tar xzf libisoburn-0.1.3.tar.gz + cd libisoburn-0.1.3 Within that directory execute: diff --git a/configure.ac b/configure.ac index 9f4e0af8..602b9400 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([libisoburn], [0.1.1], [http://libburnia-project.org]) +AC_INIT([libisoburn], [0.1.3], [http://libburnia-project.org]) AC_PREREQ([2.50]) dnl AC_CONFIG_HEADER([config.h]) @@ -15,7 +15,7 @@ dnl dnl These three are only copies to provide libtool with unused LT_RELEASE ISOBURN_MAJOR_VERSION=0 ISOBURN_MINOR_VERSION=1 -ISOBURN_MICRO_VERSION=1 +ISOBURN_MICRO_VERSION=3 dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION AC_SUBST(ISOBURN_MAJOR_VERSION) @@ -28,14 +28,14 @@ dnl Generate libisoburn.so.1.x.y dnl SONAME will become LT_CURRENT - LT_AGE dnl dnl ts A80215 -dnl This is the developmen t version after stable release libisoburn.so.1.1.0 -dnl LT_CURRENT++, LT_AGE++ has not happened yet. +dnl This is the development version after stable release libisoburn.so.1.1.0 +dnl LT_CURRENT++, LT_AGE++ has happened meanwhile. dnl -dnl SONAME = 2 - 1 = 1 . Library name = libburn.so.1.1.1 +dnl SONAME = 3 - 2 = 1 . Library name = libburn.so.1.2.0 LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION -LT_CURRENT=2 -LT_AGE=1 -LT_REVISION=1 +LT_CURRENT=3 +LT_AGE=2 +LT_REVISION=0 LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE` AC_SUBST(LT_RELEASE) diff --git a/libisoburn/libisoburn.h b/libisoburn/libisoburn.h index c9efa65e..0e1a8e76 100644 --- a/libisoburn/libisoburn.h +++ b/libisoburn/libisoburn.h @@ -232,7 +232,7 @@ int isoburn_libburn_req(int *major, int *minor, int *micro); */ #define isoburn_header_version_major 0 #define isoburn_header_version_minor 1 -#define isoburn_header_version_micro 1 +#define isoburn_header_version_micro 3 /** Note: Above version numbers are also recorded in configure.ac because libtool wants them as parameters at build time. diff --git a/xorriso/README b/xorriso/README index fd4636ee..0233bb32 100644 --- a/xorriso/README +++ b/xorriso/README @@ -4,7 +4,7 @@ xorriso. By Thomas Schmitt Integrated sub project of libburnia-project.org but also published via: http://scdbackup.sourceforge.net/xorriso_eng.html -http://scdbackup.sourceforge.net/xorriso-0.1.1.tar.gz +http://scdbackup.sourceforge.net/xorriso-0.1.3.tar.gz Copyright (C) 2006-2008 Thomas Schmitt, provided under GPL version 2. ------------------------------------------------------------------------------ @@ -35,10 +35,10 @@ The tarball contains anything that is needed except libc and libpthread. libreadline and the readline-dev headers will make dialog mode more convenient, but are not mandatory. -Obtain xorriso-0.1.1.tar.gz, take it to a directory of your choice and do: +Obtain xorriso-0.1.3.tar.gz, take it to a directory of your choice and do: - tar xzf xorriso-0.1.1.tar.gz - cd xorriso-0.1.1 + tar xzf xorriso-0.1.3.tar.gz + cd xorriso-0.1.3 Within that directory execute: @@ -160,9 +160,13 @@ and a matching dynamically linked xorriso binary. This binary is leaner but depends on properly installed libraries of suitable revision. -Dynamic library and compile time header requirements for libisoburn-0.1.1 : +WARNING: There is no libisoburn-0.1.2 suitable for dynamic linking because +libisoburn-0.1.1 uses features of libisofs-0.6.3 of which the API/ABI is +not decared frozen yet. + +Dynamic library and compile time header requirements for libisoburn-0.1.3 : - libburn.so.4 , version libburn-0.4.2 or higher -- libisofs.so.6 , version libisofs-0.6.2 or higher +- libisofs.so.6 , version libisofs-0.6.3 or higher libisoburn and xorriso will not start with libraries which are older than their headers seen at compile time. So compile in the oldest possible installation setup unless you have reason to enforce a newer bug fix level. diff --git a/xorriso/configure_ac.txt b/xorriso/configure_ac.txt index dad879ff..120683c1 100644 --- a/xorriso/configure_ac.txt +++ b/xorriso/configure_ac.txt @@ -1,4 +1,4 @@ -AC_INIT([xorriso], [0.1.1], [http://libburnia-project.org]) +AC_INIT([xorriso], [0.1.3], [http://libburnia-project.org]) AC_PREREQ([2.50]) dnl AC_CONFIG_HEADER([config.h]) diff --git a/xorriso/make_xorriso_standalone.sh b/xorriso/make_xorriso_standalone.sh index 9bb1a107..8760be67 100755 --- a/xorriso/make_xorriso_standalone.sh +++ b/xorriso/make_xorriso_standalone.sh @@ -25,7 +25,7 @@ current_dir=$(pwd) lone_dir="$current_dir"/"xorriso-standalone" -xorriso_rev=0.1.1 +xorriso_rev=0.1.3 # For unstable uploads: xorriso_pl="" # For stable releases: diff --git a/xorriso/xorriso_eng.html b/xorriso/xorriso_eng.html index 2a79a359..e095ff83 100644 --- a/xorriso/xorriso_eng.html +++ b/xorriso/xorriso_eng.html @@ -61,11 +61,11 @@ GPL software included:
libburn-0.4.3
reads and writes data from and to CD and DVD.
(founded by Derek Foreman and Ben Jansens, -furthered by team of libburnia-project.org)
-
libisofs-0.6.2
+furthered since August 2006 by team of libburnia-project.org) +
libisofs-0.6.3
operates ISO 9660 images.
(By Vreixo Formoso and Mario Danic from team of libburnia-project.org)
-
libisoburn-0.1.0
+
libisoburn-0.1.1
coordinates libburn and libisofs, emulates multi-session where needed.
(By Vreixo Formoso and Thomas Schmitt from team of libburnia-project.org)
@@ -90,16 +90,20 @@ ISO 9660 formatter and burner for CD or DVD are fixely integrated.
  • Operates on an existing ISO image or creates a new one. -
  • +
  • Copies files from filesystem into the ISO image. -
  • +
  • Renames or deletes file objects in the ISO image. +
  • Changes file properties in the ISO image.
  • +Updates ISO subtrees incrementally to match given disk subtrees. +
  • +
  • Can write result as completely new image to optical media or filesystem objects.
  • @@ -240,6 +244,23 @@ already been done by a previous -commit.
    +
    The following command can be run on blank media to create a complete +copy of the mentioned disk directory trees, and it can be run on appendable +media to perform a minimal set of change operations which update the +old ISO copies to match the new disk trees. On CD-R[W], DVD-R[W] and DVD+R +older states can be retrieved by help of mount option "session=". +So this constitutes true incremental backup. +On overwriteable media only the newest state is accessible. +
    +
    $ xorriso -dev /dev/sr0 \
    +
       -update_r /home/thomas/open_source_projects /open_source_projects \
    +
       -update_r /home/thomas/personal_mail /personal_mail \
    +
       -commit_eject all \
    + +
    +
    +
    +
    In batch mode it is possible to operate xorriso in a pipeline with an external consumer of the generated ISO image. Any message output will be redirected to stderr in this case.
    @@ -267,8 +288,8 @@ Testers wanted who are willing to risk some double layer DVD media.

    Download as source code (see README):
    -
    xorriso-0.1.0.pl00.tar.gz -(900 KB). +
    xorriso-0.1.2.pl00.tar.gz +(950 KB).
    - - -
    Enhancements towards stable version 0.1.0.pl00: +Enhancements towards previous stable version xorriso-0.1.0:
    • Improved attribute transfer from disk for implicit target directories
    • New option -as "cdrecord" emulates a narrow set of cdrecord gestures
    • @@ -329,30 +338,62 @@ an Open Source approved license
  • New option -publisher
  • New option -errfile_log
  • Support for DVD+R/DL media
  • - - +
  • New -find actions "rm", "rm_r", new -findx -type "m" -exec "empty_iso_dir" +
  • +
  • New option -cut_out
  • + +Bug fixes towards xorriso-0.1.0.pl00: +
      +
    • -report_about HINT or higher did not report at all
    • +
    • speed=number without unit or media type letter was always CD speed
    • +
    • It was possible to write to appendable media which was not -indev
    • +
    • -follow param did not work for adding non-directory symbolic links
    • +
    • It was not possible to do: -add /THIS=a /b=THIS --
    • +
    +

    + +
    + +

    +

    +

    Development snapshot, version 0.1.3 :

    +
    Bug fixes towards xorriso-0.1.2.pl00: +
      +
    • - none yet -
    • +
    +
    +
    Enhancements towards stable version 0.1.2.pl00: +
      +
    • - none yet -
     
    -
    README 0.1.1 -
    xorriso_0.1.1 -help
    -
    man xorriso (as of 0.1.1)
    +
    README 0.1.3 +
    xorriso_0.1.3 -help
    +
    man xorriso (as of 0.1.3)
     
    -
    The following download is intended for adventurous end users or -admins with full system souvereignty.
    +
    If you want to distribute development versions of xorriso, then use +this tarball which produces static linking between xorriso and the +libburnia libraries. +
    Source (./bootstrap is already applied, build tested, installation see README)
    -xorriso-0.1.1.tar.gz -(900 KB). +xorriso-0.1.3.tar.gz +(950 KB).
    -
    Maintainers of dynamically linked xorriso please use SVN of +
    A dynamically linked development version of xorriso can be obtained +from repositories of libburnia-project.org. -xorriso is part of libisoburn/trunk and will get built by its "make".
    +xorriso is part of libisoburn/trunk and will get built by its "make". + +
    Be warned that the libraries in SVN and bzr are development versions with +possibly unstable API/ABI enhancements. Do not distribute development +versions for dynamic linking. Only release versions are safe for that. +
    Download: svn co http://svn.libburnia-project.org/libburn/trunk libburn
    Install: cd libburn ; ./bootstrap ; ./configure --prefix /usr ; make ; make install @@ -426,6 +467,7 @@ pppoem, a DSL throughput monitor (mainly for Linux kernel 2.4)


    Legal statement: This website does not serve any commercial purpose.
    +

    diff --git a/xorriso/xorriso_private.h b/xorriso/xorriso_private.h index 74273d86..f566f597 100644 --- a/xorriso/xorriso_private.h +++ b/xorriso/xorriso_private.h @@ -18,7 +18,7 @@ #ifndef Xorriso_private_includeD #define Xorriso_private_includeD yes -#define Xorriso_program_versioN "0.1.1" +#define Xorriso_program_versioN "0.1.3" /** The source code release timestamp */ #include "xorriso_timestamp.h" diff --git a/xorriso/xorriso_timestamp.h b/xorriso/xorriso_timestamp.h index 49de2283..afe84edc 100644 --- a/xorriso/xorriso_timestamp.h +++ b/xorriso/xorriso_timestamp.h @@ -1 +1 @@ -#define Xorriso_timestamP "2008.03.11.113444" +#define Xorriso_timestamP "2008.03.12.130605" diff --git a/xorriso/xorrisoburn.h b/xorriso/xorrisoburn.h index f4dafdc9..51de1ff4 100644 --- a/xorriso/xorrisoburn.h +++ b/xorriso/xorrisoburn.h @@ -21,7 +21,7 @@ struct FindjoB; */ #define xorriso_libisoburn_req_major 0 #define xorriso_libisoburn_req_minor 1 -#define xorriso_libisoburn_req_micro 0 +#define xorriso_libisoburn_req_micro 3 int Xorriso_startup_libraries(struct XorrisO *xorriso, int flag);