[ffmulticonverter] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
by Nicolas Chauvet
commit a432d7163515c5ee32b2ed15c8bd34b58efb8c8f
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Sun Mar 19 12:03:33 2017 +0100
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
ffmulticonverter.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/ffmulticonverter.spec b/ffmulticonverter.spec
index 4082457..29ea2ea 100644
--- a/ffmulticonverter.spec
+++ b/ffmulticonverter.spec
@@ -1,6 +1,6 @@
Name: ffmulticonverter
Version: 1.8.0
-Release: 4%{?dist}
+Release: 5%{?dist}
Summary: GUI File Format Converter
License: GPLv3+
@@ -59,6 +59,9 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop
%{_mandir}/man1/%{name}.1.*
%changelog
+* Sun Mar 19 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> - 1.8.0-5
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
* Wed Jan 25 2017 Vasiliy N. Glazov <vascom2(a)gmail.com> 1.8.0-4
- Bump release for new python
7 years, 8 months
[ffmpegthumbs] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
by Nicolas Chauvet
commit 4da05b5b65b2df899313268eb7a662f58884f694
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Sun Mar 19 12:03:24 2017 +0100
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
ffmpegthumbs.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/ffmpegthumbs.spec b/ffmpegthumbs.spec
index f4042e3..6dc9626 100644
--- a/ffmpegthumbs.spec
+++ b/ffmpegthumbs.spec
@@ -1,6 +1,6 @@
Name: ffmpegthumbs
Version: 16.12.2
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: KDE ffmpegthumbnailer service
License: GPLv2+
@@ -56,6 +56,9 @@ make install/fast -C %{_target_platform} DESTDIR=%{buildroot}
%{_kf5_datadir}/kservices5/ffmpegthumbs.desktop
%changelog
+* Sun Mar 19 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> - 16.12.2-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
* Tue Feb 21 2017 Sérgio Basto <sergio(a)serjux.com> - 16.12.2-1
- Update ffmpegthumbs to 16.12.2 following Fedora KDE applications
7 years, 8 months
[fakenes] Fix build with gcc-7.x
by Leigh Scott
commit 9bbc55db7bd8407fcc07d55a250cf282d90f3901
Author: leigh123linux <leigh123linux(a)googlemail.com>
Date: Sun Mar 19 10:08:39 2017 +0000
Fix build with gcc-7.x
fakenes-0.5.9-beta3-gcc7.patch | 18 ++++++++++++++++++
fakenes.spec | 7 ++++++-
2 files changed, 24 insertions(+), 1 deletion(-)
---
diff --git a/fakenes-0.5.9-beta3-gcc7.patch b/fakenes-0.5.9-beta3-gcc7.patch
new file mode 100644
index 0000000..22a3ce6
--- /dev/null
+++ b/fakenes-0.5.9-beta3-gcc7.patch
@@ -0,0 +1,18 @@
+--- a/src/nsf.cpp
++++ b/src/nsf.cpp
+@@ -410,11 +410,11 @@
+ clear_to_color(video_buffer, ppu_get_background_color());
+
+ textprintf_ex(video_buffer, small_font, 8, 8 + (12 * 0), 1 + 0x30, -1, "TITLE:");
+- textprintf_ex(video_buffer, small_font, 8 + 8, 8 + (12 * 1), 1 + 0x30, -1, (const char *)&nsf.name[0]);
++ textprintf_ex(video_buffer, small_font, 8 + 8, 8 + (12 * 1), 1 + 0x30, -1, "%s", (const char *)&nsf.name[0]);
+ textprintf_ex(video_buffer, small_font, 8, 8 + (12 * 2), 1 + 0x30, -1, "COMPILED BY:");
+- textprintf_ex(video_buffer, small_font, 8 + 8, 8 + (12 * 3), 1 + 0x30, -1, (const char *)&nsf.artist[0]);
++ textprintf_ex(video_buffer, small_font, 8 + 8, 8 + (12 * 3), 1 + 0x30, -1, "%s", (const char *)&nsf.artist[0]);
+ textprintf_ex(video_buffer, small_font, 8, 8 + (12 * 4), 1 + 0x30, -1, "COPYRIGHT:");
+- textprintf_ex(video_buffer, small_font, 8 + 8, 8 + (12 * 5), 1 + 0x30, -1, (const char *)&nsf.copyright[0]);
++ textprintf_ex(video_buffer, small_font, 8 + 8, 8 + (12 * 5), 1 + 0x30, -1, "%s", (const char *)&nsf.copyright[0]);
+
+ textprintf_ex(video_buffer, small_font, 8, 8 + (12 * 7), 1 + 0x30, -1, "Track %d of %d", currentSong, nsf.totalSongs);
+ textprintf_ex(video_buffer, small_font, 8, 8 + (12 * 8) + 2, 1 + 0x30, -1, "Press A for next track");
+
diff --git a/fakenes.spec b/fakenes.spec
index 84aae00..02100a6 100644
--- a/fakenes.spec
+++ b/fakenes.spec
@@ -2,7 +2,7 @@
Name: fakenes
Version: 0.5.9
-Release: 0.7.%{beta}%{?dist}
+Release: 0.8.%{beta}%{?dist}
Summary: Nintendo Entertainment System emulator
Group: Amusements/Games
License: Artistic
@@ -15,6 +15,7 @@ Patch2: fakenes-0.5.9-beta3-gcc43.patch
Patch3: fakenes-0.5.9-beta3-openal-build.patch
Patch4: fakenes-0.5.9-beta3-allegro44-build.patch
Patch5: fakenes-0.5.9-beta3-libm-build.patch
+Patch6: fakenes-0.5.9-beta3-gcc7.patch
BuildRequires: allegro-devel alleggl-devel zlib-devel openal-devel
BuildRequires: libGLU-devel freealut-devel desktop-file-utils
BuildRequires: libicns-utils
@@ -36,6 +37,7 @@ well. There are also official builds available for Mac OS X.
%patch3 -p1 -z .openal-build
%patch4 -p1 -z .allegro44-build
%patch5 -p1 -z .libm
+%patch6 -p1 -z .gcc7
sed -i 's/\r//' docs/faq.html
@@ -80,6 +82,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
%changelog
+* Sun Mar 19 2017 Leigh Scott <leigh123linux(a)googlemail.com> - 0.5.9-0.8.beta3
+- Fix build with gcc-7.x
+
* Sun Mar 19 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> - 0.5.9-0.7.beta3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
7 years, 8 months
[ffmpegthumbnailer] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
by Nicolas Chauvet
commit c9685792758bf3826f51bfb9c1460c130fb6f98c
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Sun Mar 19 10:02:38 2017 +0100
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
ffmpegthumbnailer.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/ffmpegthumbnailer.spec b/ffmpegthumbnailer.spec
index bfeead6..48645d5 100644
--- a/ffmpegthumbnailer.spec
+++ b/ffmpegthumbnailer.spec
@@ -1,6 +1,6 @@
Name: ffmpegthumbnailer
Version: 2.1.2
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Lightweight video thumbnailer that can be used by file managers
Group: Applications/Multimedia
@@ -58,6 +58,9 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
%changelog
+* Sun Mar 19 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> - 2.1.2-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
* Wed Aug 24 2016 Sérgio Basto <sergio(a)serjux.com> - 2.1.2-1
- Update ffmpegthumbnailer to 2.1.2
- Clean up spec, add license tag.
7 years, 8 months
[ffmpeg-compat] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
by Nicolas Chauvet
commit b31f196edb2b829171fb9683e2e56528ee02a1bd
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Sun Mar 19 10:02:28 2017 +0100
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
ffmpeg-compat.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/ffmpeg-compat.spec b/ffmpeg-compat.spec
index 884b656..1db7cb3 100644
--- a/ffmpeg-compat.spec
+++ b/ffmpeg-compat.spec
@@ -10,7 +10,7 @@
Summary: Digital VCR and streaming server
Name: ffmpeg-compat
Version: 0.6.7
-Release: 9%{?dist}
+Release: 10%{?dist}
%if 0%{?_with_amr:1}
License: GPLv3+
%else
@@ -236,6 +236,9 @@ rm -rf $RPM_BUILD_ROOT
%changelog
+* Sun Mar 19 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> - 0.6.7-10
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
* Sun May 03 2015 Nicolas Chauvet <kwizart(a)gmail.com> - 0.6.7-9
- Disable doc - rfbz#3616
7 years, 8 months
[ffmpeg] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
by Nicolas Chauvet
commit 7645045fdef751e1bb1ee1a7cd6bae8267ec813a
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Sun Mar 19 10:02:23 2017 +0100
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
ffmpeg.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/ffmpeg.spec b/ffmpeg.spec
index 9dd35aa..907ff4c 100644
--- a/ffmpeg.spec
+++ b/ffmpeg.spec
@@ -62,7 +62,7 @@
Summary: Digital VCR and streaming server
Name: ffmpeg%{?flavor}
Version: 3.2.4
-Release: 1%{?date}%{?date:git}%{?rel}%{?dist}
+Release: 2%{?date}%{?date:git}%{?rel}%{?dist}
License: %{ffmpeg_license}
URL: http://ffmpeg.org/
%if 0%{?date}
@@ -382,6 +382,9 @@ install -pm755 tools/qt-faststart %{buildroot}%{_bindir}
%changelog
+* Sun Mar 19 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> - 3.2.4-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
* Sat Feb 11 2017 Leigh Scott <leigh123linux(a)googlemail.com> - 3.2.4-1
- Updated to 3.2.4
7 years, 8 months