Hello community, here is the log from the commit of package dvd+rw-tools checked in at Thu Dec 7 19:39:46 CET 2006. -------- --- dvd+rw-tools/dvd+rw-tools.changes 2006-04-27 21:11:06.000000000 +0200 +++ /mounts/work_src_done/STABLE/dvd+rw-tools/dvd+rw-tools.changes 2006-11-15 12:48:38.000000000 +0100 @@ -1,0 +2,8 @@ +Wed Nov 15 12:47:14 CET 2006 - adrian@suse.de + +- update to version 7.0 + * Blu-ray Disc support + * Linux: overcome 16MB O_DIRECT limitaton for NFS client +- remove obsolete patches + +------------------------------------------------------------------- Old: ---- dvd+rw-tools-6.1.tar.bz2 expand-memlock New: ---- dvd+rw-tools-7.0.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ dvd+rw-tools.spec ++++++ --- /var/tmp/diff_new_pack.Wkd4vT/_old 2006-12-07 19:36:25.000000000 +0100 +++ /var/tmp/diff_new_pack.Wkd4vT/_new 2006-12-07 19:36:25.000000000 +0100 @@ -1,5 +1,5 @@ # -# spec file for package dvd+rw-tools (Version 6.1) +# spec file for package dvd+rw-tools (Version 7.0) # # Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -12,19 +12,17 @@ Name: dvd+rw-tools BuildRequires: gcc-c++ resmgr -License: distributable, GPL +License: GNU General Public License (GPL), Public Domain, Freeware Group: Productivity/Multimedia/CD/Record Autoreqprov: on -Version: 6.1 -Release: 16 +Version: 7.0 +Release: 1 Source: dvd+rw-tools-%{version}.tar.bz2 URL: http://fy.chalmers.se/~appro/linux/DVD+RW/ Summary: Collection of Tools for Mastering DVD+RW/+R Media BuildRoot: %{_tmppath}/%{name}-%{version}-build Patch1: rpm_opt_flags.diff -Patch2: growisofs-directio-limit.diff Patch4: utf8ize.patch -Patch5: expand-memlock Patch6: pthread-stacksize Patch7: growisofs-dvd-dl-undersized.patch @@ -38,9 +36,7 @@ %prep %setup -q %patch1 -%patch2 %patch4 -%patch5 -p1 %patch6 -p1 %patch7 @@ -67,6 +63,11 @@ /usr/bin/rpl8 %changelog -n dvd+rw-tools +* Wed Nov 15 2006 - adrian@suse.de +- update to version 7.0 + * Blu-ray Disc support + * Linux: overcome 16MB O_DIRECT limitaton for NFS client +- remove obsolete patches * Thu Apr 27 2006 - joeshaw@suse.de - Add patch to allow users to burn images that would fit on a single-layer DVD to a dual-layer disc. (bnc #164032) ++++++ dvd+rw-tools-6.1.tar.bz2 -> dvd+rw-tools-7.0.tar.bz2 ++++++ ++++ 4108 lines of diff (skipped) ++++++ growisofs-directio-limit.diff ++++++ --- /var/tmp/diff_new_pack.Wkd4vT/_old 2006-12-07 19:36:26.000000000 +0100 +++ /var/tmp/diff_new_pack.Wkd4vT/_new 2006-12-07 19:36:26.000000000 +0100 @@ -1,6 +1,6 @@ --- growisofs.c -+++ growisofs.c -@@ -506,6 +506,7 @@ static pwrite64_t pwrite64_method = pwri ++++ growisofs.c 2006/11/15 11:43:40 +@@ -524,6 +524,7 @@ */ static char *the_buffer; static unsigned int the_buffer_size=DEFAULT_BUF_SIZE_MB*1024*1024; @@ -8,22 +8,3 @@ /* * Synchronization objects -@@ -1968,10 +1969,15 @@ int builtin_dd (int infd,int outfd,off64 - highest_ecc_block = off/DVD_BLOCK; - assert (highest_ecc_block==2); - /* Fill the_buffer up to the_buffer_size */ -- while ((n=read (infd,the_buffer+off,the_buffer_size-off)) > 0) -- { off += n; -- if (off == the_buffer_size) -+ while (off < the_buffer_size) { -+ unsigned int to_read = the_buffer_size - off; -+ -+ if (to_read > directio_chunk) -+ to_read = directio_chunk; -+ -+ if ((n = read(infd, the_buffer+off, to_read)) <= 0) - break; -+ off += n; - } - if (n<0) goto out; - ++++++ utf8ize.patch ++++++ --- /var/tmp/diff_new_pack.Wkd4vT/_old 2006-12-07 19:36:26.000000000 +0100 +++ /var/tmp/diff_new_pack.Wkd4vT/_new 2006-12-07 19:36:26.000000000 +0100 @@ -1,5 +1,5 @@ --- dvd+rw-booktype.cpp -+++ dvd+rw-booktype.cpp 2006/01/30 13:28:44 ++++ dvd+rw-booktype.cpp 2006/11/15 11:44:45 @@ -398,7 +398,7 @@ break; case OPT_MEDIA: @@ -10,7 +10,7 @@ } --- rpl8.cpp -+++ rpl8.cpp 2006/01/30 13:28:44 ++++ rpl8.cpp 2006/11/15 11:44:45 @@ -288,7 +288,7 @@ break; } @@ -29,14 +29,3 @@ argv[1]); break; } ---- transport.hxx -+++ transport.hxx 2006/01/30 13:28:44 -@@ -664,7 +664,7 @@ - #elif defined(__sun) || defined(sun) - // - // Licensing terms for commercial distribution for Solaris are to be --// settled with Inserve Technology, Åvägen 6, 412 50 GÖTEBORG, Sweden, -+// settled with Inserve Technology, à vÀgen 6, 412 50 GÃTEBORG, Sweden, - // tel. +46-(0)31-86 87 88, see http://www.inserve.se/ for further - // details about Inserve Technology. - // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@suse.de