rpms/mythtv/devel mythtv.spec, 1.11, 1.12 mythmusic-busted-cdparanoia-workaround.patch, 1.1, NONE
by Jarod Wilson
Author: jarod
Update of /cvs/free/rpms/mythtv/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv16601
Modified Files:
mythtv.spec
Removed Files:
mythmusic-busted-cdparanoia-workaround.patch
Log Message:
cdparanoia fixed, drop workaround patch
Index: mythtv.spec
===================================================================
RCS file: /cvs/free/rpms/mythtv/devel/mythtv.spec,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- mythtv.spec 15 Oct 2008 17:26:52 -0000 1.11
+++ mythtv.spec 15 Oct 2008 20:23:14 -0000 1.12
@@ -48,7 +48,6 @@
Patch103: mythtv-0.21-enable-64bit-fast_cmov.patch
Patch200: mythplugins-0.21-svnfixes.patch
#Patch201: mythplugins-0.21-fedora-settings.patch
-Patch202: mythmusic-busted-cdparanoia-workaround.patch
#
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
BuildRequires: freetype-devel >= 2
@@ -530,7 +529,6 @@
cd mythplugins-%{version}
%patch200 -p1 -b .svnfixes
#patch201 -p1 -b .settings
-%patch202 -p1
mv mytharchive/mythburn/themes/Simple\ -\ Autoplay \
mytharchive/mythburn/themes/Simple_-_Autoplay
--- mythmusic-busted-cdparanoia-workaround.patch DELETED ---
16 years
rpms/qc-usb-kmod/devel qc-usb-0.6.6-2.6.27.patch, NONE, 1.1 qc-usb-kmod.spec, 1.4, 1.5
by Lubomir Rintel
Author: lkundrak
Update of /cvs/free/rpms/qc-usb-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv14873
Modified Files:
qc-usb-kmod.spec
Added Files:
qc-usb-0.6.6-2.6.27.patch
Log Message:
* Wed Oct 15 2008 Lubomir Rintel <lkundrak(a)v3.sk> - 0.6.6-42
- Re-enable ppc
- Add 2.6.27 patch
qc-usb-0.6.6-2.6.27.patch:
--- NEW FILE qc-usb-0.6.6-2.6.27.patch ---
Here are two fixes for compiling quickcam module with newer kernels.
In 2.6.27-rc1 :
1) the type field was removed from the video_device structure.
2) the parent of the video device was renamed from dev to parent.
--- qc-usb-0.6.6/qc-driver.c.2.6.27 2008-10-15 21:40:01.000000000 +0200
+++ qc-usb-0.6.6/qc-driver.c 2008-10-15 21:40:01.000000000 +0200
@@ -2528,7 +2528,7 @@
if (qcdebug&QC_DEBUGUSER) PDEBUG("VIDIOCGCAP");
memset(&b, 0, sizeof(b));
strcpy(b.name, "Logitech QuickCam USB"); /* Max 31 characters */
- b.type = qc->vdev.type;
+ b.type = VID_TYPE_CAPTURE | VID_TYPE_SUBCAPTURE;
b.channels = 1;
b.audios = 0;
b.maxwidth = qc->sensor_data.maxwidth;
@@ -3007,7 +3007,6 @@
static struct video_device qc_v4l_template = {
name: "QuickCam USB",
- type: VID_TYPE_CAPTURE | VID_TYPE_SUBCAPTURE,
#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24)
hardware: VID_HARDWARE_QCAM_USB,
#endif
Index: qc-usb-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/qc-usb-kmod/devel/qc-usb-kmod.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- qc-usb-kmod.spec 4 Oct 2008 13:14:31 -0000 1.4
+++ qc-usb-kmod.spec 15 Oct 2008 19:52:52 -0000 1.5
@@ -3,11 +3,11 @@
# "buildforkernels newest" macro for just that build; immediately after
# queuing that build enable the macro again for subsequent builds; that way
# a new akmod package will only get build when a new one is actually needed
-#define buildforkernels newest
+%define buildforkernels current
Name: qc-usb-kmod
Version: 0.6.6
-Release: 41%{?dist}.1
+Release: 42%{?dist}
Summary: qc-usb kernel modules
Group: System Environment/Kernel
@@ -17,12 +17,12 @@
Patch0: qc-usb-0.6.6-2.6.24.patch
# from http://patch-tracking.debian.net/patch/series/view/qc-usb/0.6.6-6/kcompat...
Patch1: qc-usb-0.6.6-2.6.26.patch
+# this comes from mandriva package
+Patch2: qc-usb-0.6.6-2.6.27.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
# needed for plague to make sure it builds for i586 and i686
-ExclusiveArch: i586 i686 x86_64
-# ppc and ppc64 disabled by knurd on 20081003 as it is known to fail on 2.6.27:
-# https://bugzilla.redhat.com/show_bug.cgi?id=465486
+ExclusiveArch: i586 i686 x86_64 ppc ppc64
# get the needed BuildRequires (in parts depending on what we build for)
BuildRequires: %{_bindir}/kmodtool
@@ -44,6 +44,7 @@
%setup -q -c -T -a 0
%patch0 -p0 -b .2.6.24
%patch1 -p0 -b .2.6.26
+%patch2 -p0 -b .2.6.27
for kernel_version in %{?kernel_versions}; do
cp -a qc-usb-%{version} _kmod_build_${kernel_version%%___*}
done
@@ -69,6 +70,10 @@
%changelog
+* Wed Oct 15 2008 Lubomir Rintel <lkundrak(a)v3.sk> - 0.6.6-42
+- Re-enable ppc
+- Add 2.6.27 patch
+
* Fri Oct 03 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 0.6.6-41.1
- rebuild for rpm fusion
16 years
rpms/em8300-kmod/devel .cvsignore,1.2,1.3 sources,1.2,1.3
by Felix Kaechele
Author: felix
Update of /cvs/free/rpms/em8300-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv12297
Modified Files:
.cvsignore sources
Log Message:
0.17.2-rc2: uploaded source files
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/em8300-kmod/devel/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 3 Oct 2008 12:11:58 -0000 1.2
+++ .cvsignore 15 Oct 2008 19:15:46 -0000 1.3
@@ -1 +1 @@
-em8300-nofirmware-0.17.1.tar.gz
+em8300-nofirmware-0.17.2-rc1.tar.lzma
Index: sources
===================================================================
RCS file: /cvs/free/rpms/em8300-kmod/devel/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 3 Oct 2008 12:11:58 -0000 1.2
+++ sources 15 Oct 2008 19:15:46 -0000 1.3
@@ -1 +1 @@
-44263d6d5270a6ba7d4e23cf6d07f368 em8300-nofirmware-0.17.1.tar.gz
+8b35907a4c3d9eb5120fdd74c8ce7bf1 em8300-nofirmware-0.17.2-rc1.tar.lzma
16 years
rpms/em8300-kmod/devel em8300-kmod.spec, 1.4, 1.5 em8300-kmod-include.patch, 1.1, NONE
by Felix Kaechele
Author: felix
Update of /cvs/free/rpms/em8300-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv11879
Modified Files:
em8300-kmod.spec
Removed Files:
em8300-kmod-include.patch
Log Message:
* Wed Oct 15 2008 Felix Kaechele <felix at fetzig dot org> - 0.17.2-0.1.rc1
- update to new upstream prerelease due to kernel incompatibilities
Index: em8300-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/em8300-kmod/devel/em8300-kmod.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- em8300-kmod.spec 9 Oct 2008 22:24:31 -0000 1.4
+++ em8300-kmod.spec 15 Oct 2008 19:10:13 -0000 1.5
@@ -5,18 +5,19 @@
# a new akmod package will only get build when a new one is actually needed
#define buildforkernels newest
-#define prever rc1
+%define prever rc1
Name: em8300-kmod
Summary: Kernel modules for DXR3/Hollywood Plus MPEG decoder cards
-Version: 0.17.1
-Release: 4%{dist}%{?prever:.%{prever}}.2
+Version: 0.17.2
+Release: 0%{?prever:.1.%{prever}}%{?dist}
Group: System Environment/Kernel
License: GPLv2+
URL: http://dxr3.sourceforge.net/
-Source0: http://downloads.sourceforge.net/dxr3/em8300-nofirmware-%{version}%{?prev...
-Patch0: %{name}-include.patch
+#Source0: http://dxr3.sourceforge.net/download/em8300-%{version}%{?prever:-%{prever... with modules/em8300.uc removed
+Source0: em8300-nofirmware-%{version}%{?prever:-%{prever}}.tar.lzma
+#Source0: http://downloads.sourceforge.net/dxr3/em8300-nofirmware-%{version}%{?prev...
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
# needed for plague to make sure it builds for i586 and i686
@@ -39,7 +40,6 @@
kmodtool --target %{_target_cpu} --repo rpmfusion --kmodname %{name} %{?buildforkernels:--%{buildforkernels}} %{?kernels:--for-kernels "%{?kernels}"} 2>/dev/null
%setup -q -c
-%patch0
for kernel_version in %{?kernel_versions} ; do
cp -a em8300-%{version}%{?prever:-%{prever}} \
_kmod_build_${kernel_version%%___*}
@@ -68,6 +68,9 @@
%changelog
+* Wed Oct 15 2008 Felix Kaechele <felix at fetzig dot org> - 0.17.2-0.1.rc1
+- update to new upstream prerelease due to kernel incompatibilities
+
* Fri Oct 10 2008 Felix Kaechele <felix at fetzig dot org> - 0.17.1-4.2
- patch for changed include path of newer kernels added
--- em8300-kmod-include.patch DELETED ---
16 years
rpms/mythtv/devel mythtv.spec,1.10,1.11
by Jarod Wilson
Author: jarod
Update of /cvs/free/rpms/mythtv/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv5934
Modified Files:
mythtv.spec
Log Message:
minor buildfix for fallout from disabling mythgame-emulators meta-package
Index: mythtv.spec
===================================================================
RCS file: /cvs/free/rpms/mythtv/devel/mythtv.spec,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- mythtv.spec 15 Oct 2008 03:52:19 -0000 1.10
+++ mythtv.spec 15 Oct 2008 17:26:52 -0000 1.11
@@ -919,6 +919,7 @@
%exclude %{_datadir}/mythtv/games/xmame
%{_datadir}/mythtv/game_settings.xml
%{_datadir}/mythtv/i18n/mythgame_*.qm
+%exclude %{_datadir}/mame/screens
#files -n mythgame-emulators
#defattr(-,root,root,-)
16 years
rpms/OpenEXR_Viewers-nonfree/F-8 openexr_viewers-1.0.1-gcc43.patch, NONE, 1.1 OpenEXR_Viewers-nonfree.spec, NONE, 1.1 sources, 1.1, 1.2
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/OpenEXR_Viewers-nonfree/F-8
In directory se02.es.rpmfusion.net:/tmp/cvs-serv4670
Modified Files:
sources
Added Files:
openexr_viewers-1.0.1-gcc43.patch OpenEXR_Viewers-nonfree.spec
Log Message:
Import for F-8
openexr_viewers-1.0.1-gcc43.patch:
--- NEW FILE openexr_viewers-1.0.1-gcc43.patch ---
diff -up openexr_viewers-1.0.1/exrdisplay/applyCtl.h.gcc43 openexr_viewers-1.0.1/exrdisplay/applyCtl.h
--- openexr_viewers-1.0.1/exrdisplay/applyCtl.h.gcc43 2006-12-09 01:14:07.000000000 +0100
+++ openexr_viewers-1.0.1/exrdisplay/applyCtl.h 2008-01-10 02:07:14.000000000 +0100
@@ -49,6 +49,7 @@
#include <ImfArray.h>
#include <ImfHeader.h>
#include <vector>
+#include <cstdlib>
//
// Apply a series of CTL transforms to the raw pixel data from an image file
diff -up openexr_viewers-1.0.1/configure.ac.gcc43 openexr_viewers-1.0.1/configure.ac
--- openexr_viewers-1.0.1/configure.ac.gcc43 2007-10-10 00:20:51.000000000 +0200
+++ openexr_viewers-1.0.1/configure.ac 2008-01-10 02:07:14.000000000 +0100
@@ -126,6 +126,7 @@ AM_COMPILELINKRUN(
#include <ImfFrameBuffer.h>
#include <ImathBox.h>
#include <vector>
+#include <cstdlib>
using namespace Ctl;
using namespace Imf;
using namespace Imath;
diff -up openexr_viewers-1.0.1/configure.gcc43 openexr_viewers-1.0.1/configure
--- openexr_viewers-1.0.1/configure.gcc43 2007-10-10 00:21:01.000000000 +0200
+++ openexr_viewers-1.0.1/configure 2008-01-10 02:07:14.000000000 +0100
@@ -20869,6 +20869,7 @@ cat >>conftest.$ac_ext <<_ACEOF
#include <ImfFrameBuffer.h>
#include <ImathBox.h>
#include <vector>
+#include <cstdlib>
using namespace Ctl;
using namespace Imf;
using namespace Imath;
diff -up openexr_viewers-1.0.1/playexr/ctlToLut.h.gcc43 openexr_viewers-1.0.1/playexr/ctlToLut.h
--- openexr_viewers-1.0.1/playexr/ctlToLut.h.gcc43 2008-01-10 03:09:55.000000000 +0100
+++ openexr_viewers-1.0.1/playexr/ctlToLut.h 2008-01-10 03:11:18.000000000 +0100
@@ -88,6 +88,7 @@
#include <string>
#include <vector>
#include <half.h>
+#include <cstdlib>
void
diff -up openexr_viewers-1.0.1/playexr/main.cpp.gcc43 openexr_viewers-1.0.1/playexr/main.cpp
--- openexr_viewers-1.0.1/playexr/main.cpp.gcc43 2008-01-10 03:05:03.000000000 +0100
+++ openexr_viewers-1.0.1/playexr/main.cpp 2008-01-10 03:05:48.000000000 +0100
@@ -48,6 +48,7 @@
#include <vector>
#include <string>
#include <stdlib.h>
+#include <cstring>
using namespace std;
--- NEW FILE OpenEXR_Viewers-nonfree.spec ---
# nVidia Cg toolkit is not free
%define with_Cg 1
%if %with_Cg
%define real_name OpenEXR_Viewers-nonfree
%define V_suffix -nonfree
%define priority 10
%else
%define real_name OpenEXR_Viewers
%define V_suffix -fedora
%define priority 5
%endif
Name: %{real_name}
Version: 1.0.1
Release: 3%{?dist}
Summary: Viewers programs for OpenEXR
Group: Applications/Multimedia
License: AMPAS BSD
URL: http://www.openexr.com
Source0: http://download.savannah.nongnu.org/releases/openexr/openexr_viewers-%{ve...
Patch0: openexr_viewers-1.0.1-gcc43.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: OpenEXR_CTL-devel
BuildRequires: OpenEXR_CTL
BuildRequires: fltk-devel
%if %with_Cg
ExclusiveArch: i386 x86_64
BuildRequires: Cg
BuildRequires: freeglut-devel
Provides: OpenEXR_Viewers = %{version}
%else
BuildConflicts: Cg
%endif
# Last version was in F-7 - Can be dropped in F-10
Obsoletes: OpenEXR-utils < 1.6.0
Requires: OpenEXR_CTL
Requires(post): /usr/sbin/alternatives
Requires(preun): /usr/sbin/alternatives
%description
exrdisplay is a simple still image viewer that optionally applies color
transforms to OpenEXR images, using ctl as explained in this document:
doc/OpenEXRViewers.pdf
%if %with_Cg
playexr is a program that plays back OpenEXR image sequences, optionally
with CTL support, applying rendering and display transforms in line with
the current discussions at the AMPAS Image Interchange Framework committee
(September 2006).
This is the nonfree version compiled with nVidia Cg support
See: http://developer.nvidia.com/object/cg_toolkit.html
%else
%package docs
Summary: Documentation for %{name}
Group: Documentation
%description docs
This package contains documentation files for %{name}.
%endif
%prep
%setup -q -n openexr_viewers-%{version}
%patch0 -p1 -b .gcc43
%build
export CXXFLAGS="$RPM_OPT_FLAGS -L%{_libdir}"
%configure --disable-static \
%if %with_Cg
--with-cg-prefix=%{_prefix}
%endif
# Missing libs for playexr
sed -i -e 's|LIBS =|LIBS = -lglut|' playexr/Makefile
make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
# Remove the config.h - uneeded afaik
rm -rf $RPM_BUILD_ROOT%{_includedir}
# move the binary
mv $RPM_BUILD_ROOT%{_bindir}/exrdisplay $RPM_BUILD_ROOT%{_bindir}/exrdisplay%{V_suffix}
# Removing installed docs
rm -rf $RPM_BUILD_ROOT%{_datadir}/doc
# Owernship of the alternative provides
touch $RPM_BUILD_ROOT%{_bindir}/exrdisplay
%clean
rm -rf $RPM_BUILD_ROOT
%post
alternatives --install %{_bindir}/exrdisplay exrdisplay %{_bindir}/exrdisplay%{V_suffix} %{priority} ||:
%preun
if [ $1 -eq 0 ]; then
alternatives --remove exrdisplay %{_bindir}/exrdisplay%{V_suffix} || :
fi
%files
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog COPYING NEWS README
%ghost %{_bindir}/exrdisplay
%{_bindir}/exrdisplay%{V_suffix}
%if %with_Cg
%{_bindir}/playexr
%else
%files docs
%defattr(-,root,root,-)
%doc doc/OpenEXRViewers.odt doc/OpenEXRViewers.pdf
%endif
%changelog
* Wed Oct 15 2008 kwizart < kwizart at gmail.com > - 1.0.1-3
- Fix: we are -nonfree
- Cg only exist on i386 x86_64
* Sat May 10 2008 kwizart < kwizart at gmail.com > - 1.0.1-2
- Ghost the alternative provides
- Obsoletes OpenEXR-utils
* Wed Jan 9 2008 kwizart < kwizart at gmail.com > - 1.0.1-1
- Initial package for Fedora
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/OpenEXR_Viewers-nonfree/F-8/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 14 Oct 2008 14:48:22 -0000 1.1
+++ sources 15 Oct 2008 17:08:33 -0000 1.2
@@ -0,0 +1 @@
+e7b77c320a00cd89ef50605ba2a374cd openexr_viewers-1.0.1.tar.gz
16 years
rpms/OpenEXR_Viewers-nonfree/F-9 openexr_viewers-1.0.1-gcc43.patch, NONE, 1.1 OpenEXR_Viewers-nonfree.spec, NONE, 1.1 sources, 1.1, 1.2
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/OpenEXR_Viewers-nonfree/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv4541
Modified Files:
sources
Added Files:
openexr_viewers-1.0.1-gcc43.patch OpenEXR_Viewers-nonfree.spec
Log Message:
Import for F-9
openexr_viewers-1.0.1-gcc43.patch:
--- NEW FILE openexr_viewers-1.0.1-gcc43.patch ---
diff -up openexr_viewers-1.0.1/exrdisplay/applyCtl.h.gcc43 openexr_viewers-1.0.1/exrdisplay/applyCtl.h
--- openexr_viewers-1.0.1/exrdisplay/applyCtl.h.gcc43 2006-12-09 01:14:07.000000000 +0100
+++ openexr_viewers-1.0.1/exrdisplay/applyCtl.h 2008-01-10 02:07:14.000000000 +0100
@@ -49,6 +49,7 @@
#include <ImfArray.h>
#include <ImfHeader.h>
#include <vector>
+#include <cstdlib>
//
// Apply a series of CTL transforms to the raw pixel data from an image file
diff -up openexr_viewers-1.0.1/configure.ac.gcc43 openexr_viewers-1.0.1/configure.ac
--- openexr_viewers-1.0.1/configure.ac.gcc43 2007-10-10 00:20:51.000000000 +0200
+++ openexr_viewers-1.0.1/configure.ac 2008-01-10 02:07:14.000000000 +0100
@@ -126,6 +126,7 @@ AM_COMPILELINKRUN(
#include <ImfFrameBuffer.h>
#include <ImathBox.h>
#include <vector>
+#include <cstdlib>
using namespace Ctl;
using namespace Imf;
using namespace Imath;
diff -up openexr_viewers-1.0.1/configure.gcc43 openexr_viewers-1.0.1/configure
--- openexr_viewers-1.0.1/configure.gcc43 2007-10-10 00:21:01.000000000 +0200
+++ openexr_viewers-1.0.1/configure 2008-01-10 02:07:14.000000000 +0100
@@ -20869,6 +20869,7 @@ cat >>conftest.$ac_ext <<_ACEOF
#include <ImfFrameBuffer.h>
#include <ImathBox.h>
#include <vector>
+#include <cstdlib>
using namespace Ctl;
using namespace Imf;
using namespace Imath;
diff -up openexr_viewers-1.0.1/playexr/ctlToLut.h.gcc43 openexr_viewers-1.0.1/playexr/ctlToLut.h
--- openexr_viewers-1.0.1/playexr/ctlToLut.h.gcc43 2008-01-10 03:09:55.000000000 +0100
+++ openexr_viewers-1.0.1/playexr/ctlToLut.h 2008-01-10 03:11:18.000000000 +0100
@@ -88,6 +88,7 @@
#include <string>
#include <vector>
#include <half.h>
+#include <cstdlib>
void
diff -up openexr_viewers-1.0.1/playexr/main.cpp.gcc43 openexr_viewers-1.0.1/playexr/main.cpp
--- openexr_viewers-1.0.1/playexr/main.cpp.gcc43 2008-01-10 03:05:03.000000000 +0100
+++ openexr_viewers-1.0.1/playexr/main.cpp 2008-01-10 03:05:48.000000000 +0100
@@ -48,6 +48,7 @@
#include <vector>
#include <string>
#include <stdlib.h>
+#include <cstring>
using namespace std;
--- NEW FILE OpenEXR_Viewers-nonfree.spec ---
# nVidia Cg toolkit is not free
%define with_Cg 1
%if %with_Cg
%define real_name OpenEXR_Viewers-nonfree
%define V_suffix -nonfree
%define priority 10
%else
%define real_name OpenEXR_Viewers
%define V_suffix -fedora
%define priority 5
%endif
Name: %{real_name}
Version: 1.0.1
Release: 3%{?dist}
Summary: Viewers programs for OpenEXR
Group: Applications/Multimedia
License: AMPAS BSD
URL: http://www.openexr.com
Source0: http://download.savannah.nongnu.org/releases/openexr/openexr_viewers-%{ve...
Patch0: openexr_viewers-1.0.1-gcc43.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: OpenEXR_CTL-devel
BuildRequires: OpenEXR_CTL
BuildRequires: fltk-devel
%if %with_Cg
ExclusiveArch: i386 x86_64
BuildRequires: Cg
BuildRequires: freeglut-devel
Provides: OpenEXR_Viewers = %{version}
%else
BuildConflicts: Cg
%endif
# Last version was in F-7 - Can be dropped in F-10
Obsoletes: OpenEXR-utils < 1.6.0
Requires: OpenEXR_CTL
Requires(post): /usr/sbin/alternatives
Requires(preun): /usr/sbin/alternatives
%description
exrdisplay is a simple still image viewer that optionally applies color
transforms to OpenEXR images, using ctl as explained in this document:
doc/OpenEXRViewers.pdf
%if %with_Cg
playexr is a program that plays back OpenEXR image sequences, optionally
with CTL support, applying rendering and display transforms in line with
the current discussions at the AMPAS Image Interchange Framework committee
(September 2006).
This is the nonfree version compiled with nVidia Cg support
See: http://developer.nvidia.com/object/cg_toolkit.html
%else
%package docs
Summary: Documentation for %{name}
Group: Documentation
%description docs
This package contains documentation files for %{name}.
%endif
%prep
%setup -q -n openexr_viewers-%{version}
%patch0 -p1 -b .gcc43
%build
export CXXFLAGS="$RPM_OPT_FLAGS -L%{_libdir}"
%configure --disable-static \
%if %with_Cg
--with-cg-prefix=%{_prefix}
%endif
# Missing libs for playexr
sed -i -e 's|LIBS =|LIBS = -lglut|' playexr/Makefile
make %{?_smp_mflags}
%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
# Remove the config.h - uneeded afaik
rm -rf $RPM_BUILD_ROOT%{_includedir}
# move the binary
mv $RPM_BUILD_ROOT%{_bindir}/exrdisplay $RPM_BUILD_ROOT%{_bindir}/exrdisplay%{V_suffix}
# Removing installed docs
rm -rf $RPM_BUILD_ROOT%{_datadir}/doc
# Owernship of the alternative provides
touch $RPM_BUILD_ROOT%{_bindir}/exrdisplay
%clean
rm -rf $RPM_BUILD_ROOT
%post
alternatives --install %{_bindir}/exrdisplay exrdisplay %{_bindir}/exrdisplay%{V_suffix} %{priority} ||:
%preun
if [ $1 -eq 0 ]; then
alternatives --remove exrdisplay %{_bindir}/exrdisplay%{V_suffix} || :
fi
%files
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog COPYING NEWS README
%ghost %{_bindir}/exrdisplay
%{_bindir}/exrdisplay%{V_suffix}
%if %with_Cg
%{_bindir}/playexr
%else
%files docs
%defattr(-,root,root,-)
%doc doc/OpenEXRViewers.odt doc/OpenEXRViewers.pdf
%endif
%changelog
* Wed Oct 15 2008 kwizart < kwizart at gmail.com > - 1.0.1-3
- Fix: we are -nonfree
- Cg only exist on i386 x86_64
* Sat May 10 2008 kwizart < kwizart at gmail.com > - 1.0.1-2
- Ghost the alternative provides
- Obsoletes OpenEXR-utils
* Wed Jan 9 2008 kwizart < kwizart at gmail.com > - 1.0.1-1
- Initial package for Fedora
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/OpenEXR_Viewers-nonfree/F-9/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 14 Oct 2008 14:48:22 -0000 1.1
+++ sources 15 Oct 2008 17:07:56 -0000 1.2
@@ -0,0 +1 @@
+e7b77c320a00cd89ef50605ba2a374cd openexr_viewers-1.0.1.tar.gz
16 years
rpms/compat-python24-libxml2/F-8 .cvsignore, 1.3, 1.4 compat-python24-libxml2.spec, 1.2, 1.3 sources, 1.3, 1.4
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/compat-python24-libxml2/F-8
In directory se02.es.rpmfusion.net:/tmp/cvs-serv3573
Modified Files:
.cvsignore compat-python24-libxml2.spec sources
Log Message:
update to 2.7.2 (in updates-testing right now)
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/compat-python24-libxml2/F-8/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- .cvsignore 3 Oct 2008 11:32:13 -0000 1.3
+++ .cvsignore 15 Oct 2008 16:52:31 -0000 1.4
@@ -1 +1 @@
-libxml2-2.7.1.tar.gz
+libxml2-2.7.2.tar.gz
Index: compat-python24-libxml2.spec
===================================================================
RCS file: /cvs/free/rpms/compat-python24-libxml2/F-8/compat-python24-libxml2.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- compat-python24-libxml2.spec 3 Oct 2008 11:32:13 -0000 1.2
+++ compat-python24-libxml2.spec 15 Oct 2008 16:52:31 -0000 1.3
@@ -5,7 +5,7 @@
Summary: Python2.4 bindings for the libxml2 library
Name: compat-python24-libxml2
-Version: 2.7.1
+Version: 2.7.2
Release: 2%{?dist}
License: MIT
Group: Development/Libraries
@@ -62,6 +62,9 @@
%doc doc/python.html
%changelog
+* Wed Oct 15 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 2.7.2-2
+- update to 2.7.2
+
* Fri Oct 03 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 2.7.1-2
- update to 2.7.1 on request from Jonathan
Index: sources
===================================================================
RCS file: /cvs/free/rpms/compat-python24-libxml2/F-8/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sources 3 Oct 2008 11:32:13 -0000 1.3
+++ sources 15 Oct 2008 16:52:31 -0000 1.4
@@ -1 +1 @@
-abc093e9ac7ea1aabf37982ae9df6d6c libxml2-2.7.1.tar.gz
+dc43ff7ae6aded45f578c87b7b0c8766 libxml2-2.7.2.tar.gz
16 years
rpms/compat-python24-libxml2/F-9 .cvsignore, 1.3, 1.4 compat-python24-libxml2.spec, 1.2, 1.3 sources, 1.3, 1.4
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/compat-python24-libxml2/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv3470
Modified Files:
.cvsignore compat-python24-libxml2.spec sources
Log Message:
* Wed Oct 15 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 2.7.2-2
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/compat-python24-libxml2/F-9/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- .cvsignore 3 Oct 2008 11:31:53 -0000 1.3
+++ .cvsignore 15 Oct 2008 16:51:57 -0000 1.4
@@ -1 +1 @@
-libxml2-2.7.1.tar.gz
+libxml2-2.7.2.tar.gz
Index: compat-python24-libxml2.spec
===================================================================
RCS file: /cvs/free/rpms/compat-python24-libxml2/F-9/compat-python24-libxml2.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- compat-python24-libxml2.spec 3 Oct 2008 11:31:53 -0000 1.2
+++ compat-python24-libxml2.spec 15 Oct 2008 16:51:57 -0000 1.3
@@ -5,7 +5,7 @@
Summary: Python2.4 bindings for the libxml2 library
Name: compat-python24-libxml2
-Version: 2.7.1
+Version: 2.7.2
Release: 2%{?dist}
License: MIT
Group: Development/Libraries
@@ -62,6 +62,9 @@
%doc doc/python.html
%changelog
+* Wed Oct 15 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 2.7.2-2
+- update to 2.7.2
+
* Fri Oct 03 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 2.7.1-2
- update to 2.7.1 on request from Jonathan
Index: sources
===================================================================
RCS file: /cvs/free/rpms/compat-python24-libxml2/F-9/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sources 3 Oct 2008 11:31:53 -0000 1.3
+++ sources 15 Oct 2008 16:51:57 -0000 1.4
@@ -1 +1 @@
-abc093e9ac7ea1aabf37982ae9df6d6c libxml2-2.7.1.tar.gz
+dc43ff7ae6aded45f578c87b7b0c8766 libxml2-2.7.2.tar.gz
16 years
rpms/compat-python24-libxml2/devel .cvsignore, 1.3, 1.4 compat-python24-libxml2.spec, 1.2, 1.3 sources, 1.3, 1.4
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/compat-python24-libxml2/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv3342
Modified Files:
.cvsignore compat-python24-libxml2.spec sources
Log Message:
* Wed Oct 15 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 2.7.2-2
- update to 2.7.2
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/compat-python24-libxml2/devel/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- .cvsignore 3 Oct 2008 11:22:22 -0000 1.3
+++ .cvsignore 15 Oct 2008 16:51:06 -0000 1.4
@@ -1 +1 @@
-libxml2-2.7.1.tar.gz
+libxml2-2.7.2.tar.gz
Index: compat-python24-libxml2.spec
===================================================================
RCS file: /cvs/free/rpms/compat-python24-libxml2/devel/compat-python24-libxml2.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- compat-python24-libxml2.spec 3 Oct 2008 11:22:22 -0000 1.2
+++ compat-python24-libxml2.spec 15 Oct 2008 16:51:06 -0000 1.3
@@ -5,7 +5,7 @@
Summary: Python2.4 bindings for the libxml2 library
Name: compat-python24-libxml2
-Version: 2.7.1
+Version: 2.7.2
Release: 2%{?dist}
License: MIT
Group: Development/Libraries
@@ -62,6 +62,9 @@
%doc doc/python.html
%changelog
+* Wed Oct 15 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 2.7.2-2
+- update to 2.7.2
+
* Fri Oct 03 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 2.7.1-2
- update to 2.7.1 on request from Jonathan
Index: sources
===================================================================
RCS file: /cvs/free/rpms/compat-python24-libxml2/devel/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sources 3 Oct 2008 11:22:22 -0000 1.3
+++ sources 15 Oct 2008 16:51:06 -0000 1.4
@@ -1 +1 @@
-abc093e9ac7ea1aabf37982ae9df6d6c libxml2-2.7.1.tar.gz
+dc43ff7ae6aded45f578c87b7b0c8766 libxml2-2.7.2.tar.gz
16 years