Version leap to 0.1.5

This commit is contained in:
Thomas Schmitt 2008-04-28 12:34:39 +00:00
parent 4d35893fd0
commit adeaf8b749
10 changed files with 65 additions and 99 deletions

19
README
View File

@ -1,5 +1,5 @@
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
libburnia-project.org http:libburnia-project.org
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
libisoburn. By Vreixo Formoso <metalpain2002@yahoo.es> libisoburn. By Vreixo Formoso <metalpain2002@yahoo.es>
and Thomas Schmitt <scdbackup@gmx.net> and Thomas Schmitt <scdbackup@gmx.net>
@ -25,17 +25,18 @@ By using this software you agree to the disclaimer at the end of this text:
Compilation, First Glimpse, Installation Compilation, First Glimpse, Installation
Dynamic library and compile time header requirements for libisoburn-0.1.3 : Dynamic library and compile time header requirements for libisoburn-0.1.5 :
- libburn.so.4 , version libburn-0.4.2 or higher - libburn.so.4 , version libburn-0.4.4 or higher
- libisofs.so.6 , version libisofs-0.6.3 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 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 headers seen at compile time. So compile in the oldest possible installation
setup unless you have reason to enforce a newer bug fix level. 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 tar xzf libisoburn-0.1.5.tar.gz
cd libisoburn-0.1.3 cd libisoburn-0.1.5
Within that directory execute: Within that directory execute:
@ -44,7 +45,7 @@ Within that directory execute:
Then become superuser and execute Then become superuser and execute
make install 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 For the API concepts and calls see
./libisoburn/libisoburn.h ./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 which offers a substantial part of libisoburn features to shell scripts and
users. Its file xorriso/README describes a standlone tarball as first users. Its file xorriso/README describes a standlone tarball as first
preference for xorriso installation. 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. as described in chapter "libisoburn" at the end of that text.
After installation documentation is available via After installation documentation is available via

View File

@ -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]) AC_PREREQ([2.50])
dnl AC_CONFIG_HEADER([config.h]) dnl AC_CONFIG_HEADER([config.h])
@ -7,6 +7,12 @@ AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE([subdir-objects]) 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 The API version codes are now defined in libisoburn/libisoburn.h
dnl #define isoburn_header_version_* dnl #define isoburn_header_version_*
dnl configure.ac only rules the libtool revision numbering about 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 dnl These three are only copies to provide libtool with unused LT_RELEASE
ISOBURN_MAJOR_VERSION=0 ISOBURN_MAJOR_VERSION=0
ISOBURN_MINOR_VERSION=1 ISOBURN_MINOR_VERSION=1
ISOBURN_MICRO_VERSION=3 ISOBURN_MICRO_VERSION=5
dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION
AC_SUBST(ISOBURN_MAJOR_VERSION) AC_SUBST(ISOBURN_MAJOR_VERSION)
@ -27,14 +33,15 @@ dnl Libtool versioning
dnl Generate libisoburn.so.1.x.y dnl Generate libisoburn.so.1.x.y
dnl SONAME will become LT_CURRENT - LT_AGE dnl SONAME will become LT_CURRENT - LT_AGE
dnl dnl
dnl ts A80215 dnl ts A80428
dnl This is the development version after stable release libisoburn.so.1.1.0 dnl ### This was the release version 0.1.4 = libisoburn.so.1.3.0
dnl LT_CURRENT++, LT_AGE++ has happened meanwhile. 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
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_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION
LT_CURRENT=3 LT_CURRENT=4
LT_AGE=2 LT_AGE=3
LT_REVISION=0 LT_REVISION=0
LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE` 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) AC_CHECK_HEADER(libisofs/libisofs.h)
dnl Check for proper library versions dnl Check for proper library versions
LIBBURN_REQUIRED=0.4.2 LIBBURN_REQUIRED=0.4.4
LIBISOFS_REQUIRED=0.6.2 LIBISOFS_REQUIRED=0.6.4
PKG_CHECK_MODULES(LIBBURN, libburn-1 >= $LIBBURN_REQUIRED) PKG_CHECK_MODULES(LIBBURN, libburn-1 >= $LIBBURN_REQUIRED)
PKG_CHECK_MODULES(LIBISOFS, libisofs-1 >= $LIBISOFS_REQUIRED) PKG_CHECK_MODULES(LIBISOFS, libisofs-1 >= $LIBISOFS_REQUIRED)

View File

@ -188,7 +188,7 @@ void isoburn_version(int *major, int *minor, int *micro);
*/ */
#define isoburn_libisofs_req_major 0 #define isoburn_libisofs_req_major 0
#define isoburn_libisofs_req_minor 6 #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 /** The minimum version of libburn to be used with this version of libisoburn
at compile time. 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_major 0
#define isoburn_header_version_minor 1 #define isoburn_header_version_minor 1
#define isoburn_header_version_micro 3 #define isoburn_header_version_micro 5
/** Note: /** Note:
Above version numbers are also recorded in configure.ac because libtool Above version numbers are also recorded in configure.ac because libtool
wants them as parameters at build time. wants them as parameters at build time.

View File

@ -4,7 +4,7 @@
xorriso. By Thomas Schmitt <scdbackup@gmx.net> xorriso. By Thomas Schmitt <scdbackup@gmx.net>
Integrated sub project of libburnia-project.org but also published via: Integrated sub project of libburnia-project.org but also published via:
http://scdbackup.sourceforge.net/xorriso_eng.html 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. 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, libreadline and the readline-dev headers will make dialog mode more convenient,
but are not mandatory. 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 tar xzf xorriso-0.1.5.tar.gz
cd xorriso-0.1.3 cd xorriso-0.1.5
Within that directory execute: 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 This binary is leaner but depends on properly installed libraries of suitable
revision. revision.
WARNING: There is no libisoburn-0.1.2 suitable for dynamic linking because Dynamic library and compile time header requirements for libisoburn-0.1.5 :
libisoburn-0.1.1 uses features of libisofs-0.6.3 of which the API/ABI is - libburn.so.4 , version libburn-0.4.4 or higher
not decared frozen yet. - libisofs.so.6 , version libisofs-0.6.4 or higher
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
libisoburn and xorriso will not start with libraries which are older than their 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 headers seen at compile time. So compile in the oldest possible installation
setup unless you have reason to enforce a newer bug fix level. setup unless you have reason to enforce a newer bug fix level.

View File

@ -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]) AC_PREREQ([2.50])
dnl AC_CONFIG_HEADER([config.h]) dnl AC_CONFIG_HEADER([config.h])

View File

@ -25,7 +25,7 @@
current_dir=$(pwd) current_dir=$(pwd)
lone_dir="$current_dir"/"xorriso-standalone" lone_dir="$current_dir"/"xorriso-standalone"
xorriso_rev=0.1.3 xorriso_rev=0.1.5
# For unstable uploads: # For unstable uploads:
xorriso_pl="" xorriso_pl=""
# For stable releases: # For stable releases:

View File

@ -58,14 +58,14 @@ and to MMC-5 for DVD).
GPL software included:<BR> GPL software included:<BR>
</H2> </H2>
<DL> <DL>
<DT>libburn-0.4.3</DT> <DT>libburn-0.4.5</DT>
<DD>reads and writes data from and to CD and DVD.</DD> <DD>reads and writes data from and to CD and DVD.</DD>
<DD>(founded by Derek Foreman and Ben Jansens, <DD>(founded by Derek Foreman and Ben Jansens,
furthered since August 2006 by team of libburnia-project.org)</DD> furthered since August 2006 by team of libburnia-project.org)</DD>
<DT>libisofs-0.6.3</DT> <DT>libisofs-0.6.4</DT>
<DD>operates ISO 9660 images.</DD> <DD>operates ISO 9660 images.</DD>
<DD>(By Vreixo Formoso and Mario Danic from team of libburnia-project.org)</DD> <DD>(By Vreixo Formoso and Mario Danic from team of libburnia-project.org)</DD>
<DT>libisoburn-0.1.1</DT> <DT>libisoburn-0.1.4</DT>
<DD>coordinates libburn and libisofs, emulates multi-session where needed.</DD> <DD>coordinates libburn and libisofs, emulates multi-session where needed.</DD>
<DD>(By Vreixo Formoso and Thomas Schmitt <DD>(By Vreixo Formoso and Thomas Schmitt
from team of libburnia-project.org)</DD> from team of libburnia-project.org)</DD>
@ -287,25 +287,10 @@ Testers wanted who are willing to risk some double layer DVD media.
<A NAME="download"></A> <A NAME="download"></A>
<P> <P>
<DL> <DL>
<DT>Download as source code (see README):</DT> <DT><H3>Download as source code (see README):</H3></DT>
<DD><A HREF="xorriso-0.1.2.pl00.tar.gz">xorriso-0.1.2.pl00.tar.gz</A> <DD><A HREF="xorriso-0.1.4.pl00.tar.gz">xorriso-0.1.4.pl00.tar.gz</A>
(950 KB). (955 KB).
</DD> </DD>
<!--
<DD>&nbsp;</DD>
<DT>Download as single x86 binaries (untar and move to /usr/bin/xorriso):</DT>
<DD><A HREF="xorriso_0.1.0.pl00-x86-suse9_0.tar.gz">
xorriso_0.1.0.pl00-x86-suse9_0.tar.gz</A>, ( KB),
<DL>
<DD>runs on SuSE 9.0 (2.4.21) , SuSE 10.2 (2.6.18.2) and others.</DD>
</DL>
<DD><A HREF="xorriso_0.1.0.pl00-x86-suse9_0-static.tar.gz">
xorriso_0.1.0.pl00-x86-suse9_0-static.tar.gz</A>, ( KB), -static compiled,
<DL>
<DD>runs on many other systems.</DD>
-->
</DL> </DL>
</DD> </DD>
</DL> </DL>
@ -330,27 +315,18 @@ an <A HREF="http://www.opensource.org/">Open Source</A> approved license</DD>
<HR> <HR>
<P> <P>
Enhancements towards previous stable version xorriso-0.1.0: Enhancements towards previous stable version xorriso-0.1.2.pl00:
<UL> <UL>
<LI>Improved attribute transfer from disk for implicit target directories</LI> <LI>Coordination of -cut_out, -compare and -update</LI>
<LI>New option -as "cdrecord" emulates a narrow set of cdrecord gestures</LI> <LI>New option -split_size, automated splitting of oversized files</LI>
<LI>New option -as "mkisofs" emulates a narrow set of mkisofs gestures</LI> <LI>Improved performance with reading directory trees</LI>
<LI>New option -publisher</LI> <LI>New option -session_log</LI>
<LI>New option -errfile_log</LI> <LI>Dynamically linkable with release version 0.6.4 of libisofs</LI>
<LI>Support for DVD+R/DL media</LI>
<LI>New options -compare , -compare_r and according -find -exec action</LI>
<LI>New options -update , -update_r and according -find -exec action</LI>
<LI>New -find actions "rm", "rm_r", new -findx -type "m" -exec "empty_iso_dir"
</LI>
<LI>New option -cut_out</LI>
</UL> </UL>
Bug fixes towards xorriso-0.1.0.pl00: Bug fixes towards xorriso-0.1.2.pl00:
<UL> <UL>
<LI>-report_about HINT or higher did not report at all</LI> <LI>-as mkisofs -no-pad was misspelled -nopad</LI>
<LI>speed=number without unit or media type letter was always CD speed</LI> <LI>Implicite directory attribute copying with -cut_out was wrong</LI>
<LI>It was possible to write to appendable media which was not -indev</LI>
<LI>-follow param did not work for adding non-directory symbolic links</LI>
<LI>It was not possible to do: -add /THIS=a /b=THIS --</LI>
</UL> </UL>
</P> </P>
@ -358,27 +334,23 @@ Bug fixes towards xorriso-0.1.0.pl00:
<P> <P>
<DL> <DL>
<DT><H3>Development snapshot, version 0.1.3 :</H3></DT> <DT><H3>Development snapshot, version 0.1.5 :</H3></DT>
<DD>Bug fixes towards xorriso-0.1.2.pl00: <DD>Bug fixes towards xorriso-0.1.4.pl00:
<UL> <UL>
<LI>-as mkisofs -no-pad was misspelled -nopad</LI> <LI>- none yet -</LI>
<LI>Implicite directory attribute copying with -cut_out was wrong</LI>
<!-- <LI>- none yet -</LI> --> <!-- <LI>- none yet -</LI> -->
</UL> </UL>
</DD> </DD>
<DD>Enhancements towards stable version 0.1.2.pl00: <DD>Enhancements towards stable version 0.1.4.pl00:
<UL> <UL>
<LI>Coordination of -cut_out, -compare and -update</LI> <LI>- none yet -</LI>
<LI>New option -session_log</LI>
<LI>New option -split_size allows automated splitting of oversized files</LI>
<LI>Improved performance with reading directory trees</LI>
<!-- <LI>- none yet -</LI> --> <!-- <LI>- none yet -</LI> -->
</UL> </UL>
</DD> </DD>
<DD>&nbsp;</DD> <DD>&nbsp;</DD>
<DD><A HREF="README_xorriso_devel">README 0.1.3</A> <DD><A HREF="README_xorriso_devel">README 0.1.5</A>
<DD><A HREF="xorriso_help_devel">xorriso_0.1.3 -help</A></DD> <DD><A HREF="xorriso_help_devel">xorriso_0.1.5 -help</A></DD>
<DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 0.1.3)</A></DD> <DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 0.1.5)</A></DD>
<DD>&nbsp;</DD> <DD>&nbsp;</DD>
<DT>If you want to distribute development versions of xorriso, then use <DT>If you want to distribute development versions of xorriso, then use
this tarball which produces static linking between xorriso and the this tarball which produces static linking between xorriso and the
@ -388,7 +360,7 @@ libburnia libraries.
installation see README) installation see README)
</DD> </DD>
<DD> <DD>
<A HREF="xorriso-0.1.3.tar.gz">xorriso-0.1.3.tar.gz</A> <A HREF="xorriso-0.1.5.tar.gz">xorriso-0.1.5.tar.gz</A>
(960 KB). (960 KB).
</DD> </DD>
<DT>A dynamically linked development version of xorriso can be obtained <DT>A dynamically linked development version of xorriso can be obtained
@ -418,16 +390,6 @@ vanilla tools like make and gcc are needed.</DD>
</DD> </DD>
<DD>&nbsp;</DD> <DD>&nbsp;</DD>
<!--
<DD>Binary (untar and move to /usr/bin/xorriso):</DD>
<DD><A HREF="xorriso_0.1.1-x86-suse9_0.tar.gz">
xorriso_0.1.1-x86-suse9_0.tar.gz</A>, ( KB).
</DD>
<DD><A HREF="xorriso_0.1.1-x86-suse9_0-static.tar.gz">
xorriso_0.1.1-x86-suse9_0-static.tar.gz</A>, ( KB)
</DD>
-->
</DL> </DL>
</P> </P>

View File

@ -18,7 +18,7 @@
#ifndef Xorriso_private_includeD #ifndef Xorriso_private_includeD
#define Xorriso_private_includeD yes #define Xorriso_private_includeD yes
#define Xorriso_program_versioN "0.1.3" #define Xorriso_program_versioN "0.1.5"
/** The source code release timestamp */ /** The source code release timestamp */
#include "xorriso_timestamp.h" #include "xorriso_timestamp.h"

View File

@ -1 +1 @@
#define Xorriso_timestamP "2008.04.20.111419" #define Xorriso_timestamP "2008.04.28.122244"

View File

@ -21,7 +21,7 @@ struct FindjoB;
*/ */
#define xorriso_libisoburn_req_major 0 #define xorriso_libisoburn_req_major 0
#define xorriso_libisoburn_req_minor 1 #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); int Xorriso_startup_libraries(struct XorrisO *xorriso, int flag);