Version leap to libisoburn-0.6.7

This commit is contained in:
Thomas Schmitt 2010-12-12 12:17:41 +00:00
parent 5427d7a8f2
commit 03b709cb1f
11 changed files with 54 additions and 58 deletions

12
README
View File

@ -4,7 +4,7 @@
libisoburn and xorriso. By Vreixo Formoso <metalpain2002@yahoo.es>
and Thomas Schmitt <scdbackup@gmx.net>
Integrated sub project of libburnia-project.org.
http://files.libburnia-project.org/releases/libisoburn-0.6.4.pl00.tar.gz
http://files.libburnia-project.org/releases/libisoburn-0.6.6.pl00.tar.gz
Copyright (C) 2006-2010 Vreixo Formoso, Thomas Schmitt.
Provided under GPL version 2 or later.
------------------------------------------------------------------------------
@ -34,17 +34,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.6.4 :
Dynamic library and compile time header requirements for libisoburn-0.6.6 :
- libburn.so.4 , version libburn-0.8.8 or higher
- libisofs.so.6 , version libisofs-0.6.38 or higher
- libisofs.so.6 , version libisofs-0.6.40 or higher
libisoburn and xorriso will not start with libraries which are older than their
include headers seen at compile time.
Obtain libisoburn-0.6.4.pl00.tar.gz, take it to a directory of your choice
Obtain libisoburn-0.6.6.pl00.tar.gz, take it to a directory of your choice
and do:
tar xzf libisoburn-0.6.4.pl00.tar.gz
cd libisoburn-0.6.4
tar xzf libisoburn-0.6.6.pl00.tar.gz
cd libisoburn-0.6.6
Within that directory execute:

View File

@ -1,4 +1,4 @@
AC_INIT([libisoburn], [0.6.5], [http://libburnia-project.org])
AC_INIT([libisoburn], [0.6.7], [http://libburnia-project.org])
AC_PREREQ([2.50])
dnl AC_CONFIG_HEADER([config.h])
@ -23,7 +23,7 @@ dnl
dnl These three are only copies to provide libtool with unused LT_RELEASE
ISOBURN_MAJOR_VERSION=0
ISOBURN_MINOR_VERSION=6
ISOBURN_MICRO_VERSION=5
ISOBURN_MICRO_VERSION=7
dnl ISOBURN_VERSION=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION.$ISOBURN_MICRO_VERSION
@ -37,15 +37,15 @@ dnl Generate libisoburn.so.1.x.y
dnl SONAME will become LT_CURRENT - LT_AGE
dnl
dnl ts B01026
dnl ### This is the release version 0.6.4 = libisoburn.so.1.53.0
dnl ### This is the release version 0.6.6 = libisoburn.so.1.55.0
dnl This is the development version after above stable release
dnl LT_CURRENT++, LT_AGE++ have not happened yet.
dnl ### LT_CURRENT++, LT_AGE++ has happened meanwhile.
dnl
dnl SONAME = 54 - 53 = 1 . Library name = libisoburn.so.1.53.0
dnl SONAME = 56 - 55 = 1 . Library name = libisoburn.so.1.55.0
LT_RELEASE=$ISOBURN_MAJOR_VERSION.$ISOBURN_MINOR_VERSION
LT_CURRENT=54
LT_AGE=53
LT_CURRENT=56
LT_AGE=55
LT_REVISION=0
LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`

View File

@ -287,7 +287,7 @@ int isoburn_libburn_req(int *major, int *minor, int *micro);
*/
#define isoburn_header_version_major 0
#define isoburn_header_version_minor 6
#define isoburn_header_version_micro 5
#define isoburn_header_version_micro 7
/** Note:
Above version numbers are also recorded in configure.ac because libtool
wants them as parameters at build time.

View File

@ -4,7 +4,7 @@
GNU xorriso. By Thomas Schmitt <scdbackup@gmx.net>
Derived from and supported by libburnia-project.org, published via:
http://www.gnu.org/software/xorriso/xorriso_eng.html
ftp://ftp.gnu.org/gnu/xorriso/xorriso-0.6.5.tar.gz
ftp://ftp.gnu.org/gnu/xorriso/xorriso-0.6.7.tar.gz
Provided under GPL version 3 or later. No warranty.
------------------------------------------------------------------------------
@ -46,10 +46,10 @@ Optional at compile time are:
If they were present at compile time, then the optional libraries have to
be present at runtime, too.
Obtain xorriso-0.6.5.tar.gz, take it to a directory of your choice and do:
Obtain xorriso-0.6.7.tar.gz, take it to a directory of your choice and do:
tar xzf xorriso-0.6.5.tar.gz
cd xorriso-0.6.5
tar xzf xorriso-0.6.7.tar.gz
cd xorriso-0.6.7
Within that directory execute:
@ -291,9 +291,9 @@ and a matching dynamically linked xorriso binary.
This binary is very lean but depends on properly installed libraries of
suitable revision.
Dynamic library and compile time header requirements for libisoburn-0.6.4 :
Dynamic library and compile time header requirements for libisoburn-0.6.6 :
- libburn.so.4 , version libburn-0.8.8 or higher
- libisofs.so.6 , version libisofs-0.6.38 or higher
- libisofs.so.6 , version libisofs-0.6.40 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.

View File

@ -3,7 +3,7 @@
# Copyright (c) 2007 - 2010 Thomas Schmitt <scdbackup@gmx.net>
# Provided under GPL version 2 or later.
AC_INIT([xorriso], [0.6.5], [http://libburnia-project.org])
AC_INIT([xorriso], [0.6.7], [http://libburnia-project.org])
AC_PREREQ([2.50])
AC_CANONICAL_HOST

View File

@ -40,7 +40,7 @@ create_gnu_xorriso="yes"
current_dir=$(pwd)
lone_dir="$current_dir"/"xorriso-standalone"
xorriso_rev=0.6.5
xorriso_rev=0.6.7
# For unstable uploads and patch level 0 of stable releases:
xorriso_pl=""
# For higher patch levels of stable releases:

View File

@ -61,7 +61,7 @@ struct XorrisO;
*/
#define Xorriso_header_version_majoR 0
#define Xorriso_header_version_minoR 6
#define Xorriso_header_version_micrO 5
#define Xorriso_header_version_micrO 7
/** Eventually something like ".pl01" to indicate a bug fix. Normally empty.

View File

@ -421,6 +421,10 @@ files or trees to disk:
<DD><KBD>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /home/her/buttercup_dir -- \</KBD>
<DD><KBD>&nbsp;&nbsp; -extract /sounds /home/her/sounds_from_me</KBD></DD>
</DD>
<DT>Each copy command processes its files sorted by block address
in the ISO image in order to reduce head moves with optical media.
This can bring effective read performance near to the raw media reading speed.
</DT>
<DT>Consider to enter dialog mode and use commands like
<KBD>-cd , -du , -lsl , -find<KBD>.
<DT>
@ -442,19 +446,19 @@ files or trees to disk:
<P>
<DL>
<DT><H3>Download as source code (see README):</H3></DT>
<DD><A HREF="xorriso-0.6.4.tar.gz">xorriso-0.6.4.tar.gz</A>
(1750 KB).
<DD><A HREF="xorriso-0.6.6.tar.gz">xorriso-0.6.6.tar.gz</A>
(1765 KB).
</DD>
<DD>(Released 26 Oct 2010)</DD>
<DD><A HREF="xorriso-0.6.4.tar.gz.sig">xorriso-0.6.4.tar.gz.sig</A></DD>
<DD>(Released 12 Dec 2010)</DD>
<DD><A HREF="xorriso-0.6.6.tar.gz.sig">xorriso-0.6.6.tar.gz.sig</A></DD>
<DD>
(detached GPG signature for verification by
<KBD>gpg --verify xorriso-0.6.4.tar.gz.sig xorriso-0.6.4.tar.gz</KBD>).
<KBD>gpg --verify xorriso-0.6.6.tar.gz.sig xorriso-0.6.6.tar.gz</KBD>).
</DD>
<DD>
Also on <A HREF="http://www.gnu.org/prep/ftp.html">
mirrors of ftp://ftp.gnu.org/gnu/ </A>
as xorriso/xorriso-0.6.4.tar.gz
as xorriso/xorriso-0.6.6.tar.gz
</DD>
</DL>
</DD>
@ -482,9 +486,10 @@ as xorriso/xorriso-0.6.4.tar.gz
<HR>
<P>
Bug fixes towards xorriso-0.6.2:
Bug fixes towards xorriso-0.6.4:
<UL>
<LI>- none -</LI>
<LI>-as mkisofs -print-size printed the size but also produced ISO image</LI>
<LI>Build problem fix on Linux 2.4</LI>
<!--
<LI>- none -</LI>
-->
@ -502,23 +507,16 @@ Bug fixes in .pl01 towards xorriso-:
-->
<P>
Enhancements towards previous stable version xorriso-0.6.2:
Enhancements towards previous stable version xorriso-0.6.4:
<UL>
<LI>New -as mkisofs option -joliet-long</LI>
<LI>
New option -jigdo
New bootspec sparc_label=, new -as mkisofs options -sparc-boot , -sparc-label
for SUN SPARC systems.
</LI>
<LI>
New -as mkisofs options -jigdo-* , -md5-list , -checksum_algorithm_* as of genisoimage
</LI>
<LI>
New bootspecs mips_path= and mipsel_path= for Debian MIPS releases
</LI>
<LI>
New -as mkisofs options -mips-boot and -mipsel-boot
</LI>
<LI>
New option -append_partition, -as mkisofs -append_partition
New action estimate_size for -find and -findx
</LI>
<!--
@ -543,16 +541,16 @@ libburnia project and the legal intentions of
<A HREF="http://www.fsf.org/"> FSF </A> match completely.
</DT>
<DD>&nbsp;</DD>
<DT>libburn-0.8.9</DT>
<DT>libburn-0.9.1</DT>
<DD>reads and writes data from and to CD, DVD, BD.</DD>
<DD>(founded by Derek Foreman and Ben Jansens,
developed and maintained since August 2006 by
Thomas Schmitt from team of libburnia-project.org)</DD>
<DT>libisofs-0.6.39</DT>
<DT>libisofs-0.6.41</DT>
<DD>operates on ISO 9660 filesystem images.</DD>
<DD>(By Vreixo Formoso, Mario Danic and Thomas Schmitt
from team of libburnia-project.org)</DD>
<DT>libisoburn-0.6.4</DT>
<DT>libisoburn-0.6.6</DT>
<DD>coordinates libburn and libisofs, emulates multi-session where needed,
and hosts the original source code of program xorriso.</DD>
<DD>It provides the complete functionality of xorriso via
@ -573,8 +571,8 @@ cdrecord and mkisofs.</DT>
<P>
<DL>
<DT><H3>Development snapshot, version 0.6.5 :</H3></DT>
<DD>Bug fixes towards xorriso-0.6.4:
<DT><H3>Development snapshot, version 0.6.7 :</H3></DT>
<DD>Bug fixes towards xorriso-0.6.6:
<UL>
<LI>- none yet -</LI>
<!--
@ -582,22 +580,20 @@ cdrecord and mkisofs.</DT>
-->
</UL>
</DD>
<DD>Enhancements towards stable version 0.6.4:
<DD>Enhancements towards stable version 0.6.6:
<UL>
<LI>- none yet -</LI>
<!--
<LI>- none yet -</LI>
-->
</UL>
</DD>
<DD>&nbsp;</DD>
<DD>&nbsp;</DD>
<DD><A HREF="README_xorriso_devel">README 0.6.5</A>
<DD><A HREF="xorriso_help_devel">xorriso_0.6.5 -help</A></DD>
<DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 0.6.5)</A></DD>
<DD><A HREF="README_xorriso_devel">README 0.6.7</A>
<DD><A HREF="xorriso_help_devel">xorriso_0.6.7 -help</A></DD>
<DD><A HREF="man_1_xorriso_devel.html">man xorriso (as of 0.6.7)</A></DD>
<DD>&nbsp;</DD>
<DT>If you want to distribute development versions of xorriso, then use
this tarball which produces static linking between xorriso and the
@ -607,8 +603,8 @@ libburnia libraries.
installation see README)
</DD>
<DD>
<A HREF="xorriso-0.6.5.tar.gz">xorriso-0.6.5.tar.gz</A>
(1750 KB).
<A HREF="xorriso-0.6.7.tar.gz">xorriso-0.6.7.tar.gz</A>
(1765 KB).
</DD>
<DT>A dynamically linked development version of xorriso can be obtained
from repositories of

View File

@ -111,7 +111,7 @@
*/
#define Xorriso_req_majoR 0
#define Xorriso_req_minoR 6
#define Xorriso_req_micrO 5
#define Xorriso_req_micrO 7
static void yell_xorriso()

View File

@ -1 +1 @@
#define Xorriso_timestamP "2010.12.10.123634"
#define Xorriso_timestamP "2010.12.12.120823"

View File

@ -19,7 +19,7 @@
*/
#define xorriso_libisoburn_req_major 0
#define xorriso_libisoburn_req_minor 6
#define xorriso_libisoburn_req_micro 5
#define xorriso_libisoburn_req_micro 7
struct SpotlisT; /* List of intervals with different read qualities */