[desmume] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
by Nicolas Chauvet
commit f45fe1a857284d545a40d175c9404dd5480634d4
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Sun Mar 19 09:51:29 2017 +0100
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
desmume.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/desmume.spec b/desmume.spec
index 2f929b6..c201b50 100644
--- a/desmume.spec
+++ b/desmume.spec
@@ -1,6 +1,6 @@
Name: desmume
Version: 0.9.11
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: A Nintendo DS emulator
License: GPLv2+
@@ -187,6 +187,9 @@ fi
%changelog
+* Sun Mar 19 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> - 0.9.11-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
* Thu Jul 28 2016 Leigh Scott <leigh123linux(a)googlemail.com> - 0.9.11-2
- fix gcc6 compile issue
- quick spec file clean up
7 years, 8 months
[aegisub] initial import to fedora rpmfusion
by Michal Ambroz
commit b0efedc7cb99b6ea194d2e2d374576f0f733caaa
Author: xambroz <xambroz(a)users.noreply.github.com>
Date: Sun Mar 19 03:36:45 2017 +0100
initial import to fedora rpmfusion
.gitignore | 1 +
aegisub-pthread.patch | 11 +++++
aegisub.spec | 111 ++++++++++++++++++++++++++++++++++++++++++++++++++
sources | 1 +
4 files changed, 124 insertions(+)
---
diff --git a/.gitignore b/.gitignore
index e69de29..206c2ff 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/aegisub-3.2.2.tar.gz
diff --git a/aegisub-pthread.patch b/aegisub-pthread.patch
new file mode 100644
index 0000000..25c8944
--- /dev/null
+++ b/aegisub-pthread.patch
@@ -0,0 +1,11 @@
+--- Aegisub-3.2.2.orig/tools/Makefile 2016-09-09 15:06:52.437581247 +0200
++++ Aegisub-3.2.2.new/tools/Makefile 2016-09-09 15:07:21.562160809 +0200
+@@ -7,7 +7,7 @@
+ endif
+
+ repack-thes-dict_OBJ := $(d)repack-thes-dict.o $(TOP)lib/libaegisub.a
+-repack-thes-dict_LIBS := $(LIBS_BOOST) $(LIBS_ICU)
++repack-thes-dict_LIBS := $(LIBS_BOOST) $(LIBS_ICU) -lpthread
+ repack-thes-dict_CPPFLAGS := -I$(TOP) -I$(TOP)libaegisub/include $(CFLAGS_ICU)
+
+ PROGRAM += $(d)repack-thes-dict
diff --git a/aegisub.spec b/aegisub.spec
new file mode 100644
index 0000000..4225a10
--- /dev/null
+++ b/aegisub.spec
@@ -0,0 +1,111 @@
+%global gituser Aegisub
+%global gitname Aegisub
+%global commit f743d1411e09cbb2bd34ddd2d4b6738101fab710
+%global shortcommit %(c=%{commit}; echo ${c:0:7})
+
+
+Name: aegisub
+Version: 3.2.2
+Release: 3%{?dist}
+Summary: Tool for creating and modifying subtitles
+
+#src/gl/ - MIT license. See src/gl/glext.h
+#src/MatroskaParser.(c|h) - Licensed to BSD like license with permission from the author.
+#universalchardet/ - MPL 1.1
+License: BSD and MIT and MPLv1.1
+URL: http://www.aegisub.org
+# https://github.com/Aegisub/Aegisub
+Source0: https://github.com/%{gituser}/%{gitname}/archive/v%{version}.tar.gz#/%{na...
+Patch0: %{name}-pthread.patch
+
+Requires: hicolor-icon-theme
+
+BuildRequires: gcc
+BuildRequires: gcc-c++
+BuildRequires: automake
+BuildRequires: wxWidgets-devel
+BuildRequires: openal-devel
+BuildRequires: portaudio-devel
+BuildRequires: pulseaudio-libs-devel
+BuildRequires: libass-devel
+BuildRequires: ffms2-devel
+BuildRequires: fftw-devel
+BuildRequires: alsa-lib-devel
+BuildRequires: boost-devel
+BuildRequires: mesa-libGL-devel
+BuildRequires: hunspell-devel
+BuildRequires: lua-devel
+BuildRequires: zlib-devel
+BuildRequires: libX11-devel
+BuildRequires: valgrind-devel
+BuildRequires: intltool
+BuildRequires: desktop-file-utils
+#Used for OpenAL tests during configure
+BuildRequires: libcxx-devel
+
+#needed for the perl script downloading the additional documentation from wiki
+#for offline reading
+Requires: /usr/bin/perl perl(strict) perl(HTML::LinkExtor) perl(LWP) perl(File::Path) perl(utf8) perl(URI) perl(warnings)
+
+
+%description
+Aegisub is a free, cross-platform open source tool for creating and
+modifying subtitles. Aegisub makes it quick and easy to time
+subtitles to audio, and features many powerful tools for styling them,
+including a built-in real-time video preview.
+
+%prep
+%autosetup -n %{gitname}-%{version} -p 1
+
+
+%build
+#remove version postfix
+sed -i -e 's/aegisub-[0-9.]*/aegisub/g' configure
+%configure --with-wx-config=wx-config-3.0
+%make_build
+
+
+%install
+%make_install
+desktop-file-validate %{buildroot}/%{_datadir}/applications/%{name}.desktop
+%find_lang %{name}
+
+%post
+update-desktop-database &> /dev/null ||:
+touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
+
+%postun
+update-desktop-database &> /dev/null ||:
+if [ $1 -eq 0 ] ; then
+ touch --no-create %{_datadir}/icons/hicolor &>/dev/null
+ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
+fi
+
+%posttrans
+gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
+
+
+%files -f %{name}.lang
+%license LICENCE
+%doc docs/*
+%{_bindir}/%{name}*
+%{_datadir}/%{name}
+%{_datadir}/applications/%{name}.desktop
+%{_datadir}/icons/hicolor/*/apps/%{name}.*
+
+
+%changelog
+* Thu Sep 29 2016 Michal Ambroz <rebus at, seznam.cz> - 3.2.2-3
+- remove the version suffix from the commandline and lang catalog
+- addedd build dependency to libcxx-devel, used for openal detection
+
+* Wed Sep 28 2016 Michal Ambroz <rebus at, seznam.cz> - 3.2.2-2
+- addedd validation of the desktop file
+- removed buildroot cleanup
+- addedd requires on hicolor-icon-theme
+- added buildrequires on intltool
+
+* Fri Sep 9 2016 Michal Ambroz <rebus at, seznam.cz> - 3.2.2-1
+- initial build for Fedora
+
+
diff --git a/sources b/sources
index e69de29..d477e87 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+9857e606da76c3d7c2fef540da055357 aegisub-3.2.2.tar.gz
7 years, 8 months
[cmus] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
by Nicolas Chauvet
commit 7489488463c775bb4f11fb7fb4887fc757e373f5
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Sat Mar 18 23:44:20 2017 +0100
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
cmus.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/cmus.spec b/cmus.spec
index 0441048..e7b7dd5 100644
--- a/cmus.spec
+++ b/cmus.spec
@@ -1,6 +1,6 @@
Name: cmus
Version: 2.8.0
-Release: 0.2.rc0%{?dist}
+Release: 0.3.rc0%{?dist}
Summary: Ncurses-Based Music Player
Group: Applications/Multimedia
License: GPLv2+
@@ -91,6 +91,9 @@ chmod -x examples/*
%changelog
+* Sat Mar 18 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> - 2.8.0-0.3.rc0
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
* Wed Mar 01 2017 Leigh Scott <leigh123linux(a)googlemail.com> - 2.8.0-0.2.rc0
- Add build requires systemd-devel
- Enable MPRIS support
7 years, 8 months
[chromaprint-tools] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
by Nicolas Chauvet
commit 269c75d8d1c22d827ba775343cfc923b3f70d073
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Sat Mar 18 23:44:14 2017 +0100
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
chromaprint-tools.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/chromaprint-tools.spec b/chromaprint-tools.spec
index 228dea7..bf33db3 100644
--- a/chromaprint-tools.spec
+++ b/chromaprint-tools.spec
@@ -1,6 +1,6 @@
Name: chromaprint-tools
Version: 1.2
-Release: 3%{?dist}
+Release: 4%{?dist}
Summary: Chromaprint audio fingerprinting tools
Group: Applications/Multimedia
License: LGPLv2+
@@ -49,6 +49,9 @@ rm -f %{buildroot}%{_libdir}/lib*.so*
%{_bindir}/fpcalc
%changelog
+* Sat Mar 18 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> - 1.2-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
* Sat Jul 30 2016 Julian Sikorski <belegdol(a)fedoraproject.org> - 1.2-3
- Rebuilt for ffmpeg-3.1.1
7 years, 8 months
[cairo-dock-freeworld] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
by Nicolas Chauvet
commit d7edaa72efee3614fe1610cb489f400189ac61c5
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Sat Mar 18 23:44:10 2017 +0100
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
cairo-dock-freeworld.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/cairo-dock-freeworld.spec b/cairo-dock-freeworld.spec
index 758b595..5d414ba 100644
--- a/cairo-dock-freeworld.spec
+++ b/cairo-dock-freeworld.spec
@@ -5,7 +5,7 @@
Name: cairo-dock-freeworld
Version: 3.4.1
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Light eye-candy fully themable animated dock
License: GPLv3+
@@ -125,6 +125,9 @@ install -cpm 644 \
%{_libdir}/%{name}/libgldi.so.3*
%changelog
+* Sat Mar 18 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> - 3.4.1-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
* Fri Mar 6 2015 Mamoru TASAKA <mtasaka(a)fedoraproject.org> - 3.4.1-1
- 3.4.1
7 years, 8 months
[cAudio-freeworld] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
by Nicolas Chauvet
commit a6e58e9ad7c9ce972dd4cdc9ce6b895a01e139f6
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Sat Mar 18 23:44:05 2017 +0100
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
cAudio-freeworld.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/cAudio-freeworld.spec b/cAudio-freeworld.spec
index 81f87be..25a7447 100644
--- a/cAudio-freeworld.spec
+++ b/cAudio-freeworld.spec
@@ -1,7 +1,7 @@
# This is the upstream-preferred name of the project
Name: cAudio-freeworld
Version: 2.3.1
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: MP3 support for cAudio
# cAudio-2.3.1/Plugins/mp3Decoder/mpaudec/{bits.c,mpaudec.c} are under LGPLv2+
@@ -92,6 +92,9 @@ rm -rf %{buildroot}%{_includedir}
%{_libdir}/libcAp_mp3Decoder.so
%changelog
+* Sat Mar 18 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> - 2.3.1-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
* Sat Sep 17 2016 Ben Rosser <rosser.bjr(a)gmail.com> 2.3.1-2
- Update license tag to zlib and LGPLv2+
7 years, 8 months
[bombono-dvd] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
by Nicolas Chauvet
commit a7f5f8b8eaccb69ae1e11f3c86f5f0b2e8013063
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Sat Mar 18 23:43:56 2017 +0100
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
bombono-dvd.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/bombono-dvd.spec b/bombono-dvd.spec
index 6c48b2e..09cf68d 100644
--- a/bombono-dvd.spec
+++ b/bombono-dvd.spec
@@ -2,7 +2,7 @@
Name: bombono-dvd
Version: 1.2.4
-Release: 2%{?rel_tag}%{?dist}
+Release: 3%{?rel_tag}%{?dist}
Summary: DVD authoring program with nice and clean GUI
# License breakdown in README.
License: GPLv2 and GPLv2+ and Boost and Python and LGPLv2+
@@ -112,6 +112,9 @@ fi
%{_mandir}/man1/*
%changelog
+* Sat Mar 18 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> - 1.2.4-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
+
* Tue Aug 16 2016 Leigh Scott <leigh123linux(a)googlemail.com> - 1.2.4-2
- Make the build hardened
7 years, 8 months