rpms/sidplay/devel sidplay.spec,1.5,1.6
by Linus Walleij
Author: snirkel
Update of /cvs/nonfree/rpms/sidplay/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv11775
Modified Files:
sidplay.spec
Log Message:
Retag to rebuild.
Index: sidplay.spec
===================================================================
RCS file: /cvs/nonfree/rpms/sidplay/devel/sidplay.spec,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sidplay.spec 11 May 2009 20:09:15 -0000 1.5
+++ sidplay.spec 11 May 2009 20:10:35 -0000 1.6
@@ -3,7 +3,7 @@
Name: sidplay
Version: 2.0.9
-Release: 6%{?dist}
+Release: 7%{?dist}
Summary: A command-line tool for playing back SID files
URL: http://sidplay2.sourceforge.net/
Group: Applications/Multimedia
@@ -54,6 +54,9 @@
%{_bindir}/*
%changelog
+* Mon May 11 2009 Linus Walleij <triad(a)df.lth.se> 2.0.9-6
+- Located a suspect GCC 4.4.0 rebuild bug.
+
* Sun Mar 29 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.0.9-6
- rebuild for new F11 features
15 years, 6 months
rpms/sidplay/devel gcc440.patch,NONE,1.1 sidplay.spec,1.4,1.5
by Linus Walleij
Author: snirkel
Update of /cvs/nonfree/rpms/sidplay/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv11554
Modified Files:
sidplay.spec
Added Files:
gcc440.patch
Log Message:
Trying to resolve build problem.
gcc440.patch:
--- NEW FILE gcc440.patch ---
diff -ur sidplay-2.0.9-orig/src/args.cpp sidplay-2.0.9/src/args.cpp
--- sidplay-2.0.9-orig/src/args.cpp 2009-05-11 21:57:04.000000000 +0200
+++ sidplay-2.0.9/src/args.cpp 2009-05-11 22:06:46.000000000 +0200
@@ -97,21 +97,22 @@
{
char *sep;
uint_least32_t _time;
+ char *str_copy = strdup(str);
// Check for empty string
if (*str == '\0')
return false;
- sep = strstr (str, ":");
+ sep = strstr (str_copy, ":");
if (!sep)
{ // User gave seconds
- _time = atoi (str);
+ _time = atoi (str_copy);
}
else
{ // Read in MM:SS format
int val;
*sep = '\0';
- val = atoi (str);
+ val = atoi (str_copy);
if (val < 0 || val > 99)
return false;
_time = (uint_least32_t) val * 60;
Index: sidplay.spec
===================================================================
RCS file: /cvs/nonfree/rpms/sidplay/devel/sidplay.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sidplay.spec 29 Mar 2009 15:16:15 -0000 1.4
+++ sidplay.spec 11 May 2009 20:09:15 -0000 1.5
@@ -11,6 +11,7 @@
# Patch lifted from Debian
# http://packages.debian.org/unstable/oldlibs/sidplay
Patch0: sidplay_2.0.9-5.diff.gz
+Patch1: gcc440.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
License: GPL
BuildRequires: libsidplay-devel
@@ -33,6 +34,7 @@
%prep
%setup -q
%patch0 -p1
+%patch1 -p1
%build
%configure --with-sidbuilders=%{_libdir}/sidplay/builders
15 years, 6 months
rpms/bsnes/F-9 bsnes.spec,1.9,1.10
by Julian Sikorski
Author: belegdol
Update of /cvs/nonfree/rpms/bsnes/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv30212
Modified Files:
bsnes.spec
Log Message:
Disabled profiling
Index: bsnes.spec
===================================================================
RCS file: /cvs/nonfree/rpms/bsnes/F-9/bsnes.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- bsnes.spec 11 May 2009 08:42:06 -0000 1.9
+++ bsnes.spec 11 May 2009 15:55:41 -0000 1.10
@@ -56,6 +56,8 @@
#install fedora-specific readme
install -pm 644 %{SOURCE2} README.Fedora
+#disable profiling, it breaks i386 build
+sed -i "s/flags += -fprofile-use/# flags += -fprofile-use/" src/Makefile
%build
pushd src
@@ -91,6 +93,7 @@
- Updated the strip patch again
- Updated the zlib patch again
- Updated the optflags fix
+- Disabled profiling
* Mon Apr 20 2009 Julian Sikorski <belegdol[at]gmail[dot]com> - 0.045-1
- Updated to 0.045
15 years, 6 months
rpms/bsnes/F-10 bsnes.spec,1.9,1.10
by Julian Sikorski
Author: belegdol
Update of /cvs/nonfree/rpms/bsnes/F-10
In directory se02.es.rpmfusion.net:/tmp/cvs-serv29268
Modified Files:
bsnes.spec
Log Message:
Disabled profiling
Index: bsnes.spec
===================================================================
RCS file: /cvs/nonfree/rpms/bsnes/F-10/bsnes.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- bsnes.spec 11 May 2009 08:41:55 -0000 1.9
+++ bsnes.spec 11 May 2009 15:40:31 -0000 1.10
@@ -56,6 +56,8 @@
#install fedora-specific readme
install -pm 644 %{SOURCE2} README.Fedora
+#disable profiling, it breaks i386 build
+sed -i "s/flags += -fprofile-use/# flags += -fprofile-use/" src/Makefile
%build
pushd src
@@ -91,6 +93,7 @@
- Updated the strip patch again
- Updated the zlib patch again
- Updated the optflags fix
+- Disabled profiling
* Mon Apr 20 2009 Julian Sikorski <belegdol[at]gmail[dot]com> - 0.045-1
- Updated to 0.045
15 years, 6 months
rpms/bsnes/devel bsnes.spec,1.11,1.12
by Julian Sikorski
Author: belegdol
Update of /cvs/nonfree/rpms/bsnes/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv29191
Modified Files:
bsnes.spec
Log Message:
Disabled profiling
Index: bsnes.spec
===================================================================
RCS file: /cvs/nonfree/rpms/bsnes/devel/bsnes.spec,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- bsnes.spec 11 May 2009 08:41:42 -0000 1.11
+++ bsnes.spec 11 May 2009 15:40:25 -0000 1.12
@@ -56,6 +56,8 @@
#install fedora-specific readme
install -pm 644 %{SOURCE2} README.Fedora
+#disable profiling, it breaks i386 build
+sed -i "s/flags += -fprofile-use/# flags += -fprofile-use/" src/Makefile
%build
pushd src
@@ -91,6 +93,7 @@
- Updated the strip patch again
- Updated the zlib patch again
- Updated the optflags fix
+- Disabled profiling
* Mon Apr 20 2009 Julian Sikorski <belegdol[at]gmail[dot]com> - 0.045-1
- Updated to 0.045
15 years, 6 months
rpms/mplayer/F-9 mplayer.spec,1.13,1.14
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/mplayer/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv20853
Modified Files:
mplayer.spec
Log Message:
* Mon May 11 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1.0-0.100.20090204svn.1
- rebuild
Index: mplayer.spec
===================================================================
RCS file: /cvs/free/rpms/mplayer/F-9/mplayer.spec,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- mplayer.spec 14 Feb 2009 15:02:07 -0000 1.13
+++ mplayer.spec 11 May 2009 13:22:10 -0000 1.14
@@ -6,7 +6,7 @@
Name: mplayer
Version: 1.0
-Release: 0.100.%{pre}%{?dist}
+Release: 0.100.%{pre}%{?dist}.1
Summary: Movie player playing most video formats and DVDs
Group: Applications/Multimedia
@@ -344,6 +344,9 @@
%changelog
+* Mon May 11 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1.0-0.100.20090204svn.1
+- rebuild
+
* Tue Feb 10 2009 Dominik Mierzejewski <rpm at greysector.net> - 1.0-0.100.20090204svn
- 20090204 snapshot
- dropped obsolete/upstreamed patches
15 years, 6 months
rpms/cairo-dock/devel cairo-dock.spec,1.16,1.17 sources,1.12,1.13
by Mamoru Tasaka
Author: mtasaka
Update of /cvs/free/rpms/cairo-dock/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv19855
Modified Files:
cairo-dock.spec sources
Log Message:
* Mon May 11 2009 Mamoru Tasaka <mtasaka(a)ioa.s.u-tokyo.ac.jp> - 2.0.0-2.respin1
- Tarballs respun
Index: cairo-dock.spec
===================================================================
RCS file: /cvs/free/rpms/cairo-dock/devel/cairo-dock.spec,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- cairo-dock.spec 10 May 2009 02:00:17 -0000 1.16
+++ cairo-dock.spec 11 May 2009 13:04:00 -0000 1.17
@@ -19,7 +19,7 @@
%global build_webkit 1
%global build_xfce 1
-%global fedora_main_rel 1
+%global fedora_main_rel 2.respin1
%if 0%{?released} < 1
@@ -58,7 +58,7 @@
# plug-ins specific patches
Patch100: cairo-dock-rev1677-stacks.patch
-Patch101: cairo-dock-2.0.0-dock-rendering-compile.patch
+#Patch101: cairo-dock-2.0.0-dock-rendering-compile.patch
%if ! %{released}
BuildRequires: automake
@@ -255,7 +255,7 @@
| xargs %{__sed} -i -e 's|\r||'
# dock-rendering
-%patch101 -p1 -b .compile
+#%%patch101 -p1 -b .compile
# mail: license conflict now resolved
@@ -624,6 +624,9 @@
%{_libdir}/pkgconfig/*.pc
%changelog
+* Mon May 11 2009 Mamoru Tasaka <mtasaka(a)ioa.s.u-tokyo.ac.jp> - 2.0.0-2.respin1
+- Tarballs respun
+
* Sun May 10 2009 Mamoru Tasaka <mtasaka(a)ioa.s.u-tokyo.ac.jp> - 2.0.0-1
- 2.0.0 release
Index: sources
===================================================================
RCS file: /cvs/free/rpms/cairo-dock/devel/sources,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- sources 10 May 2009 02:00:17 -0000 1.12
+++ sources 11 May 2009 13:04:00 -0000 1.13
@@ -1,2 +1,2 @@
-648402589c02579d202d28d09decf0cb cairo-dock-2.0.0.tar.bz2
-b5bca90f55676e7f2ac531f528370dbe cairo-dock-plugins-2.0.0.tar.bz2
+cba3f40120d443e92c94cbe6f97cf8a8 cairo-dock-2.0.0.tar.bz2
+32d92984d5f7af36264357f74fe21167 cairo-dock-plugins-2.0.0.tar.bz2
15 years, 6 months
rpms/vlc/F-9 vlc.spec,1.16,1.17
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv11762
Modified Files:
vlc.spec
Log Message:
Blame libcaca update
Index: vlc.spec
===================================================================
RCS file: /cvs/free/rpms/vlc/F-9/vlc.spec,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- vlc.spec 9 Apr 2009 15:44:18 -0000 1.16
+++ vlc.spec 11 May 2009 10:29:57 -0000 1.17
@@ -22,7 +22,7 @@
%define _version %{version}
%define release_tag 2
%endif
-Release: %{release_tag}%{?dist}
+Release: %{release_tag}%{?dist}.1
License: GPLv2+
Group: Applications/Multimedia
URL: http://www.videolan.org/
@@ -553,6 +553,10 @@
%changelog
+* Sun May 10 2009 kwizart < kwizart at gmail.com > - 0.9.9-2.1
+- Rebuild for ascii-art. (blame the libcaca update submitter
+ for not having warned before the co-workers).
+
* Thu Apr 9 2009 kwizart < kwizart at gmail.com > - 0.9.9-2
- Add Patch vlc-0.9.9-0.9.10git20090409.patch
15 years, 6 months
rpms/bsnes/F-9 .cvsignore, 1.8, 1.9 bsnes-0.037a-strip.patch, 1.3, 1.4 bsnes-system-zlib.patch, 1.2, 1.3 bsnes.spec, 1.8, 1.9 sources, 1.8, 1.9
by Julian Sikorski
Author: belegdol
Update of /cvs/nonfree/rpms/bsnes/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv5915
Modified Files:
.cvsignore bsnes-0.037a-strip.patch bsnes-system-zlib.patch
bsnes.spec sources
Log Message:
* Sun May 10 2009 Julian Sikorski <belegdol[at]gmail[dot]com> - 0.046-1
- Updated to 0.046
- Dropped libXtst-devel BuildRequires
- Updated the strip patch again
- Updated the zlib patch again
- Updated the optflags fix
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/bsnes/F-9/.cvsignore,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- .cvsignore 23 Apr 2009 11:23:41 -0000 1.8
+++ .cvsignore 11 May 2009 08:42:06 -0000 1.9
@@ -1 +1 @@
-bsnes_v045.tar.bz2
+bsnes_v046.tar.bz2
bsnes-0.037a-strip.patch:
Index: bsnes-0.037a-strip.patch
===================================================================
RCS file: /cvs/nonfree/rpms/bsnes/F-9/bsnes-0.037a-strip.patch,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- bsnes-0.037a-strip.patch 23 Apr 2009 11:23:41 -0000 1.3
+++ bsnes-0.037a-strip.patch 11 May 2009 08:42:06 -0000 1.4
@@ -1,10 +1,11 @@
---- src/Makefile.strip 2009-03-29 08:14:20.000000000 +0200
-+++ src/Makefile 2009-03-29 12:19:56.000000000 +0200
-@@ -14,7 +14,6 @@
- cpp = $(subst cc,++,$(compiler))
- obj = o
- rule = -c $< -o $@
-- link = -s
- mkbin = -o$1
- mkdef = -D$1
- mkincpath = -I$1
+--- src/Makefile.strip 2009-05-10 02:59:55.000000000 +0200
++++ src/Makefile 2009-05-10 19:10:41.000000000 +0200
+@@ -8,7 +8,7 @@
+ c := $(compiler)
+ cpp := $(subst cc,++,$(compiler))
+ flags := -O3 -fomit-frame-pointer -Ilib
+-link := -s
++link :=
+
+ # profile-guided instrumentation:
+ # flags += -fprofile-generate
bsnes-system-zlib.patch:
Index: bsnes-system-zlib.patch
===================================================================
RCS file: /cvs/nonfree/rpms/bsnes/F-9/bsnes-system-zlib.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- bsnes-system-zlib.patch 17 Dec 2008 09:27:50 -0000 1.2
+++ bsnes-system-zlib.patch 11 May 2009 08:42:06 -0000 1.3
@@ -1,26 +1,26 @@
---- src/Makefile.system-zlib 2008-02-15 11:16:23.000000000 +0100
-+++ src/Makefile 2008-02-15 11:28:12.000000000 +0100
-@@ -82,6 +82,7 @@
+--- src/Makefile.system-zlib 2009-05-10 19:20:21.000000000 +0200
++++ src/Makefile 2009-05-10 19:20:21.000000000 +0200
+@@ -71,6 +71,7 @@
ifeq ($(enable_gzip),true)
objects += adler32 compress crc32 deflate gzio inffast inflate inftrees ioapi trees unzip zip zutil
- flags += $(call mkdef,GZIP_SUPPORT)
+ flags += -DGZIP_SUPPORT
+ link += $(shell pkg-config --libs minizip)
endif
ifeq ($(enable_jma),true)
---- src/reader/zipreader.hpp.system-zlib 2008-10-17 12:14:16.000000000 +0200
-+++ src/reader/zipreader.hpp 2008-11-29 21:36:02.000000000 +0100
+--- src/lib/libreader/gzreader.hpp.system-zlib 2009-05-02 18:18:10.000000000 +0200
++++ src/lib/libreader/gzreader.hpp 2009-05-10 19:21:27.000000000 +0200
@@ -1,4 +1,4 @@
--#include "zlib/unzip.h"
-+#include <minizip/unzip.h>
-
- #define ZIP_MAX_FILE_NAME PATH_MAX
-
---- src/reader/gzreader.hpp.system-zlib 2005-12-18 10:20:14.000000000 +0100
-+++ src/reader/gzreader.hpp 2008-02-15 11:25:45.000000000 +0100
-@@ -1,4 +1,4 @@
--#include "zlib/zlib.h"
+-#include <zlib/zlib.h>
+#include <zlib.h>
class GZReader : public Reader {
private:
+--- src/lib/libreader/zipreader.hpp.system-zlib 2009-05-02 18:18:02.000000000 +0200
++++ src/lib/libreader/zipreader.hpp 2009-05-10 19:22:37.000000000 +0200
+@@ -1,4 +1,4 @@
+-#include <zlib/unzip.h>
++#include <minizip/unzip.h>
+
+ #define ZIP_MAX_FILE_NAME PATH_MAX
+
Index: bsnes.spec
===================================================================
RCS file: /cvs/nonfree/rpms/bsnes/F-9/bsnes.spec,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- bsnes.spec 23 Apr 2009 11:23:41 -0000 1.8
+++ bsnes.spec 11 May 2009 08:42:06 -0000 1.9
@@ -1,4 +1,4 @@
-%define vernumber 045
+%define vernumber 046
Name: bsnes
Version: 0.%{vernumber}
@@ -23,7 +23,6 @@
BuildRequires: freealut-devel
BuildRequires: libao-devel
BuildRequires: libXv-devel
-BuildRequires: libXtst-devel
BuildRequires: minizip-devel
BuildRequires: pulseaudio-libs-devel
BuildRequires: SDL-devel
@@ -52,7 +51,7 @@
#use system optflags
-sed -i "s#flags = -O3#flags = $RPM_OPT_FLAGS#" src/Makefile
+sed -i "s#flags := -O3#flags := $RPM_OPT_FLAGS#" src/Makefile
#install fedora-specific readme
install -pm 644 %{SOURCE2} README.Fedora
@@ -86,6 +85,13 @@
%changelog
+* Sun May 10 2009 Julian Sikorski <belegdol[at]gmail[dot]com> - 0.046-1
+- Updated to 0.046
+- Dropped libXtst-devel BuildRequires
+- Updated the strip patch again
+- Updated the zlib patch again
+- Updated the optflags fix
+
* Mon Apr 20 2009 Julian Sikorski <belegdol[at]gmail[dot]com> - 0.045-1
- Updated to 0.045
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/bsnes/F-9/sources,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- sources 23 Apr 2009 11:23:41 -0000 1.8
+++ sources 11 May 2009 08:42:06 -0000 1.9
@@ -1 +1 @@
-23ba7aa90e4803387039b412c6f8178b bsnes_v045.tar.bz2
+3091093b9ded18e9c9a974079a2d127b bsnes_v046.tar.bz2
15 years, 6 months