[a52dec] Moved to fedora - patent has expired
by Nicolas Chauvet
commit d225ca75a57eb866774937ce71d9902f53583a1f
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Mon Mar 27 23:04:23 2017 +0200
Moved to fedora - patent has expired
.gitignore | 1 -
a52dec-0.7.4-rpath64.patch | 22 ------
a52dec-configure-optflags.patch | 23 ------
a52dec.spec | 151 ----------------------------------------
dead.package | 1 +
liba52-silence.patch | 17 -----
sources | 1 -
7 files changed, 1 insertion(+), 215 deletions(-)
---
diff --git a/dead.package b/dead.package
new file mode 100644
index 0000000..f377823
--- /dev/null
+++ b/dead.package
@@ -0,0 +1 @@
+Moved to fedora - patent has expired
7 years, 8 months
[xrick] Fix format-security error
by Xavier Bachelot
commit 0c6c889a2dab06410c4b7c8ff835bebab4546c4c
Author: Xavier Bachelot <xavier(a)bachelot.org>
Date: Sun Mar 26 22:32:04 2017 +0200
Fix format-security error
xrick-021212-fix_format_security_error.patch | 12 +++++
xrick.spec | 66 +++++++++++++---------------
2 files changed, 43 insertions(+), 35 deletions(-)
---
diff --git a/xrick-021212-fix_format_security_error.patch b/xrick-021212-fix_format_security_error.patch
new file mode 100644
index 0000000..6cf9046
--- /dev/null
+++ b/xrick-021212-fix_format_security_error.patch
@@ -0,0 +1,12 @@
+diff -aur xrick-021212.orig/src/system.c xrick-021212/src/system.c
+--- xrick-021212.orig/src/system.c 2002-12-24 14:33:43.000000000 +0100
++++ xrick-021212/src/system.c 2017-03-26 22:02:15.769150251 +0200
+@@ -64,7 +64,7 @@
+ va_start(argptr, msg);
+ vsprintf(s, msg, argptr);
+ va_end(argptr);
+- printf(s);
++ printf("%s", s);
+ }
+
+ /*
diff --git a/xrick.spec b/xrick.spec
index 63dcb89..133339c 100644
--- a/xrick.spec
+++ b/xrick.spec
@@ -1,19 +1,21 @@
-%define tarversion 021212
-
-Summary: A clone of the game Rick Dangerous
-Name: xrick
-Version: 0.0.%{tarversion}
-Release: 8%{?dist}
-License: Distributable
-Group: Amusements/Games
-URL: http://www.bigorno.net/xrick/
-Source0: http://www.bigorno.net/xrick/%{name}-%{tarversion}.tgz
-Patch1: xrick-rpmoptflags-makefile.patch
-BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-BuildRequires: SDL-devel zlib-devel desktop-file-utils ImageMagick
-Requires: hicolor-icon-theme
-
-#---------------------------------------------------------------------
+%define tarversion 021212
+
+Summary: A clone of the game Rick Dangerous
+Name: xrick
+Version: 0.0.%{tarversion}
+Release: 9%{?dist}
+License: Distributable
+Group: Amusements/Games
+URL: http://www.bigorno.net/xrick/
+Source0: http://www.bigorno.net/xrick/%{name}-%{tarversion}.tgz
+Patch1: xrick-rpmoptflags-makefile.patch
+Patch2: xrick-021212-fix_format_security_error.patch
+BuildRequires: SDL-devel
+BuildRequires: zlib-devel
+BuildRequires: desktop-file-utils
+BuildRequires: ImageMagick
+Requires: hicolor-icon-theme
+
%description
xrick is a clone of Rick Dangerous. Written entirely in C, it relies
@@ -24,27 +26,26 @@ running away from rolling rocks and avoiding traps in places from
South America to a futuristic missile base via Egypt and the
Schwarzendumpf castle.
-#---------------------------------------------------------------------
%prep
%setup -q -n %{name}-%{tarversion}
%patch1 -p1
+%patch2 -p1
sed -i 's:data.zip:%{_datadir}/%{name}/data.zip:g' src/xrick.c
# make xrick manpage UTF8
gunzip xrick.6.gz
iconv -f ISO-8859-1 -t UTF8 xrick.6 > xrick.6.tmp
+touch -r xrick.6 xrick.6.tmp
mv xrick.6.tmp xrick.6
+# convert xrick icon to png format
+convert src/xrickST.ico xrickST.png
-#---------------------------------------------------------------------
%build
-make %{?_smp_mflags}
-convert src/xrickST.ico xrickST.png
+%make_build
-#---------------------------------------------------------------------
%install
-rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT/%{_bindir}
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/%{name}
mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man6
@@ -66,19 +67,13 @@ EOF
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/applications
desktop-file-install --vendor rpmfusion \
- --dir $RPM_BUILD_ROOT/%{_datadir}/applications \
+ --dir $RPM_BUILD_ROOT/%{_datadir}/applications \
%{name}.desktop
mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps
install -p -m 644 xrickST.png \
$RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps
-#---------------------------------------------------------------------
-
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-#---------------------------------------------------------------------
%post
touch --no-create %{_datadir}/icons/hicolor || :
@@ -92,10 +87,8 @@ if [ -x %{_bindir}/gtk-update-icon-cache ]; then
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
fi
-#---------------------------------------------------------------------
%files
-%defattr(-,root,root,-)
%doc README
%{_bindir}/%{name}
%{_datadir}/applications/*%{name}.desktop
@@ -103,9 +96,13 @@ fi
%{_mandir}/man6/%{name}.6*
%{_datadir}/icons/hicolor/32x32/apps/xrickST.png
-#---------------------------------------------------------------------
%changelog
+* Sun Mar 26 2017 Xavier Bachelot <xavier(a)bachelot.org> - 0.0.021212-9
+- Fix format-security error.
+- Preserve man page timestamp.
+- Cleanup spec file.
+
* Sun Mar 26 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> - 0.0.021212-8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
@@ -133,8 +130,7 @@ fi
- make the manpage UTF-8
- start fullscreen
-* Sat Mar 25 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de>
-0.0-0.5.021212
+* Sat Mar 25 2006 Andreas Bierfert <andreas.bierfert[AT]lowlatency.de> - 0.0-0.5.021212
- fix release
- remove epoch
@@ -165,5 +161,5 @@ fi
- buildroot -> RPM_BUILD_ROOT
- Modified Source0
-* Wed Apr 23 2003 Dams <anvil[AT]livna.org>
+* Wed Apr 23 2003 Dams <anvil[AT]livna.org>
- Initial build.
7 years, 8 months
[lpf-spotify-client] update spotify-client.spec.in
by Leigh Scott
commit f1f67f34ee5cb8d82f0662d82e645bdeab884eb4
Author: leigh123linux <leigh123linux(a)googlemail.com>
Date: Sun Mar 26 19:42:08 2017 +0100
update spotify-client.spec.in
spotify-client.spec.in | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/spotify-client.spec.in b/spotify-client.spec.in
index 080f8a1..9320dab 100644
--- a/spotify-client.spec.in
+++ b/spotify-client.spec.in
@@ -12,7 +12,7 @@
Name: spotify-client
Version: 1.0.49
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: Spotify music player native client
# board=http://community.spotify.com/t5/Desktop-Linux
@@ -116,6 +116,9 @@ fi
%changelog
+* Sun Mar 26 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> - 1.0.49-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
* Mon Mar 13 2017 Pedro Albuquerque Santos <petersaints(a)gmail.com.com> - 1.0.49-2
- Update to spotify-client_1.0.49.125.g72ee7853-111_amd64.deb and spotify-client_1.0.49.125.g72ee7853-22_i386.deb
7 years, 8 months
[warsow-data] Moved to Fedora
by Leigh Scott
commit 2eec73fbe9d822622b683228a0b28008406f2603
Author: leigh123linux <leigh123linux(a)googlemail.com>
Date: Sun Mar 26 12:58:03 2017 +0100
Moved to Fedora
.gitignore | 0
dead.package | 1 +
sources | 0
3 files changed, 1 insertion(+)
---
diff --git a/dead.package b/dead.package
new file mode 100644
index 0000000..3aa0b6e
--- /dev/null
+++ b/dead.package
@@ -0,0 +1 @@
+Moved to Fedora
7 years, 8 months
[warsow] Moved to Fedora
by Leigh Scott
commit 1612ebe79b4e10e1450028c4847b50aa621e46a3
Author: leigh123linux <leigh123linux(a)googlemail.com>
Date: Sun Mar 26 12:56:31 2017 +0100
Moved to Fedora
.gitignore | 1 -
dead.package | 1 +
sources | 1 -
warsow-build.patch | 32 -----------
warsow-paths.patch | 13 -----
warsow.desktop | 8 ---
warsow.spec | 154 -----------------------------------------------------
warsow.svg | 51 ------------------
warsow48x48.png | Bin 2953 -> 0 bytes
9 files changed, 1 insertion(+), 260 deletions(-)
---
diff --git a/dead.package b/dead.package
new file mode 100644
index 0000000..3aa0b6e
--- /dev/null
+++ b/dead.package
@@ -0,0 +1 @@
+Moved to Fedora
7 years, 8 months
[yapeSDL] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
by Nicolas Chauvet
commit 2fde7eddfe7faf5c41d4cf1e767f1af7f9da7009
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Sun Mar 26 12:56:39 2017 +0200
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
yapeSDL.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/yapeSDL.spec b/yapeSDL.spec
index e710956..1903131 100644
--- a/yapeSDL.spec
+++ b/yapeSDL.spec
@@ -2,7 +2,7 @@
Name: yapeSDL
Version: 0.70.1
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: A Commodore 264 family (C16, plus/4 etc.) emulator
License: GPLv2+
@@ -109,6 +109,9 @@ fi
%doc Changes COPYING README.SDL
%changelog
+* Sun Mar 26 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> - 0.70.1-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
* Sun Dec 25 2016 Andrea Musuruane <musuruan(a)gmail.com> - 0.70.1-1
- Updated to upstream 0.70.1
- Updated summary and description
7 years, 8 months
[xv] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
by Nicolas Chauvet
commit d1ab75a4e1ed906a50d670c60ba3a681fd29e330
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Sun Mar 26 12:56:24 2017 +0200
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
xv.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/xv.spec b/xv.spec
index 746ad8b..8891492 100644
--- a/xv.spec
+++ b/xv.spec
@@ -3,7 +3,7 @@
Name: xv
Version: %{vprog}.jumbopatch.%{vjumbo}
-Release: 24%{?dist}
+Release: 25%{?dist}
Summary: Interactive image display program for X
Summary(de.UTF-8): X-basierender Bild-Viewer für praktische sämtliche Grafiken
Summary(es.UTF-8): Visualizador de imágenes para X para cuasi todos los formatos de imágenes
@@ -297,6 +297,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
%doc %{_docdir}/%{name}-%{vprog}/manuals/
%changelog
+* Sun Mar 26 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> - 3.10a.jumbopatch.20070520-25
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
* Sun Dec 4 2016 Paul Howarth <paul(a)city-fan.org> 3.10a.jumbopatch.20070520-24
- rebuild for libjasper.so.4 (jasper 2.0.2) in Rawhide
7 years, 8 months