[svn] r5260 - in trunk/rpms: gstreamer-python tagtool

packagers at lists.rpmforge.net packagers at lists.rpmforge.net
Sun Apr 1 12:48:32 CEST 2007


Author: dag
Date: 2007-04-01 12:48:32 +0200 (Sun, 01 Apr 2007)
New Revision: 5260

Added:
   trunk/rpms/gstreamer-python/gstreamer-python-0.8.1.spec
Modified:
   trunk/rpms/gstreamer-python/gstreamer-python.spec
   trunk/rpms/tagtool/tagtool.spec
Log:
Updates

Added: trunk/rpms/gstreamer-python/gstreamer-python-0.8.1.spec
===================================================================
--- trunk/rpms/gstreamer-python/gstreamer-python-0.8.1.spec	                        (rev 0)
+++ trunk/rpms/gstreamer-python/gstreamer-python-0.8.1.spec	2007-04-01 10:48:32 UTC (rev 5260)
@@ -0,0 +1,83 @@
+# $Id$
+# Authority: thias
+
+# ExclusiveDist: el4
+
+Summary: Python bindings for GStreamer
+Name: gstreamer-python
+Version: 0.8.1
+Release: 1
+Group: Development/Languages
+License: LGPL
+URL: http://gstreamer.net/
+Source: http://gstreamer.freedesktop.org/src/gst-python/gst-python-%{version}.tar.bz2
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
+Requires: gnome-python2, pygtk2
+Requires: gstreamer, gstreamer-plugins
+BuildRequires: gcc-c++, python, python-devel >= 2.3, pygtk2-devel >= 2.4.0
+BuildRequires: gstreamer-devel, gstreamer-plugins-devel, xmlto, links
+# xwindowlistener needs X11 headers
+BuildRequires: XFree86-devel
+Provides: python-gstreamer = %{version}-%{release}
+
+
+%description
+This module contains a wrapper that allows GStreamer applications to be
+written in Python.
+
+
+%prep
+%setup -n gst-python-%{version}
+
+
+%build
+%configure
+%{__make} %{?_smp_mflags}
+
+
+%install
+%{__rm} -rf %{buildroot}
+%makeinstall
+
+# The __init__.py* files go into lib instead of lib64, so fix that
+if [ "%{_lib}" != "lib" ]; then
+    %{__mv} %{buildroot}%{_prefix}/lib/python?.?/site-packages/gst/__init__.* \
+            %{buildroot}%{_libdir}/python?.?/site-packages/gst/
+fi
+
+
+%clean
+%{__rm} -rf %{buildroot}
+
+
+%files
+%defattr(-, root, root, 0755)
+%doc AUTHORS COPYING ChangeLog NEWS README
+%doc examples/gst/*.py examples/gstplay/*.py
+%{_libdir}/python?.?/site-packages/gst/
+%{_datadir}/gst-python/
+%{_libdir}/pkgconfig/*.pc
+
+
+%changelog
+* Thu Dec  9 2004 Matthias Saou <http://freshrpms.net> 0.8.1-1
+- Update to 0.8.1.
+
+* Fri Nov 19 2004 Matthias Saou <http://freshrpms.net> 0.8.0-1
+- Update to 0.8.0.
+
+* Wed Oct 20 2004 Matthias Saou <http://freshrpms.net> 0.7.93-1
+- Update to 0.7.93.
+
+* Wed Jun 23 2004 Matthias Saou <http://freshrpms.net> 0.7.92-1
+- Spec file changes.
+
+* Mon Jun 21 2004 Thomas Vander Stichele <thomas at apestaart dot org>
+- 0.7.92-0.fdr.1: new upstream release
+
+* Wed Mar 31 2004 Thomas Vander Stichele <thomas at apestaart dot org>
+- 0.7.91-0.fdr.1: new upstream release
+
+* Tue Sep 02 2003 Thomas Vander Stichele <thomas at apestaart dot org>
+- 0.1.0-0.fdr.1: first fedora release
+


Property changes on: trunk/rpms/gstreamer-python/gstreamer-python-0.8.1.spec
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + native

Modified: trunk/rpms/gstreamer-python/gstreamer-python.spec
===================================================================
--- trunk/rpms/gstreamer-python/gstreamer-python.spec	2007-04-01 09:57:43 UTC (rev 5259)
+++ trunk/rpms/gstreamer-python/gstreamer-python.spec	2007-04-01 10:48:32 UTC (rev 5260)
@@ -1,64 +1,65 @@
 # $Id$
+# Authority: dag
 
-%define gstreamer gstreamer
+# ExclusiveDist: el5
 
+%define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")
+
+%define real_name gst-python
+
 Summary: Python bindings for GStreamer
-Name: %{gstreamer}-python
-Version: 0.8.2
+Name: gstreamer-python
+Version: 0.10.7
 Release: 1
+License: LGPL
 Group: Development/Languages
-License: LGPL
 URL: http://gstreamer.net/
+
 Source: http://gstreamer.freedesktop.org/src/gst-python/gst-python-%{version}.tar.bz2
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
-Requires: gnome-python2, pygtk2
-Requires: %{gstreamer}, %{gstreamer}-plugins
+
 BuildRequires: gcc-c++, python, python-devel >= 2.3, pygtk2-devel >= 2.4.0
-BuildRequires: %{gstreamer}-devel, %{gstreamer}-plugins-devel, xmlto, links
+BuildRequires: gstreamer-devel, gstreamer-plugins-base-devel, xmlto, links
 # xwindowlistener needs X11 headers
-BuildRequires: XFree86-devel
+BuildRequires: libX11-devel
+Requires: gnome-python2, pygtk2
+Requires: gstreamer, gstreamer-plugins-base-devel
+
 Provides: python-gstreamer = %{version}-%{release}
 
-
 %description
 This module contains a wrapper that allows GStreamer applications to be
 written in Python.
 
-
 %prep
-%setup -n gst-python-%{version}
+%setup -n %{real_name}-%{version}
 
-
 %build
 %configure
 %{__make} %{?_smp_mflags}
 
-
 %install
 %{__rm} -rf %{buildroot}
-%makeinstall
+%{__make} install DESTDIR="%{buildroot}"
 
-# The __init__.py* files go into lib instead of lib64, so fix that
-if [ "%{_lib}" != "lib" ]; then
-    %{__mv} %{buildroot}%{_prefix}/lib/python?.?/site-packages/gst/__init__.* \
-            %{buildroot}%{_libdir}/python?.?/site-packages/gst/
-fi
-
-
 %clean
 %{__rm} -rf %{buildroot}
 
-
 %files
 %defattr(-, root, root, 0755)
-%doc AUTHORS COPYING ChangeLog NEWS README
-%doc examples/gst/*.py examples/gstplay/*.py
-%{_libdir}/python?.?/site-packages/gst/
+%doc AUTHORS ChangeLog COPYING NEWS README
 %{_datadir}/gst-python/
-%{_libdir}/pkgconfig/*.pc
+%{_libdir}/pkgconfig/gst-python-0.10.pc
+%{python_sitearch}/gst-0.10/
+%{python_sitearch}/pygst.pth
+%{python_sitearch}/pygst.py
+%{python_sitearch}/pygst.pyc
+%{python_sitearch}/pygst.pyo
 
+%changelog
+* Sun Apr 01 2007 Dag Wieers <dag at wieers.com> - 0.10.7-1
+- Updated to release 0.10.7.
 
-%changelog
 * Thu Aug 25 2005 Matthias Saou <http://freshrpms.net> 0.8.2-1
 - Update to 0.8.2.
 

Modified: trunk/rpms/tagtool/tagtool.spec
===================================================================
--- trunk/rpms/tagtool/tagtool.spec	2007-04-01 09:57:43 UTC (rev 5259)
+++ trunk/rpms/tagtool/tagtool.spec	2007-04-01 10:48:32 UTC (rev 5260)
@@ -17,7 +17,7 @@
 Source: http://dl.sf.net/tagtool/tagtool-%{version}.tar.bz2
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
 
-BuildRequires: automake, autoconf, glib2-devel >= 2.4, gtk2-devel >= 2.6, libglade2-devel >= 2.8
+BuildRequires: automake, autoconf, glib2-devel >= 2.4, gtk2-devel >= 2.8, libglade2-devel >= 2.6
 BuildRequires: id3lib-devel, libogg-devel, libvorbis-devel, perl-XML-Parser
 BuildRequires: gettext, desktop-file-utils
 



More information about the svn-commits mailing list