From adeaf8b74913663601f5ad4959d3b70316c71176 Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Mon, 28 Apr 2008 12:34:39 +0000 Subject: [PATCH] Version leap to 0.1.5 --- README | 19 +++---- configure.ac | 27 ++++++---- libisoburn/libisoburn.h | 4 +- xorriso/README | 18 +++---- xorriso/configure_ac.txt | 2 +- xorriso/make_xorriso_standalone.sh | 2 +- xorriso/xorriso_eng.html | 86 +++++++++--------------------- xorriso/xorriso_private.h | 2 +- xorriso/xorriso_timestamp.h | 2 +- xorriso/xorrisoburn.h | 2 +- 10 files changed, 65 insertions(+), 99 deletions(-) diff --git a/README b/README index 5bdfde3f..391d3ed7 100644 --- a/README +++ b/README @@ -1,5 +1,5 @@ ------------------------------------------------------------------------------ - libburnia-project.org + http:libburnia-project.org ------------------------------------------------------------------------------ libisoburn. By Vreixo Formoso and Thomas Schmitt @@ -25,17 +25,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.1.3 : -- libburn.so.4 , version libburn-0.4.2 or higher -- libisofs.so.6 , version libisofs-0.6.3 or higher +Dynamic library and compile time header requirements for libisoburn-0.1.5 : +- libburn.so.4 , version libburn-0.4.4 or higher +- libisofs.so.6 , version libisofs-0.6.4 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.3.tar.gz, take it to a directory of your choice and do: +Obtain libisoburn-0.1.5.tar.gz, take it to a directory of your choice +and do: - tar xzf libisoburn-0.1.3.tar.gz - cd libisoburn-0.1.3 + tar xzf libisoburn-0.1.5.tar.gz + cd libisoburn-0.1.5 Within that directory execute: @@ -44,7 +45,7 @@ Within that directory execute: Then become superuser and execute make install -which will make available libisoburn.so.1 . +which will make available libisoburn.so.1 and program xorriso. For the API concepts and calls see ./libisoburn/libisoburn.h @@ -59,7 +60,7 @@ libisoburn includes a command line and dialog application named xorriso, which offers a substantial part of libisoburn features to shell scripts and users. Its file xorriso/README describes a standlone tarball as first preference for xorriso installation. -The installation described here produces a dynamically linked xorriso binary +The installation described above produces a dynamically linked xorriso binary as described in chapter "libisoburn" at the end of that text. After installation documentation is available via diff --git a/configure.ac b/configure.ac index 602b9400..c083af92 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([libisoburn], [0.1.3], [http://libburnia-project.org]) +AC_INIT([libisoburn], [0.1.5], [http://libburnia-project.org]) AC_PREREQ([2.50]) dnl AC_CONFIG_HEADER([config.h]) @@ -7,6 +7,12 @@ AC_CANONICAL_TARGET AM_INIT_AUTOMAKE([subdir-objects]) +dnl Hint: Search list for version code aspects: +dnl /AC_INT( +dnl /ISOBURN_.*_VERSION +dnl /LT_.* +dnl /LIB.*_REQUIRED + dnl The API version codes are now defined in libisoburn/libisoburn.h dnl #define isoburn_header_version_* dnl configure.ac only rules the libtool revision numbering about @@ -15,7 +21,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=3 +ISOBURN_MICRO_VERSION=5 dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION AC_SUBST(ISOBURN_MAJOR_VERSION) @@ -27,14 +33,15 @@ dnl Libtool versioning dnl Generate libisoburn.so.1.x.y dnl SONAME will become LT_CURRENT - LT_AGE dnl -dnl ts A80215 -dnl This is the development version after stable release libisoburn.so.1.1.0 -dnl LT_CURRENT++, LT_AGE++ has happened meanwhile. +dnl ts A80428 +dnl ### This was the release version 0.1.4 = libisoburn.so.1.3.0 +dnl This is the development version after stable release libisoburn.so.1.3.0 +dnl LT_CURRENT++, LT_AGE++ have not happened yet. dnl -dnl SONAME = 3 - 2 = 1 . Library name = libburn.so.1.2.0 +dnl SONAME = 4 - 3 = 1 . Library name = libburn.so.1.3.0 LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION -LT_CURRENT=3 -LT_AGE=2 +LT_CURRENT=4 +LT_AGE=3 LT_REVISION=0 LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE` @@ -92,8 +99,8 @@ AC_CHECK_HEADER(libburn/libburn.h) AC_CHECK_HEADER(libisofs/libisofs.h) dnl Check for proper library versions -LIBBURN_REQUIRED=0.4.2 -LIBISOFS_REQUIRED=0.6.2 +LIBBURN_REQUIRED=0.4.4 +LIBISOFS_REQUIRED=0.6.4 PKG_CHECK_MODULES(LIBBURN, libburn-1 >= $LIBBURN_REQUIRED) PKG_CHECK_MODULES(LIBISOFS, libisofs-1 >= $LIBISOFS_REQUIRED) diff --git a/libisoburn/libisoburn.h b/libisoburn/libisoburn.h index d41fbc18..c46ef5fd 100644 --- a/libisoburn/libisoburn.h +++ b/libisoburn/libisoburn.h @@ -188,7 +188,7 @@ void isoburn_version(int *major, int *minor, int *micro); */ #define isoburn_libisofs_req_major 0 #define isoburn_libisofs_req_minor 6 -#define isoburn_libisofs_req_micro 3 +#define isoburn_libisofs_req_micro 4 /** The minimum version of libburn to be used with this version of libisoburn at compile time. @@ -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 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 5963be24..2edc301d 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.3.tar.gz +http://scdbackup.sourceforge.net/xorriso-0.1.5.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.3.tar.gz, take it to a directory of your choice and do: +Obtain xorriso-0.1.5.tar.gz, take it to a directory of your choice and do: - tar xzf xorriso-0.1.3.tar.gz - cd xorriso-0.1.3 + tar xzf xorriso-0.1.5.tar.gz + cd xorriso-0.1.5 Within that directory execute: @@ -160,13 +160,9 @@ and a matching dynamically linked xorriso binary. This binary is leaner but depends on properly installed libraries of suitable revision. -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.3 or higher +Dynamic library and compile time header requirements for libisoburn-0.1.5 : +- libburn.so.4 , version libburn-0.4.4 or higher +- libisofs.so.6 , version libisofs-0.6.4 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 07e06508..5ba7e871 100644 --- a/xorriso/configure_ac.txt +++ b/xorriso/configure_ac.txt @@ -1,4 +1,4 @@ -AC_INIT([xorriso], [0.1.3], [http://libburnia-project.org]) +AC_INIT([xorriso], [0.1.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 8760be67..d146a528 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.3 +xorriso_rev=0.1.5 # For unstable uploads: xorriso_pl="" # For stable releases: diff --git a/xorriso/xorriso_eng.html b/xorriso/xorriso_eng.html index 3f55dd6a..e58720f4 100644 --- a/xorriso/xorriso_eng.html +++ b/xorriso/xorriso_eng.html @@ -58,14 +58,14 @@ and to MMC-5 for DVD). GPL software included:
-
libburn-0.4.3
+
libburn-0.4.5
reads and writes data from and to CD and DVD.
(founded by Derek Foreman and Ben Jansens, furthered since August 2006 by team of libburnia-project.org)
-
libisofs-0.6.3
+
libisofs-0.6.4
operates ISO 9660 images.
(By Vreixo Formoso and Mario Danic from team of libburnia-project.org)
-
libisoburn-0.1.1
+
libisoburn-0.1.4
coordinates libburn and libisofs, emulates multi-session where needed.
(By Vreixo Formoso and Thomas Schmitt from team of libburnia-project.org)
@@ -287,25 +287,10 @@ Testers wanted who are willing to risk some double layer DVD media.

-
Download as source code (see README):
-
xorriso-0.1.2.pl00.tar.gz -(950 KB). +

Download as source code (see README):

+
xorriso-0.1.4.pl00.tar.gz +(955 KB).
- - -
@@ -330,27 +315,18 @@ an Open Source approved license

-Enhancements towards previous stable version xorriso-0.1.0: +Enhancements towards previous stable version xorriso-0.1.2.pl00:

    -
  • Improved attribute transfer from disk for implicit target directories
  • -
  • New option -as "cdrecord" emulates a narrow set of cdrecord gestures
  • -
  • New option -as "mkisofs" emulates a narrow set of mkisofs gestures
  • -
  • New option -publisher
  • -
  • New option -errfile_log
  • -
  • Support for DVD+R/DL media
  • -
  • New options -compare , -compare_r and according -find -exec action
  • -
  • New options -update , -update_r and according -find -exec action
  • -
  • New -find actions "rm", "rm_r", new -findx -type "m" -exec "empty_iso_dir" -
  • -
  • New option -cut_out
  • +
  • Coordination of -cut_out, -compare and -update
  • +
  • New option -split_size, automated splitting of oversized files
  • +
  • Improved performance with reading directory trees
  • +
  • New option -session_log
  • +
  • Dynamically linkable with release version 0.6.4 of libisofs
-Bug fixes towards xorriso-0.1.0.pl00: +Bug fixes towards xorriso-0.1.2.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 --
  • +
  • -as mkisofs -no-pad was misspelled -nopad
  • +
  • Implicite directory attribute copying with -cut_out was wrong

@@ -358,27 +334,23 @@ Bug fixes towards xorriso-0.1.0.pl00:

-

Development snapshot, version 0.1.3 :

-
Bug fixes towards xorriso-0.1.2.pl00: +

Development snapshot, version 0.1.5 :

+
Bug fixes towards xorriso-0.1.4.pl00:
    -
  • -as mkisofs -no-pad was misspelled -nopad
  • -
  • Implicite directory attribute copying with -cut_out was wrong
  • +
  • - none yet -
-
Enhancements towards stable version 0.1.2.pl00: +
Enhancements towards stable version 0.1.4.pl00:
    -
  • Coordination of -cut_out, -compare and -update
  • -
  • New option -session_log
  • -
  • New option -split_size allows automated splitting of oversized files
  • -
  • Improved performance with reading directory trees
  • +
  • - none yet -
 
-
README 0.1.3 -
xorriso_0.1.3 -help
-
man xorriso (as of 0.1.3)
+
README 0.1.5 +
xorriso_0.1.5 -help
+
man xorriso (as of 0.1.5)
 
If you want to distribute development versions of xorriso, then use this tarball which produces static linking between xorriso and the @@ -388,7 +360,7 @@ libburnia libraries. installation see README)
-xorriso-0.1.3.tar.gz +xorriso-0.1.5.tar.gz (960 KB).
A dynamically linked development version of xorriso can be obtained @@ -418,16 +390,6 @@ vanilla tools like make and gcc are needed.
 
- -

diff --git a/xorriso/xorriso_private.h b/xorriso/xorriso_private.h index bbd97908..a24ed7cd 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.3" +#define Xorriso_program_versioN "0.1.5" /** The source code release timestamp */ #include "xorriso_timestamp.h" diff --git a/xorriso/xorriso_timestamp.h b/xorriso/xorriso_timestamp.h index ab668c24..2d640de6 100644 --- a/xorriso/xorriso_timestamp.h +++ b/xorriso/xorriso_timestamp.h @@ -1 +1 @@ -#define Xorriso_timestamP "2008.04.20.111419" +#define Xorriso_timestamP "2008.04.28.122244" diff --git a/xorriso/xorrisoburn.h b/xorriso/xorrisoburn.h index 9a28a4ca..301cb103 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 3 +#define xorriso_libisoburn_req_micro 5 int Xorriso_startup_libraries(struct XorrisO *xorriso, int flag);