rpms/mess/F-13 .cvsignore, 1.5, 1.6 mess.spec, 1.4, 1.5 sources, 1.5, 1.6
by Julian Sikorski
Author: belegdol
Update of /cvs/nonfree/rpms/mess/F-13
In directory se02.es.rpmfusion.net:/tmp/cvs-serv21171
Modified Files:
.cvsignore mess.spec sources
Log Message:
* Mon Apr 04 2011 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.142-1
- Updated to 0.142
- Provided an easy way to build a SVN snapshot
- Filtered out redundant $RPM_OPT_FLAGS
- No longer enable joystick by default
- Re-enabled the fortify patch
- Delete mame hash files
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/mess/F-13/.cvsignore,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- .cvsignore 14 Jan 2011 20:08:48 -0000 1.5
+++ .cvsignore 4 Apr 2011 19:45:46 -0000 1.6
@@ -1,3 +1,3 @@
ctrlr.rar
-mame0141s.exe
-mess0141s.zip
+mame0142s.exe
+mess0142s.zip
Index: mess.spec
===================================================================
RCS file: /cvs/nonfree/rpms/mess/F-13/mess.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- mess.spec 14 Jan 2011 20:08:49 -0000 1.4
+++ mess.spec 4 Apr 2011 19:45:47 -0000 1.5
@@ -1,7 +1,8 @@
# the debug build is disabled by default, please use --with debug to override
%bcond_with debug
-%global baseversion 141
+%global baseversion 142
+#global snapshot 1
Name: mess
Version: 0.%{baseversion}
@@ -12,11 +13,13 @@
#Files in src/lib/util and src/osd (except src/osd/sdl) are BSD
License: MAME License
URL: http://www.mess.org/
+%if 0%{?snapshot}
+Source0: mess-snapshot.tar.xz
+%else
Source0: http://www.aarongiles.com/mirror/releases/mame0%{baseversion}s.exe
Source1: http://www.mess.org/files/%{name}0%{baseversion}s.zip
+%endif
Source2: ctrlr.rar
-#ui.bdc generated from ui.bdf
-#Source2: ui.bdc
Patch0: %{name}-fortify.patch
Patch1: %{name}-verbosebuild.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -66,11 +69,17 @@
%prep
+%if 0%{?snapshot}
+%setup -qn %{name}
+%else
%setup -qcT
7za x %{SOURCE0}
+#mess does not need mame hash files
+rm -rf hash
find . -type f -not -name uismall.png -exec sed -i 's/\r//' {} \;
unzip -o %{SOURCE1}
-#patch0 -p1 -b .fortify
+%endif
+%patch0 -p1 -b .fortify
%patch1 -p1 -b .verbosebuild
# Remove windows-specific documentation
@@ -117,63 +126,68 @@
# Fedora custom defaults
video opengl
autosave 1
-joystick 1
EOF
%build
+#these flags are already included in the Makefile
+RPM_OPT_FLAGS=$(echo $RPM_OPT_FLAGS | sed -e s/"-O2 -g -pipe -Wall "//)
+
%if %{with debug}
make %{?_smp_mflags} NOWERROR=1 SYMBOLS=1 OPTIMIZE=2 BUILD_EXPAT=0 BUILD_ZLIB=0 SUFFIX64="" \
- OPT_FLAGS='%{optflags} -DINI_PATH="\"%{_sysconfdir}/%{name};\""' DEBUG=1 all TARGET=mess
+ OPT_FLAGS="$RPM_OPT_FLAGS -DINI_PATH='\"%{_sysconfdir}/%{name};\"'" DEBUG=1 all TARGET=mess
%else
make %{?_smp_mflags} NOWERROR=1 SYMBOLS=1 OPTIMIZE=2 BUILD_EXPAT=0 BUILD_ZLIB=0 SUFFIX64="" \
- OPT_FLAGS='%{optflags} -DINI_PATH="\"%{_sysconfdir}/%{name};\""' all TARGET=mess
+ OPT_FLAGS="$RPM_OPT_FLAGS -DINI_PATH='\"%{_sysconfdir}/%{name};\"'" all TARGET=mess
%endif
%install
-rm -rf %{buildroot}
+rm -rf $RPM_BUILD_ROOT
# create directories
-install -d %{buildroot}%{_bindir}
-install -d %{buildroot}%{_datadir}/%{name}/artwork
-install -d %{buildroot}%{_datadir}/%{name}/roms
-install -d %{buildroot}%{_datadir}/%{name}/ctrlr
-install -d %{buildroot}%{_datadir}/%{name}/fonts
-install -d %{buildroot}%{_datadir}/%{name}/hash
-install -d %{buildroot}%{_datadir}/%{name}/samples
-install -d %{buildroot}%{_datadir}/%{name}/software
-install -d %{buildroot}%{_datadir}/%{name}/cheats
-install -d %{buildroot}%{_sysconfdir}/%{name}
-install -d %{buildroot}%{_sysconfdir}/skel/.%{name}/cfg
-install -d %{buildroot}%{_sysconfdir}/skel/.%{name}/comments
-install -d %{buildroot}%{_sysconfdir}/skel/.%{name}/diff
-install -d %{buildroot}%{_sysconfdir}/skel/.%{name}/ini
-install -d %{buildroot}%{_sysconfdir}/skel/.%{name}/inp
-install -d %{buildroot}%{_sysconfdir}/skel/.%{name}/memcard
-install -d %{buildroot}%{_sysconfdir}/skel/.%{name}/nvram
-install -d %{buildroot}%{_sysconfdir}/skel/.%{name}/sta
-install -d %{buildroot}%{_sysconfdir}/skel/.%{name}/snap
+install -d $RPM_BUILD_ROOT%{_bindir}
+install -d $RPM_BUILD_ROOT%{_datadir}/%{name}/artwork
+install -d $RPM_BUILD_ROOT%{_datadir}/%{name}/roms
+install -d $RPM_BUILD_ROOT%{_datadir}/%{name}/ctrlr
+install -d $RPM_BUILD_ROOT%{_datadir}/%{name}/fonts
+install -d $RPM_BUILD_ROOT%{_datadir}/%{name}/hash
+install -d $RPM_BUILD_ROOT%{_datadir}/%{name}/samples
+install -d $RPM_BUILD_ROOT%{_datadir}/%{name}/software
+install -d $RPM_BUILD_ROOT%{_datadir}/%{name}/cheats
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/%{name}
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/skel/.%{name}/cfg
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/skel/.%{name}/comments
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/skel/.%{name}/diff
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/skel/.%{name}/ini
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/skel/.%{name}/inp
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/skel/.%{name}/memcard
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/skel/.%{name}/nvram
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/skel/.%{name}/sta
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/skel/.%{name}/snap
# Install binaries and config files
%if %{with debug}
-install -pm 755 %{name}d %{buildroot}%{_bindir}
+install -pm 755 %{name}d $RPM_BUILD_ROOT%{_bindir}
+%else
+install -pm 755 %{name} $RPM_BUILD_ROOT%{_bindir}
+%endif
+%if 0%{?snapshot}
+install -pm 755 castool dat2html imgtool $RPM_BUILD_ROOT%{_bindir}
%else
-install -pm 755 %{name} %{buildroot}%{_bindir}
+install -pm 755 castool dat2html imgtool messtest $RPM_BUILD_ROOT%{_bindir}
%endif
-install -pm 755 castool dat2html imgtool messtest %{buildroot}%{_bindir}
-install -pm 644 sysinfo.dat %{buildroot}%{_datadir}/%{name}
-install -pm 644 artwork/* %{buildroot}%{_datadir}/%{name}/artwork
-#install -pm 644 ui.bdf %{SOURCE2} %{buildroot}%{_datadir}/%{name}/fonts
-install -pm 644 hash/* %{buildroot}%{_datadir}/%{name}/hash
-install -pm 644 %{name}.ini %{buildroot}%{_sysconfdir}/%{name}
+install -pm 644 sysinfo.dat $RPM_BUILD_ROOT%{_datadir}/%{name}
+install -pm 644 artwork/* $RPM_BUILD_ROOT%{_datadir}/%{name}/artwork
+install -pm 644 hash/* $RPM_BUILD_ROOT%{_datadir}/%{name}/hash
+install -pm 644 %{name}.ini $RPM_BUILD_ROOT%{_sysconfdir}/%{name}
# Install controller files
-unrar x %{SOURCE2} %{buildroot}%{_datadir}/%{name}
+unrar x %{SOURCE2} $RPM_BUILD_ROOT%{_datadir}/%{name}
%clean
-rm -rf %{buildroot}
+rm -rf $RPM_BUILD_ROOT
%files
@@ -200,10 +214,16 @@
%files tools
%defattr(-,root,root,-)
%doc imgtool.txt
+%if 0%{?snapshot}
+%{_bindir}/castool
+%{_bindir}/dat2html
+%{_bindir}/imgtool
+%else
%{_bindir}/castool
%{_bindir}/dat2html
%{_bindir}/imgtool
%{_bindir}/messtest
+%endif
%files data
%defattr(-,root,root,-)
@@ -214,6 +234,14 @@
%changelog
+* Mon Apr 04 2011 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.142-1
+- Updated to 0.142
+- Provided an easy way to build a SVN snapshot
+- Filtered out redundant $RPM_OPT_FLAGS
+- No longer enable joystick by default
+- Re-enabled the fortify patch
+- Delete mame hash files
+
* Fri Jan 14 2011 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.141-1
- Updated to 0.141
- Temporarily dropped the fortify patch
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/mess/F-13/sources,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sources 14 Jan 2011 20:08:49 -0000 1.5
+++ sources 4 Apr 2011 19:45:47 -0000 1.6
@@ -1,3 +1,3 @@
d907085f2f69b74198796378e3ed0cb3 ctrlr.rar
-b19481d31b2d7d94c193f3e47cc5a461 mame0141s.exe
-67459d2e86ffb9569c93a8ab71c28132 mess0141s.zip
+56fa8befc6bc768906e4235ba906453c mame0142s.exe
+fecff43a5380267bcedba135581682a5 mess0142s.zip
13 years, 7 months
rpms/mess/F-14 .cvsignore, 1.5, 1.6 mess.spec, 1.4, 1.5 sources, 1.5, 1.6
by Julian Sikorski
Author: belegdol
Update of /cvs/nonfree/rpms/mess/F-14
In directory se02.es.rpmfusion.net:/tmp/cvs-serv21069
Modified Files:
.cvsignore mess.spec sources
Log Message:
* Mon Apr 04 2011 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.142-1
- Updated to 0.142
- Provided an easy way to build a SVN snapshot
- Filtered out redundant $RPM_OPT_FLAGS
- No longer enable joystick by default
- Re-enabled the fortify patch
- Delete mame hash files
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/mess/F-14/.cvsignore,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- .cvsignore 14 Jan 2011 20:08:38 -0000 1.5
+++ .cvsignore 4 Apr 2011 19:45:38 -0000 1.6
@@ -1,3 +1,3 @@
ctrlr.rar
-mame0141s.exe
-mess0141s.zip
+mame0142s.exe
+mess0142s.zip
Index: mess.spec
===================================================================
RCS file: /cvs/nonfree/rpms/mess/F-14/mess.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- mess.spec 14 Jan 2011 20:08:38 -0000 1.4
+++ mess.spec 4 Apr 2011 19:45:38 -0000 1.5
@@ -1,7 +1,8 @@
# the debug build is disabled by default, please use --with debug to override
%bcond_with debug
-%global baseversion 141
+%global baseversion 142
+#global snapshot 1
Name: mess
Version: 0.%{baseversion}
@@ -12,11 +13,13 @@
#Files in src/lib/util and src/osd (except src/osd/sdl) are BSD
License: MAME License
URL: http://www.mess.org/
+%if 0%{?snapshot}
+Source0: mess-snapshot.tar.xz
+%else
Source0: http://www.aarongiles.com/mirror/releases/mame0%{baseversion}s.exe
Source1: http://www.mess.org/files/%{name}0%{baseversion}s.zip
+%endif
Source2: ctrlr.rar
-#ui.bdc generated from ui.bdf
-#Source2: ui.bdc
Patch0: %{name}-fortify.patch
Patch1: %{name}-verbosebuild.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -66,11 +69,17 @@
%prep
+%if 0%{?snapshot}
+%setup -qn %{name}
+%else
%setup -qcT
7za x %{SOURCE0}
+#mess does not need mame hash files
+rm -rf hash
find . -type f -not -name uismall.png -exec sed -i 's/\r//' {} \;
unzip -o %{SOURCE1}
-#patch0 -p1 -b .fortify
+%endif
+%patch0 -p1 -b .fortify
%patch1 -p1 -b .verbosebuild
# Remove windows-specific documentation
@@ -117,63 +126,68 @@
# Fedora custom defaults
video opengl
autosave 1
-joystick 1
EOF
%build
+#these flags are already included in the Makefile
+RPM_OPT_FLAGS=$(echo $RPM_OPT_FLAGS | sed -e s/"-O2 -g -pipe -Wall "//)
+
%if %{with debug}
make %{?_smp_mflags} NOWERROR=1 SYMBOLS=1 OPTIMIZE=2 BUILD_EXPAT=0 BUILD_ZLIB=0 SUFFIX64="" \
- OPT_FLAGS='%{optflags} -DINI_PATH="\"%{_sysconfdir}/%{name};\""' DEBUG=1 all TARGET=mess
+ OPT_FLAGS="$RPM_OPT_FLAGS -DINI_PATH='\"%{_sysconfdir}/%{name};\"'" DEBUG=1 all TARGET=mess
%else
make %{?_smp_mflags} NOWERROR=1 SYMBOLS=1 OPTIMIZE=2 BUILD_EXPAT=0 BUILD_ZLIB=0 SUFFIX64="" \
- OPT_FLAGS='%{optflags} -DINI_PATH="\"%{_sysconfdir}/%{name};\""' all TARGET=mess
+ OPT_FLAGS="$RPM_OPT_FLAGS -DINI_PATH='\"%{_sysconfdir}/%{name};\"'" all TARGET=mess
%endif
%install
-rm -rf %{buildroot}
+rm -rf $RPM_BUILD_ROOT
# create directories
-install -d %{buildroot}%{_bindir}
-install -d %{buildroot}%{_datadir}/%{name}/artwork
-install -d %{buildroot}%{_datadir}/%{name}/roms
-install -d %{buildroot}%{_datadir}/%{name}/ctrlr
-install -d %{buildroot}%{_datadir}/%{name}/fonts
-install -d %{buildroot}%{_datadir}/%{name}/hash
-install -d %{buildroot}%{_datadir}/%{name}/samples
-install -d %{buildroot}%{_datadir}/%{name}/software
-install -d %{buildroot}%{_datadir}/%{name}/cheats
-install -d %{buildroot}%{_sysconfdir}/%{name}
-install -d %{buildroot}%{_sysconfdir}/skel/.%{name}/cfg
-install -d %{buildroot}%{_sysconfdir}/skel/.%{name}/comments
-install -d %{buildroot}%{_sysconfdir}/skel/.%{name}/diff
-install -d %{buildroot}%{_sysconfdir}/skel/.%{name}/ini
-install -d %{buildroot}%{_sysconfdir}/skel/.%{name}/inp
-install -d %{buildroot}%{_sysconfdir}/skel/.%{name}/memcard
-install -d %{buildroot}%{_sysconfdir}/skel/.%{name}/nvram
-install -d %{buildroot}%{_sysconfdir}/skel/.%{name}/sta
-install -d %{buildroot}%{_sysconfdir}/skel/.%{name}/snap
+install -d $RPM_BUILD_ROOT%{_bindir}
+install -d $RPM_BUILD_ROOT%{_datadir}/%{name}/artwork
+install -d $RPM_BUILD_ROOT%{_datadir}/%{name}/roms
+install -d $RPM_BUILD_ROOT%{_datadir}/%{name}/ctrlr
+install -d $RPM_BUILD_ROOT%{_datadir}/%{name}/fonts
+install -d $RPM_BUILD_ROOT%{_datadir}/%{name}/hash
+install -d $RPM_BUILD_ROOT%{_datadir}/%{name}/samples
+install -d $RPM_BUILD_ROOT%{_datadir}/%{name}/software
+install -d $RPM_BUILD_ROOT%{_datadir}/%{name}/cheats
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/%{name}
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/skel/.%{name}/cfg
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/skel/.%{name}/comments
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/skel/.%{name}/diff
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/skel/.%{name}/ini
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/skel/.%{name}/inp
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/skel/.%{name}/memcard
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/skel/.%{name}/nvram
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/skel/.%{name}/sta
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/skel/.%{name}/snap
# Install binaries and config files
%if %{with debug}
-install -pm 755 %{name}d %{buildroot}%{_bindir}
+install -pm 755 %{name}d $RPM_BUILD_ROOT%{_bindir}
+%else
+install -pm 755 %{name} $RPM_BUILD_ROOT%{_bindir}
+%endif
+%if 0%{?snapshot}
+install -pm 755 castool dat2html imgtool $RPM_BUILD_ROOT%{_bindir}
%else
-install -pm 755 %{name} %{buildroot}%{_bindir}
+install -pm 755 castool dat2html imgtool messtest $RPM_BUILD_ROOT%{_bindir}
%endif
-install -pm 755 castool dat2html imgtool messtest %{buildroot}%{_bindir}
-install -pm 644 sysinfo.dat %{buildroot}%{_datadir}/%{name}
-install -pm 644 artwork/* %{buildroot}%{_datadir}/%{name}/artwork
-#install -pm 644 ui.bdf %{SOURCE2} %{buildroot}%{_datadir}/%{name}/fonts
-install -pm 644 hash/* %{buildroot}%{_datadir}/%{name}/hash
-install -pm 644 %{name}.ini %{buildroot}%{_sysconfdir}/%{name}
+install -pm 644 sysinfo.dat $RPM_BUILD_ROOT%{_datadir}/%{name}
+install -pm 644 artwork/* $RPM_BUILD_ROOT%{_datadir}/%{name}/artwork
+install -pm 644 hash/* $RPM_BUILD_ROOT%{_datadir}/%{name}/hash
+install -pm 644 %{name}.ini $RPM_BUILD_ROOT%{_sysconfdir}/%{name}
# Install controller files
-unrar x %{SOURCE2} %{buildroot}%{_datadir}/%{name}
+unrar x %{SOURCE2} $RPM_BUILD_ROOT%{_datadir}/%{name}
%clean
-rm -rf %{buildroot}
+rm -rf $RPM_BUILD_ROOT
%files
@@ -200,10 +214,16 @@
%files tools
%defattr(-,root,root,-)
%doc imgtool.txt
+%if 0%{?snapshot}
+%{_bindir}/castool
+%{_bindir}/dat2html
+%{_bindir}/imgtool
+%else
%{_bindir}/castool
%{_bindir}/dat2html
%{_bindir}/imgtool
%{_bindir}/messtest
+%endif
%files data
%defattr(-,root,root,-)
@@ -214,6 +234,14 @@
%changelog
+* Mon Apr 04 2011 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.142-1
+- Updated to 0.142
+- Provided an easy way to build a SVN snapshot
+- Filtered out redundant $RPM_OPT_FLAGS
+- No longer enable joystick by default
+- Re-enabled the fortify patch
+- Delete mame hash files
+
* Fri Jan 14 2011 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.141-1
- Updated to 0.141
- Temporarily dropped the fortify patch
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/mess/F-14/sources,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sources 14 Jan 2011 20:08:38 -0000 1.5
+++ sources 4 Apr 2011 19:45:38 -0000 1.6
@@ -1,3 +1,3 @@
d907085f2f69b74198796378e3ed0cb3 ctrlr.rar
-b19481d31b2d7d94c193f3e47cc5a461 mame0141s.exe
-67459d2e86ffb9569c93a8ab71c28132 mess0141s.zip
+56fa8befc6bc768906e4235ba906453c mame0142s.exe
+fecff43a5380267bcedba135581682a5 mess0142s.zip
13 years, 7 months
rpms/mess/devel .cvsignore, 1.5, 1.6 mess.spec, 1.4, 1.5 sources, 1.5, 1.6
by Julian Sikorski
Author: belegdol
Update of /cvs/nonfree/rpms/mess/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv20961
Modified Files:
.cvsignore mess.spec sources
Log Message:
* Mon Apr 04 2011 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.142-1
- Updated to 0.142
- Provided an easy way to build a SVN snapshot
- Filtered out redundant $RPM_OPT_FLAGS
- No longer enable joystick by default
- Re-enabled the fortify patch
- Delete mame hash files
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/mess/devel/.cvsignore,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- .cvsignore 14 Jan 2011 20:08:26 -0000 1.5
+++ .cvsignore 4 Apr 2011 19:45:28 -0000 1.6
@@ -1,3 +1,3 @@
ctrlr.rar
-mame0141s.exe
-mess0141s.zip
+mame0142s.exe
+mess0142s.zip
Index: mess.spec
===================================================================
RCS file: /cvs/nonfree/rpms/mess/devel/mess.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- mess.spec 14 Jan 2011 20:08:26 -0000 1.4
+++ mess.spec 4 Apr 2011 19:45:28 -0000 1.5
@@ -1,7 +1,8 @@
# the debug build is disabled by default, please use --with debug to override
%bcond_with debug
-%global baseversion 141
+%global baseversion 142
+#global snapshot 1
Name: mess
Version: 0.%{baseversion}
@@ -12,11 +13,13 @@
#Files in src/lib/util and src/osd (except src/osd/sdl) are BSD
License: MAME License
URL: http://www.mess.org/
+%if 0%{?snapshot}
+Source0: mess-snapshot.tar.xz
+%else
Source0: http://www.aarongiles.com/mirror/releases/mame0%{baseversion}s.exe
Source1: http://www.mess.org/files/%{name}0%{baseversion}s.zip
+%endif
Source2: ctrlr.rar
-#ui.bdc generated from ui.bdf
-#Source2: ui.bdc
Patch0: %{name}-fortify.patch
Patch1: %{name}-verbosebuild.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -66,11 +69,17 @@
%prep
+%if 0%{?snapshot}
+%setup -qn %{name}
+%else
%setup -qcT
7za x %{SOURCE0}
+#mess does not need mame hash files
+rm -rf hash
find . -type f -not -name uismall.png -exec sed -i 's/\r//' {} \;
unzip -o %{SOURCE1}
-#patch0 -p1 -b .fortify
+%endif
+%patch0 -p1 -b .fortify
%patch1 -p1 -b .verbosebuild
# Remove windows-specific documentation
@@ -117,63 +126,68 @@
# Fedora custom defaults
video opengl
autosave 1
-joystick 1
EOF
%build
+#these flags are already included in the Makefile
+RPM_OPT_FLAGS=$(echo $RPM_OPT_FLAGS | sed -e s/"-O2 -g -pipe -Wall "//)
+
%if %{with debug}
make %{?_smp_mflags} NOWERROR=1 SYMBOLS=1 OPTIMIZE=2 BUILD_EXPAT=0 BUILD_ZLIB=0 SUFFIX64="" \
- OPT_FLAGS='%{optflags} -DINI_PATH="\"%{_sysconfdir}/%{name};\""' DEBUG=1 all TARGET=mess
+ OPT_FLAGS="$RPM_OPT_FLAGS -DINI_PATH='\"%{_sysconfdir}/%{name};\"'" DEBUG=1 all TARGET=mess
%else
make %{?_smp_mflags} NOWERROR=1 SYMBOLS=1 OPTIMIZE=2 BUILD_EXPAT=0 BUILD_ZLIB=0 SUFFIX64="" \
- OPT_FLAGS='%{optflags} -DINI_PATH="\"%{_sysconfdir}/%{name};\""' all TARGET=mess
+ OPT_FLAGS="$RPM_OPT_FLAGS -DINI_PATH='\"%{_sysconfdir}/%{name};\"'" all TARGET=mess
%endif
%install
-rm -rf %{buildroot}
+rm -rf $RPM_BUILD_ROOT
# create directories
-install -d %{buildroot}%{_bindir}
-install -d %{buildroot}%{_datadir}/%{name}/artwork
-install -d %{buildroot}%{_datadir}/%{name}/roms
-install -d %{buildroot}%{_datadir}/%{name}/ctrlr
-install -d %{buildroot}%{_datadir}/%{name}/fonts
-install -d %{buildroot}%{_datadir}/%{name}/hash
-install -d %{buildroot}%{_datadir}/%{name}/samples
-install -d %{buildroot}%{_datadir}/%{name}/software
-install -d %{buildroot}%{_datadir}/%{name}/cheats
-install -d %{buildroot}%{_sysconfdir}/%{name}
-install -d %{buildroot}%{_sysconfdir}/skel/.%{name}/cfg
-install -d %{buildroot}%{_sysconfdir}/skel/.%{name}/comments
-install -d %{buildroot}%{_sysconfdir}/skel/.%{name}/diff
-install -d %{buildroot}%{_sysconfdir}/skel/.%{name}/ini
-install -d %{buildroot}%{_sysconfdir}/skel/.%{name}/inp
-install -d %{buildroot}%{_sysconfdir}/skel/.%{name}/memcard
-install -d %{buildroot}%{_sysconfdir}/skel/.%{name}/nvram
-install -d %{buildroot}%{_sysconfdir}/skel/.%{name}/sta
-install -d %{buildroot}%{_sysconfdir}/skel/.%{name}/snap
+install -d $RPM_BUILD_ROOT%{_bindir}
+install -d $RPM_BUILD_ROOT%{_datadir}/%{name}/artwork
+install -d $RPM_BUILD_ROOT%{_datadir}/%{name}/roms
+install -d $RPM_BUILD_ROOT%{_datadir}/%{name}/ctrlr
+install -d $RPM_BUILD_ROOT%{_datadir}/%{name}/fonts
+install -d $RPM_BUILD_ROOT%{_datadir}/%{name}/hash
+install -d $RPM_BUILD_ROOT%{_datadir}/%{name}/samples
+install -d $RPM_BUILD_ROOT%{_datadir}/%{name}/software
+install -d $RPM_BUILD_ROOT%{_datadir}/%{name}/cheats
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/%{name}
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/skel/.%{name}/cfg
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/skel/.%{name}/comments
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/skel/.%{name}/diff
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/skel/.%{name}/ini
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/skel/.%{name}/inp
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/skel/.%{name}/memcard
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/skel/.%{name}/nvram
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/skel/.%{name}/sta
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/skel/.%{name}/snap
# Install binaries and config files
%if %{with debug}
-install -pm 755 %{name}d %{buildroot}%{_bindir}
+install -pm 755 %{name}d $RPM_BUILD_ROOT%{_bindir}
+%else
+install -pm 755 %{name} $RPM_BUILD_ROOT%{_bindir}
+%endif
+%if 0%{?snapshot}
+install -pm 755 castool dat2html imgtool $RPM_BUILD_ROOT%{_bindir}
%else
-install -pm 755 %{name} %{buildroot}%{_bindir}
+install -pm 755 castool dat2html imgtool messtest $RPM_BUILD_ROOT%{_bindir}
%endif
-install -pm 755 castool dat2html imgtool messtest %{buildroot}%{_bindir}
-install -pm 644 sysinfo.dat %{buildroot}%{_datadir}/%{name}
-install -pm 644 artwork/* %{buildroot}%{_datadir}/%{name}/artwork
-#install -pm 644 ui.bdf %{SOURCE2} %{buildroot}%{_datadir}/%{name}/fonts
-install -pm 644 hash/* %{buildroot}%{_datadir}/%{name}/hash
-install -pm 644 %{name}.ini %{buildroot}%{_sysconfdir}/%{name}
+install -pm 644 sysinfo.dat $RPM_BUILD_ROOT%{_datadir}/%{name}
+install -pm 644 artwork/* $RPM_BUILD_ROOT%{_datadir}/%{name}/artwork
+install -pm 644 hash/* $RPM_BUILD_ROOT%{_datadir}/%{name}/hash
+install -pm 644 %{name}.ini $RPM_BUILD_ROOT%{_sysconfdir}/%{name}
# Install controller files
-unrar x %{SOURCE2} %{buildroot}%{_datadir}/%{name}
+unrar x %{SOURCE2} $RPM_BUILD_ROOT%{_datadir}/%{name}
%clean
-rm -rf %{buildroot}
+rm -rf $RPM_BUILD_ROOT
%files
@@ -200,10 +214,16 @@
%files tools
%defattr(-,root,root,-)
%doc imgtool.txt
+%if 0%{?snapshot}
+%{_bindir}/castool
+%{_bindir}/dat2html
+%{_bindir}/imgtool
+%else
%{_bindir}/castool
%{_bindir}/dat2html
%{_bindir}/imgtool
%{_bindir}/messtest
+%endif
%files data
%defattr(-,root,root,-)
@@ -214,6 +234,14 @@
%changelog
+* Mon Apr 04 2011 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.142-1
+- Updated to 0.142
+- Provided an easy way to build a SVN snapshot
+- Filtered out redundant $RPM_OPT_FLAGS
+- No longer enable joystick by default
+- Re-enabled the fortify patch
+- Delete mame hash files
+
* Fri Jan 14 2011 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.141-1
- Updated to 0.141
- Temporarily dropped the fortify patch
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/mess/devel/sources,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sources 14 Jan 2011 20:08:26 -0000 1.5
+++ sources 4 Apr 2011 19:45:28 -0000 1.6
@@ -1,3 +1,3 @@
d907085f2f69b74198796378e3ed0cb3 ctrlr.rar
-b19481d31b2d7d94c193f3e47cc5a461 mame0141s.exe
-67459d2e86ffb9569c93a8ab71c28132 mess0141s.zip
+56fa8befc6bc768906e4235ba906453c mame0142s.exe
+fecff43a5380267bcedba135581682a5 mess0142s.zip
13 years, 7 months
rpms/ffmpeg/devel .cvsignore, 1.21, 1.22 ffmpeg.spec, 1.40, 1.41 sources, 1.21, 1.22
by Dominik Mierzejewski
Author: rathann
Update of /cvs/free/rpms/ffmpeg/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv25379
Modified Files:
.cvsignore ffmpeg.spec sources
Log Message:
* Mon Apr 04 2011 Dominik Mierzejewski <rpm at greysector.net> - 0.6.90-0.1.rc0
- updated to 0.6.90-rc0 release
- ensure main package is version-locked to the -libs subpackage
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/ffmpeg/devel/.cvsignore,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- .cvsignore 27 Feb 2011 23:38:24 -0000 1.21
+++ .cvsignore 4 Apr 2011 15:26:35 -0000 1.22
@@ -1 +1 @@
-ffmpeg-20110227.tar.bz2
+ffmpeg-0.6.90-rc0.tar.bz2
Index: ffmpeg.spec
===================================================================
RCS file: /cvs/free/rpms/ffmpeg/devel/ffmpeg.spec,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ffmpeg.spec 10 Mar 2011 12:48:13 -0000 1.40
+++ ffmpeg.spec 4 Apr 2011 15:26:35 -0000 1.41
@@ -1,11 +1,13 @@
# TODO: add make test to %%check section
+%global git 0
%global date 20110227
+%global rel rc0
Summary: Digital VCR and streaming server
Name: ffmpeg
-Version: 0.6.1
-Release: 1.%{date}git%{?dist}
+Version: 0.6.90
+Release: 0.1.%{rel}%{?dist}
%if 0%{?_with_amr:1}
License: GPLv3+
%else
@@ -13,10 +15,14 @@
%endif
Group: Applications/Multimedia
URL: http://ffmpeg.org/
+%if %{git}
Source0: ffmpeg-%{date}.tar.bz2
+%else
+Source0: http://ffmpeg.org/releases/ffmpeg-%{version}-%{rel}.tar.bz2
+%endif
Source1: ffmpeg-snapshot.sh
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-
+Requires: %{name}-libs = %{version}-%{release}
BuildRequires: bzip2-devel
BuildRequires: dirac-devel
%{?_with_faac:BuildRequires: faac-devel}
@@ -111,8 +117,12 @@
%prep
+%if %{git}
%setup -q -n ffmpeg-%{date}
echo "git-snapshot-%{date}-RPMFusion" > VERSION
+%else
+%setup -q -n ffmpeg-%{version}-%{rel}
+%endif
%build
mkdir generic
@@ -228,6 +238,10 @@
%changelog
+* Mon Apr 04 2011 Dominik Mierzejewski <rpm at greysector.net> - 0.6.90-0.1.rc0
+- updated to 0.6.90-rc0 release
+- ensure main package is version-locked to the -libs subpackage
+
* Sun Feb 27 2011 Dominik Mierzejewski <rpm at greysector.net> - 0.6.1-1.20110227git
- 20110227 snapshot
- bump version to post-0.6.1 to allow stable 0.6.1 update in older branches
Index: sources
===================================================================
RCS file: /cvs/free/rpms/ffmpeg/devel/sources,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- sources 27 Feb 2011 23:38:24 -0000 1.21
+++ sources 4 Apr 2011 15:26:35 -0000 1.22
@@ -1 +1 @@
-97a4485c7373faaa7df70f218867d20d ffmpeg-20110227.tar.bz2
+d2e701a363c6ecebc47fdb917a164bb3 ffmpeg-0.6.90-rc0.tar.bz2
13 years, 7 months
rpms/VirtualBox-OSE-kmod/devel VirtualBox-OSE-kmod.spec,1.48,1.49
by Lubomir Rintel
Author: lkundrak
Update of /cvs/free/rpms/VirtualBox-OSE-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv27116
Modified Files:
VirtualBox-OSE-kmod.spec
Log Message:
4.0.4
Index: VirtualBox-OSE-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-OSE-kmod/devel/VirtualBox-OSE-kmod.spec,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- VirtualBox-OSE-kmod.spec 14 Feb 2011 08:22:02 -0000 1.48
+++ VirtualBox-OSE-kmod.spec 4 Apr 2011 10:03:21 -0000 1.49
@@ -18,8 +18,8 @@
%bcond_without hardening
Name: VirtualBox-OSE-kmod
-Version: 4.0.2
-Release: 2%{?dist}
+Version: 4.0.4
+Release: 1%{?dist}
Summary: Kernel module for VirtualBox-OSE
Group: System Environment/Kernel
@@ -105,6 +105,9 @@
%changelog
+* Mon Apr 04 2011 Lubomir Rintel <lkundrak(a)v3.sk> - 4.0.4-1
+- New release
+
* Mon Feb 14 2011 Lubomir Rintel <lkundrak(a)v3.sk> - 4.0.2-2
- Fix module symbol versioning
13 years, 7 months
rpms/VirtualBox-OSE/devel .cvsignore, 1.27, 1.28 VirtualBox-OSE.spec, 1.68, 1.69 sources, 1.27, 1.28
by Lubomir Rintel
Author: lkundrak
Update of /cvs/free/rpms/VirtualBox-OSE/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv4256/devel
Modified Files:
.cvsignore VirtualBox-OSE.spec sources
Log Message:
4.0.4
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-OSE/devel/.cvsignore,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- .cvsignore 4 Feb 2011 17:14:54 -0000 1.27
+++ .cvsignore 4 Apr 2011 06:59:28 -0000 1.28
@@ -1 +1 @@
-VirtualBox-4.0.2.tar.bz2
+VirtualBox-4.0.4.tar.bz2
Index: VirtualBox-OSE.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-OSE/devel/VirtualBox-OSE.spec,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- VirtualBox-OSE.spec 8 Feb 2011 22:53:57 -0000 1.68
+++ VirtualBox-OSE.spec 4 Apr 2011 06:59:28 -0000 1.69
@@ -14,8 +14,8 @@
%global prereltag %{?prerel:_%(awk 'BEGIN {print toupper("%{prerel}")}')}
Name: VirtualBox-OSE
-Version: 4.0.2
-Release: 2%{?prerel:.%{prerel}}%{?dist}
+Version: 4.0.4
+Release: 1%{?prerel:.%{prerel}}%{?dist}
Summary: A general-purpose full virtualizer for PC hardware
Group: Development/Tools
@@ -73,6 +73,7 @@
BuildRequires: pixman-devel
BuildRequires: xorg-x11-proto-devel
BuildRequires: xorg-x11-server-source
+BuildRequires: xorg-x11-server-devel
# Plague-specific weirdness
%if 0%{?fedora} > 11 || 0%{?rhel} > 5
@@ -122,6 +123,12 @@
Provides: xorg-x11-drv-VirtualBox-OSE = %{version}-%{release}
Obsoletes: xorg-x11-drv-VirtualBox-OSE < %{version}-%{release}
Conflicts: %{name} <= %{version}-%{release}
+%if "%(xserver-sdk-abi-requires 2>/dev/null)"
+Requires: %(xserver-sdk-abi-requires ansic)
+Requires: %(xserver-sdk-abi-requires videodrv)
+Requires: %(xserver-sdk-abi-requires xinput)
+%endif
+
%description guest
Tools that utilize kernel modules for supporting integration
@@ -463,6 +470,10 @@
%changelog
+* Sun Apr 03 2011 Lubomir Rintel <lkundrak(a)v3.sk> - 4.0.4-1
+- New release
+- Add requires for particular server ABIs
+
* Tue Feb 08 2011 Lubomir Rintel <lkundrak(a)v3.sk> - 4.0.2-2
- Fix build with GCC 4.6
Index: sources
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-OSE/devel/sources,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- sources 4 Feb 2011 17:14:54 -0000 1.27
+++ sources 4 Apr 2011 06:59:28 -0000 1.28
@@ -1 +1 @@
-4957fa3826bb1273c4d748692d896c8b VirtualBox-4.0.2.tar.bz2
+b4770ca14d1a8cbad9b3eb0e0028ff4b VirtualBox-4.0.4.tar.bz2
13 years, 7 months
rpms/xtables-addons-kmod/F-14 xtables-addons-kmod.spec,1.17,1.18
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/xtables-addons-kmod/F-14
In directory se02.es.rpmfusion.net:/tmp/cvs-serv15844
Modified Files:
xtables-addons-kmod.spec
Log Message:
* Mon Apr 04 2011 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1.30-1.8
- rebuild for updated kernel
Index: xtables-addons-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/xtables-addons-kmod/F-14/xtables-addons-kmod.spec,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- xtables-addons-kmod.spec 12 Feb 2011 11:12:59 -0000 1.17
+++ xtables-addons-kmod.spec 4 Apr 2011 05:55:06 -0000 1.18
@@ -10,7 +10,7 @@
Name: xtables-addons-kmod
Summary: Kernel module (kmod) for xtables-addons
Version: 1.30
-Release: 1%{?dist}.7
+Release: 1%{?dist}.8
License: GPLv2
Group: System Environment/Kernel
URL: http://xtables-addons.sourceforge.net
@@ -68,6 +68,9 @@
rm -rf %{buildroot}
%changelog
+* Mon Apr 04 2011 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1.30-1.8
+- rebuild for updated kernel
+
* Sat Feb 12 2011 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1.30-1.7
- rebuild for updated kernel
13 years, 7 months
rpms/west-chamber-kmod/F-14 west-chamber-kmod.spec,1.13,1.14
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/west-chamber-kmod/F-14
In directory se02.es.rpmfusion.net:/tmp/cvs-serv15709
Modified Files:
west-chamber-kmod.spec
Log Message:
* Mon Apr 04 2011 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.0.1-6.20101017svn.8
- rebuild for updated kernel
Index: west-chamber-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/west-chamber-kmod/F-14/west-chamber-kmod.spec,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- west-chamber-kmod.spec 12 Feb 2011 11:12:50 -0000 1.13
+++ west-chamber-kmod.spec 4 Apr 2011 05:54:56 -0000 1.14
@@ -13,7 +13,7 @@
Name: west-chamber-kmod
Summary: Kernel module (kmod) for west-chamber
Version: 0.0.1
-Release: 6.%{?svndate}svn%{?dist}.7
+Release: 6.%{?svndate}svn%{?dist}.8
License: GPLv2+
Group: System Environment/Kernel
URL: http://code.google.com/p/scholarzhang/
@@ -84,6 +84,9 @@
rm -rf %{buildroot}
%changelog
+* Mon Apr 04 2011 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.0.1-6.20101017svn.8
+- rebuild for updated kernel
+
* Sat Feb 12 2011 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.0.1-6.20101017svn.7
- rebuild for updated kernel
13 years, 7 months
rpms/VirtualBox-OSE-kmod/F-14 VirtualBox-OSE-kmod.spec,1.55,1.56
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/VirtualBox-OSE-kmod/F-14
In directory se02.es.rpmfusion.net:/tmp/cvs-serv15567
Modified Files:
VirtualBox-OSE-kmod.spec
Log Message:
* Mon Apr 04 2011 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 4.0.2-2.1
- rebuild for updated kernel
Index: VirtualBox-OSE-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-OSE-kmod/F-14/VirtualBox-OSE-kmod.spec,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- VirtualBox-OSE-kmod.spec 25 Feb 2011 15:28:47 -0000 1.55
+++ VirtualBox-OSE-kmod.spec 4 Apr 2011 05:54:45 -0000 1.56
@@ -3,7 +3,7 @@
# "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 newest
#define buldforkernels akmod
# In prerelease builds (such as betas), this package has the same
@@ -19,7 +19,7 @@
Name: VirtualBox-OSE-kmod
Version: 4.0.2
-Release: 2%{?dist}
+Release: 2%{?dist}.1
Summary: Kernel module for VirtualBox-OSE
Group: System Environment/Kernel
@@ -105,6 +105,9 @@
%changelog
+* Mon Apr 04 2011 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 4.0.2-2.1
+- rebuild for updated kernel
+
* Mon Feb 14 2011 Lubomir Rintel <lkundrak(a)v3.sk> - 4.0.2-2
- Fix module symbol versioning
13 years, 7 months
rpms/staging-kmod/F-14 staging-kmod.spec,1.24,1.25
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/staging-kmod/F-14
In directory se02.es.rpmfusion.net:/tmp/cvs-serv15400
Modified Files:
staging-kmod.spec
Log Message:
* Mon Apr 04 2011 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.6.35.10-1.2
- rebuild for updated kernel
Index: staging-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/staging-kmod/F-14/staging-kmod.spec,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- staging-kmod.spec 12 Feb 2011 11:12:32 -0000 1.24
+++ staging-kmod.spec 4 Apr 2011 05:54:35 -0000 1.25
@@ -23,7 +23,7 @@
Name: staging-kmod
Version: 2.6.35.10
-Release: %{?prever:0.}1%{?prever:.%{prever}}%{?dist}.1
+Release: %{?prever:0.}1%{?prever:.%{prever}}%{?dist}.2
Summary: Selected kernel modules from linux-staging
Group: System Environment/Kernel
@@ -120,6 +120,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Mon Apr 04 2011 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.6.35.10-1.2
+- rebuild for updated kernel
+
* Sat Feb 12 2011 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.6.35.10-1.1
- rebuild for updated kernel
13 years, 7 months