From 772607a3097a367f4c92b3fa342c43a4e6fcedde Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Mon, 27 Jul 2009 08:17:06 +0000 Subject: [PATCH 1/8] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- xmms-modplug.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xmms-modplug.spec b/xmms-modplug.spec index 5b79bb2..1ca26b3 100644 --- a/xmms-modplug.spec +++ b/xmms-modplug.spec @@ -2,7 +2,7 @@ Name: xmms-modplug Version: 2.05 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Modplug Plugin for XMMS License: Public Domain @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 27 2009 Fedora Release Engineering - 2.05-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Fri Mar 6 2009 Ville Skyttä - 2.05-15 - Add %%{?_isa} to xmms-libs dependency. From eb5404888b591656e11df887e2af53a94686cc83 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 22:41:01 +0000 Subject: [PATCH 2/8] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ac89726..55b0f57 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := xmms-modplug SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From cea2ccf4a0ba25444df564f95d841dca866732c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Thu, 8 Apr 2010 20:45:16 +0000 Subject: [PATCH 3/8] - Link modplugplay with alsa-oss to make it more likely to work OOTB. --- xmms-modplug-2.05-modplugplay-aoss.patch | 12 ++++++ xmms-modplug.spec | 47 ++++++++++++++---------- 2 files changed, 39 insertions(+), 20 deletions(-) create mode 100644 xmms-modplug-2.05-modplugplay-aoss.patch diff --git a/xmms-modplug-2.05-modplugplay-aoss.patch b/xmms-modplug-2.05-modplugplay-aoss.patch new file mode 100644 index 0000000..4e032fd --- /dev/null +++ b/xmms-modplug-2.05-modplugplay-aoss.patch @@ -0,0 +1,12 @@ +diff -up modplugxmms-2.05/modplugplay/Makefile.in~ modplugxmms-2.05/modplugplay/Makefile.in +--- modplugxmms-2.05/modplugplay/Makefile.in 2003-10-16 13:48:24.000000000 +0300 ++++ modplugxmms-2.05/modplugplay/Makefile.in 2010-04-07 21:19:46.000000000 +0300 +@@ -122,7 +122,7 @@ INCLUDES = \ + + + modplugplay_SOURCES = modplugplay.c +-modplugplay_LDADD = $(LIBMODPLUG_LIBS) ++modplugplay_LDADD = $(LIBMODPLUG_LIBS) -laoss + subdir = modplugplay + mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs + CONFIG_HEADER = $(top_builddir)/config.h diff --git a/xmms-modplug.spec b/xmms-modplug.spec index 1ca26b3..6932c25 100644 --- a/xmms-modplug.spec +++ b/xmms-modplug.spec @@ -2,7 +2,7 @@ Name: xmms-modplug Version: 2.05 -Release: 16%{?dist} +Release: 17%{?dist} Summary: Modplug Plugin for XMMS License: Public Domain @@ -11,12 +11,14 @@ URL: http://modplug-xmms.sourceforge.net/ Source: http://dl.sf.net/modplug-xmms/modplugxmms-%{version}.tar.gz Patch0: %{name}-2.05-archivers.patch Patch1: %{name}-2.05-includes.patch +Patch2: %{name}-2.05-modplugplay-aoss.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: xmms-devel BuildRequires: gtk+-devel BuildRequires: gettext BuildRequires: libmodplug-devel >= 1:0.7 +BuildRequires: alsa-oss-devel BuildConflicts: %{name} < 2.0 Requires: xmms-libs%{?_isa} Provides: modplug-xmms = %{version}-%{release} @@ -28,22 +30,24 @@ from ModPlug, a popular windows mod player written by Olivier Lapicque, found at . %package -n modplugplay -Summary: Command line mod player +Summary: Command line mod music player Group: Applications/Multimedia %description -n modplugplay -A command line mod player. +A command line mod music player. %prep %setup -q -n modplugxmms-%{version} sed -e 's|"/usr/bin/uzip"|"/usr/bin/unzip"|' %{PATCH0} | patch -p1 %patch1 -p1 +%patch2 -p1 +touch -r configure modplugplay/Makefile.in # for patch2, avoid autotools re-run ln -sf %{_includedir}/xmms/plugin.h modplugxmms/plugin.h %build -%configure --disable-dependency-tracking +%configure make %{?_smp_mflags} @@ -68,69 +72,72 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Apr 8 2010 Ville Skyttä - 2.05-17 +- Link modplugplay with alsa-oss to make it more likely to work OOTB. + * Mon Jul 27 2009 Fedora Release Engineering - 2.05-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild -* Fri Mar 6 2009 Ville Skyttä - 2.05-15 +* Fri Mar 6 2009 Ville Skyttä - 2.05-15 - Add %%{?_isa} to xmms-libs dependency. * Thu Feb 26 2009 Fedora Release Engineering - 2.05-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild -* Sat Aug 30 2008 Ville Skyttä - 2.05-13 +* Sat Aug 30 2008 Ville Skyttä - 2.05-13 - Unfuzz patches. -* Thu Jan 3 2008 Ville Skyttä - 2.05-12 +* Thu Jan 3 2008 Ville Skyttä - 2.05-12 - Fix build with gcc 4.3's cleaned up C++ headers. -* Wed Aug 22 2007 Ville Skyttä - 2.05-11 +* Wed Aug 22 2007 Ville Skyttä - 2.05-11 - Rebuild. -* Mon Aug 6 2007 Ville Skyttä - 2.05-10 +* Mon Aug 6 2007 Ville Skyttä - 2.05-10 - Build with plugin.h from xmms-devel instead of a private copy. -* Thu Jul 5 2007 Ville Skyttä - 2.05-9 +* Thu Jul 5 2007 Ville Skyttä - 2.05-9 - Rebuild to fix symbol lookup failures on i386 (#247146). -* Tue Dec 12 2006 Ville Skyttä - 2.05-8 +* Tue Dec 12 2006 Ville Skyttä - 2.05-8 - Apply upstream patch to fix crash if some unarchivers are not found (#217195) -* Wed Aug 30 2006 Ville Skyttä - 2.05-7 +* Wed Aug 30 2006 Ville Skyttä - 2.05-7 - Rebuild. -* Thu Apr 6 2006 Ville Skyttä - 2.05-6 +* Thu Apr 6 2006 Ville Skyttä - 2.05-6 - Require xmms-libs instead of xmms. -* Tue Feb 14 2006 Ville Skyttä - 2.05-5 +* Tue Feb 14 2006 Ville Skyttä - 2.05-5 - Rebuild, cosmetics. * Thu Aug 25 2005 Warren Togami - 2.05-4 - rebuild (#166814) -* Thu May 19 2005 Ville Skyttä - 2.05-3 +* Thu May 19 2005 Ville Skyttä - 2.05-3 - Rebuild. * Fri Apr 7 2005 Michael Schwendt - 2.05-2 - rebuilt -* Fri Oct 17 2003 Ville Skyttä - 0:2.05-0.fdr.1 +* Fri Oct 17 2003 Ville Skyttä - 0:2.05-0.fdr.1 - Update to 2.05. - Split libmodplug into its own package. -* Thu Jul 24 2003 Ville Skyttä - 0:2.04-0.fdr.2 +* Thu Jul 24 2003 Ville Skyttä - 0:2.04-0.fdr.2 - Use libtoolize and friends to fix build on Severn (bug 489). -* Tue May 13 2003 Ville Skyttä - 0:2.04-0.fdr.1 +* Tue May 13 2003 Ville Skyttä - 0:2.04-0.fdr.1 - Update to 2.04. - No longer requires compat-gcc-c++, builds with GCC 3.2. - Includes a command line player (in modplugplay subpackage). - %%{buildroot} -> $RPM_BUILD_ROOT. -* Sun Apr 13 2003 Ville Skyttä - 0:2.03-0.fdr.2 +* Sun Apr 13 2003 Ville Skyttä - 0:2.03-0.fdr.2 - Change package name to xmms-modplug and provide modplug-xmms (#132). - Use xmms-config for getting the plugin dir (#132). -* Sat Apr 5 2003 Ville Skyttä - 0:2.03-0.fdr.1 +* Sat Apr 5 2003 Ville Skyttä - 0:2.03-0.fdr.1 - First Fedora release, based on MDK cooker one. - Save .spec in UTF-8. From 9a66cedac4eeae8a06cf7c01c2c7cc54c49972a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Mon, 31 May 2010 21:50:28 +0000 Subject: [PATCH 4/8] - Rebuild. --- xmms-modplug.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xmms-modplug.spec b/xmms-modplug.spec index 6932c25..7052082 100644 --- a/xmms-modplug.spec +++ b/xmms-modplug.spec @@ -2,7 +2,7 @@ Name: xmms-modplug Version: 2.05 -Release: 17%{?dist} +Release: 18%{?dist} Summary: Modplug Plugin for XMMS License: Public Domain @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jun 1 2010 Ville Skyttä - 2.05-18 +- Rebuild. + * Thu Apr 8 2010 Ville Skyttä - 2.05-17 - Link modplugplay with alsa-oss to make it more likely to work OOTB. From 05e840a20597d4866ec5b065827df13b71f5a7cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Wed, 23 Jun 2010 15:46:49 +0000 Subject: [PATCH 5/8] - Drop modplugplay, it's in modplugtools now (#600835). --- xmms-modplug-2.05-modplugplay-aoss.patch | 12 ------------ xmms-modplug.spec | 25 +++++++----------------- 2 files changed, 7 insertions(+), 30 deletions(-) delete mode 100644 xmms-modplug-2.05-modplugplay-aoss.patch diff --git a/xmms-modplug-2.05-modplugplay-aoss.patch b/xmms-modplug-2.05-modplugplay-aoss.patch deleted file mode 100644 index 4e032fd..0000000 --- a/xmms-modplug-2.05-modplugplay-aoss.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -up modplugxmms-2.05/modplugplay/Makefile.in~ modplugxmms-2.05/modplugplay/Makefile.in ---- modplugxmms-2.05/modplugplay/Makefile.in 2003-10-16 13:48:24.000000000 +0300 -+++ modplugxmms-2.05/modplugplay/Makefile.in 2010-04-07 21:19:46.000000000 +0300 -@@ -122,7 +122,7 @@ INCLUDES = \ - - - modplugplay_SOURCES = modplugplay.c --modplugplay_LDADD = $(LIBMODPLUG_LIBS) -+modplugplay_LDADD = $(LIBMODPLUG_LIBS) -laoss - subdir = modplugplay - mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs - CONFIG_HEADER = $(top_builddir)/config.h diff --git a/xmms-modplug.spec b/xmms-modplug.spec index 7052082..4525cf9 100644 --- a/xmms-modplug.spec +++ b/xmms-modplug.spec @@ -2,7 +2,7 @@ Name: xmms-modplug Version: 2.05 -Release: 18%{?dist} +Release: 19%{?dist} Summary: Modplug Plugin for XMMS License: Public Domain @@ -11,14 +11,12 @@ URL: http://modplug-xmms.sourceforge.net/ Source: http://dl.sf.net/modplug-xmms/modplugxmms-%{version}.tar.gz Patch0: %{name}-2.05-archivers.patch Patch1: %{name}-2.05-includes.patch -Patch2: %{name}-2.05-modplugplay-aoss.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: xmms-devel BuildRequires: gtk+-devel BuildRequires: gettext BuildRequires: libmodplug-devel >= 1:0.7 -BuildRequires: alsa-oss-devel BuildConflicts: %{name} < 2.0 Requires: xmms-libs%{?_isa} Provides: modplug-xmms = %{version}-%{release} @@ -29,31 +27,23 @@ plays mod-like music formats. It is based on the mod rendering code from ModPlug, a popular windows mod player written by Olivier Lapicque, found at . -%package -n modplugplay -Summary: Command line mod music player -Group: Applications/Multimedia - -%description -n modplugplay -A command line mod music player. - %prep %setup -q -n modplugxmms-%{version} sed -e 's|"/usr/bin/uzip"|"/usr/bin/unzip"|' %{PATCH0} | patch -p1 %patch1 -p1 -%patch2 -p1 -touch -r configure modplugplay/Makefile.in # for patch2, avoid autotools re-run ln -sf %{_includedir}/xmms/plugin.h modplugxmms/plugin.h %build %configure -make %{?_smp_mflags} +make -C modplugxmms %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT XMMS_INPUT_PLUGIN_DIR=%{plugdir} +make -C modplugxmms install \ + DESTDIR=$RPM_BUILD_ROOT XMMS_INPUT_PLUGIN_DIR=%{plugdir} rm -f $RPM_BUILD_ROOT{%{_libdir}/*.la,%{plugdir}/*.la} @@ -66,12 +56,11 @@ rm -rf $RPM_BUILD_ROOT %doc AUTHORS ChangeLog COPYING README TODO %{plugdir}/libmodplugxmms.so -%files -n modplugplay -%defattr(-,root,root,-) -%{_bindir}/modplugplay - %changelog +* Wed Jun 23 2010 Ville Skyttä - 2.05-19 +- Drop modplugplay, it's in modplugtools now (#600835). + * Tue Jun 1 2010 Ville Skyttä - 2.05-18 - Rebuild. From b4149168adc491c364d31374c887206f1f54355c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 16:00:05 +0000 Subject: [PATCH 6/8] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- 2 files changed, 21 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 55b0f57..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: xmms-modplug -# $Id$ -NAME := xmms-modplug -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) From dbc76c9385cc887fe8524c54d21fe79243cc65bc Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Feb 2011 23:43:13 -0600 Subject: [PATCH 7/8] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- xmms-modplug.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xmms-modplug.spec b/xmms-modplug.spec index 4525cf9..a3920f4 100644 --- a/xmms-modplug.spec +++ b/xmms-modplug.spec @@ -2,7 +2,7 @@ Name: xmms-modplug Version: 2.05 -Release: 19%{?dist} +Release: 20%{?dist} Summary: Modplug Plugin for XMMS License: Public Domain @@ -58,6 +58,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Feb 07 2011 Fedora Release Engineering - 2.05-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Wed Jun 23 2010 Ville Skyttä - 2.05-19 - Drop modplugplay, it's in modplugtools now (#600835). From 701349b885c9527297cc15ba4cbe739512acf785 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Mon, 25 Jul 2011 18:26:05 -0400 Subject: [PATCH 8/8] Retire xmms-modplug. --- dead.package | 1 + sources | 2 - xmms-modplug-2.05-includes.patch | 15 --- xmms-modplug.spec | 205 ------------------------------- 4 files changed, 1 insertion(+), 222 deletions(-) create mode 100644 dead.package delete mode 100644 sources delete mode 100644 xmms-modplug-2.05-includes.patch delete mode 100644 xmms-modplug.spec diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..6c90bdc --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +This package was retired on 2011-07-25 due to it being unable to build this package for multiple releases (FTBFS). diff --git a/sources b/sources deleted file mode 100644 index 824be5e..0000000 --- a/sources +++ /dev/null @@ -1,2 +0,0 @@ -2dd9b88a02978d3001b48863b8cffc5b modplugxmms-2.05.tar.gz -ca28ee9780105ba66034aaecd890f1b7 xmms-modplug-2.05-archivers.patch diff --git a/xmms-modplug-2.05-includes.patch b/xmms-modplug-2.05-includes.patch deleted file mode 100644 index 4dfc1e4..0000000 --- a/xmms-modplug-2.05-includes.patch +++ /dev/null @@ -1,15 +0,0 @@ -diff -pU1 modplugxmms-2.05/modplugxmms/archive/arch_gzip.cpp~ modplugxmms-2.05/modplugxmms/archive/arch_gzip.cpp ---- modplugxmms-2.05/modplugxmms/archive/arch_gzip.cpp~ 2003-10-16 07:19:24.000000000 +0300 -+++ modplugxmms-2.05/modplugxmms/archive/arch_gzip.cpp 2008-08-30 19:34:14.000000000 +0300 -@@ -14,2 +14,3 @@ - #include "arch_gzip.h" -+#include - -diff -pU1 modplugxmms-2.05/modplugxmms/archive/arch_rar.cpp~ modplugxmms-2.05/modplugxmms/archive/arch_rar.cpp ---- modplugxmms-2.05/modplugxmms/archive/arch_rar.cpp~ 2003-10-16 07:24:06.000000000 +0300 -+++ modplugxmms-2.05/modplugxmms/archive/arch_rar.cpp 2008-08-30 19:34:19.000000000 +0300 -@@ -14,2 +14,4 @@ - #include "arch_rar.h" -+#include -+#include - #include diff --git a/xmms-modplug.spec b/xmms-modplug.spec deleted file mode 100644 index a3920f4..0000000 --- a/xmms-modplug.spec +++ /dev/null @@ -1,205 +0,0 @@ -%define plugdir %(xmms-config --input-plugin-dir 2>/dev/null) - -Name: xmms-modplug -Version: 2.05 -Release: 20%{?dist} -Summary: Modplug Plugin for XMMS - -License: Public Domain -Group: Applications/Multimedia -URL: http://modplug-xmms.sourceforge.net/ -Source: http://dl.sf.net/modplug-xmms/modplugxmms-%{version}.tar.gz -Patch0: %{name}-2.05-archivers.patch -Patch1: %{name}-2.05-includes.patch -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) - -BuildRequires: xmms-devel -BuildRequires: gtk+-devel -BuildRequires: gettext -BuildRequires: libmodplug-devel >= 1:0.7 -BuildConflicts: %{name} < 2.0 -Requires: xmms-libs%{?_isa} -Provides: modplug-xmms = %{version}-%{release} - -%description -Modplug-XMMS is a fully featured, complete input plugin for XMMS which -plays mod-like music formats. It is based on the mod rendering code -from ModPlug, a popular windows mod player written by Olivier -Lapicque, found at . - - -%prep -%setup -q -n modplugxmms-%{version} -sed -e 's|"/usr/bin/uzip"|"/usr/bin/unzip"|' %{PATCH0} | patch -p1 -%patch1 -p1 -ln -sf %{_includedir}/xmms/plugin.h modplugxmms/plugin.h - - -%build -%configure -make -C modplugxmms %{?_smp_mflags} - - -%install -rm -rf $RPM_BUILD_ROOT -make -C modplugxmms install \ - DESTDIR=$RPM_BUILD_ROOT XMMS_INPUT_PLUGIN_DIR=%{plugdir} -rm -f $RPM_BUILD_ROOT{%{_libdir}/*.la,%{plugdir}/*.la} - - -%clean -rm -rf $RPM_BUILD_ROOT - - -%files -%defattr(-,root,root,-) -%doc AUTHORS ChangeLog COPYING README TODO -%{plugdir}/libmodplugxmms.so - - -%changelog -* Mon Feb 07 2011 Fedora Release Engineering - 2.05-20 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Wed Jun 23 2010 Ville Skyttä - 2.05-19 -- Drop modplugplay, it's in modplugtools now (#600835). - -* Tue Jun 1 2010 Ville Skyttä - 2.05-18 -- Rebuild. - -* Thu Apr 8 2010 Ville Skyttä - 2.05-17 -- Link modplugplay with alsa-oss to make it more likely to work OOTB. - -* Mon Jul 27 2009 Fedora Release Engineering - 2.05-16 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Fri Mar 6 2009 Ville Skyttä - 2.05-15 -- Add %%{?_isa} to xmms-libs dependency. - -* Thu Feb 26 2009 Fedora Release Engineering - 2.05-14 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Sat Aug 30 2008 Ville Skyttä - 2.05-13 -- Unfuzz patches. - -* Thu Jan 3 2008 Ville Skyttä - 2.05-12 -- Fix build with gcc 4.3's cleaned up C++ headers. - -* Wed Aug 22 2007 Ville Skyttä - 2.05-11 -- Rebuild. - -* Mon Aug 6 2007 Ville Skyttä - 2.05-10 -- Build with plugin.h from xmms-devel instead of a private copy. - -* Thu Jul 5 2007 Ville Skyttä - 2.05-9 -- Rebuild to fix symbol lookup failures on i386 (#247146). - -* Tue Dec 12 2006 Ville Skyttä - 2.05-8 -- Apply upstream patch to fix crash if some unarchivers are not found (#217195) - -* Wed Aug 30 2006 Ville Skyttä - 2.05-7 -- Rebuild. - -* Thu Apr 6 2006 Ville Skyttä - 2.05-6 -- Require xmms-libs instead of xmms. - -* Tue Feb 14 2006 Ville Skyttä - 2.05-5 -- Rebuild, cosmetics. - -* Thu Aug 25 2005 Warren Togami - 2.05-4 -- rebuild (#166814) - -* Thu May 19 2005 Ville Skyttä - 2.05-3 -- Rebuild. - -* Fri Apr 7 2005 Michael Schwendt - 2.05-2 -- rebuilt - -* Fri Oct 17 2003 Ville Skyttä - 0:2.05-0.fdr.1 -- Update to 2.05. -- Split libmodplug into its own package. - -* Thu Jul 24 2003 Ville Skyttä - 0:2.04-0.fdr.2 -- Use libtoolize and friends to fix build on Severn (bug 489). - -* Tue May 13 2003 Ville Skyttä - 0:2.04-0.fdr.1 -- Update to 2.04. -- No longer requires compat-gcc-c++, builds with GCC 3.2. -- Includes a command line player (in modplugplay subpackage). -- %%{buildroot} -> $RPM_BUILD_ROOT. - -* Sun Apr 13 2003 Ville Skyttä - 0:2.03-0.fdr.2 -- Change package name to xmms-modplug and provide modplug-xmms (#132). -- Use xmms-config for getting the plugin dir (#132). - -* Sat Apr 5 2003 Ville Skyttä - 0:2.03-0.fdr.1 -- First Fedora release, based on MDK cooker one. -- Save .spec in UTF-8. - -* Tue Mar 11 2003 Götz Waschk 2.03-4mdk -- mklibname macro - -* Tue Mar 11 2003 Götz Waschk 2.03-3mdk -- fix buildrequires - -* Sat Dec 21 2002 Götz Waschk 2.03-2mdk -- fix build for rpm -- patch1: don't flush output device (compatibility with the crossfader) - -* Wed Oct 16 2002 Götz Waschk 2.03-1mdk -- autoconf 2.5 macro -- use included configure script -- 2.03 - -* Fri Aug 16 2002 Götz Waschk 2.02-3mdk -- gcc 3.2-0.3mdk build - -* Mon Jul 29 2002 Götz Waschk 2.02-2mdk -- gcc 3.2 build - -* Tue Jul 23 2002 Götz Waschk 2.02-1mdk -- 2.02 -- drop pstreams and patch, not needed anymore -- use bugfix patch from the author -- enable nls to make it build - -* Tue Jun 18 2002 Götz Waschk 2.01-1mdk -- 2.01 -- drop patch1 - -* Sun Jun 9 2002 Götz Waschk 2.0-2mdk -- gcc 3.1 port (bzip2 and gzip support currently broken) - -* Mon Oct 29 2001 Götz Waschk 2.0-1mdk -- split library package -- patched for creating versioned library libmodplug.so.0 -- updated files section -- BuildConflicts older modplug-xmms -- 2.0 -- changed License tag, now it's Public Domain - -* Tue Aug 21 2001 Lenny Cartier 1.5a-3mdk -- too fast - -* Tue Aug 21 2001 Lenny Cartier 1.5a-2mdk -- rebuild - -* Tue Feb 20 2001 Lenny Cartier 1.5a-1mdk -- udpated by Götz Waschk : - - 1.5a - -* Fri Jan 26 2001 Götz Waschk 1.5-1mdk -- 1.5 -- gcc 2.96 again -- make rpmlint happy by renaming spec file - -* Mon Jan 22 2001 Lenny Cartier 1.3a-1mdk -- uploaded to 1.3 -- build with egcs - -* Mon Jul 17 2000 Guillaume Cottenceau 1.2-2mdk -- took contributed SRPM from Götz Waschk -- more macros - -* Sun Jul 16 2000 Götz Waschk 1.2-1mdk -- initial Mandrake release