From a41b4769b3fba3126648848c243c4ce28e264b16 Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Sun, 1 Mar 2009 11:39:18 +0000 Subject: [PATCH] Version leap to 0.3.5 --- README | 12 ++-- configure.ac | 14 ++-- libisoburn/libisoburn.h | 2 +- xorriso/README | 24 ++++--- xorriso/configure_ac.txt | 2 +- xorriso/make_xorriso_standalone.sh | 2 +- xorriso/xorriso.1 | 8 ++- xorriso/xorriso_eng.html | 102 ++++++++++++----------------- xorriso/xorriso_private.h | 2 +- xorriso/xorriso_timestamp.h | 2 +- xorriso/xorrisoburn.h | 2 +- 11 files changed, 80 insertions(+), 92 deletions(-) diff --git a/README b/README index 3a3e960a..c57a6b0c 100644 --- a/README +++ b/README @@ -4,7 +4,7 @@ libisoburn. By Vreixo Formoso and Thomas Schmitt Integrated sub project of libburnia-project.org. -http://files.libburnia-project.org/releases/libisoburn-0.3.2.pl00.tar.gz +http://files.libburnia-project.org/releases/libisoburn-0.3.4.pl00.tar.gz Copyright (C) 2006-2009 Vreixo Formoso, Thomas Schmitt. Provided under GPL version 2. ------------------------------------------------------------------------------ @@ -27,18 +27,18 @@ 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.3.2 : +Dynamic library and compile time header requirements for libisoburn-0.3.4 : - libburn.so.4 , version libburn-0.6.0 or higher -- libisofs.so.6 , version libisofs-0.6.12 or higher +- libisofs.so.6 , version libisofs-0.6.14 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.3.2.pl00.tar.gz, take it to a directory of your choice +Obtain libisoburn-0.3.4.pl00.tar.gz, take it to a directory of your choice and do: - tar xzf libisoburn-0.3.2.pl00.tar.gz - cd libisoburn-0.3.2 + tar xzf libisoburn-0.3.4.pl00.tar.gz + cd libisoburn-0.3.4 Within that directory execute: diff --git a/configure.ac b/configure.ac index b1a57c04..93238305 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([libisoburn], [0.3.3], [http://libburnia-project.org]) +AC_INIT([libisoburn], [0.3.5], [http://libburnia-project.org]) AC_PREREQ([2.50]) dnl AC_CONFIG_HEADER([config.h]) @@ -21,7 +21,7 @@ dnl dnl These three are only copies to provide libtool with unused LT_RELEASE ISOBURN_MAJOR_VERSION=0 ISOBURN_MINOR_VERSION=3 -ISOBURN_MICRO_VERSION=3 +ISOBURN_MICRO_VERSION=5 dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION AC_SUBST(ISOBURN_MAJOR_VERSION) @@ -33,16 +33,16 @@ dnl Libtool versioning dnl Generate libisoburn.so.1.x.y dnl SONAME will become LT_CURRENT - LT_AGE dnl -dnl ts A90105 -dnl ### This is the release version 0.3.2 = libisoburn.so.1.21.0 +dnl ts A90301 +dnl ### This is the release version 0.3.4 = libisoburn.so.1.23.0 dnl This is the development version after above stable release dnl LT_CURRENT++, LT_AGE++ have not happened happened yet. dnl ### LT_CURRENT++, LT_AGE++ has happened meanwhile. dnl -dnl SONAME = 22 - 21 = 1 . Library name = libisoburn.so.1.21.0 +dnl SONAME = 24 - 23 = 1 . Library name = libisoburn.so.1.23.0 LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION -LT_CURRENT=22 -LT_AGE=21 +LT_CURRENT=24 +LT_AGE=23 LT_REVISION=0 LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE` diff --git a/libisoburn/libisoburn.h b/libisoburn/libisoburn.h index 884dee65..7de9a76f 100644 --- a/libisoburn/libisoburn.h +++ b/libisoburn/libisoburn.h @@ -260,7 +260,7 @@ int isoburn_libburn_req(int *major, int *minor, int *micro); */ #define isoburn_header_version_major 0 #define isoburn_header_version_minor 3 -#define isoburn_header_version_micro 3 +#define isoburn_header_version_micro 5 /** 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 5d42e522..8af8fd97 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.3.3.tar.gz +http://scdbackup.sourceforge.net/xorriso-0.3.5.tar.gz Copyright (C) 2006-2009 Thomas Schmitt, provided under GPL version 2. ------------------------------------------------------------------------------ @@ -33,14 +33,20 @@ The most simple way to get xorriso from source code is the xorriso standalone tarball. Prerequisites: -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. +The tarball contains anything that is needed except the following system +components: + libc, libpthread + plus on FreeBSD: libiconv, libcam +Optional at compile time are: + libreadline and the readline-dev headers make dialog mode more convenient. + on Linux: libacl and libacl-devel allow getting and setting ACLs. +If they were present at compile time, then the optional libraries have to +be present at runtime, too. -Obtain xorriso-0.3.3.tar.gz, take it to a directory of your choice and do: +Obtain xorriso-0.3.5.tar.gz, take it to a directory of your choice and do: - tar xzf xorriso-0.3.3.tar.gz - cd xorriso-0.3.3 + tar xzf xorriso-0.3.5.tar.gz + cd xorriso-0.3.5 Within that directory execute: @@ -200,9 +206,9 @@ 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.3.3 : +Dynamic library and compile time header requirements for libisoburn-0.3.5 : - libburn.so.4 , version libburn-0.6.0 or higher -- libisofs.so.6 , version libisofs-0.6.12 or higher +- libisofs.so.6 , version libisofs-0.6.14 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 1292fd0a..21ddb1d0 100644 --- a/xorriso/configure_ac.txt +++ b/xorriso/configure_ac.txt @@ -1,4 +1,4 @@ -AC_INIT([xorriso], [0.3.3], [http://libburnia-project.org]) +AC_INIT([xorriso], [0.3.5], [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 6510d410..824ab6e8 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.3.3 +xorriso_rev=0.3.5 # For unstable uploads: xorriso_pl="" # For stable releases: diff --git a/xorriso/xorriso.1 b/xorriso/xorriso.1 index 87aaf7fc..da92995d 100644 --- a/xorriso/xorriso.1 +++ b/xorriso/xorriso.1 @@ -2,7 +2,7 @@ .\" First parameter, NAME, should be all caps .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection .\" other parameters are allowed: see man(7), man(1) -.TH XORRISO 1 "Feb 27, 2008" +.TH XORRISO 1 "Mar 01, 2009" .\" Please adjust this date whenever revising the manpage. .\" .\" Some roff macros, for reference: @@ -3195,7 +3195,9 @@ First check which backup sessions are on the media: Then load the desired session and copy the file trees to disk. Avoid to eventually create /home/thomas/restored without rwx-permission. .br -\fB$\fR xorriso -load volid 'PROJECTS_MAIL_2008_06_19*' \\ +\fB$\fR xorriso -acl on -xattr on \\ +.br + -load volid 'PROJECTS_MAIL_2008_06_19*' \\ .br -indev /dev/sr0 \\ .br @@ -3207,7 +3209,7 @@ Avoid to eventually create /home/thomas/restored without rwx-permission. .br /home/thomas/restored/open_source_projects \\ .br - -extract /personal_mail /home/thomas/restored/personal_mail + -extract /personal_mail /home/thomas/restored/personal_mail \\ .br -rollback_end .SS diff --git a/xorriso/xorriso_eng.html b/xorriso/xorriso_eng.html index 10d3a61e..1c41daec 100644 --- a/xorriso/xorriso_eng.html +++ b/xorriso/xorriso_eng.html @@ -50,11 +50,14 @@ and to MMC-5 for DVD or BD).
With kernel 2.6 the drive should not be under ide-scsi.
or FreeBSD (with libc, of course) :
ATAPI/CAM support has to be enabled in the kernel, see atapicam(4).
+
libcam has to be installed.
libiconv has to be installed.
libpthread
is supposed to be a standard system component.
libreadline and libreadline-dev
are optional and eventually make dialog more convenient.
+
libacl and libacl-devel
+
are optional and eventually allow on Linux to get and set ACLs.

@@ -63,15 +66,16 @@ and to MMC-5 for DVD or BD). GPL software included:
-
libburn-0.6.1
+
libburn-0.6.3
reads and writes data from and to CD, DVD, BD.
(founded by Derek Foreman and Ben Jansens, developed and maintained since August 2006 by Thomas Schmitt from team of libburnia-project.org)
-
libisofs-0.6.12
+
libisofs-0.6.15
operates on ISO 9660 filesystem images.
-
(By Vreixo Formoso and Mario Danic from team of libburnia-project.org)
-
libisoburn-0.3.2
+
(By Vreixo Formoso, Mario Danic and Thomas Schmitt +from team of libburnia-project.org)
+
libisoburn-0.3.4
coordinates libburn and libisofs, emulates multi-session where needed.
(By Vreixo Formoso and Thomas Schmitt from team of libburnia-project.org)
@@ -120,13 +124,9 @@ Can perform multi-session tasks as emulation of mkisofs and cdrecord.
  • Can restore single files and whole trees from ISO image to disk filesystem.
  • - - -
  • Can issue commands to mount older sessions on Linux or FreeBSD.
  • @@ -280,10 +280,13 @@ to match the new disk trees. Older states can be retrieved by help of mount options like "sbsector=" or by help of xorriso option -mount.
    +Eventual ACL or xattr will be recorded. Data reading will be avoided by +accelerator option -disk_dev_ino. Only blank media or media with volume id "PROJECTS_MAIL_..." will be accepted. Files with names ending by ".o" or ".swp" are excluded by options -not_leaf. -
    $ xorriso -assert_volid 'PROJECTS_MAIL_*' FATAL \ \
    +
    $ xorriso -acl on -xattr on -disk_dev_ino on \
    +
       -assert_volid 'PROJECTS_MAIL_*' FATAL \
       -dev /dev/sr0 \
       -volid PROJECTS_MAIL_"$(date '+%Y_%m_%d_%H%M%S')" \
       -not_leaf '*.o' -not_leaf '*.swp' \
    @@ -383,7 +386,8 @@ One may switch from mkisofs emulation to xorriso's own command mode:
    If for any reason the reading operating system mishandles the ISO image or some files in it, one may enable reverse operation of xorriso and copy files or trees to disk: -
    $ xorriso -indev /dev/sr0 \
    +
    $ xorriso -acl on -xattr on \
    +
       -indev /dev/sr0 \
       -osirrox on \
       -cpx '/pictures/private/horses*/*buttercup*' \
           /home/her/buttercup_dir -- \ @@ -410,8 +414,8 @@ files or trees to disk:

    Download as source code (see README):

    -
    xorriso-0.3.2.pl01.tar.gz -(1100 KB). +
    xorriso-0.3.4.pl00.tar.gz +(1175 KB).
    @@ -436,18 +440,6 @@ an Open Source approved license
    -

    -Bug fixes towards xorriso-0.3.0.pl00: -

      -
    • Options -extract and -extract_single were not disabled with -osirrox off - - -
    - -

    -

    Bug fixes towards xorriso-0.3.2.pl00:

      @@ -461,30 +453,7 @@ Bug fixes towards xorriso-0.3.2.pl00:

      -Enhancements towards previous stable version xorriso-0.3.0.pl00: -

        -
      • New options -mount, -mount_cmd, -session_string
      • -
      • By using libburn-0.6.1: support for BD-R media
      • -
      • New -format modes by_size_ and fast_by_size_
      • -
      • New option -assert_volid
      • -
      • New option -drive_class for safety management of pseudo-drive access
      • -
      -

      - -
      - -

      -

      -

      Development snapshot, version 0.3.3 :

      -
      Bug fixes towards xorriso-0.3.2.pl00: -
        -
      • BD-R were not correctly finalized
      • - -
      -
      -
      Enhancements towards stable version 0.3.2.pl00: +Enhancements towards previous stable version xorriso-0.3.2.pl00:
      • New option -acl controls import and export of ACLs
      • New options -getfacl, -getfacl_r, -setfacl , -setfacl_r , -setfacl_list
      • @@ -495,17 +464,35 @@ Enhancements towards previous stable version xorriso-0.3.0.pl00:
      • New -find tests -has_xattr, -has_aaip, new -find actions getfattr, setfattr
      • +
      • New -as mkisofs options --acl and --xattr
      • New option -disk_dev_ino can substantially accelerate incremental backups
      • - +
      +
      +
      Enhancements towards stable version 0.3.4.pl00: +
        +
      • - none yet -
      • +
       
      -
      README 0.3.3 -
      xorriso_0.3.3 -help
      -
      man xorriso (as of 0.3.3)
      +
      README 0.3.5 +
      xorriso_0.3.5 -help
      +
      man xorriso (as of 0.3.5)
       
      If you want to distribute development versions of xorriso, then use this tarball which produces static linking between xorriso and the @@ -515,14 +502,7 @@ libburnia libraries. installation see README)
      -On Linux the system-side ACL features of this development version depend -on libacl and libacl-devel. -On FreeBSD the system ACL features are part of libc. -The availability of ACL features depends on the individual filesystems -and on their mount options. -
      -
      -xorriso-0.3.3.tar.gz +xorriso-0.3.5.tar.gz (1160 KB).
      A dynamically linked development version of xorriso can be obtained diff --git a/xorriso/xorriso_private.h b/xorriso/xorriso_private.h index 159587b2..cd3b1b66 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.3.3" +#define Xorriso_program_versioN "0.3.5" /** The source code release timestamp */ #include "xorriso_timestamp.h" diff --git a/xorriso/xorriso_timestamp.h b/xorriso/xorriso_timestamp.h index 6b718b83..977bb9e0 100644 --- a/xorriso/xorriso_timestamp.h +++ b/xorriso/xorriso_timestamp.h @@ -1 +1 @@ -#define Xorriso_timestamP "2009.02.28.181750" +#define Xorriso_timestamP "2009.03.01.113444" diff --git a/xorriso/xorrisoburn.h b/xorriso/xorrisoburn.h index 4fb2bec1..54e10f02 100644 --- a/xorriso/xorrisoburn.h +++ b/xorriso/xorrisoburn.h @@ -19,7 +19,7 @@ */ #define xorriso_libisoburn_req_major 0 #define xorriso_libisoburn_req_minor 3 -#define xorriso_libisoburn_req_micro 3 +#define xorriso_libisoburn_req_micro 5 int Xorriso_startup_libraries(struct XorrisO *xorriso, int flag);