rpms/kmediafactory/devel kmediafactory.spec,1.3,1.4
by Sebastian Vahl
Author: svahl
Update of /cvs/free/rpms/kmediafactory/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv6673/devel
Modified Files:
kmediafactory.spec
Log Message:
Fix url and source0 (only f8,f9)
Index: kmediafactory.spec
===================================================================
RCS file: /cvs/free/rpms/kmediafactory/devel/kmediafactory.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- kmediafactory.spec 22 Aug 2008 17:42:43 -0000 1.3
+++ kmediafactory.spec 4 Sep 2008 16:14:52 -0000 1.4
@@ -1,11 +1,11 @@
Name: kmediafactory
Version: 0.7.0
-Release: 0.1.rc2%{?dist}
+Release: 0.2.rc2%{?dist}
Summary: A template based DVD authoring tool
Group: User Interface/Desktops
License: GPLv2+
-URL: http://susku.pyhaselka.fi/damu/software/kmediafactory/
+URL: http://aryhma.oy.cx/damu/software/kmediafactory/
Source0: http://kmediafactory.googlecode.com/files/kmediafactory-%{version}_rc2.ta...
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -138,6 +138,9 @@
%changelog
+* Thu Sep 04 2008 Sebastian Vahl <fedora(a)deadbabylon.de> - 0.7.0-0.2.rc2
+- fix url
+
* Thu Aug 21 2008 Sebastian Vahl <fedora(a)deadbabylon.de> - 0.7.0-0.1.rc2
- new upstream version: 0.7.0-rc2
16 years, 2 months
rpms/vcdimager/F-8 vcdimager.spec,1.1,1.2
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vcdimager/F-8
In directory se02.es.rpmfusion.net:/tmp/cvs-serv4450
Modified Files:
vcdimager.spec
Log Message:
-Add multilibs support
Index: vcdimager.spec
===================================================================
RCS file: /cvs/free/rpms/vcdimager/F-8/vcdimager.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vcdimager.spec 9 Aug 2008 11:11:02 -0000 1.1
+++ vcdimager.spec 4 Sep 2008 15:37:26 -0000 1.2
@@ -1,13 +1,13 @@
Summary: VideoCD (pre-)mastering and ripping tool
Name: vcdimager
Version: 0.7.23
-Release: 7%{?dist}
+Release: 8%{?dist}
License: GPLv2+
Group: Applications/Multimedia
-URL: http://www.vcdimager.org/
+URL: http://www.gnu.org/software/vcdimager/
Source: ftp://ftp.gnu.org/pub/gnu/vcdimager/vcdimager-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
-Requires(post): info, /sbin/ldconfig
+Requires(post): info
Requires(preun): info
BuildRequires: libcdio-devel >= 0.72
BuildRequires: libxml2-devel >= 2.3.8
@@ -15,6 +15,8 @@
BuildRequires: pkgconfig >= 0.9
BuildRequires: popt-devel
+Requires: %{name}-libs = %{version}-%{release}
+
%description
VCDImager allows you to create VideoCD BIN/CUE CD images from MPEG
files. These can be burned with cdrdao or any other program capable of
@@ -24,12 +26,23 @@
rip MPEG streams from images or burned VideoCDs and to show
information about a VideoCD.
+%package libs
+Summary: Libraries for %{name}
+Group: System Environment/Libraries
+Requires: %{name} = %{version}-%{release}
+# Introduced in F-9 to solve multilibs transition
+Obsoletes: vcdimager < 0.7.23-8
+
+%description libs
+The %{name}-libs package contains shared libraries for %{name}.
%package devel
Summary: Header files and static library for VCDImager
Group: Development/Libraries
-Requires: %{name} = %{version}-%{release}
+Requires: %{name}-libs = %{version}-%{release}
+
Requires: pkgconfig
+Requires: libcdio-devel
%description devel
VCDImager allows you to create VideoCD BIN/CUE CD images from mpeg
@@ -51,7 +64,9 @@
%install
%{__rm} -rf %{buildroot}
-%{__make} DESTDIR=%{buildroot} install
+%{__make} DESTDIR=%{buildroot} install INSTALL="install -p"
+find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
+
# Sometimes this file gets created... but we don't want it!
%{__rm} -f %{buildroot}%{_infodir}/dir
@@ -60,8 +75,9 @@
%{__rm} -rf %{buildroot}
+%post libs -p /sbin/ldconfig
+
%post
-/sbin/ldconfig
for infofile in vcdxrip.info vcdimager.info vcd-info.info; do
/sbin/install-info %{_infodir}/${infofile} %{_infodir}/dir 2>/dev/null || :
done
@@ -74,7 +90,7 @@
done
fi
-%postun -p /sbin/ldconfig
+%postun libs -p /sbin/ldconfig
%files
@@ -82,23 +98,29 @@
%doc AUTHORS BUGS ChangeLog* COPYING FAQ NEWS README THANKS TODO
%doc frontends/xml/videocd.dtd
%{_bindir}/*
-%{_libdir}/libvcdinfo.so.*
%{_infodir}/vcdxrip.info*
%{_infodir}/vcdimager.info*
%{_infodir}/vcd-info.info*
-#{_infodir}/vcddump.info*
%{_mandir}/man1/*
+%files libs
+%defattr(-,root,root,-)
+%{_libdir}/libvcdinfo.so.*
+
%files devel
%defattr(-,root,root,-)
%doc HACKING
%{_includedir}/libvcd/
-%exclude %{_libdir}/libvcdinfo.la
%{_libdir}/libvcdinfo.so
%{_libdir}/pkgconfig/libvcdinfo.pc
%changelog
+* Thu Sep 4 2008 kwizart < kwizart at gmail.com > - 0.7.23-8
+- Fix URL
+- vcdimager-devel Requires libcdio-devel
+- Split libs (multilibs compliance)
+
* Sat Aug 09 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> 0.7.23-7
- merge a few bits from livna spec
16 years, 2 months
rpms/vcdimager/F-9 vcdimager.spec,1.1,1.2
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vcdimager/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv4350
Modified Files:
vcdimager.spec
Log Message:
-Add multilibs support
Index: vcdimager.spec
===================================================================
RCS file: /cvs/free/rpms/vcdimager/F-9/vcdimager.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vcdimager.spec 9 Aug 2008 11:09:25 -0000 1.1
+++ vcdimager.spec 4 Sep 2008 15:36:39 -0000 1.2
@@ -1,13 +1,13 @@
Summary: VideoCD (pre-)mastering and ripping tool
Name: vcdimager
Version: 0.7.23
-Release: 7%{?dist}
+Release: 8%{?dist}
License: GPLv2+
Group: Applications/Multimedia
-URL: http://www.vcdimager.org/
+URL: http://www.gnu.org/software/vcdimager/
Source: ftp://ftp.gnu.org/pub/gnu/vcdimager/vcdimager-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
-Requires(post): info, /sbin/ldconfig
+Requires(post): info
Requires(preun): info
BuildRequires: libcdio-devel >= 0.72
BuildRequires: libxml2-devel >= 2.3.8
@@ -15,6 +15,8 @@
BuildRequires: pkgconfig >= 0.9
BuildRequires: popt-devel
+Requires: %{name}-libs = %{version}-%{release}
+
%description
VCDImager allows you to create VideoCD BIN/CUE CD images from MPEG
files. These can be burned with cdrdao or any other program capable of
@@ -24,12 +26,23 @@
rip MPEG streams from images or burned VideoCDs and to show
information about a VideoCD.
+%package libs
+Summary: Libraries for %{name}
+Group: System Environment/Libraries
+Requires: %{name} = %{version}-%{release}
+# Introduced in F-9 to solve multilibs transition
+Obsoletes: vcdimager < 0.7.23-8
+
+%description libs
+The %{name}-libs package contains shared libraries for %{name}.
%package devel
Summary: Header files and static library for VCDImager
Group: Development/Libraries
-Requires: %{name} = %{version}-%{release}
+Requires: %{name}-libs = %{version}-%{release}
+
Requires: pkgconfig
+Requires: libcdio-devel
%description devel
VCDImager allows you to create VideoCD BIN/CUE CD images from mpeg
@@ -51,7 +64,9 @@
%install
%{__rm} -rf %{buildroot}
-%{__make} DESTDIR=%{buildroot} install
+%{__make} DESTDIR=%{buildroot} install INSTALL="install -p"
+find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
+
# Sometimes this file gets created... but we don't want it!
%{__rm} -f %{buildroot}%{_infodir}/dir
@@ -60,8 +75,9 @@
%{__rm} -rf %{buildroot}
+%post libs -p /sbin/ldconfig
+
%post
-/sbin/ldconfig
for infofile in vcdxrip.info vcdimager.info vcd-info.info; do
/sbin/install-info %{_infodir}/${infofile} %{_infodir}/dir 2>/dev/null || :
done
@@ -74,7 +90,7 @@
done
fi
-%postun -p /sbin/ldconfig
+%postun libs -p /sbin/ldconfig
%files
@@ -82,23 +98,29 @@
%doc AUTHORS BUGS ChangeLog* COPYING FAQ NEWS README THANKS TODO
%doc frontends/xml/videocd.dtd
%{_bindir}/*
-%{_libdir}/libvcdinfo.so.*
%{_infodir}/vcdxrip.info*
%{_infodir}/vcdimager.info*
%{_infodir}/vcd-info.info*
-#{_infodir}/vcddump.info*
%{_mandir}/man1/*
+%files libs
+%defattr(-,root,root,-)
+%{_libdir}/libvcdinfo.so.*
+
%files devel
%defattr(-,root,root,-)
%doc HACKING
%{_includedir}/libvcd/
-%exclude %{_libdir}/libvcdinfo.la
%{_libdir}/libvcdinfo.so
%{_libdir}/pkgconfig/libvcdinfo.pc
%changelog
+* Thu Sep 4 2008 kwizart < kwizart at gmail.com > - 0.7.23-8
+- Fix URL
+- vcdimager-devel Requires libcdio-devel
+- Split libs (multilibs compliance)
+
* Sat Aug 09 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> 0.7.23-7
- merge a few bits from livna spec
16 years, 2 months
rpms/vcdimager/devel vcdimager.spec,1.1,1.2
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vcdimager/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv4244
Modified Files:
vcdimager.spec
Log Message:
-Add multilibs support
Index: vcdimager.spec
===================================================================
RCS file: /cvs/free/rpms/vcdimager/devel/vcdimager.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vcdimager.spec 9 Aug 2008 10:49:45 -0000 1.1
+++ vcdimager.spec 4 Sep 2008 15:35:52 -0000 1.2
@@ -1,13 +1,13 @@
Summary: VideoCD (pre-)mastering and ripping tool
Name: vcdimager
Version: 0.7.23
-Release: 7%{?dist}
+Release: 8%{?dist}
License: GPLv2+
Group: Applications/Multimedia
-URL: http://www.vcdimager.org/
+URL: http://www.gnu.org/software/vcdimager/
Source: ftp://ftp.gnu.org/pub/gnu/vcdimager/vcdimager-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
-Requires(post): info, /sbin/ldconfig
+Requires(post): info
Requires(preun): info
BuildRequires: libcdio-devel >= 0.72
BuildRequires: libxml2-devel >= 2.3.8
@@ -15,6 +15,8 @@
BuildRequires: pkgconfig >= 0.9
BuildRequires: popt-devel
+Requires: %{name}-libs = %{version}-%{release}
+
%description
VCDImager allows you to create VideoCD BIN/CUE CD images from MPEG
files. These can be burned with cdrdao or any other program capable of
@@ -24,12 +26,23 @@
rip MPEG streams from images or burned VideoCDs and to show
information about a VideoCD.
+%package libs
+Summary: Libraries for %{name}
+Group: System Environment/Libraries
+Requires: %{name} = %{version}-%{release}
+# Introduced in F-9 to solve multilibs transition
+Obsoletes: vcdimager < 0.7.23-8
+
+%description libs
+The %{name}-libs package contains shared libraries for %{name}.
%package devel
Summary: Header files and static library for VCDImager
Group: Development/Libraries
-Requires: %{name} = %{version}-%{release}
+Requires: %{name}-libs = %{version}-%{release}
+
Requires: pkgconfig
+Requires: libcdio-devel
%description devel
VCDImager allows you to create VideoCD BIN/CUE CD images from mpeg
@@ -51,7 +64,9 @@
%install
%{__rm} -rf %{buildroot}
-%{__make} DESTDIR=%{buildroot} install
+%{__make} DESTDIR=%{buildroot} install INSTALL="install -p"
+find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
+
# Sometimes this file gets created... but we don't want it!
%{__rm} -f %{buildroot}%{_infodir}/dir
@@ -60,8 +75,9 @@
%{__rm} -rf %{buildroot}
+%post libs -p /sbin/ldconfig
+
%post
-/sbin/ldconfig
for infofile in vcdxrip.info vcdimager.info vcd-info.info; do
/sbin/install-info %{_infodir}/${infofile} %{_infodir}/dir 2>/dev/null || :
done
@@ -74,7 +90,7 @@
done
fi
-%postun -p /sbin/ldconfig
+%postun libs -p /sbin/ldconfig
%files
@@ -82,23 +98,29 @@
%doc AUTHORS BUGS ChangeLog* COPYING FAQ NEWS README THANKS TODO
%doc frontends/xml/videocd.dtd
%{_bindir}/*
-%{_libdir}/libvcdinfo.so.*
%{_infodir}/vcdxrip.info*
%{_infodir}/vcdimager.info*
%{_infodir}/vcd-info.info*
-#{_infodir}/vcddump.info*
%{_mandir}/man1/*
+%files libs
+%defattr(-,root,root,-)
+%{_libdir}/libvcdinfo.so.*
+
%files devel
%defattr(-,root,root,-)
%doc HACKING
%{_includedir}/libvcd/
-%exclude %{_libdir}/libvcdinfo.la
%{_libdir}/libvcdinfo.so
%{_libdir}/pkgconfig/libvcdinfo.pc
%changelog
+* Thu Sep 4 2008 kwizart < kwizart at gmail.com > - 0.7.23-8
+- Fix URL
+- vcdimager-devel Requires libcdio-devel
+- Split libs (multilibs compliance)
+
* Sat Aug 09 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> 0.7.23-7
- merge a few bits from livna spec
16 years, 2 months
rpms/mythtv/devel mythtv.spec,1.4,1.5
by Jarod Wilson
Author: jarod
Update of /cvs/free/rpms/mythtv/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv31600
Modified Files:
mythtv.spec
Log Message:
make f8 build less unhappy
16 years, 2 months
rpms/mythtv/F-9 mythtv.spec,1.3,1.4
by Jarod Wilson
Author: jarod
Update of /cvs/free/rpms/mythtv/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv31568
Modified Files:
mythtv.spec
Log Message:
make f8 build less unhappy
Index: mythtv.spec
===================================================================
RCS file: /cvs/free/rpms/mythtv/F-9/mythtv.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- mythtv.spec 3 Sep 2008 16:51:44 -0000 1.3
+++ mythtv.spec 4 Sep 2008 14:05:00 -0000 1.4
@@ -53,7 +53,7 @@
%if 0%{?fedora} >= 9
BuildRequires: qt3-devel
%else
-BuildRequires: qt-devel >= 3, qt-devel < 4
+BuildRequires: qt-devel >= 3
%endif
BuildRequires: mysql-devel >= 5
# Audio framework support
16 years, 2 months
rpms/mythtv/F-8 mythtv.spec,1.3,1.4
by Jarod Wilson
Author: jarod
Update of /cvs/free/rpms/mythtv/F-8
In directory se02.es.rpmfusion.net:/tmp/cvs-serv31465
Modified Files:
mythtv.spec
Log Message:
one more try at making the f8 build happy...
Index: mythtv.spec
===================================================================
RCS file: /cvs/free/rpms/mythtv/F-8/mythtv.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- mythtv.spec 3 Sep 2008 16:51:57 -0000 1.3
+++ mythtv.spec 4 Sep 2008 14:02:42 -0000 1.4
@@ -53,7 +53,7 @@
%if 0%{?fedora} >= 9
BuildRequires: qt3-devel
%else
-BuildRequires: qt-devel >= 3, qt-devel < 4
+BuildRequires: qt-devel >= 3
%endif
BuildRequires: mysql-devel >= 5
# Audio framework support
16 years, 2 months
rpms/xmms-mp3/devel xmms-mp3.spec,1.1,1.2
by Xavier Lamien
Author: laxathom
Update of /cvs/free/rpms/xmms-mp3/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv27842
Modified Files:
xmms-mp3.spec
Log Message:
rebuild and test make tag as the same time
Index: xmms-mp3.spec
===================================================================
RCS file: /cvs/free/rpms/xmms-mp3/devel/xmms-mp3.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xmms-mp3.spec 3 Aug 2008 15:16:15 -0000 1.1
+++ xmms-mp3.spec 4 Sep 2008 12:56:10 -0000 1.2
@@ -4,7 +4,7 @@
Summary: MP3 output plugin for XMMS
Name: xmms-mp3
Version: 1.2.10
-Release: 6%{?dist}
+Release: 7%{?dist}
License: GPL
Group: Applications/Multimedia
URL: http://www.xmms.org/
@@ -68,6 +68,9 @@
# --------------------------------------------------------------------
%changelog
+* Thu Sep 04 2008 Xavier Lamien <lxtnow[at]gmail.com> - 1.2.10-7
+- Rebuild against new xmms-lib.
+
* Sun Aug 03 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 1.2.10-6
- rebuild
16 years, 2 months