rpms/osmose/F-10 osmose-0.9.1-usesystemlibraries.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 osmose.spec, 1.2, 1.3 sources, 1.2, 1.3 osmose-0.8.2-fixppcaudio.patch, 1.1, NONE osmose-0.8.2-gcc43fix.patch, 1.1, NONE osmose-0.8.2-newtimer.patch, 1.1, NONE osmose-0.8.2-usesystemlibraries.patch, 1.1, NONE
by Andrea Musuruane
Author: musuruan
Update of /cvs/free/rpms/osmose/F-10
In directory se02.es.rpmfusion.net:/tmp/cvs-serv29338
Modified Files:
.cvsignore osmose.spec sources
Added Files:
osmose-0.9.1-usesystemlibraries.patch
Removed Files:
osmose-0.8.2-fixppcaudio.patch osmose-0.8.2-gcc43fix.patch
osmose-0.8.2-newtimer.patch
osmose-0.8.2-usesystemlibraries.patch
Log Message:
* Sat Nov 07 2009 Andrea Musuruane <musuruan(a)gmail.com> - 0.9.1-1
- New upstream release.
- Removed no longer used patches.
osmose-0.9.1-usesystemlibraries.patch:
--- NEW FILE osmose-0.9.1-usesystemlibraries.patch ---
diff -durN Osmose-0-9-1.orig/Makefile Osmose-0-9-1/Makefile
--- Osmose-0-9-1.orig/Makefile 2009-11-01 11:06:49.000000000 +0100
+++ Osmose-0-9-1/Makefile 2009-11-07 11:47:39.000000000 +0100
@@ -42,7 +42,7 @@
# Compiler/Linker Flags
# add -O3 to CFLAGS for speedup -pg on LFLAGS and CFLAGS for gprof
CFLAGS = -Wall -D__USE_UNIX98 -O3
-LFLAGS = -lSDL -lGL -lz
+LFLAGS = -lSDL -lGL -lz -lminizip
AFLAGS = -f elf
CC = g++
@@ -50,10 +50,10 @@
.cpp.o:
$(CC) $(CFLAGS) -c $*.cpp -o $*.o
-all: libs disasm osmose stripexe
+all: disasm osmose
osmose: $(z80_lib) $(OSM_OBJS) $(OPT_OBJS)
- $(CC) $(CFLAGS) $(OSM_OBJS) $(Z80_LIB) $(OPT_OBJS) $(UNZIP_LIB) $(Z_LIB) -o $(OSM_EXE) $(LFLAGS)
+ $(CC) $(CFLAGS) $(OSM_OBJS) $(Z80_LIB) $(OPT_OBJS) -o $(OSM_EXE) $(LFLAGS)
disasm: $(DISASM_OBJS)
diff -durN Osmose-0-9-1.orig/MemoryMapper.h Osmose-0-9-1/MemoryMapper.h
--- Osmose-0-9-1.orig/MemoryMapper.h 2009-10-25 15:54:31.000000000 +0100
+++ Osmose-0-9-1/MemoryMapper.h 2009-11-07 11:44:22.000000000 +0100
@@ -17,7 +17,7 @@
#include <iostream>
#include <fstream>
#include <iomanip>
-#include "unzip/unzip.h"
+#include <minizip/unzip.h>
#include "Options.h"
#include "Definitions.h"
#include "DebugEventThrower.h"
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/osmose/F-10/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 19 Jul 2008 19:04:43 -0000 1.2
+++ .cvsignore 7 Nov 2009 11:44:26 -0000 1.3
@@ -1 +1 @@
-osmose-0-8-2-src.zip
+Osmose-0-9-1-src.zip
Index: osmose.spec
===================================================================
RCS file: /cvs/free/rpms/osmose/F-10/osmose.spec,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- osmose.spec 30 Jul 2008 05:18:22 -0000 1.2
+++ osmose.spec 7 Nov 2009 11:44:26 -0000 1.3
@@ -1,37 +1,38 @@
+%define pkgname Osmose
%define pkgversion %(echo %version|sed s/\\\\\./-/g)
Name: osmose
-Version: 0.8.2
-Release: 4%{?dist}
+Version: 0.9.1
+Release: 1%{?dist}
Summary: A Sega Master System / Game Gear emulator
Group: Applications/Emulators
License: GPLv2+
URL: http://bcz.emu-france.com/%{name}.htm
-Source: http://bcz.emu-france.com/%{name}/%{name}-%{pkgversion}-src.zip
+Source: http://bcz.emu-france.com/%{name}/%{pkgname}-%{pkgversion}-src.zip
# Andrea Musuruane
-Patch0: %{name}-0.8.2-usesystemlibraries.patch
-# Ian Chapman
-Patch1: %{name}-0.8.2-newtimer.patch
-Patch2: %{name}-0.8.2-fixppcaudio.patch
-Patch3: %{name}-0.8.2-gcc43fix.patch
+Patch0: %{name}-0.9.1-usesystemlibraries.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: SDL-devel
BuildRequires: minizip-devel
+BuildRequires: mesa-libGL-devel
%description
Osmose is another Sega Master System / Gamegear emulator.
%prep
-%setup -q -n Osmose
+%setup -q -n %{pkgname}-%{pkgversion}
%patch0 -p1
-%patch1 -p1
+
+# Make sure we don't use local zlib
+rm -rf zlib
+
+# Fix osmose on ppc
%ifarch ppc ppc64
-%patch2 -p1
+sed -i 's/AUDIO_S16LSB/AUDIO_S16MSB/' OsmoseCore.cpp
%endif
-%patch3 -p1
# Fix end-of-line encoding
sed -i 's/\r//' *.txt *.{cpp,h} cpu/*.{cpp,h}
@@ -61,6 +62,13 @@
%changelog
+* Sat Nov 07 2009 Andrea Musuruane <musuruan(a)gmail.com> - 0.9.1-1
+- New upstream release.
+- Removed no longer used patches.
+
+* Sun Mar 29 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.8.2-5
+- rebuild for new F11 features
+
* Wed Jul 30 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 0.8.2-4
- rebuild for buildsys cflags issue
Index: sources
===================================================================
RCS file: /cvs/free/rpms/osmose/F-10/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 19 Jul 2008 19:04:43 -0000 1.2
+++ sources 7 Nov 2009 11:44:27 -0000 1.3
@@ -1 +1 @@
-f1b3ba02f1641eb88e15b16b0caabbe6 osmose-0-8-2-src.zip
+fafa52a39e6fe194b34fa2cfd0df7466 Osmose-0-9-1-src.zip
--- osmose-0.8.2-fixppcaudio.patch DELETED ---
--- osmose-0.8.2-gcc43fix.patch DELETED ---
--- osmose-0.8.2-newtimer.patch DELETED ---
--- osmose-0.8.2-usesystemlibraries.patch DELETED ---
15 years
rpms/osmose/F-11 osmose-0.9.1-usesystemlibraries.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 osmose.spec, 1.3, 1.4 sources, 1.2, 1.3 osmose-0.8.2-fixppcaudio.patch, 1.1, NONE osmose-0.8.2-gcc43fix.patch, 1.1, NONE osmose-0.8.2-newtimer.patch, 1.1, NONE osmose-0.8.2-usesystemlibraries.patch, 1.1, NONE
by Andrea Musuruane
Author: musuruan
Update of /cvs/free/rpms/osmose/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv28890
Modified Files:
.cvsignore osmose.spec sources
Added Files:
osmose-0.9.1-usesystemlibraries.patch
Removed Files:
osmose-0.8.2-fixppcaudio.patch osmose-0.8.2-gcc43fix.patch
osmose-0.8.2-newtimer.patch
osmose-0.8.2-usesystemlibraries.patch
Log Message:
* Sat Nov 07 2009 Andrea Musuruane <musuruan(a)gmail.com> - 0.9.1-1
- New upstream release.
- Removed no longer used patches.
osmose-0.9.1-usesystemlibraries.patch:
--- NEW FILE osmose-0.9.1-usesystemlibraries.patch ---
diff -durN Osmose-0-9-1.orig/Makefile Osmose-0-9-1/Makefile
--- Osmose-0-9-1.orig/Makefile 2009-11-01 11:06:49.000000000 +0100
+++ Osmose-0-9-1/Makefile 2009-11-07 11:47:39.000000000 +0100
@@ -42,7 +42,7 @@
# Compiler/Linker Flags
# add -O3 to CFLAGS for speedup -pg on LFLAGS and CFLAGS for gprof
CFLAGS = -Wall -D__USE_UNIX98 -O3
-LFLAGS = -lSDL -lGL -lz
+LFLAGS = -lSDL -lGL -lz -lminizip
AFLAGS = -f elf
CC = g++
@@ -50,10 +50,10 @@
.cpp.o:
$(CC) $(CFLAGS) -c $*.cpp -o $*.o
-all: libs disasm osmose stripexe
+all: disasm osmose
osmose: $(z80_lib) $(OSM_OBJS) $(OPT_OBJS)
- $(CC) $(CFLAGS) $(OSM_OBJS) $(Z80_LIB) $(OPT_OBJS) $(UNZIP_LIB) $(Z_LIB) -o $(OSM_EXE) $(LFLAGS)
+ $(CC) $(CFLAGS) $(OSM_OBJS) $(Z80_LIB) $(OPT_OBJS) -o $(OSM_EXE) $(LFLAGS)
disasm: $(DISASM_OBJS)
diff -durN Osmose-0-9-1.orig/MemoryMapper.h Osmose-0-9-1/MemoryMapper.h
--- Osmose-0-9-1.orig/MemoryMapper.h 2009-10-25 15:54:31.000000000 +0100
+++ Osmose-0-9-1/MemoryMapper.h 2009-11-07 11:44:22.000000000 +0100
@@ -17,7 +17,7 @@
#include <iostream>
#include <fstream>
#include <iomanip>
-#include "unzip/unzip.h"
+#include <minizip/unzip.h>
#include "Options.h"
#include "Definitions.h"
#include "DebugEventThrower.h"
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/osmose/F-11/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 19 Jul 2008 19:04:43 -0000 1.2
+++ .cvsignore 7 Nov 2009 11:42:28 -0000 1.3
@@ -1 +1 @@
-osmose-0-8-2-src.zip
+Osmose-0-9-1-src.zip
Index: osmose.spec
===================================================================
RCS file: /cvs/free/rpms/osmose/F-11/osmose.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- osmose.spec 29 Mar 2009 13:56:24 -0000 1.3
+++ osmose.spec 7 Nov 2009 11:42:28 -0000 1.4
@@ -1,37 +1,38 @@
+%define pkgname Osmose
%define pkgversion %(echo %version|sed s/\\\\\./-/g)
Name: osmose
-Version: 0.8.2
-Release: 5%{?dist}
+Version: 0.9.1
+Release: 1%{?dist}
Summary: A Sega Master System / Game Gear emulator
Group: Applications/Emulators
License: GPLv2+
URL: http://bcz.emu-france.com/%{name}.htm
-Source: http://bcz.emu-france.com/%{name}/%{name}-%{pkgversion}-src.zip
+Source: http://bcz.emu-france.com/%{name}/%{pkgname}-%{pkgversion}-src.zip
# Andrea Musuruane
-Patch0: %{name}-0.8.2-usesystemlibraries.patch
-# Ian Chapman
-Patch1: %{name}-0.8.2-newtimer.patch
-Patch2: %{name}-0.8.2-fixppcaudio.patch
-Patch3: %{name}-0.8.2-gcc43fix.patch
+Patch0: %{name}-0.9.1-usesystemlibraries.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: SDL-devel
BuildRequires: minizip-devel
+BuildRequires: mesa-libGL-devel
%description
Osmose is another Sega Master System / Gamegear emulator.
%prep
-%setup -q -n Osmose
+%setup -q -n %{pkgname}-%{pkgversion}
%patch0 -p1
-%patch1 -p1
+
+# Make sure we don't use local zlib
+rm -rf zlib
+
+# Fix osmose on ppc
%ifarch ppc ppc64
-%patch2 -p1
+sed -i 's/AUDIO_S16LSB/AUDIO_S16MSB/' OsmoseCore.cpp
%endif
-%patch3 -p1
# Fix end-of-line encoding
sed -i 's/\r//' *.txt *.{cpp,h} cpu/*.{cpp,h}
@@ -61,6 +62,10 @@
%changelog
+* Sat Nov 07 2009 Andrea Musuruane <musuruan(a)gmail.com> - 0.9.1-1
+- New upstream release.
+- Removed no longer used patches.
+
* Sun Mar 29 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.8.2-5
- rebuild for new F11 features
Index: sources
===================================================================
RCS file: /cvs/free/rpms/osmose/F-11/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 19 Jul 2008 19:04:43 -0000 1.2
+++ sources 7 Nov 2009 11:42:28 -0000 1.3
@@ -1 +1 @@
-f1b3ba02f1641eb88e15b16b0caabbe6 osmose-0-8-2-src.zip
+fafa52a39e6fe194b34fa2cfd0df7466 Osmose-0-9-1-src.zip
--- osmose-0.8.2-fixppcaudio.patch DELETED ---
--- osmose-0.8.2-gcc43fix.patch DELETED ---
--- osmose-0.8.2-newtimer.patch DELETED ---
--- osmose-0.8.2-usesystemlibraries.patch DELETED ---
15 years
rpms/osmose/devel osmose-0.9.1-usesystemlibraries.patch, NONE, 1.1 .cvsignore, 1.2, 1.3 osmose.spec, 1.3, 1.4 sources, 1.2, 1.3 osmose-0.8.2-fixppcaudio.patch, 1.1, NONE osmose-0.8.2-gcc43fix.patch, 1.1, NONE osmose-0.8.2-newtimer.patch, 1.1, NONE osmose-0.8.2-usesystemlibraries.patch, 1.1, NONE
by Andrea Musuruane
Author: musuruan
Update of /cvs/free/rpms/osmose/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv27144
Modified Files:
.cvsignore osmose.spec sources
Added Files:
osmose-0.9.1-usesystemlibraries.patch
Removed Files:
osmose-0.8.2-fixppcaudio.patch osmose-0.8.2-gcc43fix.patch
osmose-0.8.2-newtimer.patch
osmose-0.8.2-usesystemlibraries.patch
Log Message:
* Sat Nov 07 2009 Andrea Musuruane <musuruan(a)gmail.com> - 0.9.1-1
- New upstream release.
- Removed no longer used patches.
osmose-0.9.1-usesystemlibraries.patch:
--- NEW FILE osmose-0.9.1-usesystemlibraries.patch ---
diff -durN Osmose-0-9-1.orig/Makefile Osmose-0-9-1/Makefile
--- Osmose-0-9-1.orig/Makefile 2009-11-01 11:06:49.000000000 +0100
+++ Osmose-0-9-1/Makefile 2009-11-07 11:47:39.000000000 +0100
@@ -42,7 +42,7 @@
# Compiler/Linker Flags
# add -O3 to CFLAGS for speedup -pg on LFLAGS and CFLAGS for gprof
CFLAGS = -Wall -D__USE_UNIX98 -O3
-LFLAGS = -lSDL -lGL -lz
+LFLAGS = -lSDL -lGL -lz -lminizip
AFLAGS = -f elf
CC = g++
@@ -50,10 +50,10 @@
.cpp.o:
$(CC) $(CFLAGS) -c $*.cpp -o $*.o
-all: libs disasm osmose stripexe
+all: disasm osmose
osmose: $(z80_lib) $(OSM_OBJS) $(OPT_OBJS)
- $(CC) $(CFLAGS) $(OSM_OBJS) $(Z80_LIB) $(OPT_OBJS) $(UNZIP_LIB) $(Z_LIB) -o $(OSM_EXE) $(LFLAGS)
+ $(CC) $(CFLAGS) $(OSM_OBJS) $(Z80_LIB) $(OPT_OBJS) -o $(OSM_EXE) $(LFLAGS)
disasm: $(DISASM_OBJS)
diff -durN Osmose-0-9-1.orig/MemoryMapper.h Osmose-0-9-1/MemoryMapper.h
--- Osmose-0-9-1.orig/MemoryMapper.h 2009-10-25 15:54:31.000000000 +0100
+++ Osmose-0-9-1/MemoryMapper.h 2009-11-07 11:44:22.000000000 +0100
@@ -17,7 +17,7 @@
#include <iostream>
#include <fstream>
#include <iomanip>
-#include "unzip/unzip.h"
+#include <minizip/unzip.h>
#include "Options.h"
#include "Definitions.h"
#include "DebugEventThrower.h"
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/osmose/devel/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 19 Jul 2008 19:04:43 -0000 1.2
+++ .cvsignore 7 Nov 2009 11:33:21 -0000 1.3
@@ -1 +1 @@
-osmose-0-8-2-src.zip
+Osmose-0-9-1-src.zip
Index: osmose.spec
===================================================================
RCS file: /cvs/free/rpms/osmose/devel/osmose.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- osmose.spec 29 Mar 2009 13:56:24 -0000 1.3
+++ osmose.spec 7 Nov 2009 11:33:21 -0000 1.4
@@ -1,37 +1,38 @@
+%define pkgname Osmose
%define pkgversion %(echo %version|sed s/\\\\\./-/g)
Name: osmose
-Version: 0.8.2
-Release: 5%{?dist}
+Version: 0.9.1
+Release: 1%{?dist}
Summary: A Sega Master System / Game Gear emulator
Group: Applications/Emulators
License: GPLv2+
URL: http://bcz.emu-france.com/%{name}.htm
-Source: http://bcz.emu-france.com/%{name}/%{name}-%{pkgversion}-src.zip
+Source: http://bcz.emu-france.com/%{name}/%{pkgname}-%{pkgversion}-src.zip
# Andrea Musuruane
-Patch0: %{name}-0.8.2-usesystemlibraries.patch
-# Ian Chapman
-Patch1: %{name}-0.8.2-newtimer.patch
-Patch2: %{name}-0.8.2-fixppcaudio.patch
-Patch3: %{name}-0.8.2-gcc43fix.patch
+Patch0: %{name}-0.9.1-usesystemlibraries.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: SDL-devel
BuildRequires: minizip-devel
+BuildRequires: mesa-libGL-devel
%description
Osmose is another Sega Master System / Gamegear emulator.
%prep
-%setup -q -n Osmose
+%setup -q -n %{pkgname}-%{pkgversion}
%patch0 -p1
-%patch1 -p1
+
+# Make sure we don't use local zlib
+rm -rf zlib
+
+# Fix osmose on ppc
%ifarch ppc ppc64
-%patch2 -p1
+sed -i 's/AUDIO_S16LSB/AUDIO_S16MSB/' OsmoseCore.cpp
%endif
-%patch3 -p1
# Fix end-of-line encoding
sed -i 's/\r//' *.txt *.{cpp,h} cpu/*.{cpp,h}
@@ -61,6 +62,10 @@
%changelog
+* Sat Nov 07 2009 Andrea Musuruane <musuruan(a)gmail.com> - 0.9.1-1
+- New upstream release.
+- Removed no longer used patches.
+
* Sun Mar 29 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.8.2-5
- rebuild for new F11 features
Index: sources
===================================================================
RCS file: /cvs/free/rpms/osmose/devel/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 19 Jul 2008 19:04:43 -0000 1.2
+++ sources 7 Nov 2009 11:33:21 -0000 1.3
@@ -1 +1 @@
-f1b3ba02f1641eb88e15b16b0caabbe6 osmose-0-8-2-src.zip
+fafa52a39e6fe194b34fa2cfd0df7466 Osmose-0-9-1-src.zip
--- osmose-0.8.2-fixppcaudio.patch DELETED ---
--- osmose-0.8.2-gcc43fix.patch DELETED ---
--- osmose-0.8.2-newtimer.patch DELETED ---
--- osmose-0.8.2-usesystemlibraries.patch DELETED ---
15 years
rpms/VirtualBox-OSE-kmod/F-11 VirtualBox-OSE-kmod.spec,1.33,1.34
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/VirtualBox-OSE-kmod/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv3581
Modified Files:
VirtualBox-OSE-kmod.spec
Log Message:
* Sat Nov 07 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.0.10-1.2
- rebuild for akmod package
Index: VirtualBox-OSE-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-OSE-kmod/F-11/VirtualBox-OSE-kmod.spec,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- VirtualBox-OSE-kmod.spec 5 Nov 2009 19:13:00 -0000 1.33
+++ VirtualBox-OSE-kmod.spec 7 Nov 2009 09:11:09 -0000 1.34
@@ -11,7 +11,7 @@
Name: VirtualBox-OSE-kmod
Version: 3.0.10
-Release: 1%{?dist}.1
+Release: 1%{?dist}.2
Summary: Kernel module for VirtualBox-OSE
Group: System Environment/Kernel
@@ -90,6 +90,9 @@
%changelog
+* Sat Nov 07 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.0.10-1.2
+- rebuild for akmod package
+
* Thu Nov 05 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.0.10-1.1
- rebuild for new kernels
15 years
rpms/blcr-kmod/devel find_task_by_pid.patch,NONE,1.1
by Neal Becker
Author: nbecker
Update of /cvs/free/rpms/blcr-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv2409
Added Files:
find_task_by_pid.patch
Log Message:
find_task_by_pid.patch:
--- NEW FILE find_task_by_pid.patch ---
--- configure.ac 23 Aug 2009 22:58:26 -0000 1.410.2.10
+++ configure.ac 7 Nov 2009 00:15:14 -0000
@@ -1225,6 +1225,7 @@ CR_CHECK_KERNEL_CALL([find_task_by_pid_n
if test -z "${HAVE_FIND_TASK_BY_PID}${HAVE_FIND_TASK_BY_PID_NS}"; then
CR_BAD_KERNEL([unable to determine how to map pid_nr -> struct task])
fi
+CR_FIND_KSYM([find_task_by_pid_ns],[CODE])
CR_CHECK_KERNEL_CALL([find_task_by_pid_type],[#include <linux/sched.h>])
CR_CHECK_KERNEL_CALL([find_task_by_pid_type_ns],[#include <linux/sched.h>])
15 years
rpms/blcr-kmod/devel blcr-kmod.spec,1.20,1.21
by Neal Becker
Author: nbecker
Update of /cvs/free/rpms/blcr-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv2333
Modified Files:
blcr-kmod.spec
Log Message:
Try patch for 2.6.31.5
Index: blcr-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/blcr-kmod/devel/blcr-kmod.spec,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- blcr-kmod.spec 6 Nov 2009 08:59:35 -0000 1.20
+++ blcr-kmod.spec 7 Nov 2009 00:56:25 -0000 1.21
@@ -7,7 +7,7 @@
Name: blcr-kmod
Version: 0.8.1
-Release: 3%{?dist}.11
+Release: 3%{?dist}.12
Summary: Kernel module (kmod) for Berkeley Lab Checkpoint/Restart for Linux
%define distname blcr-%{version}
@@ -20,6 +20,9 @@
Patch0: put_fs_struct.patch01
# Patch to configure because new System.map does not have _end
Patch1: configure.patch00
+# Try patch for 2.6.31.5 for find_task_by_pid_type_ns
+Patch2: find_task_by_pid.patch
+
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
#Generic i386 is NOT supported
@@ -28,7 +31,7 @@
# get the needed BuildRequires (in parts depending on what we build for)
# CHANGE THIS when patch1 is removed
-#BuildRequires: %{_bindir}/kmodtool autoconf automake libtool
+BuildRequires: %{_bindir}/kmodtool autoconf automake libtool
BuildRequires: %{_bindir}/kmodtool
%{!?kernels:BuildRequires: buildsys-build-rpmfusion-kerneldevpkgs-%{?buildforkernels:%{buildforkernels}}%{!?buildforkernels:current}-%{_target_cpu} }
# kmodtool does its magic here
@@ -50,8 +53,9 @@
# apply patches and do other stuff here
pushd %{distname}
%patch0 -p1
+%patch2 -p0
# patch changed configure.ac
-#autoreconf --force --install
+autoreconf --force --install
popd
for kernel_version in %{?kernel_versions} ; do
@@ -83,6 +87,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Fri Nov 6 2009 Neal Becker <ndbecker2(a)gmail.com> - 0.8.1-3.12
+- Try patch for 2.6.31.5
+
* Fri Nov 06 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.8.1-3.11
- rebuild for new kernels
15 years
rpms/gstreamer-plugins-ugly/devel gstreamer-plugins-ugly-x264.patch, NONE, 1.1 gstreamer-plugins-ugly.spec, 1.19, 1.20
by Dominik Mierzejewski
Author: rathann
Update of /cvs/free/rpms/gstreamer-plugins-ugly/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv26032
Modified Files:
gstreamer-plugins-ugly.spec
Added Files:
gstreamer-plugins-ugly-x264.patch
Log Message:
* Fri Nov 06 2009 Dominik Mierzejewski <rpm(a)greysector.net> - 0.10.12-4
- Fix compilation against current x264
gstreamer-plugins-ugly-x264.patch:
--- NEW FILE gstreamer-plugins-ugly-x264.patch ---
diff -up gst-plugins-ugly-0.10.12/ext/x264/gstx264enc.c.x264 gst-plugins-ugly-0.10.12/ext/x264/gstx264enc.c
--- gst-plugins-ugly-0.10.12/ext/x264/gstx264enc.c.x264 2009-06-05 22:02:52.000000000 +0200
+++ gst-plugins-ugly-0.10.12/ext/x264/gstx264enc.c 2009-10-26 16:44:43.000000000 +0100
@@ -576,7 +576,11 @@ gst_x264_enc_init_encoder (GstX264Enc *
encoder->x264param.analyse.i_noise_reduction = encoder->noise_reduction;
encoder->x264param.i_frame_reference = encoder->ref;
encoder->x264param.i_bframe = encoder->bframes;
+#if X264_BUILD < 78
encoder->x264param.b_bframe_pyramid = encoder->b_pyramid;
+#else
+ encoder->x264param.i_bframe_pyramid = encoder->b_pyramid;
+#endif
#if X264_BUILD < 63
encoder->x264param.b_bframe_adaptive = encoder->b_adapt;
#else
Index: gstreamer-plugins-ugly.spec
===================================================================
RCS file: /cvs/free/rpms/gstreamer-plugins-ugly/devel/gstreamer-plugins-ugly.spec,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- gstreamer-plugins-ugly.spec 20 Oct 2009 05:00:23 -0000 1.19
+++ gstreamer-plugins-ugly.spec 6 Nov 2009 13:08:26 -0000 1.20
@@ -11,12 +11,13 @@
Summary: GStreamer streaming media framework "ugly" plug-ins
Name: gstreamer-plugins-ugly
Version: 0.10.12
-Release: 3%{?dist}
+Release: 4%{?dist}
License: LGPLv2+
Group: Applications/Multimedia
URL: http://gstreamer.freedesktop.org/
Source: http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-%{...
Patch0: gstreamer-plugins-ugly-opencore-amr.patch
+Patch1: gstreamer-plugins-ugly-x264.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Requires: %{gstreamer} >= %{gst_minver}
BuildRequires: %{gstreamer}-devel >= %{gst_minver}
@@ -62,6 +63,7 @@
%setup -q -n gst-plugins-ugly-%{version}
mkdir ext/amrwbdec
%patch0 -p1 -z .amr
+%patch1 -p1 -b .x264
./autogen.sh
@@ -115,6 +117,9 @@
%changelog
+* Fri Nov 06 2009 Dominik Mierzejewski <rpm(a)greysector.net> - 0.10.12-4
+- Fix compilation against current x264
+
* Tue Oct 20 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.10.12-3
- rebuilt
15 years
rpms/blcr-kmod/devel blcr-kmod.spec,1.19,1.20
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/blcr-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv10342
Modified Files:
blcr-kmod.spec
Log Message:
* Fri Nov 06 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.8.1-3.11
- rebuild for new kernels
Index: blcr-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/blcr-kmod/devel/blcr-kmod.spec,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- blcr-kmod.spec 21 Oct 2009 11:04:26 -0000 1.19
+++ blcr-kmod.spec 6 Nov 2009 08:59:35 -0000 1.20
@@ -1,4 +1,4 @@
-c# buildforkernels macro hint: when you build a new version or a new release
+# buildforkernels macro hint: when you build a new version or a new release
# that contains bugfixes or other improvements then you must disable the
# "buildforkernels newest" macro for just that build; immediately after
# queuing that build enable the macro again for subsequent builds; that way
@@ -7,7 +7,7 @@
Name: blcr-kmod
Version: 0.8.1
-Release: 3%{?dist}.10
+Release: 3%{?dist}.11
Summary: Kernel module (kmod) for Berkeley Lab Checkpoint/Restart for Linux
%define distname blcr-%{version}
@@ -83,6 +83,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Fri Nov 06 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.8.1-3.11
+- rebuild for new kernels
+
* Wed Oct 21 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.8.1-3.9
- rebuild for new kernels
15 years
rpms/wl-kmod/devel wl-kmod.spec,1.44,1.45
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/wl-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv7613
Modified Files:
wl-kmod.spec
Log Message:
* Fri Nov 06 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 5.10.91.9.3-3.4
- rebuild for new kernels
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/devel/wl-kmod.spec,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- wl-kmod.spec 4 Nov 2009 15:22:04 -0000 1.44
+++ wl-kmod.spec 6 Nov 2009 08:24:20 -0000 1.45
@@ -7,7 +7,7 @@
Name: wl-kmod
Version: 5.10.91.9.3
-Release: 3%{?dist}.3
+Release: 3%{?dist}.4
Summary: Kernel module for broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -82,6 +82,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Fri Nov 06 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 5.10.91.9.3-3.4
+- rebuild for new kernels
+
* Wed Nov 04 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 5.10.91.9.3-3.3
- rebuild for new kernels
15 years
rpms/slmodem-kmod/devel slmodem-kmod.spec,1.33,1.34
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/slmodem-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv7491
Modified Files:
slmodem-kmod.spec
Log Message:
* Fri Nov 06 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.9.11-27.32
- rebuild for new kernels
Index: slmodem-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/slmodem-kmod/devel/slmodem-kmod.spec,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- slmodem-kmod.spec 4 Nov 2009 15:21:47 -0000 1.33
+++ slmodem-kmod.spec 6 Nov 2009 08:24:04 -0000 1.34
@@ -12,7 +12,7 @@
Name: slmodem-kmod
Version: 2.9.11
-Release: 27%{?dist}.31
+Release: 27%{?dist}.32
Summary: Proprietary SmartLink softmodem kernel drivers
Group: System Environment/Kernel
@@ -102,6 +102,9 @@
%changelog
+* Fri Nov 06 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.9.11-27.32
+- rebuild for new kernels
+
* Wed Nov 04 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.9.11-27.31
- rebuild for new kernels
15 years