[audacity-freeworld] Use compat-ffmpeg28 Also add conditionals to be possible build with local ffmpeg (not in use) Use au
by Sérgio M. Basto
commit 9fd994fa3be3ff54470e349cbcc047fa714bd35b
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Sun Feb 25 12:40:34 2018 +0000
Use compat-ffmpeg28
Also add conditionals to be possible build with local ffmpeg (not in use)
Use autoconf before ./configure
Readd libmp3lame-default.patch and libdir.patch
Readd to configure --disable-dynamic-loading
General review of spec
audacity-1.3.9-libdir.patch | 12 -----
audacity-2.0.4-libmp3lame-default.patch | 11 -----
audacity-2.2.1-libdir.patch | 11 +++++
audacity-2.2.1-libmp3lame-default.patch | 11 +++++
audacity-freeworld.spec | 88 +++++++++++++++++++++++++--------
5 files changed, 89 insertions(+), 44 deletions(-)
---
diff --git a/audacity-2.2.1-libdir.patch b/audacity-2.2.1-libdir.patch
new file mode 100644
index 0000000..eea4edb
--- /dev/null
+++ b/audacity-2.2.1-libdir.patch
@@ -0,0 +1,11 @@
+--- ./src/effects/ladspa/LadspaEffect.cpp.orig 2018-02-25 02:49:21.270199818 +0000
++++ ./src/effects/ladspa/LadspaEffect.cpp 2018-02-25 02:54:23.311154018 +0000
+@@ -315,7 +315,7 @@ wxArrayString LadspaEffectsModule::GetSe
+ #else
+
+ pathList.Add(wxGetHomeDir() + wxFILE_SEP_PATH + wxT(".ladspa"));
+- pathList.Add(wxT("/usr/local/lib/ladspa"));
++ pathList.Add(wxT("/usr/__RPM_LIB__/ladspa"));
+ pathList.Add(wxT("/usr/lib/ladspa"));
+ pathList.Add(wxT(LIBDIR) wxT("/ladspa"));
+
diff --git a/audacity-2.2.1-libmp3lame-default.patch b/audacity-2.2.1-libmp3lame-default.patch
new file mode 100644
index 0000000..39d8fbc
--- /dev/null
+++ b/audacity-2.2.1-libmp3lame-default.patch
@@ -0,0 +1,11 @@
+--- ./src/AudacityApp.cpp.orig 2018-02-25 02:45:09.025766328 +0000
++++ ./src/AudacityApp.cpp 2018-02-25 02:47:07.371907945 +0000
+@@ -1508,6 +1508,8 @@ bool AudacityApp::OnInit()
+
+ //JKC: Would like to put module loading here.
+
++ gPrefs->Write(wxT("/MP3/MP3LibPath"),wxT("__RPM_LIBDIR__/libmp3lame.so.0"));
++
+ // More initialization
+
+ InitDitherers();
diff --git a/audacity-freeworld.spec b/audacity-freeworld.spec
index 7a95098..37c13e2 100644
--- a/audacity-freeworld.spec
+++ b/audacity-freeworld.spec
@@ -1,14 +1,21 @@
# invoke with: rpmbuild --without mp3 audacity-freeworld.spec to undefine mp3.
-%bcond_without mp3
-%bcond_without ffmpeg
+%bcond_without mp3
+%bcond_without ffmpeg
+%bcond_with local_ffmpeg
+
+%if 0%{?fedora} > 27
+%bcond_without compat_ffmpeg
+%else
+%bcond_with compat_ffmpeg
+%endif
#global commit0 53a5c930a4b5b053ab06a8b975458fc51cf41f6c
-#global shortcommit0 %(c=%#{commit0}; echo ${c:0:7})
+#global shortcommit0 #(c=#{commit0}; echo ${c:0:7})
Name: audacity-freeworld
Version: 2.2.2
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Multitrack audio editor
Group: Applications/Multimedia
License: GPLv2
@@ -19,7 +26,7 @@ Conflicts: %{realname}
Source0: http://www.fosshub.com/Audacity.html/%{realname}-minsrc-%{version}.tar.xz
# For alpha git snapshots for testing use the github archive as upstream source:
-#Source0: https://github.com/audacity/%{realname}/archive/%{commit0}/%{realname}-%{...
+#Source0: https://github.com/audacity/#{realname}/archive/#{commit0}/#{realname}-#{...
# ie wget https://github.com/audacity/audacity/archive/ecdb1d81c9312789c6233aba2190...
%define tartopdir audacity-minsrc-%{version}-rc1
@@ -27,8 +34,8 @@ Source0: http://www.fosshub.com/Audacity.html/%{realname}-minsrc-%{version}.tar.
# manual can be installed from the base Fedora Audacity package.
-Patch1: audacity-2.0.4-libmp3lame-default.patch
-Patch2: audacity-1.3.9-libdir.patch
+Patch1: audacity-2.2.1-libmp3lame-default.patch
+Patch2: audacity-2.2.1-libdir.patch
# add audio/x-flac
# remove audio/mpeg, audio/x-mp3
# enable startup notification
@@ -40,6 +47,10 @@ Patch5: audacity-2.2.0-no-local-includes.patch
Provides: audacity-nonfree = %{version}-%{release}
Obsoletes: audacity-nonfree < %{version}-%{release}
+BuildRequires: automake
+BuildRequires: autoconf
+BuildRequires: gettext-devel
+BuildRequires: libtool
BuildRequires: alsa-lib-devel
BuildRequires: desktop-file-utils
BuildRequires: expat-devel
@@ -78,8 +89,14 @@ BuildRequires: lame-devel
BuildRequires: libmad-devel
%endif
%if %{with ffmpeg}
+%if ! %{with local_ffmpeg}
+%if %{with compat_ffmpeg}
+BuildRequires: compat-ffmpeg28-devel
+%else
BuildRequires: ffmpeg-devel
%endif
+%endif
+%endif
# For new symbols in portaudio
Requires: portaudio%{?_isa} >= 19-16
@@ -97,23 +114,30 @@ This build has support for mp3 and ffmpeg import/export.
%setup -q -n %{tartopdir}
# Substitute hardcoded library paths.
-#patch1 -b .libmp3lame-default
-#patch2 -p1 -b .libdir
-for i in src/AudacityApp.cpp src/export/ExportMP3.cpp
+%patch1 -p1 -b .libmp3lame-default
+%patch2 -p1 -b .libdir
+for i in src/AudacityApp.cpp src/effects/ladspa/LadspaEffect.cpp
do
+ cp $i $i.tmp
sed -i -e 's!__RPM_LIBDIR__!%{_libdir}!g' $i
sed -i -e 's!__RPM_LIB__!%{_lib}!g' $i
+ diff $i.tmp $i -s || :
+ rm $i.tmp
done
+echo grep
grep -q -s __RPM_LIB * -R && exit 1
# Substitute occurences of "libmp3lame.so" with "libmp3lame.so.0".
for i in locale/*.po src/export/ExportMP3.cpp
do
+ cp $i $i.tmp
sed -i -e 's!libmp3lame.so\([^.]\)!libmp3lame.so.0\1!g' $i
+ diff $i.tmp $i -s || :
+ rm $i.tmp
done
%patch3 -p1 -b .desktop
-%patch4 -p1 -b .2.0.6-non-dl-ffmpeg
+%patch4 -p1 -b .non-dl-ffmpeg
%patch5 -p1 -b .nolocal
# ensure we use the system headers for these, note we do this after
@@ -124,7 +148,7 @@ done
#--enable-shared --with-ffmpeg --with-lame --with-libflac --with-libid3tag --with-libmad --with-libtwolame
#--with-libvorbis --with-lv2 --with-portaudio=local --with-midi --with-portmidi
-for i in ffmpeg lame libsndfile libsoxr libvamp twolame; do
+for i in %{!?with_local_ffmpeg:ffmpeg} lame libsndfile libsoxr libvamp twolame; do
rm -r lib-src/$i
done
@@ -134,7 +158,15 @@ done
export WX_CONFIG=wx-config-3.0-gtk2
%endif
+%if %{with compat_ffmpeg}
+export PKG_CONFIG_PATH=%{_libdir}/compat-ffmpeg28/pkgconfig
+%endif
+
+aclocal -I m4
+autoconf
+
%configure \
+ --disable-dynamic-loading \
--with-help \
%if (0%{?fedora} && 0%{?fedora} < 28)
--with-wx-version=3.0-gtk2 \
@@ -155,7 +187,9 @@ export WX_CONFIG=wx-config-3.0-gtk2
--with-midi \
--with-portmidi \
%if %{with ffmpeg}
+%if ! %{with local_ffmpeg}
--with-ffmpeg=system \
+%endif
%else
--without-ffmpeg \
%endif
@@ -174,15 +208,14 @@ export WX_CONFIG=wx-config-3.0-gtk2
%{nil}
%endif
-# _smp_mflags cause problems
-make
+%make_build
%install
%make_install
rm -Rf $RPM_BUILD_ROOT%{_datadir}/%{realname}/include
-%if 0%{?rhel} >= 8 || 0%{?fedora}
+%if 0%{?rhel} >= 8 || 0%{?fedora}
if appstream-util --help | grep -q replace-screenshots ; then
# Update the screenshot shown in the software center
#
@@ -195,10 +228,6 @@ appstream-util replace-screenshots $RPM_BUILD_ROOT%{_datadir}/appdata/audacity.a
fi
%endif
-# Audacity 1.3.8-beta complains if the help/manual directories
-# don't exist.
-mkdir -p $RPM_BUILD_ROOT%{_datadir}/%{name}/help/manual
-
%{find_lang} %{realname}
desktop-file-install --dir $RPM_BUILD_ROOT%{_datadir}/applications \
@@ -207,6 +236,10 @@ desktop-file-install --dir $RPM_BUILD_ROOT%{_datadir}/applications \
%endif
$RPM_BUILD_ROOT%{_datadir}/applications/audacity.desktop
+mkdir %{buildroot}%{_datadir}/doc/%{realname}/nyquist
+cp -pr lib-src/libnyquist/nyquist/license.txt %{buildroot}%{_datadir}/doc/%{realname}/nyquist
+cp -pr lib-src/libnyquist/nyquist/Readme.txt %{buildroot}%{_datadir}/doc/%{realname}/nyquist
+rm %{buildroot}%{_datadir}/doc/%{realname}/LICENSE.txt
%post
update-desktop-database &> /dev/null || :
@@ -239,13 +272,26 @@ update-mime-database %{?fedora:-n} %{_datadir}/mime &> /dev/null || :
%{_datadir}/pixmaps/*
%{_datadir}/icons/hicolor/*/apps/%{realname}.*
%{_datadir}/mime/packages/*
-%doc %{_datadir}/doc/*
-%doc lib-src/libnyquist/nyquist/license.txt lib-src/libnyquist/nyquist/Readme.txt
+%{_datadir}/doc/%{realname}
+%license LICENSE.txt
%changelog
+* Sun Feb 25 2018 Sérgio Basto <sergio(a)serjux.com> - 2.2.2-2
+- Use compat-ffmpeg28
+- Also add conditionals to be possible build with local ffmpeg (not in use)
+- Use autoconf before ./configure
+- Readd libmp3lame-default.patch and libdir.patch
+- Readd to configure --disable-dynamic-loading
+- General review of spec
+
* Thu Feb 22 2018 Sérgio Basto <sergio(a)serjux.com> - 2.2.2-1
- Update to 2.2.2
+- Readd no-local-includes.patch
+- Reorganize conditonal with_mp3, now have twolame, lame and libmad
+- Readd desktop.in.patch
+- Add to configure --with-lv2 --with-midi --with-portmidi with some commentaries
+- Temporary fix to portaudio became permanent (--with-portaudio=local)
* Thu Feb 01 2018 Sérgio Basto <sergio(a)serjux.com> - 2.2.1-1
- Update to 2.2.1
6 years, 8 months
[live555] Remove workaround for 'xlocale.h', not needed anymore
by Alexandre Detiste
commit 30ed79d85ebf7130e2a4c27f22df1b5b093cdd27
Author: Alexandre Detiste <alexandre.detiste(a)gmail.com>
Date: Sun Feb 25 14:35:04 2018 +0100
Remove workaround for 'xlocale.h', not needed anymore
This is no really usefull to build this once again now,
we can wait till next release.
By the way, this release includes nothing else of interest:
https://salsa.debian.org/multimedia-team/liblivemedia/commit/95846f3650b0...
live555.spec | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/live555.spec b/live555.spec
index 2a8aaad..803a707 100644
--- a/live555.spec
+++ b/live555.spec
@@ -1,6 +1,6 @@
Name: live555
Version: 2018.02.18
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Live555.com streaming libraries
Group: System Environment/Libraries
@@ -67,7 +67,6 @@ vobStreamer) and a variety of test tools.
%setup -q -n live
sed -i -e "s|-O2|%{optflags}|" \
config.linux-with-shared-libraries
-sed -i '/xlocale.h/d' liveMedia/include/Locale.hh
%build
@@ -118,6 +117,10 @@ chmod +x %{buildroot}%{_libdir}/*.so*
%changelog
+* Sun Feb 25 2018 Alexandre Detiste <alexandre(a)detiste.be> - 2018.02.18-2
+- Remove workaround for 'xlocale.h' introduced in 2017.06.04-1,
+ not needed anymore
+
* Sun Feb 25 2018 Alexandre Detiste <alexandre(a)detiste.be> - 2018.02.18-1
- Update to 2018.02.18
6 years, 8 months
[live555] new upstream release
by Alexandre Detiste
commit 9df84294f006d459c9830492049d2f063799de9a
Author: Alexandre Detiste <alexandre.detiste(a)gmail.com>
Date: Sun Feb 25 14:23:19 2018 +0100
new upstream release
live555.spec | 5 ++++-
sources | 2 +-
2 files changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/live555.spec b/live555.spec
index 4a924b2..2a8aaad 100644
--- a/live555.spec
+++ b/live555.spec
@@ -1,5 +1,5 @@
Name: live555
-Version: 2018.01.29
+Version: 2018.02.18
Release: 1%{?dist}
Summary: Live555.com streaming libraries
@@ -118,6 +118,9 @@ chmod +x %{buildroot}%{_libdir}/*.so*
%changelog
+* Sun Feb 25 2018 Alexandre Detiste <alexandre(a)detiste.be> - 2018.02.18-1
+- Update to 2018.02.18
+
* Fri Feb 02 2018 Alexandre Detiste <alexandre(a)detiste.be> - 2018.01.29-1
- Update to 2018.01.29
diff --git a/sources b/sources
index e6bbe60..4288d23 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-2e38a82910b0918f43ef12561b2b2ef8 live.2018.01.29.tar.gz
+5e070a0bf4b60af65717d09283ba0bbc live.2018.02.18.tar.gz
6 years, 8 months
[vdr-softhddevice-openglosd] Rebuilt for ffmpeg-3.5 git Added BR ffmpeg-devel < 3.4.1, VDPAU has been removed with ffmpeg 3.4.1 a
by Martin Gansser
commit f624b4fe21e063adac67bda797a8042640d62797
Author: martinkg <martinkg(a)fedoraproject.org>
Date: Sun Feb 25 09:33:40 2018 +0100
Rebuilt for ffmpeg-3.5 git
Added BR ffmpeg-devel < 3.4.1, VDPAU has been removed with ffmpeg 3.4.1 and therefore
vdr-softhddevice will not longer working.
vdr-softhddevice-openglosd.spec | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
---
diff --git a/vdr-softhddevice-openglosd.spec b/vdr-softhddevice-openglosd.spec
index 6783a6a..3a5807f 100644
--- a/vdr-softhddevice-openglosd.spec
+++ b/vdr-softhddevice-openglosd.spec
@@ -25,7 +25,7 @@ BuildRequires: gettext
BuildRequires: libva-devel
BuildRequires: libvdpau-devel
BuildRequires: alsa-lib-devel
-BuildRequires: ffmpeg-devel
+BuildRequires: ffmpeg-devel < 3.4.1
BuildRequires: freeglut-devel
BuildRequires: libxcb-devel
BuildRequires: xcb-util-devel
@@ -95,6 +95,8 @@ install -Dpm 644 %{SOURCE1} \
%changelog
* Thu Jan 18 2018 Leigh Scott <leigh123linux(a)googlemail.com> - 0.6.1-14.20160717git569fde5
- Rebuilt for ffmpeg-3.5 git
+- Added BR ffmpeg-devel < 3.4.1, VDPAU has been removed with ffmpeg 3.4.1 and therefore
+ vdr-softhddevice will not longer working.
* Mon Jan 15 2018 Nicolas Chauvet <kwizart(a)gmail.com> - 0.6.1-13.20160717git569fde5
- Rebuilt for VA-API 1.0.0
6 years, 8 months
[vdr-softhddevice] Rebuilt for ffmpeg-3.5 git Added BR ffmpeg-devel < 3.4.1, VDPAU has been removed with ffmpeg 3.4.1 a
by Martin Gansser
commit 000f24ad5b5af2fc72b04b3282b372dbc27304b1
Author: martinkg <martinkg(a)fedoraproject.org>
Date: Sun Feb 25 09:30:18 2018 +0100
Rebuilt for ffmpeg-3.5 git
Added BR ffmpeg-devel < 3.4.1, VDPAU has been removed with ffmpeg 3.4.1 and therefore
vdr-softhddevice will not longer working.
vdr-softhddevice.spec | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
---
diff --git a/vdr-softhddevice.spec b/vdr-softhddevice.spec
index 0a20f37..6e50997 100644
--- a/vdr-softhddevice.spec
+++ b/vdr-softhddevice.spec
@@ -24,7 +24,7 @@ BuildRequires: gettext
BuildRequires: libva-devel
BuildRequires: libvdpau-devel
BuildRequires: alsa-lib-devel
-BuildRequires: ffmpeg-devel
+BuildRequires: ffmpeg-devel < 3.4.1
BuildRequires: libxcb-devel
BuildRequires: xcb-util-devel
BuildRequires: xcb-util-wm-devel
@@ -87,6 +87,8 @@ install -Dpm 644 %{SOURCE1} \
%changelog
* Thu Jan 18 2018 Leigh Scott <leigh123linux(a)googlemail.com> - 0.6.1-13.20151103git6dfa88a
- Rebuilt for ffmpeg-3.5 git
+- Added BR ffmpeg-devel < 3.4.1, VDPAU has been removed with ffmpeg 3.4.1 and therefore
+ vdr-softhddevice will not longer working.
* Mon Jan 15 2018 Nicolas Chauvet <kwizart(a)gmail.com> - 0.6.1-12.20151103git6dfa88a
- Rebuilt for VA-API 1.0.0
6 years, 8 months
[swftools] Fix build with giflib >= 5
by Mohamed ElMorabity
commit 7f950f997bd016ee0c8012606528ca3e4f2a1348
Author: Mohamed El Morabity <melmorabity(a)fedoraproject.org>
Date: Sat Feb 24 20:32:04 2018 +0100
Fix build with giflib >= 5
swftools-0.9.2-giflib5.patch | 70 ++++++++++++++++++++++++++++++++++++++++++++
swftools.spec | 5 +++-
2 files changed, 74 insertions(+), 1 deletion(-)
---
diff --git a/swftools-0.9.2-giflib5.patch b/swftools-0.9.2-giflib5.patch
new file mode 100644
index 0000000..abba483
--- /dev/null
+++ b/swftools-0.9.2-giflib5.patch
@@ -0,0 +1,70 @@
+diff -up ./src/gif2swf.c.orig ./src/gif2swf.c
+--- ./src/gif2swf.c.orig 2011-01-02 04:30:29.000000000 +0100
++++ ./src/gif2swf.c 2018-02-24 20:28:24.696622499 +0100
+@@ -66,6 +66,14 @@ enum disposal_method {
+ };
+
+
++void PrintGifError(int ErrorCode) {
++ const char *Err = GifErrorString(ErrorCode);
++ if (Err != NULL)
++ fprintf(stderr, "GIF-LIB error: %s.\n", Err);
++ else
++ fprintf(stderr, "GIF-LIB undefined error %d.\n", ErrorCode);
++}
++
+ void SetFrameAction(TAG ** t, const char *src, int ver)
+ {
+ ActionTAG *as;
+@@ -230,13 +238,13 @@ TAG *MovieAddFrame(SWF * swf, TAG * t, c
+ }
+ fclose(fi);
+
+- if ((gft = DGifOpenFileName(sname)) == NULL) {
++ if ((gft = DGifOpenFileName(sname, NULL)) == NULL) {
+ fprintf(stderr, "%s is not a GIF file!\n", sname);
+ return t;
+ }
+
+ if (DGifSlurp(gft) != GIF_OK) {
+- PrintGifError();
++ PrintGifError(gft->Error);
+ return t;
+ }
+
+@@ -455,7 +463,7 @@ TAG *MovieAddFrame(SWF * swf, TAG * t, c
+
+ free(pal);
+ free(imagedata);
+- DGifCloseFile(gft);
++ DGifCloseFile(gft, NULL);
+
+ return t;
+ }
+@@ -488,7 +496,7 @@ int CheckInputFile(char *fname, char **r
+ }
+ fclose(fi);
+
+- if ((gft = DGifOpenFileName(s)) == NULL) {
++ if ((gft = DGifOpenFileName(s, NULL)) == NULL) {
+ fprintf(stderr, "%s is not a GIF file!\n", fname);
+ return -1;
+ }
+@@ -499,7 +507,7 @@ int CheckInputFile(char *fname, char **r
+ global.max_image_height = gft->SHeight;
+
+ if (DGifSlurp(gft) != GIF_OK) {
+- PrintGifError();
++ PrintGifError(gft->Error);
+ return -1;
+ }
+ // After DGifSlurp() call, gft->ImageCount become available
+@@ -518,7 +526,7 @@ int CheckInputFile(char *fname, char **r
+ fprintf(stderr, "frame: %u, delay: %.3f sec\n", i + 1, getGifDelayTime(gft, i) / 100.0);
+ }
+
+- DGifCloseFile(gft);
++ DGifCloseFile(gft, NULL);
+
+ return 0;
+ }
diff --git a/swftools.spec b/swftools.spec
index 5e3d686..7b1db46 100644
--- a/swftools.spec
+++ b/swftools.spec
@@ -11,6 +11,8 @@ URL: http://www.swftools.org/
Source0: http://www.swftools.org/%{name}-%{version}.tar.gz
# Fix installation
Patch0: swftools-0.9.2-install.patch
+# Fix build with giflib >= 5
+Patch1: swftools-0.9.2-giflib5.patch
BuildRequires: fftw-devel
BuildRequires: fontconfig-devel
@@ -80,9 +82,10 @@ install -Dp lib/python/*.so $RPM_BUILD_ROOT%{python2_sitearch}/
%changelog
-* Fri Feb 23 2018 Mohamed El Morabity <melmorabity(a)fedoraproject.org> - 0.9.2-7
+* Sat Feb 24 2018 Mohamed El Morabity <melmorabity(a)fedoraproject.org> - 0.9.2-7
- Spec cleanup
- Update for latest Python guidelines
+- Fix build with giflib >= 5
* Thu Aug 31 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> - 0.9.2-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
6 years, 8 months
[qt5-qtwebengine-freeworld/f26] (8 commits) ...Disable use_jumbo_build on aarch64
by Kevin Kofler
Summary of changes:
6887b67... Revert "Rebuild for Qt 5.9.4 (F26/F27)" (*)
3045f93... Revert "Disable 32-bit ARM build until we can figure out wh (*)
0172240... Update to 5.10.1 (*)
bb7eb80... Fix build with FFmpeg 3.5 (apply conditionally because it b (*)
8b5ea73... Backport https://chromium-review.googlesource.com/889686 (*)
04711e8... Reduce jumbo_file_merge_limit from 50 to 20 on aarch64 (*)
6b69f6e... Reduce jumbo_file_merge_limit from 50 to 10 on aarch64 (*)
577e733... Disable use_jumbo_build on aarch64 (*)
(*) This commit already existed in another branch; no separate mail sent
6 years, 8 months
[clipgrab/f27] Removed scriptlets
by Martin Gansser
Summary of changes:
ca35a21... Removed scriptlets (*)
(*) This commit already existed in another branch; no separate mail sent
6 years, 8 months
[clipgrab] Removed scriptlets
by Martin Gansser
commit ca35a214e5555003725cd7679808e71057c6ce42
Author: martinkg <martinkg(a)fedoraproject.org>
Date: Sat Feb 24 09:07:07 2018 +0100
Removed scriptlets
clipgrab.spec | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
---
diff --git a/clipgrab.spec b/clipgrab.spec
index b022f80..3761e27 100644
--- a/clipgrab.spec
+++ b/clipgrab.spec
@@ -14,7 +14,6 @@ BuildRequires: qt-webkit-devel
BuildRequires: desktop-file-utils
Requires: ffmpeg
-
%description
ClipGrab is a free downloader and converter for YouTube, Vimeo, Dailymotion
and many other online video sites.
@@ -40,10 +39,10 @@ desktop-file-install --dir %{buildroot}%{_datadir}/applications %{SOURCE1}
%{_datadir}/pixmaps/*.png
%{_datadir}/applications/clipgrab.desktop
-
%changelog
* Fri Feb 23 2018 Martin Gansser <martinkg(a)fedoraproject.org> - 3.6.8-1
- Update to 3.6.8
+- Remove scriptlets
* Wed Feb 14 2018 Sérgio Basto <sergio(a)serjux.com> - 3.6.7-1
- Update to 3.6.7
6 years, 8 months
[clipgrab/f26] remove scriptlets
by Leigh Scott
Summary of changes:
db1ca49... remove scriptlets (*)
(*) This commit already existed in another branch; no separate mail sent
6 years, 8 months