[clipgrab] Update to 3.8.4 Drop clipgrab-qt5-3.7.2.patch
by Martin Gansser
commit 649ca60ed0a12006c931c59f0c318dea9aeb04ba
Author: Martin Gansser <mgansser(a)online.de>
Date: Mon Aug 26 12:38:30 2019 +0200
Update to 3.8.4
Drop clipgrab-qt5-3.7.2.patch
.gitignore | 1 +
clipgrab-qt5-3.7.2.patch | 650 -----------------------------------------------
clipgrab.spec | 9 +-
sources | 2 +-
4 files changed, 8 insertions(+), 654 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 860a435..f20a3e4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -14,3 +14,4 @@ clipgrab-3.5.5.tar.gz
/clipgrab-3.8.1.tar.gz
/clipgrab-3.8.2.tar.gz
/clipgrab-3.8.3.tar.gz
+/clipgrab-3.8.4.tar.gz
diff --git a/clipgrab.spec b/clipgrab.spec
index b60062c..a696dea 100644
--- a/clipgrab.spec
+++ b/clipgrab.spec
@@ -1,13 +1,12 @@
Name: clipgrab
-Version: 3.8.3
-Release: 2%{?dist}
+Version: 3.8.4
+Release: 1%{?dist}
License: GPLv3 and Non-Commercial Use Only (Artwork and Trademark)
Summary: A free video downloader and converter
URL: http://clipgrab.de/en
Source0: https://download.clipgrab.org/%{name}-%{version}.tar.gz
Source1: %{name}.desktop
-Patch0: https://gitlab.com/kikadf/clipgrab-qt5/raw/patches/patches/clipgrab-qt5-3...
ExcludeArch: ppc64le ppc64 aarch64
@@ -49,6 +48,10 @@ desktop-file-install --dir %{buildroot}%{_datadir}/applications %{SOURCE1}
%{_datadir}/applications/clipgrab.desktop
%changelog
+* Mon Aug 26 2019 Martin Gansser <martinkg(a)fedoraproject.org> - 3.8.3-4
+- Update to 3.8.4
+- Drop clipgrab-qt5-3.7.2.patch
+
* Sat Aug 10 2019 RPM Fusion Release Engineering <leigh123linux(a)gmail.com> - 3.8.3-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
diff --git a/sources b/sources
index 248e654..6de2fe0 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-5f63b8cc431867921114fe2e32c05325 clipgrab-3.8.3.tar.gz
+32a2c9161a1f335a749c9b1104100754 clipgrab-3.8.4.tar.gz
5 years, 3 months
[gpac] Remove unused BuildRequires: js-devel
by Leigh Scott
commit 1ca6c98842c23815a6f9e1fdf5ea79be8ccd5bf3
Author: Leigh Scott <leigh123linux(a)googlemail.com>
Date: Mon Aug 26 11:32:39 2019 +0100
Remove unused BuildRequires: js-devel
gpac.spec | 1 -
1 file changed, 1 deletion(-)
---
diff --git a/gpac.spec b/gpac.spec
index 8f39de0..5e376a1 100644
--- a/gpac.spec
+++ b/gpac.spec
@@ -28,7 +28,6 @@ BuildRequires: libpng-devel >= 1.2.5
BuildRequires: libmad-devel
BuildRequires: xvidcore-devel >= 1.0.0
BuildRequires: ffmpeg-devel
-BuildRequires: js-devel
BuildRequires: libxml2-devel
BuildRequires: openssl-devel
BuildRequires: openjpeg-devel
5 years, 3 months
[vlc-bittorrent] Initial import for vlc-bittorrent
by Nicolas Chauvet
commit 5d1f12a8787721e6d036fc406c69c95f0e5a9e08
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Mon Aug 26 11:51:59 2019 +0200
Initial import for vlc-bittorrent
.gitignore | 1 +
sources | 1 +
vlc-bittorrent.spec | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 75 insertions(+)
---
diff --git a/.gitignore b/.gitignore
index e69de29..1ecd4ba 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+vlc-bittorrent-*.tar.gz
diff --git a/sources b/sources
index e69de29..34119cb 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+033b3b4c17841923a428cbb8e8398f2d vlc-bittorrent-2.7.tar.gz
diff --git a/vlc-bittorrent.spec b/vlc-bittorrent.spec
new file mode 100644
index 0000000..96f1d7e
--- /dev/null
+++ b/vlc-bittorrent.spec
@@ -0,0 +1,73 @@
+Name: vlc-bittorrent
+Version: 2.7
+Release: 1%{?dist}
+Summary: Bittorrent plugin for VLC
+
+License: GPLv3+
+URL: https://github.com/johang/vlc-bittorrent
+Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
+
+BuildRequires: gcc-c++
+BuildRequires: libtool
+BuildRequires: desktop-file-utils
+
+BuildRequires: boost-devel
+BuildRequires: rb_libtorrent-devel
+BuildRequires: vlc-devel >= 3.0.0
+
+Requires: vlc-core%{_isa}
+
+# for compatibility
+Provides: vlc-plugin-bittorrent = %{version}-%{release}
+
+
+%description
+With vlc-bittorrent, you can open a .torrent file or magnet link with
+VLC and stream any media that it contains.
+
+
+%prep
+%autosetup
+autoreconf -vif
+
+%build
+%configure \
+ --disable-static \
+ --libdir=%{_libdir}/vlc/plugins/access
+
+%make_build
+
+
+%install
+%make_install
+find %{buildroot}%{_libdir} -name "*.la" -delete
+
+# desktop validation
+desktop-file-validate \
+ %{buildroot}%{_datadir}/applications/vlc-plugin-bittorrent.desktop
+
+
+%post
+if [ $1 == 1 ] ; then
+ %{_libdir}/vlc/vlc-cache-gen %{_libdir}/vlc/plugins &>/dev/null
+fi || :
+
+%postun
+if [ $1 == 1 ] ; then
+ %{_libdir}/vlc/vlc-cache-gen %{_libdir}/vlc/plugins &>/dev/null
+fi || :
+
+
+%files
+%license LICENSE
+%doc README.md
+%{_libdir}/vlc/plugins/access/libaccess_bittorrent_plugin.so
+%{_datadir}/applications/vlc-plugin-bittorrent.desktop
+
+
+%changelog
+* Wed Aug 21 2019 Nicolas Chauvet <kwizart(a)gmail.com> - 2.7-1
+- Update to 2.7
+
+* Mon Jun 17 2019 Nicolas Chauvet <kwizart(a)gmail.com> - 2.6-1
+- Initial spec file
5 years, 3 months
[ffmpeg] remove merged patch
by Nicolas Chauvet
commit e28ebe3119910d0c9bc1e395cc689b77d572cd61
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Mon Aug 26 11:31:42 2019 +0200
remove merged patch
Use-gnutls_set_default_priority.patch | 28 ----------------------------
1 file changed, 28 deletions(-)
5 years, 3 months
[ffmpeg/el8] (32 commits) ...Make it build for el8
by Leigh Scott
Summary of changes:
7d10e2b... Rework build dependencies for cuda (*)
b2016c1... Fixup rpi br (*)
b1a2e6b... Add omx/omx_rpi support (*)
e747115... Add omx/omx_rpi support (*)
5dbf755... Drop opencv by default (*)
0772860... Update changelog (*)
d30cc00... Update RHEL case (*)
7f173da... Enable libssh support by default (rfbz#5135) (*)
73c7691... Update to 4.1.1 release (*)
e6ba26a... Rebuild for new x265 (*)
3037a6b... - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass (*)
5b6887b... Mass rebuild for x264 (*)
8f13676... Update to 4.1.2 release (*)
eae0340... Update to 4.1.3 release (*)
cd3bdd1... Backport upstream patch (*)
23cc013... Update changelog (*)
1670f1d... Bump to latest cuda (*)
d72b341... Only el7 and el8 will be tested, el8 still wip (*)
06e40d4... Rebuilt (*)
447488b... Update to 4.1.4 release (*)
6045963... Add patch for gnutls set_default_priority (*)
af22713... Update changelog (*)
9737b15... Revert to the patch for 4.1x/4.0x (*)
a5ff938... Drop subversion (*)
70ce5a1... Update to 4.2 release (*)
fccd52f... clean up (*)
98589f0... Patch1 merged upstream (*)
4e6e648... Add patch to fix ppc build (*)
355bbbf... Add version for Br dav1d (*)
f806fb0... - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass (*)
dfe4396... Rebuild for dav1d and aom SONAME bump (*)
60eebee... Make it build for el8 (*)
(*) This commit already existed in another branch; no separate mail sent
5 years, 3 months
[ffmpeg] Make it build for el8
by Leigh Scott
commit 60eebee6430afd6e3ca27e8af42429bc29dfe18f
Author: Leigh Scott <leigh123linux(a)googlemail.com>
Date: Mon Aug 26 09:54:49 2019 +0100
Make it build for el8
ffmpeg.spec | 15 +++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)
---
diff --git a/ffmpeg.spec b/ffmpeg.spec
index 50278d9..3640413 100644
--- a/ffmpeg.spec
+++ b/ffmpeg.spec
@@ -17,8 +17,11 @@
%endif
%if 0%{?el8}
-%global _without_aom 1
+%global _without_ass 1
+%global _without_bluray 1
%global _without_dav1d 1
+%global _without_fribidi 1
+%global _without_jack 1
%global _without_mfx 1
%endif
@@ -118,8 +121,8 @@ BuildRequires: lame-devel >= 3.98.3
%{!?_without_ladspa:BuildRequires: ladspa-devel}
%{!?_without_aom:BuildRequires: libaom-devel}
%{!?_without_dav1d:BuildRequires: libdav1d-devel >= 0.2.1}
-BuildRequires: libass-devel
-BuildRequires: libbluray-devel
+%{!?_without_ass:BuildRequires: libass-devel}
+%{!?_without_bluray:BuildRequires: libbluray-devel}
%{?_with_bs2b:BuildRequires: libbs2b-devel}
%{?_with_caca:BuildRequires: libcaca-devel}
%{!?_without_cdio:BuildRequires: libcdio-paranoia-devel}
@@ -250,8 +253,8 @@ This package contains development files for %{name}
%{!?_without_ladspa:--enable-ladspa} \\\
%{!?_without_aom:--enable-libaom} \\\
%{!?_without_dav1d:--enable-libdav1d} \\\
- --enable-libass \\\
- --enable-libbluray \\\
+ %{!?_without_ass:--enable-libass} \\\
+ %{!?_without_bluray:--enable-libbluray} \\\
%{?_with_bs2b:--enable-libbs2b} \\\
%{?_with_caca:--enable-libcaca} \\\
%{?_with_cuda:--enable-cuda-sdk --enable-nonfree} \\\
@@ -264,7 +267,7 @@ This package contains development files for %{name}
%{?_with_flite:--enable-libflite} \\\
%{!?_without_jack:--enable-indev=jack} \\\
--enable-libfreetype \\\
- --enable-libfribidi \\\
+ %{!?_without_fribidi:--enable-libfribidi} \\\
%{?_with_gme:--enable-libgme} \\\
--enable-libgsm \\\
%{?_with_ilbc:--enable-libilbc} \\\
5 years, 3 months