rpms/codeina/devel codeina-fix-pynotify-check.patch, NONE, 1.1 .cvsignore, 1.3, 1.4 codeina.spec, 1.9, 1.10 sources, 1.3, 1.4 codeina-f8-wishlist.patch, 1.1, NONE codeina-less-chat.patch, 1.1, NONE codeina-link.patch, 1.1, NONE

Bastien Nocera (hadess) fedora-extras-commits at redhat.com
Fri Apr 4 16:31:38 UTC 2008


Author: hadess

Update of /cvs/pkgs/rpms/codeina/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv31873

Modified Files:
	.cvsignore codeina.spec sources 
Added Files:
	codeina-fix-pynotify-check.patch 
Removed Files:
	codeina-f8-wishlist.patch codeina-less-chat.patch 
	codeina-link.patch 
Log Message:
* Fri Apr 04 2008 - Bastien Nocera <bnocera at redhat.com> - 0.10.1-7.r1421
- Update to latest upstream
- Remove obsolete patches


codeina-fix-pynotify-check.patch:

--- NEW FILE codeina-fix-pynotify-check.patch ---
Index: configure.ac
===================================================================
--- configure.ac	(revision 1421)
+++ configure.ac	(working copy)
@@ -71,9 +71,9 @@
 AC_SUBST(CODEINA_SHOP_URL)
 
 dnl check for different python packages
-for module in yaml xml.dom.ext xdg gtkmozembed pynotify pygst gst OpenSSL twisted.internet twisted.web;
+for module in yaml xml.dom.ext xdg gtkmozembed pygst gst OpenSSL twisted.internet twisted.web;
 do
-if ! $PYTHON -c 'import '$module'' > /dev/null 2>&1; then
+if ! $PYTHON -c 'import '$module'' ; then
     echo 'Checking for python module '$module'... not found'
     AC_MSG_ERROR([Python module '$module' not found])
 else
@@ -81,6 +81,8 @@
 fi
 done
 
+PKG_CHECK_MODULES(PYNOTIFY, notify-python)
+
 dnl output stuff
 AC_OUTPUT([
 Makefile


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/codeina/devel/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- .cvsignore	27 Aug 2007 15:03:42 -0000	1.3
+++ .cvsignore	4 Apr 2008 16:30:47 -0000	1.4
@@ -1 +1 @@
-codeina-0.10.1.tar.bz2
+codeina-0.10.1-r1421.tar.bz2


Index: codeina.spec
===================================================================
RCS file: /cvs/pkgs/rpms/codeina/devel/codeina.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- codeina.spec	7 Nov 2007 06:46:31 -0000	1.9
+++ codeina.spec	4 Apr 2008 16:30:47 -0000	1.10
@@ -4,20 +4,30 @@
 # Python sitelib macro trick from http://fedoraproject.org/wiki/PackagingDrafts/Python
 %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
 
+%define         svn_rev 1421
+
 Name:           codeina
 Version:        0.10.1
-Release:        6%{?dist}
+Release:        7.r%{svn_rev}%{?dist}
 Summary:        GStreamer Codec Installation Application
 
 Group:          Applications/Internet
 License:        GPLv2.1+
 URL:            https://core.fluendo.com/gstreamer/trac/browser/codeina
 # Upstream SVN repository is at https://core.fluendo.com/gstreamer/svn/codeina/trunk/
-Source:         http://www.fluendo.com/downloads/codeina/%{name}-%{version}.tar.bz2
+#
+# To create this new tarball
+# svn co -r1421 https://core.fluendo.com/gstreamer/svn/codeina/trunk/ codeina
+# cd codeina
+# patch -p0 < ../codeina-fix-pynotify-check.patch
+# ./autogen.sh && make dist
+# mv codeina-0.10.2.tar.bz codeina-0.10.1-r1421.tar.bz2
+#
+# Older version had:
+# Source: http://www.fluendo.com/downloads/codeina/%{name}-%{version}.tar.bz2
+Source:         %{name}-%{version}-r%{svn_rev}.tar.bz2
 Source1:        gst-install-plugins-helper.sh
-Patch0:         codeina-f8-wishlist.patch
-Patch1:         codeina-less-chat.patch
-Patch2:		codeina-link.patch
+Source2:        codeina-fix-pynotify-check.patch
 BuildRoot:      %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
 
 Requires:       python >= 2.3
@@ -26,11 +36,16 @@
 Requires:       pygtk2 >= %{pygtk_minver}
 Requires:       pyxdg
 Requires:	python-sexy
+Requires:	PyYAML
+Requires:	gnome-python2-gtkmozembed
+Requires:	notify-python
 
 BuildRequires:  python-devel >= 2.3
 
 BuildRequires:  gettext desktop-file-utils gawk
 BuildRequires:  intltool
+BuildRequires:  gnome-python2-gtkmozembed
+BuildRequires:  notify-python
 
 BuildArch:      noarch
 
@@ -38,12 +53,7 @@
 Codeina installs codecs for GStreamer.
 
 %prep
-%setup -q
-%patch0 -p0 -b .old
-pushd codeina/
-%patch1 -p0 -b .chat
-popd
-%patch2 -p1 -b .link
+%setup -q -n %{name}-0.10.2
 
 %build
 %configure
@@ -66,11 +76,20 @@
 %defattr(-,root,root,-)
 %doc ChangeLog COPYING README AUTHORS
 %{_bindir}/codeina
+%{_bindir}/codeina.bin
+%{_sysconfdir}/codeina
+%{_sysconfdir}/xdg/autostart/codeina-update.desktop
+%{_datadir}/applications/codeina.desktop
+%{_datadir}/autostart/codeina-update-kde.desktop
 %{_libexecdir}/gst-install-plugins-helper
 %{python_sitelib}/codeina
 %{_datadir}/%{name}/
 
 %changelog
+* Fri Apr 04 2008 - Bastien Nocera <bnocera at redhat.com> - 0.10.1-7.r1421
+- Update to latest upstream
+- Remove obsolete patches
+
 * Wed Nov  7 2007 Matthias Clasen <mclasen at redhat.com> - 0.10.1-6
 - Add a missing dependency
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/codeina/devel/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sources	27 Aug 2007 15:03:42 -0000	1.3
+++ sources	4 Apr 2008 16:30:47 -0000	1.4
@@ -1 +1 @@
-3688bca6013dfedfeb1b0c53dd652b33  codeina-0.10.1.tar.bz2
+18316712091c8cd5ffd731c9ca0b9e2f  codeina-0.10.1-r1421.tar.bz2


--- codeina-f8-wishlist.patch DELETED ---


--- codeina-less-chat.patch DELETED ---


--- codeina-link.patch DELETED ---




More information about the fedora-extras-commits mailing list