rpms/roadfighter/F-20 roadfighter-1.0.1269-fix-string-format-bug.patch, NONE, 1.1 roadfighter.spec, 1.5, 1.6
by Andrea Musuruane
Author: musuruan
Update of /cvs/nonfree/rpms/roadfighter/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv26104
Modified Files:
roadfighter.spec
Added Files:
roadfighter-1.0.1269-fix-string-format-bug.patch
Log Message:
* Tue Sep 30 2014 Andrea Musuruane <musuruan(a)gmail.com> - 1.0.1269-8
- Fix FTBFS
- Dropped obsolete Group, Buildroot, %clean and %defattr
- Dropped cleaning at the beginning of %install
- Remove extension from Icon in Desktop file
roadfighter-1.0.1269-fix-string-format-bug.patch:
debug.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- NEW FILE roadfighter-1.0.1269-fix-string-format-bug.patch ---
diff -durN roadfighter-1.0.1269.orig/src/debug.cpp roadfighter-1.0.1269/src/debug.cpp
--- roadfighter-1.0.1269.orig/src/debug.cpp 2008-03-18 21:00:21.000000000 +0100
+++ roadfighter-1.0.1269/src/debug.cpp 2014-09-29 17:45:57.588997083 +0200
@@ -28,7 +28,7 @@
if (fp == 0)
fp = f1open("roadfighter.dbg", "w", USERDATA);
- fprintf(fp, text);
+ fprintf(fp, "%s", text);
fflush(fp);
} /* glprintf */
Index: roadfighter.spec
===================================================================
RCS file: /cvs/nonfree/rpms/roadfighter/F-20/roadfighter.spec,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- roadfighter.spec 12 Mar 2013 21:43:13 -0000 1.5
+++ roadfighter.spec 30 Sep 2014 19:29:45 -0000 1.6
@@ -1,16 +1,15 @@
Name: roadfighter
Version: 1.0.1269
-Release: 6%{?dist}
+Release: 8%{?dist}
Summary: Konami's Road Fighter remake
-Group: Amusements/Games
# http://www.braingames.getput.com/forum/forum_posts.asp?TID=678&PN=1
License: Distributable
URL: http://roadfighter.jorito.net/
Source0: http://braingames.jorito.net/roadfighter/downloads/%{name}.src_%{version}...
Source1: roadfighter.sh
-Patch0: %{name}-1.0.1269-Makefile.patch
-BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+Patch0: %{name}-1.0.1269-Makefile.patch
+Patch1: %{name}-1.0.1269-fix-string-format-bug.patch
BuildRequires: SDL_image-devel
BuildRequires: SDL_mixer-devel
@@ -18,7 +17,7 @@
BuildRequires: SDL_ttf-devel
BuildRequires: ImageMagick
BuildRequires: desktop-file-utils
-Requires: hicolor-icon-theme
+Requires: hicolor-icon-theme
%description
@@ -30,6 +29,7 @@
%prep
%setup -q
%patch0 -p1
+%patch1 -p1
# Fix char encondig
iconv --from=ISO-8859-1 --to=UTF-8 readme.txt > readme.txt.utf8
@@ -43,8 +43,6 @@
%install
-rm -rf %{buildroot}
-
# Install wrapper script
install -d %{buildroot}%{_bindir}
install -m 755 -p %{SOURCE1} %{buildroot}%{_bindir}/%{name}
@@ -68,13 +66,10 @@
mkdir -p %{buildroot}%{_datadir}/applications
desktop-file-install \
--dir %{buildroot}%{_datadir}/applications \
+ --set-icon=roadfighter \
build/linux/%{name}.desktop
-%clean
-rm -rf %{buildroot}
-
-
%post
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
@@ -91,7 +86,6 @@
%files
-%defattr(-,root,root,-)
%{_bindir}/%{name}
%{_datadir}/%{name}
%{_libexecdir}/%{name}
@@ -101,6 +95,15 @@
%changelog
+* Tue Sep 30 2014 Andrea Musuruane <musuruan(a)gmail.com> - 1.0.1269-8
+- Fix FTBFS
+- Dropped obsolete Group, Buildroot, %%clean and %%defattr
+- Dropped cleaning at the beginning of %%install
+- Remove extension from Icon in Desktop file
+
+* Sun Aug 31 2014 Sérgio Basto <sergio(a)serjux.com> - 1.0.1269-7
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
+
* Tue Mar 12 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1.0.1269-6
- https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
10 years, 1 month
rpms/roadfighter/devel roadfighter-1.0.1269-fix-string-format-bug.patch, NONE, 1.1 roadfighter.spec, 1.6, 1.7
by Andrea Musuruane
Author: musuruan
Update of /cvs/nonfree/rpms/roadfighter/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv25964
Modified Files:
roadfighter.spec
Added Files:
roadfighter-1.0.1269-fix-string-format-bug.patch
Log Message:
* Tue Sep 30 2014 Andrea Musuruane <musuruan(a)gmail.com> - 1.0.1269-8
- Fix FTBFS
- Dropped obsolete Group, Buildroot, %clean and %defattr
- Dropped cleaning at the beginning of %install
- Remove extension from Icon in Desktop file
roadfighter-1.0.1269-fix-string-format-bug.patch:
debug.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- NEW FILE roadfighter-1.0.1269-fix-string-format-bug.patch ---
diff -durN roadfighter-1.0.1269.orig/src/debug.cpp roadfighter-1.0.1269/src/debug.cpp
--- roadfighter-1.0.1269.orig/src/debug.cpp 2008-03-18 21:00:21.000000000 +0100
+++ roadfighter-1.0.1269/src/debug.cpp 2014-09-29 17:45:57.588997083 +0200
@@ -28,7 +28,7 @@
if (fp == 0)
fp = f1open("roadfighter.dbg", "w", USERDATA);
- fprintf(fp, text);
+ fprintf(fp, "%s", text);
fflush(fp);
} /* glprintf */
Index: roadfighter.spec
===================================================================
RCS file: /cvs/nonfree/rpms/roadfighter/devel/roadfighter.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- roadfighter.spec 31 Aug 2014 20:47:16 -0000 1.6
+++ roadfighter.spec 30 Sep 2014 19:29:16 -0000 1.7
@@ -1,16 +1,15 @@
Name: roadfighter
Version: 1.0.1269
-Release: 7%{?dist}
+Release: 8%{?dist}
Summary: Konami's Road Fighter remake
-Group: Amusements/Games
# http://www.braingames.getput.com/forum/forum_posts.asp?TID=678&PN=1
License: Distributable
URL: http://roadfighter.jorito.net/
Source0: http://braingames.jorito.net/roadfighter/downloads/%{name}.src_%{version}...
Source1: roadfighter.sh
-Patch0: %{name}-1.0.1269-Makefile.patch
-BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+Patch0: %{name}-1.0.1269-Makefile.patch
+Patch1: %{name}-1.0.1269-fix-string-format-bug.patch
BuildRequires: SDL_image-devel
BuildRequires: SDL_mixer-devel
@@ -18,7 +17,7 @@
BuildRequires: SDL_ttf-devel
BuildRequires: ImageMagick
BuildRequires: desktop-file-utils
-Requires: hicolor-icon-theme
+Requires: hicolor-icon-theme
%description
@@ -30,6 +29,7 @@
%prep
%setup -q
%patch0 -p1
+%patch1 -p1
# Fix char encondig
iconv --from=ISO-8859-1 --to=UTF-8 readme.txt > readme.txt.utf8
@@ -43,8 +43,6 @@
%install
-rm -rf %{buildroot}
-
# Install wrapper script
install -d %{buildroot}%{_bindir}
install -m 755 -p %{SOURCE1} %{buildroot}%{_bindir}/%{name}
@@ -68,13 +66,10 @@
mkdir -p %{buildroot}%{_datadir}/applications
desktop-file-install \
--dir %{buildroot}%{_datadir}/applications \
+ --set-icon=roadfighter \
build/linux/%{name}.desktop
-%clean
-rm -rf %{buildroot}
-
-
%post
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
@@ -91,7 +86,6 @@
%files
-%defattr(-,root,root,-)
%{_bindir}/%{name}
%{_datadir}/%{name}
%{_libexecdir}/%{name}
@@ -101,6 +95,12 @@
%changelog
+* Tue Sep 30 2014 Andrea Musuruane <musuruan(a)gmail.com> - 1.0.1269-8
+- Fix FTBFS
+- Dropped obsolete Group, Buildroot, %%clean and %%defattr
+- Dropped cleaning at the beginning of %%install
+- Remove extension from Icon in Desktop file
+
* Sun Aug 31 2014 Sérgio Basto <sergio(a)serjux.com> - 1.0.1269-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
10 years, 1 month
rpms/gambatte/F-19 .cvsignore, 1.5, 1.6 gambatte.spec, 1.10, 1.11 sources, 1.5, 1.6
by Andrea Musuruane
Author: musuruan
Update of /cvs/free/rpms/gambatte/F-19
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv23033
Modified Files:
.cvsignore gambatte.spec sources
Log Message:
* Mon Sep 29 2014 Andrea Musuruane <musuruan(a)gmail.com> - 571-1
- Updated to upstream r571
- Dropped obsolete Group tags
- Updated icon cache scriptlets
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/gambatte/F-19/.cvsignore,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- .cvsignore 29 Dec 2013 15:19:31 -0000 1.5
+++ .cvsignore 30 Sep 2014 17:34:35 -0000 1.6
@@ -1 +1 @@
-gambatte_src-r550.tar.gz
+gambatte_src-r571.tar.gz
Index: gambatte.spec
===================================================================
RCS file: /cvs/free/rpms/gambatte/F-19/gambatte.spec,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- gambatte.spec 29 Dec 2013 15:19:31 -0000 1.10
+++ gambatte.spec 30 Sep 2014 17:34:35 -0000 1.11
@@ -3,7 +3,7 @@
%define soname lib%{libname}.so
Name: gambatte
-Version: 550
+Version: 571
Release: 1%{?dist}
Summary: An accuracy-focused Game Boy / Game Boy Color emulator
@@ -36,7 +36,6 @@
%package -n libgambatte
Summary: Core emulation code for Gambatte emulator
-Group: System Environment/Libraries
%description -n libgambatte
Gambatte is an accuracy-focused, open-source, cross-platform
@@ -50,7 +49,6 @@
%package -n libgambatte-devel
Summary: Development files for libgambatte
-Group: Development/Libraries
Requires: libgambatte = %{version}-%{release}
%description -n libgambatte-devel
@@ -59,7 +57,6 @@
%package qt
Summary: Qt4 Gambatte front-end
-Group: Applications/Emulators
%description qt
Gambatte is an accuracy-focused, open-source, cross-platform
@@ -72,7 +69,6 @@
%package sdl
Summary: SDL Gambatte front-end
-Group: Applications/Emulators
%description sdl
Gambatte is an accuracy-focused, open-source, cross-platform
@@ -163,19 +159,19 @@
%post qt
-touch --no-create %{_datadir}/icons/hicolor
-if [ -x %{_bindir}/gtk-update-icon-cache ]; then
- %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
-fi
+/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
%postun qt
-touch --no-create %{_datadir}/icons/hicolor
-if [ -x %{_bindir}/gtk-update-icon-cache ]; then
- %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
+if [ $1 -eq 0 ] ; then
+ /bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null
+ /usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
fi
+%posttrans qt
+/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
+
%files -n libgambatte
%{_libdir}/%{soname}
@@ -201,6 +197,14 @@
%changelog
+* Mon Sep 29 2014 Andrea Musuruane <musuruan(a)gmail.com> - 571-1
+- Updated to upstream r571
+- Dropped obsolete Group tags
+- Updated icon cache scriptlets
+
+* Thu Sep 11 2014 Sérgio Basto <sergio(a)serjux.com> - 550-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
+
* Fri Dec 20 2013 Andrea Musuruane <musuruan(a)gmail.com> - 550-1
- Updated to upstream r550
- Dropped cleaning at the beginning of %%install
Index: sources
===================================================================
RCS file: /cvs/free/rpms/gambatte/F-19/sources,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sources 29 Dec 2013 15:19:31 -0000 1.5
+++ sources 30 Sep 2014 17:34:35 -0000 1.6
@@ -1 +1 @@
-ef8a4d1cb1b7f92e475de3dad8bd5e9f gambatte_src-r550.tar.gz
+8e60aca0ee9974ca115e003ca281882f gambatte_src-r571.tar.gz
10 years, 1 month
rpms/gambatte/F-20 .cvsignore, 1.5, 1.6 gambatte.spec, 1.10, 1.11 sources, 1.5, 1.6
by Andrea Musuruane
Author: musuruan
Update of /cvs/free/rpms/gambatte/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv22904
Modified Files:
.cvsignore gambatte.spec sources
Log Message:
* Mon Sep 29 2014 Andrea Musuruane <musuruan(a)gmail.com> - 571-1
- Updated to upstream r571
- Dropped obsolete Group tags
- Updated icon cache scriptlets
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/gambatte/F-20/.cvsignore,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- .cvsignore 29 Dec 2013 15:19:02 -0000 1.5
+++ .cvsignore 30 Sep 2014 17:34:11 -0000 1.6
@@ -1 +1 @@
-gambatte_src-r550.tar.gz
+gambatte_src-r571.tar.gz
Index: gambatte.spec
===================================================================
RCS file: /cvs/free/rpms/gambatte/F-20/gambatte.spec,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- gambatte.spec 29 Dec 2013 15:19:02 -0000 1.10
+++ gambatte.spec 30 Sep 2014 17:34:11 -0000 1.11
@@ -3,7 +3,7 @@
%define soname lib%{libname}.so
Name: gambatte
-Version: 550
+Version: 571
Release: 1%{?dist}
Summary: An accuracy-focused Game Boy / Game Boy Color emulator
@@ -36,7 +36,6 @@
%package -n libgambatte
Summary: Core emulation code for Gambatte emulator
-Group: System Environment/Libraries
%description -n libgambatte
Gambatte is an accuracy-focused, open-source, cross-platform
@@ -50,7 +49,6 @@
%package -n libgambatte-devel
Summary: Development files for libgambatte
-Group: Development/Libraries
Requires: libgambatte = %{version}-%{release}
%description -n libgambatte-devel
@@ -59,7 +57,6 @@
%package qt
Summary: Qt4 Gambatte front-end
-Group: Applications/Emulators
%description qt
Gambatte is an accuracy-focused, open-source, cross-platform
@@ -72,7 +69,6 @@
%package sdl
Summary: SDL Gambatte front-end
-Group: Applications/Emulators
%description sdl
Gambatte is an accuracy-focused, open-source, cross-platform
@@ -163,19 +159,19 @@
%post qt
-touch --no-create %{_datadir}/icons/hicolor
-if [ -x %{_bindir}/gtk-update-icon-cache ]; then
- %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
-fi
+/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
%postun qt
-touch --no-create %{_datadir}/icons/hicolor
-if [ -x %{_bindir}/gtk-update-icon-cache ]; then
- %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
+if [ $1 -eq 0 ] ; then
+ /bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null
+ /usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
fi
+%posttrans qt
+/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
+
%files -n libgambatte
%{_libdir}/%{soname}
@@ -201,6 +197,14 @@
%changelog
+* Mon Sep 29 2014 Andrea Musuruane <musuruan(a)gmail.com> - 571-1
+- Updated to upstream r571
+- Dropped obsolete Group tags
+- Updated icon cache scriptlets
+
+* Thu Sep 11 2014 Sérgio Basto <sergio(a)serjux.com> - 550-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
+
* Fri Dec 20 2013 Andrea Musuruane <musuruan(a)gmail.com> - 550-1
- Updated to upstream r550
- Dropped cleaning at the beginning of %%install
Index: sources
===================================================================
RCS file: /cvs/free/rpms/gambatte/F-20/sources,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sources 29 Dec 2013 15:19:02 -0000 1.5
+++ sources 30 Sep 2014 17:34:11 -0000 1.6
@@ -1 +1 @@
-ef8a4d1cb1b7f92e475de3dad8bd5e9f gambatte_src-r550.tar.gz
+8e60aca0ee9974ca115e003ca281882f gambatte_src-r571.tar.gz
10 years, 1 month
rpms/gambatte/devel .cvsignore, 1.5, 1.6 gambatte.spec, 1.11, 1.12 sources, 1.5, 1.6
by Andrea Musuruane
Author: musuruan
Update of /cvs/free/rpms/gambatte/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv22764
Modified Files:
.cvsignore gambatte.spec sources
Log Message:
* Mon Sep 29 2014 Andrea Musuruane <musuruan(a)gmail.com> - 571-1
- Updated to upstream r571
- Dropped obsolete Group tags
- Updated icon cache scriptlets
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/gambatte/devel/.cvsignore,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- .cvsignore 29 Dec 2013 15:18:33 -0000 1.5
+++ .cvsignore 30 Sep 2014 17:32:49 -0000 1.6
@@ -1 +1 @@
-gambatte_src-r550.tar.gz
+gambatte_src-r571.tar.gz
Index: gambatte.spec
===================================================================
RCS file: /cvs/free/rpms/gambatte/devel/gambatte.spec,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- gambatte.spec 11 Sep 2014 23:10:39 -0000 1.11
+++ gambatte.spec 30 Sep 2014 17:32:49 -0000 1.12
@@ -3,8 +3,8 @@
%define soname lib%{libname}.so
Name: gambatte
-Version: 550
-Release: 2%{?dist}
+Version: 571
+Release: 1%{?dist}
Summary: An accuracy-focused Game Boy / Game Boy Color emulator
License: GPLv2
@@ -36,7 +36,6 @@
%package -n libgambatte
Summary: Core emulation code for Gambatte emulator
-Group: System Environment/Libraries
%description -n libgambatte
Gambatte is an accuracy-focused, open-source, cross-platform
@@ -50,7 +49,6 @@
%package -n libgambatte-devel
Summary: Development files for libgambatte
-Group: Development/Libraries
Requires: libgambatte = %{version}-%{release}
%description -n libgambatte-devel
@@ -59,7 +57,6 @@
%package qt
Summary: Qt4 Gambatte front-end
-Group: Applications/Emulators
%description qt
Gambatte is an accuracy-focused, open-source, cross-platform
@@ -72,7 +69,6 @@
%package sdl
Summary: SDL Gambatte front-end
-Group: Applications/Emulators
%description sdl
Gambatte is an accuracy-focused, open-source, cross-platform
@@ -163,19 +159,19 @@
%post qt
-touch --no-create %{_datadir}/icons/hicolor
-if [ -x %{_bindir}/gtk-update-icon-cache ]; then
- %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
-fi
+/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
%postun qt
-touch --no-create %{_datadir}/icons/hicolor
-if [ -x %{_bindir}/gtk-update-icon-cache ]; then
- %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
+if [ $1 -eq 0 ] ; then
+ /bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null
+ /usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
fi
+%posttrans qt
+/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
+
%files -n libgambatte
%{_libdir}/%{soname}
@@ -201,6 +197,11 @@
%changelog
+* Mon Sep 29 2014 Andrea Musuruane <musuruan(a)gmail.com> - 571-1
+- Updated to upstream r571
+- Dropped obsolete Group tags
+- Updated icon cache scriptlets
+
* Thu Sep 11 2014 Sérgio Basto <sergio(a)serjux.com> - 550-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
Index: sources
===================================================================
RCS file: /cvs/free/rpms/gambatte/devel/sources,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sources 29 Dec 2013 15:18:33 -0000 1.5
+++ sources 30 Sep 2014 17:32:49 -0000 1.6
@@ -1 +1 @@
-ef8a4d1cb1b7f92e475de3dad8bd5e9f gambatte_src-r550.tar.gz
+8e60aca0ee9974ca115e003ca281882f gambatte_src-r571.tar.gz
10 years, 1 month
rpms/alsa-plugins-freeworld/devel .cvsignore, 1.9, 1.10 alsa-plugins-freeworld.spec, 1.21, 1.22 sources, 1.9, 1.10
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/alsa-plugins-freeworld/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv13608/devel
Modified Files:
.cvsignore alsa-plugins-freeworld.spec sources
Log Message:
Update to 1.0.28
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/alsa-plugins-freeworld/devel/.cvsignore,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- .cvsignore 1 Jun 2013 09:00:45 -0000 1.9
+++ .cvsignore 28 Sep 2014 16:48:29 -0000 1.10
@@ -1 +1 @@
-alsa-plugins-1.0.27.tar.bz2
+alsa-plugins-1.0.28.tar.bz2
Index: alsa-plugins-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/alsa-plugins-freeworld/devel/alsa-plugins-freeworld.spec,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- alsa-plugins-freeworld.spec 7 Aug 2014 00:59:51 -0000 1.21
+++ alsa-plugins-freeworld.spec 28 Sep 2014 16:48:29 -0000 1.22
@@ -1,6 +1,6 @@
Name: alsa-plugins-freeworld
-Version: 1.0.27
-Release: 5%{?dist}
+Version: 1.0.28
+Release: 1%{?dist}
Summary: The ALSA Plugins - freeworld version
# All packages are LGPLv2+ with the exception of samplerate which is GPLv2+
License: LGPLv2+
@@ -9,7 +9,6 @@
Source0: ftp://ftp.alsa-project.org/pub/plugins/alsa-plugins-%{version}.tar.bz2
Source1: a52.conf
Source2: lavcrate.conf
-BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: alsa-lib-devel >= 1.0.24
@@ -61,7 +60,6 @@
make %{?_smp_mflags}
%install
-rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
find $RPM_BUILD_ROOT -name "*.la" -exec rm {} \;
@@ -79,12 +77,7 @@
$RPM_BUILD_ROOT%{_sysconfdir}/alsa/pcm
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-
%files a52
-%defattr(-,root,root,-)
%doc COPYING COPYING.GPL
%doc doc/a52.txt
%dir %{_sysconfdir}/alsa/pcm
@@ -92,7 +85,6 @@
%{_libdir}/alsa-lib/libasound_module_pcm_a52.so
%files lavcrate
-%defattr(-,root,root,-)
%doc COPYING COPYING.GPL
%doc doc/lavcrate.txt
%dir %{_sysconfdir}/alsa/pcm
@@ -105,6 +97,9 @@
%changelog
+* Sun Sep 28 2014 kwizart <kwizart(a)gmail.com> - 1.0.28-1
+- Update to 1.0.28
+
* Thu Aug 07 2014 Sérgio Basto <sergio(a)serjux.com> - 1.0.27-5
- Rebuilt for ffmpeg-2.3
@@ -165,7 +160,7 @@
- Fix per package BuildRequires
- License is LGPLv2+ for all of theses plugins
-* Mon Jun 30 2009 kwizart < kwizart at gmail > - 1.0.20-3
+* Tue Jun 30 2009 kwizart < kwizart at gmail > - 1.0.20-3
- Split a52 and lavcrate subpackages
* Wed Jun 24 2009 kwizart < kwizart at gmail > - 1.0.20-2
Index: sources
===================================================================
RCS file: /cvs/free/rpms/alsa-plugins-freeworld/devel/sources,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- sources 1 Jun 2013 09:00:46 -0000 1.9
+++ sources 28 Sep 2014 16:48:29 -0000 1.10
@@ -1 +1 @@
-ada0163e0e84c787bfc929ad0f3f5cb8 alsa-plugins-1.0.27.tar.bz2
+6fcbbb31e96f8ebc5fb926184a717aa4 alsa-plugins-1.0.28.tar.bz2
10 years, 1 month
rpms/vlc/devel vlc-2.1.5-ffmpeg-2.4.patch, NONE, 1.1 vlc.spec, 1.205, 1.206
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv13204/devel
Modified Files:
vlc.spec
Added Files:
vlc-2.1.5-ffmpeg-2.4.patch
Log Message:
Allow building with ffmpeg24
vlc-2.1.5-ffmpeg-2.4.patch:
configure.ac | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- NEW FILE vlc-2.1.5-ffmpeg-2.4.patch ---
diff --git a/configure.ac b/configure.ac
index a684338..053713a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2242,8 +2242,8 @@ AC_ARG_ENABLE(avcodec,
[ --enable-avcodec libavcodec codec (default enabled)])
AS_IF([test "${enable_avcodec}" != "no"], [
PKG_CHECK_MODULES(AVCODEC,[libavcodec >= 53.34.0 libavutil >= 51.22.0], [
- PKG_CHECK_EXISTS([libavcodec < 56],, [
- AC_MSG_ERROR([libavcodec versions 56 and later are not supported yet.])
+ PKG_CHECK_EXISTS([libavcodec < 57],, [
+ AC_MSG_ERROR([libavcodec versions 57 and later are not supported yet.])
])
VLC_SAVE_FLAGS
CPPFLAGS="${CPPFLAGS} ${AVCODEC_CFLAGS}"
Index: vlc.spec
===================================================================
RCS file: /cvs/free/rpms/vlc/devel/vlc.spec,v
retrieving revision 1.205
retrieving revision 1.206
diff -u -r1.205 -r1.206
--- vlc.spec 26 Sep 2014 19:07:18 -0000 1.205
+++ vlc.spec 28 Sep 2014 16:44:50 -0000 1.206
@@ -33,12 +33,13 @@
Summary: The cross-platform open-source multimedia framework, player and server
Name: vlc
Version: 2.1.5
-Release: 3%{?dist}
+Release: 4%{?dist}
License: GPLv2+
Group: Applications/Multimedia
URL: http://www.videolan.org
Source0: http://download.videolan.org/pub/videolan/vlc/%{version}/vlc-%{version}%{...
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+Patch0: vlc-2.1.5-ffmpeg-2.4.patch
BuildRequires: desktop-file-utils
@@ -222,6 +223,7 @@
%prep
%setup -q -n %{name}-%{version}%{?vlc_rc}
+%patch0 -p1 -b .ffmpeg24
%{?_with_bootstrap:
rm aclocal.m4 m4/lib*.m4 m4/lt*.m4 || :
@@ -491,6 +493,9 @@
%changelog
+* Sun Sep 28 2014 kwizart <kwizart(a)gmail.com> - 2.1.5-4
+- Allow build with ffmpeg24
+
* Fri Sep 26 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 2.1.5-3
- Rebuilt for FFmpeg 2.4.x
10 years, 1 month
rpms/vokoscreen/devel vokoscreen-main.patch, NONE, 1.1 vokoscreen.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Martin Gansser
Author: martinkg
Update of /cvs/free/rpms/vokoscreen/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv8098/devel
Modified Files:
.cvsignore sources
Added Files:
vokoscreen-main.patch vokoscreen.spec
Log Message:
vokoscreen-main.patch:
QtSingleApplication/qtsingleapplication.pri | 4 ++--
libqxt/libqxt.pri | 6 +++---
main.cpp | 2 +-
3 files changed, 6 insertions(+), 6 deletions(-)
--- NEW FILE vokoscreen-main.patch ---
--- main.orig.cpp 2014-03-19 08:46:47.000000000 +0100
+++ main.cpp 2014-09-20 11:51:16.903702078 +0200
@@ -17,7 +17,7 @@
#include "screencast.h"
//#include <QSplashScreen>
-#include <QtSingleApplication/qtsingleapplication.h>
+#include <qtsingleapplication.h>
#include <QDebug>
#include <QTranslator>
#include <QLocale>
--- QtSingleApplication/qtsingleapplication.orig.pri 2014-03-19 08:46:47.000000000 +0100
+++ QtSingleApplication/qtsingleapplication.pri 2014-09-20 12:19:44.953276406 +0200
@@ -1,4 +1,4 @@
-INCLUDEPATH += $$PWD
+INCLUDEPATH += /usr/include
DEPENDPATH += $$PWD
QT *= network
@@ -6,7 +6,7 @@
LIBS += -L$$QTSINGLEAPPLICATION_LIBDIR -l$$QTSINGLEAPPLICATION_LIBNAME
} else {
SOURCES += $$PWD/qtsingleapplication.cpp $$PWD/qtlocalpeer.cpp
- HEADERS += $$PWD/qtsingleapplication.h $$PWD/qtlocalpeer.h
+ HEADERS += $$INCLUDEPATH/QtSolutions/qtsingleapplication.h $$PWD/qtlocalpeer.h
}
win32 {
--- libqxt/libqxt.orig.pri 2014-03-19 08:46:47.000000000 +0100
+++ libqxt/libqxt.pri 2014-09-20 12:08:57.727640675 +0200
@@ -1,6 +1,6 @@
-INCLUDEPATH += $$PWD
+INCLUDEPATH += /usr/include
DEPENDPATH += $$PWD
-HEADERS += $$PWD/qxtglobal.h $$PWD/qxtwindowsystem.h $$PWD/qxtglobalshortcut.h $$PWD/qxtglobalshortcut_p.h
+HEADERS += $$INCLUDEPATH/QxtCore/qxtglobal.h $$INCLUDEPATH/QxtGui/qxtwindowsystem.h $$INCLUDEPATH/QxtGui/qxtglobalshortcut.h $$INCLUDEPATH/QxtGui/qxtglobalshortcut_p.h
SOURCES += $$PWD/qxtglobal.cpp $$PWD/qxtwindowsystem_x11.cpp $$PWD/qxtglobalshortcut_x11.cpp $$PWD/qxtglobalshortcut.cpp
-LIBS += -lX11
\ No newline at end of file
+LIBS += -lX11
--- NEW FILE vokoscreen.spec ---
Name: vokoscreen
Version: 2.0.0
Release: 4%{?dist}
Summary: Screencast creator
License: GPLv2+ and BSD
Group: Applications/Multimedia
Url: https://github.com/vkohaupt/vokoscreen
Source: https://github.com/vkohaupt/vokoscreen/archive/%{version}.tar.gz
# patch to link directly against the system libs
Patch0: %{name}-main.patch
BuildRequires: desktop-file-utils
BuildRequires: alsa-lib-devel
BuildRequires: ffmpeg-devel
BuildRequires: libqxt-devel
BuildRequires: opencv-devel
BuildRequires: qt4-devel
BuildRequires: qtsingleapplication-devel
Requires: alsa-utils
Requires: mkvtoolnix
Requires: pulseaudio-utils
Requires: v4l-utils-devel-tools
%description
vokoscreen is an easy to use screencast creator to record educational
videos, live recordings of browser, installation, videoconferences, etc.
%prep
%setup -q
%patch0 -p0
# remove bundled libqxt + QtSingleApplication libraries
rm -f libqxt/*.h
rm -f QtSingleApplication/qtsingleapplication.h
%build
qmake-qt4 \
QMAKE_STRIP="" \
QMAKE_LRELEASE=%{_libdir}/qt4/bin/lrelease \
QMAKE_CFLAGS+="%{optflags} -I%{_includedir}/QxtCore -I%{_includedir}/QxtGui -I%{_includedir}/QtSolutions -I%{_includedir}/QtNetwork" \
QMAKE_CXXFLAGS+="%{optflags} -I%{_includedir}/QxtCore -I%{_includedir}/QxtGui -I%{_includedir}/QtSolutions -I%{_includedir}/QtNetwork" \
QMAKE_LIBS+="%{optflags} -L%{_libdir} -lQxtCore -lQxtGui -lQtNetwork -lQtSolutions_SingleApplication-2.6"
make %{?_smp_mflags} all
%install
make INSTALL_ROOT=%{buildroot} install
desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop
%post
/usr/bin/update-desktop-database &> /dev/null || :
%postun
/usr/bin/update-desktop-database &> /dev/null || :
%files
%doc AUTHORS COPYING CHANGE CREDITS SPECIAL-FEATURE
%{_bindir}/%{name}
%{_datadir}/applications/%{name}.desktop
%{_mandir}/man1/%{name}.1.gz
%{_datadir}/pixmaps/%{name}.png
%changelog
* Sun Sep 21 2014 Martin Gansser <martinkg(a)fedoraproject.org> - 2.0.0-4
- fixed typos
- changed QMAKE_LRELEASE option
- added BSD to license tag
* Sun Sep 21 2014 Martin Gansser <martinkg(a)fedoraproject.org> - 2.0.0-3
- added BSD to license tag
- leaved comment what patch do
* Fri Sep 19 2014 Martin Gansser <martinkg(a)fedoraproject.org> - 2.0.0-2
- added patch to use system libraries
- added QMAKE flags to compile against system libraries
- added BR libqxt-devel
- added BR qtsingleapplication-devel
- added BR desktop-file-utils
- added %%desktop-file-validate
- added %%post and %%postun section
* Fri Sep 19 2014 Martin Gansser <martinkg(a)fedoraproject.org> - 2.0.0-1
- initial build for Fedora
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/vokoscreen/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 28 Sep 2014 11:06:59 -0000 1.1
+++ .cvsignore 28 Sep 2014 15:51:38 -0000 1.2
@@ -0,0 +1 @@
+2.0.0.tar.gz
Index: sources
===================================================================
RCS file: /cvs/free/rpms/vokoscreen/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 28 Sep 2014 11:07:00 -0000 1.1
+++ sources 28 Sep 2014 15:51:38 -0000 1.2
@@ -0,0 +1 @@
+429234805ae48e2f4b57729d6fd8381d 2.0.0.tar.gz
10 years, 1 month
rpms/vokoscreen/F-20 vokoscreen-main.patch, NONE, 1.1 vokoscreen.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Martin Gansser
Author: martinkg
Update of /cvs/free/rpms/vokoscreen/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv7831/F-20
Modified Files:
.cvsignore sources
Added Files:
vokoscreen-main.patch vokoscreen.spec
Log Message:
vokoscreen-main.patch:
QtSingleApplication/qtsingleapplication.pri | 4 ++--
libqxt/libqxt.pri | 6 +++---
main.cpp | 2 +-
3 files changed, 6 insertions(+), 6 deletions(-)
--- NEW FILE vokoscreen-main.patch ---
--- main.orig.cpp 2014-03-19 08:46:47.000000000 +0100
+++ main.cpp 2014-09-20 11:51:16.903702078 +0200
@@ -17,7 +17,7 @@
#include "screencast.h"
//#include <QSplashScreen>
-#include <QtSingleApplication/qtsingleapplication.h>
+#include <qtsingleapplication.h>
#include <QDebug>
#include <QTranslator>
#include <QLocale>
--- QtSingleApplication/qtsingleapplication.orig.pri 2014-03-19 08:46:47.000000000 +0100
+++ QtSingleApplication/qtsingleapplication.pri 2014-09-20 12:19:44.953276406 +0200
@@ -1,4 +1,4 @@
-INCLUDEPATH += $$PWD
+INCLUDEPATH += /usr/include
DEPENDPATH += $$PWD
QT *= network
@@ -6,7 +6,7 @@
LIBS += -L$$QTSINGLEAPPLICATION_LIBDIR -l$$QTSINGLEAPPLICATION_LIBNAME
} else {
SOURCES += $$PWD/qtsingleapplication.cpp $$PWD/qtlocalpeer.cpp
- HEADERS += $$PWD/qtsingleapplication.h $$PWD/qtlocalpeer.h
+ HEADERS += $$INCLUDEPATH/QtSolutions/qtsingleapplication.h $$PWD/qtlocalpeer.h
}
win32 {
--- libqxt/libqxt.orig.pri 2014-03-19 08:46:47.000000000 +0100
+++ libqxt/libqxt.pri 2014-09-20 12:08:57.727640675 +0200
@@ -1,6 +1,6 @@
-INCLUDEPATH += $$PWD
+INCLUDEPATH += /usr/include
DEPENDPATH += $$PWD
-HEADERS += $$PWD/qxtglobal.h $$PWD/qxtwindowsystem.h $$PWD/qxtglobalshortcut.h $$PWD/qxtglobalshortcut_p.h
+HEADERS += $$INCLUDEPATH/QxtCore/qxtglobal.h $$INCLUDEPATH/QxtGui/qxtwindowsystem.h $$INCLUDEPATH/QxtGui/qxtglobalshortcut.h $$INCLUDEPATH/QxtGui/qxtglobalshortcut_p.h
SOURCES += $$PWD/qxtglobal.cpp $$PWD/qxtwindowsystem_x11.cpp $$PWD/qxtglobalshortcut_x11.cpp $$PWD/qxtglobalshortcut.cpp
-LIBS += -lX11
\ No newline at end of file
+LIBS += -lX11
--- NEW FILE vokoscreen.spec ---
Name: vokoscreen
Version: 2.0.0
Release: 4%{?dist}
Summary: Screencast creator
License: GPLv2+ and BSD
Group: Applications/Multimedia
Url: https://github.com/vkohaupt/vokoscreen
Source: https://github.com/vkohaupt/vokoscreen/archive/%{version}.tar.gz
# patch to link directly against the system libs
Patch0: %{name}-main.patch
BuildRequires: desktop-file-utils
BuildRequires: alsa-lib-devel
BuildRequires: ffmpeg-devel
BuildRequires: libqxt-devel
BuildRequires: opencv-devel
BuildRequires: qt4-devel
BuildRequires: qtsingleapplication-devel
Requires: alsa-utils
Requires: mkvtoolnix
Requires: pulseaudio-utils
Requires: v4l-utils-devel-tools
%description
vokoscreen is an easy to use screencast creator to record educational
videos, live recordings of browser, installation, videoconferences, etc.
%prep
%setup -q
%patch0 -p0
# remove bundled libqxt + QtSingleApplication libraries
rm -f libqxt/*.h
rm -f QtSingleApplication/qtsingleapplication.h
%build
qmake-qt4 \
QMAKE_STRIP="" \
QMAKE_LRELEASE=%{_libdir}/qt4/bin/lrelease \
QMAKE_CFLAGS+="%{optflags} -I%{_includedir}/QxtCore -I%{_includedir}/QxtGui -I%{_includedir}/QtSolutions -I%{_includedir}/QtNetwork" \
QMAKE_CXXFLAGS+="%{optflags} -I%{_includedir}/QxtCore -I%{_includedir}/QxtGui -I%{_includedir}/QtSolutions -I%{_includedir}/QtNetwork" \
QMAKE_LIBS+="%{optflags} -L%{_libdir} -lQxtCore -lQxtGui -lQtNetwork -lQtSolutions_SingleApplication-2.6"
make %{?_smp_mflags} all
%install
make INSTALL_ROOT=%{buildroot} install
desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop
%post
/usr/bin/update-desktop-database &> /dev/null || :
%postun
/usr/bin/update-desktop-database &> /dev/null || :
%files
%doc AUTHORS COPYING CHANGE CREDITS SPECIAL-FEATURE
%{_bindir}/%{name}
%{_datadir}/applications/%{name}.desktop
%{_mandir}/man1/%{name}.1.gz
%{_datadir}/pixmaps/%{name}.png
%changelog
* Sun Sep 21 2014 Martin Gansser <martinkg(a)fedoraproject.org> - 2.0.0-4
- fixed typos
- changed QMAKE_LRELEASE option
- added BSD to license tag
* Sun Sep 21 2014 Martin Gansser <martinkg(a)fedoraproject.org> - 2.0.0-3
- added BSD to license tag
- leaved comment what patch do
* Fri Sep 19 2014 Martin Gansser <martinkg(a)fedoraproject.org> - 2.0.0-2
- added patch to use system libraries
- added QMAKE flags to compile against system libraries
- added BR libqxt-devel
- added BR qtsingleapplication-devel
- added BR desktop-file-utils
- added %%desktop-file-validate
- added %%post and %%postun section
* Fri Sep 19 2014 Martin Gansser <martinkg(a)fedoraproject.org> - 2.0.0-1
- initial build for Fedora
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/vokoscreen/F-20/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 28 Sep 2014 11:06:59 -0000 1.1
+++ .cvsignore 28 Sep 2014 15:51:00 -0000 1.2
@@ -0,0 +1 @@
+2.0.0.tar.gz
Index: sources
===================================================================
RCS file: /cvs/free/rpms/vokoscreen/F-20/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 28 Sep 2014 11:07:00 -0000 1.1
+++ sources 28 Sep 2014 15:51:00 -0000 1.2
@@ -0,0 +1 @@
+429234805ae48e2f4b57729d6fd8381d 2.0.0.tar.gz
10 years, 1 month
rpms/buildsys-build-rpmfusion/devel buildsys-build-rpmfusion.spec, 1.52, 1.53
by Leigh Scott
Author: leigh123linux
Update of /cvs/free/rpms/buildsys-build-rpmfusion/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv31503
Modified Files:
buildsys-build-rpmfusion.spec
Log Message:
revert version
Index: buildsys-build-rpmfusion.spec
===================================================================
RCS file: /cvs/free/rpms/buildsys-build-rpmfusion/devel/buildsys-build-rpmfusion.spec,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- buildsys-build-rpmfusion.spec 28 Sep 2014 14:22:04 -0000 1.52
+++ buildsys-build-rpmfusion.spec 28 Sep 2014 14:23:59 -0000 1.53
@@ -3,7 +3,7 @@
Name: buildsys-build-%{repo}
Epoch: 10
Version: 21
-Release: 0.3
+Release: 0.2
Summary: Tools and files used by the %{repo} buildsys
Group: Development/Tools
10 years, 1 month