[svn] r4731 - in trunk/rpms: . dvdrip perl-Video-DVDRip

packagers at lists.rpmforge.net packagers at lists.rpmforge.net
Mon Sep 18 17:16:56 CEST 2006


Author: thias
Date: 2006-09-18 17:16:56 +0200 (Mon, 18 Sep 2006)
New Revision: 4731

Added:
   trunk/rpms/dvdrip/
   trunk/rpms/dvdrip/Video-DVDRip-0.97.8-nontplworkaround.patch
   trunk/rpms/dvdrip/dvdrip.spec
Removed:
   trunk/rpms/perl-Video-DVDRip/Video-DVDRip-0.97.8-nontplworkaround.patch
   trunk/rpms/perl-Video-DVDRip/perl-Video-DVDRip.spec
Log:
Rename perl-Video-DVDRip to dvdrip.


Copied: trunk/rpms/dvdrip/Video-DVDRip-0.97.8-nontplworkaround.patch (from rev 4703, trunk/rpms/perl-Video-DVDRip/Video-DVDRip-0.97.8-nontplworkaround.patch)
===================================================================
--- trunk/rpms/dvdrip/Video-DVDRip-0.97.8-nontplworkaround.patch	                        (rev 0)
+++ trunk/rpms/dvdrip/Video-DVDRip-0.97.8-nontplworkaround.patch	2006-09-18 15:16:56 UTC (rev 4731)
@@ -0,0 +1,12 @@
+diff -Naupr Video-DVDRip-0.97.8.orig/lib/Video/DVDRip/Config.pm Video-DVDRip-0.97.8/lib/Video/DVDRip/Config.pm
+--- Video-DVDRip-0.97.8.orig/lib/Video/DVDRip/Config.pm	2006-03-31 22:05:49.000000000 +0200
++++ Video-DVDRip-0.97.8/lib/Video/DVDRip/Config.pm	2006-04-19 13:12:53.000000000 +0200
+@@ -405,7 +405,7 @@ my %CONFIG_PARAMETER = (
+     workaround_nptl_bugs => {
+         label => __ "Workaround transcode NPTL bugs",
+         type  => 'switch',
+-        value => 1,
++        value => 0,
+     },
+     nptl_ld_assume_kernel => {
+         label   => __ "Set LD_ASSUME_KERNEL to",

Copied: trunk/rpms/dvdrip/dvdrip.spec (from rev 4703, trunk/rpms/perl-Video-DVDRip/perl-Video-DVDRip.spec)
===================================================================
--- trunk/rpms/dvdrip/dvdrip.spec	                        (rev 0)
+++ trunk/rpms/dvdrip/dvdrip.spec	2006-09-18 15:16:56 UTC (rev 4731)
@@ -0,0 +1,312 @@
+# $Id$
+# Authority: matthias
+
+%{?dist: %{expand: %%define %dist 1}}
+
+%{?rh7:%define _without_freedesktop 1}
+%{?el2:%define _without_freedesktop 1}
+
+%define desktop_vendor  rpmforge
+%define perl_sitelib    %(eval "`perl -V:installsitelib`"; echo $installsitelib)
+
+Summary: Graphical DVD ripping and encoding tool based on transcode
+Name: dvdrip
+Version: 0.98.1
+Release: 1
+License: Artistic or GPL
+Group: Applications/Multimedia
+URL: http://www.exit1.org/dvdrip/
+Source: http://www.exit1.org/dvdrip/dist/dvdrip-%{version}.tar.gz
+Patch0: Video-DVDRip-0.97.8-nontplworkaround.patch
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
+Requires: transcode >= 0.6.13
+Requires: ImageMagick, ogmtools, subtitleripper, vcdimager, lsdvd
+Requires: perl(Gtk2) >= 1.081, perl(Gtk2::Ex::FormFactory) >= 0.65
+Requires: perl(Locale::TextDomain) >= 1.16, perl(Event::ExecFlow) >= 0.62
+BuildRequires: perl(Gtk2) >= 1.081, perl(Gtk2::Ex::FormFactory) >= 0.65
+BuildRequires: perl(Locale::TextDomain) >= 1.16, perl(Event::ExecFlow) >= 0.62
+BuildRequires: perl(Event::RPC)
+%{!?_without_freedesktop:BuildRequires: desktop-file-utils}
+Obsoletes: perl-Video-DVDRip <= 0.98.1-2
+
+%description
+dvd::rip is a full featured DVD copy program. It provides an easy to use but
+feature-rich Gtk+ GUI to control almost all aspects of the ripping and
+transcoding process. It uses the widely known video processing swissknife
+transcode and many other Open Source tools.
+
+
+%prep
+%setup
+%patch0 -p1 -b .nontplworkaround
+
+
+%build
+%{__perl} Makefile.PL
+# Disable %{?_smp_mflags}, it makes build fail (0.98.0)
+%{__make}
+
+
+%install
+%{__rm} -rf %{buildroot}
+%{__make} install \
+    INSTALLSCRIPT=%{buildroot}%{_bindir} \
+    INSTALLSITELIB=%{buildroot}%{perl_sitelib} \
+    INSTALLSITEARCH=%{buildroot}%{perl_sitearch} \
+    INSTALLMAN1DIR=%{buildroot}%{_mandir}/man1 \
+    INSTALLSITEMAN1DIR=%{buildroot}%{_mandir}/man1 \
+    INST_MAN1DIR=%{buildroot}%{_mandir}/man1 \
+    INSTALLMAN3DIR=%{buildroot}%{_mandir}/man3 \
+    INSTALLSITEMAN3DIR=%{buildroot}%{_mandir}/man3 \
+    INST_MAN3DIR=%{buildroot}%{_mandir}/man3
+
+# Unpackaged strange files!
+%{__rm} -f %{buildroot}%{_mandir}/man?/.exists* || :
+
+# Unneeded, all is in sitelib (only a .packlist in there)
+%{__rm} -rf %{buildroot}%{perl_sitearch}
+
+# Desktop entry
+%{__cat} > dvdrip.desktop << EOF
+[Desktop Entry]
+Name=DVD Ripper and Encoder
+Comment=Backup and compression utility for DVDs
+Exec=dvdrip
+Icon=%{perl_sitelib}/Video/DVDRip/icon.xpm
+Terminal=false
+Type=Application
+Categories=Application;AudioVideo;
+EOF
+
+%if %{?_without_freedesktop:1}0
+    %{__install} -D -p -m 0644 dvdrip.desktop \
+        %{buildroot}%{_sysconfdir}/X11/applnk/Multimedia/dvdrip.desktop
+%else
+    %{__mkdir_p} %{buildroot}%{_datadir}/applications
+    desktop-file-install --vendor %{desktop_vendor} \
+        --dir %{buildroot}%{_datadir}/applications \
+        dvdrip.desktop
+%endif
+
+
+%clean
+%{__rm} -rf %{buildroot}
+
+
+%files
+%defattr(-, root, root, 0755)
+%doc Changes COPYRIGHT Credits README TODO
+%attr(0755, root, root) %{_bindir}/*
+%lang(cs) %{perl_sitelib}/LocaleData/cs/LC_MESSAGES/video.dvdrip.mo
+%lang(de) %{perl_sitelib}/LocaleData/de/LC_MESSAGES/video.dvdrip.mo
+%lang(es) %{perl_sitelib}/LocaleData/es/LC_MESSAGES/video.dvdrip.mo
+%lang(fr) %{perl_sitelib}/LocaleData/fr/LC_MESSAGES/video.dvdrip.mo
+%lang(it) %{perl_sitelib}/LocaleData/it/LC_MESSAGES/video.dvdrip.mo
+%lang(sr) %{perl_sitelib}/LocaleData/sr/LC_MESSAGES/video.dvdrip.mo
+%{perl_sitelib}/Video/
+%{!?_without_freedesktop:%{_datadir}/applications/%{desktop_vendor}-dvdrip.desktop}
+%{?_without_freedesktop:/etc/X11/applnk/Multimedia/dvdrip.desktop}
+%{_mandir}/man*/*
+
+
+%changelog
+* Mon Sep 18 2006 Matthias Saou <http://freshrpms.net/> 0.98.1-1
+- Rename to dvdrip, like upstream did.
+- Obsolete up to last know version of perl-Video-DVDRip (<= 0.98.1-2).
+
+* Mon Aug 28 2006 Matthias Saou <http://freshrpms.net/> 0.98.1-1
+- Update to 0.98.1.
+
+* Tue Aug 22 2006 Matthias Saou <http://freshrpms.net/> 0.98.0-1
+- Update to 0.98.0.
+- Upstream changed the tarball name to "dvdrip" now, the package will probably
+  change soon. Provide dvdrip with same V-R for now.
+- Add perl(Event::RPC) build requirement, otherwise the bundled gets installed.
+- Update source URL and description.
+
+* Sun Jul  2 2006 Matthias Saou <http://freshrpms.net/> 0.97.12-1
+- Update to 0.97.12.
+- Remove no longer needed tet patch, since we use the "fixed" source.
+- Now require Gtk2::Ex::FormFactory >= 0.65.
+
+* Tue Jun 20 2006 Matthias Saou <http://freshrpms.net/> 0.97.11-2
+- Exclude experimental dvdrip-tet binary, since it also had a leftover
+  reference to FixLocaleTextDomainUTF8 that broke the automatically
+  generated dependencies.
+
+* Mon Jun 19 2006 Matthias Saou <http://freshrpms.net/> 0.97.11-1
+- Update to 0.97.11.
+
+* Tue Apr 25 2006 Matthias Saou <http://freshrpms.net/> 0.97.10-1
+- Update to 0.97.10.
+
+* Wed Apr 19 2006 Matthias Saou <http://freshrpms.net/> 0.97.8-1
+- Update to 0.97.8.
+- Update NPTL workaround disabling patch.
+- Require Gtk2-Ex-FormFactory >= 0.62.
+- Fix Source URL to point to valid location (was missing "/pre").
+
+* Thu Mar 23 2006 Matthias Saou <http://freshrpms.net/> 0.97.6-3
+- Add patch to default to NPTL workaround disabled, since it's causing dvd::rip
+  to not work properly on FC5.
+- Add lsdvd requirement, since it's used for faster DVD TOC reading.
+
+* Fri Mar 17 2006 Matthias Saou <http://freshrpms.net/> 0.97.6-2
+- Remove _smp_mflags as it makes the build fail.
+
+* Mon Jan  9 2006 Matthias Saou <http://freshrpms.net/> 0.97.6-1
+- Update to gtk2 branch at last, 0.97.6.
+- Include doc.
+- Re-enable auto-requires, so perl(Event) is now required.
+
+* Sun Jul 31 2005 Matthias Saou <http://freshrpms.net/> 0.52.6-1
+- Update to 0.52.6.
+
+* Mon May 23 2005 Matthias Saou <http://freshrpms.net/> 0.52.5-1
+- Update to 0.52.5.
+
+* Tue May 17 2005 Matthias Saou <http://freshrpms.net/> 0.52.4-1
+- Update to 0.52.4.
+
+* Mon Mar 14 2005 Matthias Saou <http://freshrpms.net/> 0.52.3-1
+- Update to 0.52.3.
+
+* Sun Jan  9 2005 Matthias Saou <http://freshrpms.net/> 0.52.2-1
+- Update to 0.52.2.
+
+* Tue Jan  4 2005 Matthias Saou <http://freshrpms.net/> 0.52.0-1
+- Update to 0.52.0.
+
+* Mon Dec 13 2004 Matthias Saou <http://freshrpms.net/> 0.51.4-0
+- Update to 0.51.4.
+
+* Sun Dec 12 2004 Matthias Saou <http://freshrpms.net/> 0.51.3-0
+- Update to 0.51.3.
+
+* Fri Oct 29 2004 Matthias Saou <http://freshrpms.net/> 0.51.2-0
+- Update to unstable 0.51.2, as it adds compatibility for transcode 0.6.13.
+- Added translations that are now included and perl(Locale::Messages) dep.
+
+* Sun Jul 11 2004 Dag Wieers <dag at wieers.com> - 0.50.18-3
+- Changed LD_ASSUME_KERNEL to 2.4.1 for x86_64.
+
+* Wed May 19 2004 Matthias Saou <http://freshrpms.net/> 0.50.18-2
+- Rebuild for Fedora Core 2.
+
+* Mon Apr 19 2004 Matthias Saou <http://freshrpms.net/> 0.50.18-1
+- Update to 0.50.18.
+
+* Thu Apr 15 2004 Matthias Saou <http://freshrpms.net/> 0.50.17-1
+- Update to 0.50.17.
+
+* Sat Jan 20 2004 Matthias Saou <http://freshrpms.net/> 0.50.16-3
+- Changed the LD_ASSUME_KERNEL from 2.4.19 to 2.2.5 to actually work!
+
+* Tue Nov 11 2003 Matthias Saou <http://freshrpms.net/> 0.50.16-2
+- Rebuild for Fedora Core 1.
+
+* Thu Oct 30 2003 Matthias Saou <http://freshrpms.net/> 0.50.16-1
+- Update to 0.50.16.
+
+* Mon Aug 25 2003 Matthias Saou <http://freshrpms.net/>
+- Update to 0.50.15.
+
+* Sun Jun 29 2003 Matthias Saou <http://freshrpms.net/>
+- Update to 0.50.14.
+
+* Sun May 25 2003 Matthias Saou <http://freshrpms.net/>
+- Update to 0.50.13.
+
+* Sat Apr 26 2003 Matthias Saou <http://freshrpms.net/>
+- Update to 0.50.11.
+
+* Wed Apr  2 2003 Matthias Saou <http://freshrpms.net/>
+- Update to 0.50.10.
+- Fix the automatic dep problem.
+
+* Mon Mar 31 2003 Matthias Saou <http://freshrpms.net/>
+- Rebuilt for Red Hat Linux 9.
+
+* Sat Mar 29 2003 Matthias Saou <http://freshrpms.net/>
+- Update to 0.50.9.
+
+* Fri Mar  7 2003 Matthias Saou <http://freshrpms.net/>
+- Update to 0.50.8.
+
+* Tue Mar  4 2003 Matthias Saou <http://freshrpms.net/>
+- Update to 0.50.7, boy this is going fast! :-)
+
+* Mon Mar  3 2003 Matthias Saou <http://freshrpms.net/>
+- Update to 0.50.5.
+- Update to 0.50.6.
+
+* Mon Feb 24 2003 Matthias Saou <http://freshrpms.net/>
+- Update to 0.50.4.
+
+* Tue Feb 18 2003 Matthias Saou <http://freshrpms.net/>
+- Update to 0.50.3.
+
+* Sun Feb 16 2003 Matthias Saou <http://freshrpms.net/>
+- Update to 0.50.2.
+
+* Mon Feb 10 2003 Matthias Saou <http://freshrpms.net/>
+- Update to 0.50.0.
+
+* Tue Jan  7 2003 Matthias Saou <http://freshrpms.net/>
+- Update to 0.48.8.
+
+* Fri Dec 28 2002 Matthias Saou <http://freshrpms.net/>
+- Update to 0.48.6.
+- Added menu entry.
+
+* Mon Dec  9 2002 Matthias Saou <http://freshrpms.net/>
+- Update to 0.48.5.
+
+* Mon Nov 18 2002 Matthias Saou <http://freshrpms.net/>
+- Update to 0.48.0.
+- At last, rebuilt for Red Hat Linux 8.0.
+
+* Mon Sep 23 2002 Matthias Saou <http://freshrpms.net/>
+- Update to 0.46.
+
+* Thu Aug  8 2002 Matthias Saou <http://freshrpms.net/>
+- Update to 0.44.
+- Added build dependency on Gtk-Perl.
+
+* Tue Jun 25 2002 Matthias Saou <http://freshrpms.net/>
+- Spec file cleanup.
+
+* Sun Jun 16 2002 Nemo <no at one>
+- v0.43
+
+* Sun Jun 09 2002 Nemo <no at one>
+- v0.42
+
+* Tue May 14 2002 Nemo <no at one>
+- v0.40
+
+* Mon May 13 2002 Nemo <no at one>
+- v0.39-2
+- Michel Alexandre Salim <salimma1 at yahoo.co.uk> suggested an improvement in the PATH used by "make test"
+
+* Tue Mar 05 2002 Nemo <no at one>
+- bumped up to v0.34
+
+* Tue Feb 19 2002 Nemo <no at one>
+- bumped up to v0.33
+
+* Mon Feb 18 2002 Nemo <no at one>
+- bumped up to v0.31
+
+* Sun Jan 20 2002 Nemo <no at one>
+- bumped up to v0.30
+
+* Sat Jan 19 2002 Nemo <no at one>
+- bumped up to v0.29
+
+* Sun Jan 06 2002 Nemo <no at one>
+- bumped up to v0.28
+
+* Sat Dec 15 2001 Nemo <no at one>
+- First version, v0.25
+

Deleted: trunk/rpms/perl-Video-DVDRip/Video-DVDRip-0.97.8-nontplworkaround.patch
===================================================================
--- trunk/rpms/perl-Video-DVDRip/Video-DVDRip-0.97.8-nontplworkaround.patch	2006-09-18 14:39:08 UTC (rev 4730)
+++ trunk/rpms/perl-Video-DVDRip/Video-DVDRip-0.97.8-nontplworkaround.patch	2006-09-18 15:16:56 UTC (rev 4731)
@@ -1,12 +0,0 @@
-diff -Naupr Video-DVDRip-0.97.8.orig/lib/Video/DVDRip/Config.pm Video-DVDRip-0.97.8/lib/Video/DVDRip/Config.pm
---- Video-DVDRip-0.97.8.orig/lib/Video/DVDRip/Config.pm	2006-03-31 22:05:49.000000000 +0200
-+++ Video-DVDRip-0.97.8/lib/Video/DVDRip/Config.pm	2006-04-19 13:12:53.000000000 +0200
-@@ -405,7 +405,7 @@ my %CONFIG_PARAMETER = (
-     workaround_nptl_bugs => {
-         label => __ "Workaround transcode NPTL bugs",
-         type  => 'switch',
--        value => 1,
-+        value => 0,
-     },
-     nptl_ld_assume_kernel => {
-         label   => __ "Set LD_ASSUME_KERNEL to",

Deleted: trunk/rpms/perl-Video-DVDRip/perl-Video-DVDRip.spec
===================================================================
--- trunk/rpms/perl-Video-DVDRip/perl-Video-DVDRip.spec	2006-09-18 14:39:08 UTC (rev 4730)
+++ trunk/rpms/perl-Video-DVDRip/perl-Video-DVDRip.spec	2006-09-18 15:16:56 UTC (rev 4731)
@@ -1,308 +0,0 @@
-# $Id$
-# Authority: matthias
-
-%{?dist: %{expand: %%define %dist 1}}
-
-%{?rh7:%define _without_freedesktop 1}
-%{?el2:%define _without_freedesktop 1}
-
-%define desktop_vendor  rpmforge
-%define perl_sitelib    %(eval "`perl -V:installsitelib`"; echo $installsitelib)
-
-Summary: Graphical DVD ripping and encoding tool based on transcode
-Name: perl-Video-DVDRip
-Version: 0.98.1
-Release: 1
-License: Artistic or GPL
-Group: Applications/Multimedia
-URL: http://www.exit1.org/dvdrip/
-Source: http://www.exit1.org/dvdrip/dist/dvdrip-%{version}.tar.gz
-Patch0: Video-DVDRip-0.97.8-nontplworkaround.patch
-BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
-Requires: transcode >= 0.6.13
-Requires: ImageMagick, ogmtools, subtitleripper, vcdimager, lsdvd
-Requires: perl(Gtk2) >= 1.081, perl(Gtk2::Ex::FormFactory) >= 0.65
-Requires: perl(Locale::TextDomain) >= 1.16, perl(Event::ExecFlow) >= 0.62
-BuildRequires: perl(Gtk2) >= 1.081, perl(Gtk2::Ex::FormFactory) >= 0.65
-BuildRequires: perl(Locale::TextDomain) >= 1.16, perl(Event::ExecFlow) >= 0.62
-BuildRequires: perl(Event::RPC)
-%{!?_without_freedesktop:BuildRequires: desktop-file-utils}
-Provides: dvdrip = %{version}-%{release}
-
-%description
-dvd::rip is a full featured DVD copy program. It provides an easy to use but
-feature-rich Gtk+ GUI to control almost all aspects of the ripping and
-transcoding process. It uses the widely known video processing swissknife
-transcode and many other Open Source tools.
-
-
-%prep
-%setup -n dvdrip-%{version}
-%patch0 -p1 -b .nontplworkaround
-
-
-%build
-%{__perl} Makefile.PL
-# Disable %{?_smp_mflags}, it makes build fail (0.98.0)
-%{__make}
-
-
-%install
-%{__rm} -rf %{buildroot}
-%{__make} install \
-    INSTALLSCRIPT=%{buildroot}%{_bindir} \
-    INSTALLSITELIB=%{buildroot}%{perl_sitelib} \
-    INSTALLSITEARCH=%{buildroot}%{perl_sitearch} \
-    INSTALLMAN1DIR=%{buildroot}%{_mandir}/man1 \
-    INSTALLSITEMAN1DIR=%{buildroot}%{_mandir}/man1 \
-    INST_MAN1DIR=%{buildroot}%{_mandir}/man1 \
-    INSTALLMAN3DIR=%{buildroot}%{_mandir}/man3 \
-    INSTALLSITEMAN3DIR=%{buildroot}%{_mandir}/man3 \
-    INST_MAN3DIR=%{buildroot}%{_mandir}/man3
-
-# Unpackaged strange files!
-%{__rm} -f %{buildroot}%{_mandir}/man?/.exists* || :
-
-# Unneeded, all is in sitelib (only a .packlist in there)
-%{__rm} -rf %{buildroot}%{perl_sitearch}
-
-# Desktop entry
-%{__cat} > dvdrip.desktop << EOF
-[Desktop Entry]
-Name=DVD Ripper and Encoder
-Comment=Backup and compression utility for DVDs
-Exec=dvdrip
-Icon=%{perl_sitelib}/Video/DVDRip/icon.xpm
-Terminal=false
-Type=Application
-Categories=Application;AudioVideo;
-EOF
-
-%if %{?_without_freedesktop:1}0
-    %{__install} -D -p -m 0644 dvdrip.desktop \
-        %{buildroot}%{_sysconfdir}/X11/applnk/Multimedia/dvdrip.desktop
-%else
-    %{__mkdir_p} %{buildroot}%{_datadir}/applications
-    desktop-file-install --vendor %{desktop_vendor} \
-        --dir %{buildroot}%{_datadir}/applications \
-        dvdrip.desktop
-%endif
-
-
-%clean
-%{__rm} -rf %{buildroot}
-
-
-%files
-%defattr(-, root, root, 0755)
-%doc Changes COPYRIGHT Credits README TODO
-%attr(0755, root, root) %{_bindir}/*
-%lang(cs) %{perl_sitelib}/LocaleData/cs/LC_MESSAGES/video.dvdrip.mo
-%lang(de) %{perl_sitelib}/LocaleData/de/LC_MESSAGES/video.dvdrip.mo
-%lang(es) %{perl_sitelib}/LocaleData/es/LC_MESSAGES/video.dvdrip.mo
-%lang(fr) %{perl_sitelib}/LocaleData/fr/LC_MESSAGES/video.dvdrip.mo
-%lang(it) %{perl_sitelib}/LocaleData/it/LC_MESSAGES/video.dvdrip.mo
-%lang(sr) %{perl_sitelib}/LocaleData/sr/LC_MESSAGES/video.dvdrip.mo
-%{perl_sitelib}/Video/
-%{!?_without_freedesktop:%{_datadir}/applications/%{desktop_vendor}-dvdrip.desktop}
-%{?_without_freedesktop:/etc/X11/applnk/Multimedia/dvdrip.desktop}
-%{_mandir}/man*/*
-
-
-%changelog
-* Mon Aug 28 2006 Matthias Saou <http://freshrpms.net/> 0.98.1-1
-- Update to 0.98.1.
-
-* Tue Aug 22 2006 Matthias Saou <http://freshrpms.net/> 0.98.0-1
-- Update to 0.98.0.
-- Upstream changed the tarball name to "dvdrip" now, the package will probably
-  change soon. Provide dvdrip with same V-R for now.
-- Add perl(Event::RPC) build requirement, otherwise the bundled gets installed.
-- Update source URL and description.
-
-* Sun Jul  2 2006 Matthias Saou <http://freshrpms.net/> 0.97.12-1
-- Update to 0.97.12.
-- Remove no longer needed tet patch, since we use the "fixed" source.
-- Now require Gtk2::Ex::FormFactory >= 0.65.
-
-* Tue Jun 20 2006 Matthias Saou <http://freshrpms.net/> 0.97.11-2
-- Exclude experimental dvdrip-tet binary, since it also had a leftover
-  reference to FixLocaleTextDomainUTF8 that broke the automatically
-  generated dependencies.
-
-* Mon Jun 19 2006 Matthias Saou <http://freshrpms.net/> 0.97.11-1
-- Update to 0.97.11.
-
-* Tue Apr 25 2006 Matthias Saou <http://freshrpms.net/> 0.97.10-1
-- Update to 0.97.10.
-
-* Wed Apr 19 2006 Matthias Saou <http://freshrpms.net/> 0.97.8-1
-- Update to 0.97.8.
-- Update NPTL workaround disabling patch.
-- Require Gtk2-Ex-FormFactory >= 0.62.
-- Fix Source URL to point to valid location (was missing "/pre").
-
-* Thu Mar 23 2006 Matthias Saou <http://freshrpms.net/> 0.97.6-3
-- Add patch to default to NPTL workaround disabled, since it's causing dvd::rip
-  to not work properly on FC5.
-- Add lsdvd requirement, since it's used for faster DVD TOC reading.
-
-* Fri Mar 17 2006 Matthias Saou <http://freshrpms.net/> 0.97.6-2
-- Remove _smp_mflags as it makes the build fail.
-
-* Mon Jan  9 2006 Matthias Saou <http://freshrpms.net/> 0.97.6-1
-- Update to gtk2 branch at last, 0.97.6.
-- Include doc.
-- Re-enable auto-requires, so perl(Event) is now required.
-
-* Sun Jul 31 2005 Matthias Saou <http://freshrpms.net/> 0.52.6-1
-- Update to 0.52.6.
-
-* Mon May 23 2005 Matthias Saou <http://freshrpms.net/> 0.52.5-1
-- Update to 0.52.5.
-
-* Tue May 17 2005 Matthias Saou <http://freshrpms.net/> 0.52.4-1
-- Update to 0.52.4.
-
-* Mon Mar 14 2005 Matthias Saou <http://freshrpms.net/> 0.52.3-1
-- Update to 0.52.3.
-
-* Sun Jan  9 2005 Matthias Saou <http://freshrpms.net/> 0.52.2-1
-- Update to 0.52.2.
-
-* Tue Jan  4 2005 Matthias Saou <http://freshrpms.net/> 0.52.0-1
-- Update to 0.52.0.
-
-* Mon Dec 13 2004 Matthias Saou <http://freshrpms.net/> 0.51.4-0
-- Update to 0.51.4.
-
-* Sun Dec 12 2004 Matthias Saou <http://freshrpms.net/> 0.51.3-0
-- Update to 0.51.3.
-
-* Fri Oct 29 2004 Matthias Saou <http://freshrpms.net/> 0.51.2-0
-- Update to unstable 0.51.2, as it adds compatibility for transcode 0.6.13.
-- Added translations that are now included and perl(Locale::Messages) dep.
-
-* Sun Jul 11 2004 Dag Wieers <dag at wieers.com> - 0.50.18-3
-- Changed LD_ASSUME_KERNEL to 2.4.1 for x86_64.
-
-* Wed May 19 2004 Matthias Saou <http://freshrpms.net/> 0.50.18-2
-- Rebuild for Fedora Core 2.
-
-* Mon Apr 19 2004 Matthias Saou <http://freshrpms.net/> 0.50.18-1
-- Update to 0.50.18.
-
-* Thu Apr 15 2004 Matthias Saou <http://freshrpms.net/> 0.50.17-1
-- Update to 0.50.17.
-
-* Sat Jan 20 2004 Matthias Saou <http://freshrpms.net/> 0.50.16-3
-- Changed the LD_ASSUME_KERNEL from 2.4.19 to 2.2.5 to actually work!
-
-* Tue Nov 11 2003 Matthias Saou <http://freshrpms.net/> 0.50.16-2
-- Rebuild for Fedora Core 1.
-
-* Thu Oct 30 2003 Matthias Saou <http://freshrpms.net/> 0.50.16-1
-- Update to 0.50.16.
-
-* Mon Aug 25 2003 Matthias Saou <http://freshrpms.net/>
-- Update to 0.50.15.
-
-* Sun Jun 29 2003 Matthias Saou <http://freshrpms.net/>
-- Update to 0.50.14.
-
-* Sun May 25 2003 Matthias Saou <http://freshrpms.net/>
-- Update to 0.50.13.
-
-* Sat Apr 26 2003 Matthias Saou <http://freshrpms.net/>
-- Update to 0.50.11.
-
-* Wed Apr  2 2003 Matthias Saou <http://freshrpms.net/>
-- Update to 0.50.10.
-- Fix the automatic dep problem.
-
-* Mon Mar 31 2003 Matthias Saou <http://freshrpms.net/>
-- Rebuilt for Red Hat Linux 9.
-
-* Sat Mar 29 2003 Matthias Saou <http://freshrpms.net/>
-- Update to 0.50.9.
-
-* Fri Mar  7 2003 Matthias Saou <http://freshrpms.net/>
-- Update to 0.50.8.
-
-* Tue Mar  4 2003 Matthias Saou <http://freshrpms.net/>
-- Update to 0.50.7, boy this is going fast! :-)
-
-* Mon Mar  3 2003 Matthias Saou <http://freshrpms.net/>
-- Update to 0.50.5.
-- Update to 0.50.6.
-
-* Mon Feb 24 2003 Matthias Saou <http://freshrpms.net/>
-- Update to 0.50.4.
-
-* Tue Feb 18 2003 Matthias Saou <http://freshrpms.net/>
-- Update to 0.50.3.
-
-* Sun Feb 16 2003 Matthias Saou <http://freshrpms.net/>
-- Update to 0.50.2.
-
-* Mon Feb 10 2003 Matthias Saou <http://freshrpms.net/>
-- Update to 0.50.0.
-
-* Tue Jan  7 2003 Matthias Saou <http://freshrpms.net/>
-- Update to 0.48.8.
-
-* Fri Dec 28 2002 Matthias Saou <http://freshrpms.net/>
-- Update to 0.48.6.
-- Added menu entry.
-
-* Mon Dec  9 2002 Matthias Saou <http://freshrpms.net/>
-- Update to 0.48.5.
-
-* Mon Nov 18 2002 Matthias Saou <http://freshrpms.net/>
-- Update to 0.48.0.
-- At last, rebuilt for Red Hat Linux 8.0.
-
-* Mon Sep 23 2002 Matthias Saou <http://freshrpms.net/>
-- Update to 0.46.
-
-* Thu Aug  8 2002 Matthias Saou <http://freshrpms.net/>
-- Update to 0.44.
-- Added build dependency on Gtk-Perl.
-
-* Tue Jun 25 2002 Matthias Saou <http://freshrpms.net/>
-- Spec file cleanup.
-
-* Sun Jun 16 2002 Nemo <no at one>
-- v0.43
-
-* Sun Jun 09 2002 Nemo <no at one>
-- v0.42
-
-* Tue May 14 2002 Nemo <no at one>
-- v0.40
-
-* Mon May 13 2002 Nemo <no at one>
-- v0.39-2
-- Michel Alexandre Salim <salimma1 at yahoo.co.uk> suggested an improvement in the PATH used by "make test"
-
-* Tue Mar 05 2002 Nemo <no at one>
-- bumped up to v0.34
-
-* Tue Feb 19 2002 Nemo <no at one>
-- bumped up to v0.33
-
-* Mon Feb 18 2002 Nemo <no at one>
-- bumped up to v0.31
-
-* Sun Jan 20 2002 Nemo <no at one>
-- bumped up to v0.30
-
-* Sat Jan 19 2002 Nemo <no at one>
-- bumped up to v0.29
-
-* Sun Jan 06 2002 Nemo <no at one>
-- bumped up to v0.28
-
-* Sat Dec 15 2001 Nemo <no at one>
-- First version, v0.25
-



More information about the svn-commits mailing list