From 543e6a8850d8c516e13c61c009cef2136b449d4f Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Tue, 26 Nov 2024 16:58:54 +0300 Subject: [PATCH] import libcdio-2.1.0-14.el10 --- .gitignore | 1 + .libcdio.metadata | 1 + SOURCES/cdio_config.h | 29 +++ SOURCES/format-security.patch | 48 ++++ SOURCES/libcdio-2.1.0.tar.bz2.sig | 6 + SOURCES/libcdio-no_date_footer.hml | 4 + SOURCES/realpath-test-fix.patch | 52 ++++ SPECS/libcdio.spec | 393 +++++++++++++++++++++++++++++ 8 files changed, 534 insertions(+) create mode 100644 .gitignore create mode 100644 .libcdio.metadata create mode 100644 SOURCES/cdio_config.h create mode 100644 SOURCES/format-security.patch create mode 100644 SOURCES/libcdio-2.1.0.tar.bz2.sig create mode 100644 SOURCES/libcdio-no_date_footer.hml create mode 100644 SOURCES/realpath-test-fix.patch create mode 100644 SPECS/libcdio.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..db2b293 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/libcdio-2.1.0.tar.bz2 diff --git a/.libcdio.metadata b/.libcdio.metadata new file mode 100644 index 0000000..fb53e66 --- /dev/null +++ b/.libcdio.metadata @@ -0,0 +1 @@ +ec22e5168bc0dcfc179ec7b1164af1e5b672ca89 SOURCES/libcdio-2.1.0.tar.bz2 diff --git a/SOURCES/cdio_config.h b/SOURCES/cdio_config.h new file mode 100644 index 0000000..9b01c00 --- /dev/null +++ b/SOURCES/cdio_config.h @@ -0,0 +1,29 @@ +/* + * Kluge to support multilib installation of both 32- and 64-bit RPMS: + * we need to arrange that header files that appear in both RPMs are + * identical. Hence, this file is architecture-independent and calls + * in an arch-dependent file that will appear in just one RPM. + * + * To avoid breaking arches not explicitly supported by Red Hat, we + * use this indirection file *only* on known multilib arches. + * + * Note: this may well fail if user tries to use gcc's -I- option. + * But that option is deprecated anyway. + */ +#if defined(__x86_64__) +#include "cdio_config_x86_64.h" +#elif defined(__i386__) +#include "cdio_config_i386.h" +#elif defined(__ppc64__) || defined(__powerpc64__) +#include "cdio_config_ppc64.h" +#elif defined(__ppc__) || defined(__powerpc__) +#include "cdio_config_ppc.h" +#elif defined(__s390x__) +#include "cdio_config_s390x.h" +#elif defined(__s390__) +#include "cdio_config_s390.h" +#elif defined(__sparc__) && defined(__arch64__) +#include "cdio_config_sparc64.h" +#elif defined(__sparc__) +#include "cdio_config_sparc.h" +#endif diff --git a/SOURCES/format-security.patch b/SOURCES/format-security.patch new file mode 100644 index 0000000..a9c4b19 --- /dev/null +++ b/SOURCES/format-security.patch @@ -0,0 +1,48 @@ +From 2adb43c60afc6e98e94d86dad9f93d3df52862b1 Mon Sep 17 00:00:00 2001 +From: Sergei Trofimovich +Date: Mon, 1 Nov 2021 08:00:30 +0000 +Subject: src/cdda-player.c: always use "%s"-style format for printf()-style + functions + +`ncuses-6.3` added printf-style function attributes and now makes +it easier to catch cases when user input is used in palce of format +string when built with CFLAGS=-Werror=format-security: + + cdda-player.c:1032:31: + error: format not a string literal and no format arguments [-Werror=format-security] + 1032 | mvprintw(i_line++, 0, line); + | ^~~~ + +Let's wrap all the missing places with "%s" format. +--- + src/cdda-player.c | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/src/cdda-player.c b/src/cdda-player.c +index 69eddee..8834d60 100644 +--- a/src/cdda-player.c ++++ b/src/cdda-player.c +@@ -298,7 +298,7 @@ action(const char *psz_action) + psz_action); + else + snprintf(psz_action_line, sizeof(psz_action_line), "%s", "" ); +- mvprintw(LINE_ACTION, 0, psz_action_line); ++ mvprintw(LINE_ACTION, 0, "%s", psz_action_line); + clrtoeol(); + refresh(); + } +@@ -1029,10 +1029,10 @@ display_tracks(void) + } + if (sub.track == i) { + attron(A_STANDOUT); +- mvprintw(i_line++, 0, line); ++ mvprintw(i_line++, 0, "%s", line); + attroff(A_STANDOUT); + } else +- mvprintw(i_line++, 0, line); ++ mvprintw(i_line++, 0, "%s", line); + clrtoeol(); + } + } +-- +cgit v1.1 diff --git a/SOURCES/libcdio-2.1.0.tar.bz2.sig b/SOURCES/libcdio-2.1.0.tar.bz2.sig new file mode 100644 index 0000000..316f7c9 --- /dev/null +++ b/SOURCES/libcdio-2.1.0.tar.bz2.sig @@ -0,0 +1,6 @@ +-----BEGIN PGP SIGNATURE----- + +iF0EABECAB0WIQTapjvCWCA0oCuSPVIajeUAgnXsIQUCXLfTGgAKCRAajeUAgnXs +IbgPAJ9VeCzDcgfxpLh+zfNIwrRfEYxEegCffF1BoaCcEB9CKxx7rleF2CYRosA= +=tmRS +-----END PGP SIGNATURE----- diff --git a/SOURCES/libcdio-no_date_footer.hml b/SOURCES/libcdio-no_date_footer.hml new file mode 100644 index 0000000..4886c65 --- /dev/null +++ b/SOURCES/libcdio-no_date_footer.hml @@ -0,0 +1,4 @@ +
+Generated for $projectname by doxygen +$doxygenversion
diff --git a/SOURCES/realpath-test-fix.patch b/SOURCES/realpath-test-fix.patch new file mode 100644 index 0000000..d666705 --- /dev/null +++ b/SOURCES/realpath-test-fix.patch @@ -0,0 +1,52 @@ +From 56335fff0f21d294cd0e478d49542a43e9495ed0 Mon Sep 17 00:00:00 2001 +From: "R. Bernstein" +Date: Wed, 24 Aug 2022 14:34:33 -0400 +Subject: Correct realpath test failure +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +See https://savannah.gnu.org/bugs/?62948 +Patch courtesy of Martin Liška +--- + test/driver/realpath.c | 13 ++++++++----- + 1 file changed, 8 insertions(+), 5 deletions(-) + +diff --git a/test/driver/realpath.c b/test/driver/realpath.c +index 289253e..cd46d62 100644 +--- a/test/driver/realpath.c ++++ b/test/driver/realpath.c +@@ -1,5 +1,7 @@ + /* -*- C -*- +- Copyright (C) 2010-2012, 2015, 2017 Rocky Bernstein ++ ++ Copyright (C) 2010-2012, 2015, 2017, 2022 Rocky Bernstein ++ + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by +@@ -175,16 +177,17 @@ main(int argc, const char *argv[]) + rc = check_rc(symlink(psz_symlink_file, psz_symlink_file), + "symlink", psz_symlink_file); + if (0 == rc) { +- cdio_realpath(psz_symlink_file, psz_file_check); +- if (0 != strncmp(psz_file_check, symlink_file, PATH_MAX)) { ++ char *retvalue = cdio_realpath(psz_symlink_file, psz_file_check); ++ if (0 != retvalue) { ++ if (0 != strncmp(psz_file_check, symlink_file, PATH_MAX)) { + fprintf(stderr, "direct cdio_realpath cycle test failed. %s vs %s\n", + psz_file_check, symlink_file); + rc = 5; + goto err_exit; ++ } ++ check_rc(unlink(psz_symlink_file), "unlink", psz_symlink_file); + } +- check_rc(unlink(psz_symlink_file), "unlink", psz_symlink_file); + } +- + } + + check_rc(unlink(psz_orig_file), "unlink", psz_orig_file); +-- +cgit v1.1 + diff --git a/SPECS/libcdio.spec b/SPECS/libcdio.spec new file mode 100644 index 0000000..45a3e55 --- /dev/null +++ b/SPECS/libcdio.spec @@ -0,0 +1,393 @@ +Name: libcdio +Version: 2.1.0 +Release: 14%{?dist} +Summary: CD-ROM input and control library +# include/cdio/ecma_167.h and lib/driver/netbsd.c and lib/udf/udf_fs.c are BSD-2-Clause +# src/getopt* are LGPL-2.1-or-later +License: GPL-3.0-or-later AND BSD-2-Clause AND LGPL-2.1-or-later +URL: http://www.gnu.org/software/libcdio/ +Source0: http://ftp.gnu.org/gnu/libcdio/libcdio-%{version}.tar.bz2 +Source1: http://ftp.gnu.org/gnu/libcdio/libcdio-%{version}.tar.bz2.sig +Source2: libcdio-no_date_footer.hml +Source3: cdio_config.h +# Fixed upstream but not in a stable release yet. +# http://git.savannah.gnu.org/cgit/libcdio.git/commit/?id=2adb43c60afc6e98e94d86dad9f93d3df52862b1 +Patch0: format-security.patch +# http://git.savannah.gnu.org/cgit/libcdio.git/commit/?id=56335fff0f21d294cd0e478d49542a43e9495ed0 +Patch1: realpath-test-fix.patch + +BuildRequires: gcc gcc-c++ +BuildRequires: pkgconfig doxygen +BuildRequires: ncurses-devel +BuildRequires: help2man +BuildRequires: gettext-devel +BuildRequires: chrpath +BuildRequires: make + +%description +This library provides an interface for CD-ROM access. It can be used +by applications that need OS- and device-independent access to CD-ROM +devices. + +%package devel +Summary: Header files and libraries for %{name} +# doc/* is GFDL-1.2-or-later +License: GPL-3.0-or-later AND BSD-2-Clause AND LGPL-2.1-or-later AND GFDL-1.2-or-later +Requires: %{name} = %{version}-%{release} + +%description devel +This package contains header files and libraries for %{name}. + + +%prep +%autosetup -p1 + +iconv -f ISO88591 -t utf-8 -o THANKS.utf8 THANKS && mv THANKS.utf8 THANKS + +%build +%ifarch %{ix86} +# avoid implicit declaration of fseeko64, lseek64 +export CPPFLAGS="$CPPFLAGS -D_LARGEFILE64_SOURCE" +%endif +%configure \ + --disable-vcd-info \ + --disable-dependency-tracking \ + --disable-cddb \ + --disable-static \ + --disable-rpath +%make_build + +# another multilib fix; remove the architecture information from version.h +sed -i -e "s,%{version} .*$,%{version}\\\",g" include/cdio/version.h + +cd doc/doxygen +sed -i -e "s,HTML_FOOTER.*$,HTML_FOOTER = libcdio-no_date_footer.hml,g; \ + s,EXCLUDE .*$,EXCLUDE = ../../include/cdio/cdio_config.h,g;" Doxyfile +cp %{SOURCE2} . +./run_doxygen + +%install +%make_install + +# multilib header hack; taken from postgresql.spec +case `uname -i` in + i386 | x86_64 | ppc | ppc64 | s390 | s390x | sparc | sparc64 ) + mv $RPM_BUILD_ROOT%{_includedir}/cdio/cdio_config.h $RPM_BUILD_ROOT%{_includedir}/cdio/cdio_config_`uname -i`.h + install -m 644 %{SOURCE3} $RPM_BUILD_ROOT%{_includedir}/cdio + ;; + *) + ;; +esac + +rm -f $RPM_BUILD_ROOT%{_infodir}/dir +find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';' + +rm -rf examples +mkdir -p examples/C++ +cp -a example/{*.c,README} examples +cp -a example/C++/{*.cpp,README} examples/C++ + +# fix timestamps of generated man-pages +for i in cd-info iso-read iso-info cd-read cd-drive; do + # remove build architecture information from man pages + sed -i -e 's, version.*linux-gnu,,g' $RPM_BUILD_ROOT%{_mandir}/man1/$i.1 + # remove libtool leftover from man pages + sed -i -e 's,lt-,,g;s,LT-,,g' $RPM_BUILD_ROOT%{_mandir}/man1/$i.1 + # fix timestamps to be the same in all packages + touch -r src/$i.help2man $RPM_BUILD_ROOT%{_mandir}/man1/$i.1 +done + +# remove rpath +chrpath --delete $RPM_BUILD_ROOT%{_bindir}/* +chrpath --delete $RPM_BUILD_ROOT%{_libdir}/*.so.* + +%check +# disable test using local CDROM +%{__sed} -i -e "s,testiso9660\$(EXEEXT),,g" \ + -e "s,testisocd\$(EXEEXT),,g" \ + -e "s,check_paranoia.sh check_opts.sh, check_opts.sh,g" \ + test/Makefile +make check + + +%files +%license COPYING +%doc AUTHORS NEWS.md README README.libcdio THANKS TODO +%{_bindir}/* +%{_libdir}/*.so.* +%{_infodir}/* +%{_mandir}/man1/* + + +%files devel +%doc doc/doxygen/html examples +%{_includedir}/cdio +%{_includedir}/cdio++ +%{_libdir}/*.so +%{_libdir}/pkgconfig/*.pc + + +%changelog +* Tue Nov 26 2024 MSVSphere Packaging Team - 2.1.0-14 +- Rebuilt for MSVSphere 10 + +* Tue Aug 13 2024 Pavel Cahyna - 2.1.0-14 +- migrated to SPDX license, originally from Fedora by + +* Mon Jun 24 2024 Troy Dawson - 2.1.0-13 +- Bump release for June 2024 mass rebuild + +* Thu Jan 25 2024 Fedora Release Engineering - 2.1.0-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sun Jan 21 2024 Fedora Release Engineering - 2.1.0-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Thu Jul 20 2023 Fedora Release Engineering - 2.1.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Thu Jan 19 2023 Fedora Release Engineering - 2.1.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Tue Aug 30 2022 Parag Nemade - 2.1.0-8 +- Fix the realpath test failure (upstream patch) + +* Thu Jul 21 2022 Fedora Release Engineering - 2.1.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Thu Jan 20 2022 Fedora Release Engineering - 2.1.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Thu Jul 22 2021 Fedora Release Engineering - 2.1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Tue Jan 26 2021 Fedora Release Engineering - 2.1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Tue Jul 28 2020 Fedora Release Engineering - 2.1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Mon Jul 13 2020 Tom Stellard - 2.1.0-2 +- Use make macros +- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro + +* Mon Mar 30 2020 Adrian Reber - 2.1.0-1 +- updated to 2.1.0 + +* Wed Jan 29 2020 Fedora Release Engineering - 2.0.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Jul 25 2019 Fedora Release Engineering - 2.0.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Fri Feb 01 2019 Fedora Release Engineering - 2.0.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Fri Jul 13 2018 Fedora Release Engineering - 2.0.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Wed Feb 07 2018 Fedora Release Engineering - 2.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Thu Jan 25 2018 Adrian Reber - 2.0.0-1 +- updated to 2.0.0 + +* Thu Aug 03 2017 Fedora Release Engineering - 0.94-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 0.94-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Fri Feb 10 2017 Fedora Release Engineering - 0.94-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Mon Nov 14 2016 Adrian Reber - 0.94-1 +- updated to 0.94 +- dropped patches + +* Tue Aug 30 2016 Adrian Reber - 0.93-8 +- Fixes #1366718 (Bug in libcdio preventing it from use in c++ applications) + +* Thu Feb 04 2016 Fedora Release Engineering - 0.93-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Wed Jun 17 2015 Fedora Release Engineering - 0.93-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Fri May 22 2015 Kalev Lember - 0.93-5 +- Obsolete compat-libcdio15 + +* Sat May 02 2015 Kalev Lember - 0.93-4 +- Rebuilt for GCC 5 C++11 ABI change + +* Sat Feb 21 2015 Till Maas - 0.93-3 +- Rebuilt for Fedora 23 Change + https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code + +* Tue Jan 13 2015 Dan Horák - 0.93-2 +- add big endian fix for udf + +* Fri Oct 31 2014 Frantisek Kluknavsky - 0.93-1 +- rebase to 0.93 + +* Sun Aug 17 2014 Fedora Release Engineering - 0.92-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sat Jun 07 2014 Fedora Release Engineering - 0.92-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Mon Dec 16 2013 Adrian Reber - 0.92-1 +- updated to 0.92 + +* Sat Aug 03 2013 Fedora Release Engineering - 0.90-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Thu Feb 14 2013 Fedora Release Engineering - 0.90-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Thu Nov 22 2012 Adrian Reber - 0.90-1 +- updated to 0.90 + +* Tue Jul 24 2012 Adrian Reber - 0.83-5 +- fixed #477288 (libcdio-devel multilib conflict) again + +* Thu Jul 19 2012 Fedora Release Engineering - 0.83-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Fri Mar 23 2012 Adrian Reber - 0.83-3 +- fixed #804484 (/usr/bin/cd-info was killed by signal 11) + +* Fri Jan 13 2012 Fedora Release Engineering - 0.83-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Sun Nov 13 2011 Adrian Reber - 0.83-1 +- updated to 0.83 + +* Mon May 30 2011 Honza Horak - 0.82-5 +- applied patch to fix issues found by static analyses + +* Thu May 19 2011 Honza Horak - 0.82-4 +- fixed #705673 buffer overflow and other unprotected sprintf calls + +* Mon Feb 07 2011 Fedora Release Engineering - 0.82-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Thu Jan 28 2010 Adrian Reber - 0.82-2 +- disabled building of static libraries (#556064) +- removed "Requires: pkgconfig" (rpm adds it automatically) + +* Wed Jan 20 2010 Roman Rakus rrakus@redhat.com 0.82-1 +- Update to 0.82 +- removed rpath +- converted THANKS to utf8 + +* Fri Jul 24 2009 Fedora Release Engineering - 0.81-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Wed Feb 25 2009 Fedora Release Engineering - 0.81-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Tue Oct 07 2008 Adrian Reber - 0.81-1 +- updated to 0.81 +- license changed to GPLv3+ +- fixed #477288 (libcdio-devel multilib conflict) +- applied patch to fix endless loop in mock + +* Tue Oct 07 2008 Adrian Reber - 0.80-5 +- fixed #462125 (Multilib conflict) - really, really, really + (also remove architecture information from man pages) + +* Thu Oct 02 2008 Adrian Reber - 0.80-4 +- fixed #462125 (Multilib conflict) - this time for real + +* Fri Sep 12 2008 Adrian Reber - 0.80-3 +- fixed #462125 (Multilib conflict) + +* Wed Jun 4 2008 Tomas Bzatek - 0.80-2 +- added patch enabling libcdio_paranoia.pc + +* Thu May 29 2008 Adrian Reber - 0.80-1 +- updated to 0.80 +- removed upstreamed patches +- last GPLv2+ release + +* Thu Feb 14 2008 Adrian Reber - 0.79-3 +- added patch to compile with gcc43 + +* Fri Jan 04 2008 Adrian Reber - 0.79-2 +- fixed security fix (was off by two) + +* Wed Jan 02 2008 Adrian Reber - 0.79-1 +- updated to 0.79 +- fixes #427197 (Long Joliet file name overflows cdio's buffer) +- fixes #341981 (multiarch conflicts in libcdio) + +* Fri Aug 24 2007 Adrian Reber - 0.78.2-3 +- rebuilt + +* Mon Jul 23 2007 Adrian Reber - 0.78.2-2 +- updated to 0.78.2 (#221359) (this time for real) + +* Thu Jan 04 2007 Adrian Reber - 0.78.2-1 +- updated to 0.78.2 (#221359) + +* Thu Oct 05 2006 Adrian Reber - 0.77-3 +- disabled iso9660 test case (fails for some reason with date problems) + this seems to be a known problem according to the ChangeLog + +* Thu Oct 05 2006 Christian Iseli 0.77-2 + - rebuilt for unwind info generation, broken in gcc-4.1.1-21 + +* Fri Sep 22 2006 Adrian Reber - 0.77-1 +- Updated to 0.77 + +* Mon Sep 18 2006 Adrian Reber - 0.76-3 +- Rebuilt + +* Mon Sep 26 2005 Adrian Reber - 0.76-2 +- Rebuilt + +* Mon Sep 26 2005 Adrian Reber - 0.76-1 +- Updated to 0.76. +- Included doxygen generated documentation into -devel +- Included examples into -devel + +* Mon Aug 01 2005 Adrian Reber - 0.75-4 +- disable test accessing local CDROM drive (#164266) + +* Wed Jul 27 2005 Adrian Reber - 0.75-3 +- Rebuilt without libcddb dependency (#164270) + +* Tue Jul 26 2005 Adrian Reber - 0.75-2 +- Rebuilt + +* Thu Jul 14 2005 Adrian Reber - 0.75-1 +- Updated to 0.75. + +* Fri Jun 03 2005 Adrian Reber - 0.74-2 +- Updated to 0.74. + +* Sun Apr 24 2005 Ville Skyttä - 0.73-2 +- BuildRequire ncurses-devel (for cdda-player and cd-paranoia). +- Run test suite during build. +- Install Japanese man pages. + +* Sun Apr 24 2005 Adrian Reber - 0.73-1 +- Updated to 0.73. + +* Fri Mar 18 2005 Ville Skyttä - 0.70-2 +- Fix FC4 build (#151468). +- Build with dependency tracking disabled. + +* Sun Sep 5 2004 Marius L. Jøhndal - 0:0.70-0.fdr.1 +- Updated to 0.70. + +* Sat Jul 17 2004 Marius L. Jøhndal - 0:0.69-0.fdr.1 +- Updated to 0.69. +- Removed broken iso-read. +- Split Requires(pre,post). +- Added BuildReq pkgconfig. + +* Mon Mar 29 2004 Marius L. Jøhndal - 0:0.68-0.fdr.1 +- Initial RPM release. +