[unrar/f27] Update to 5.5.8
by jwrdegoede
Summary of changes:
bbd9a3d... Update to 5.5.8 (*)
(*) This commit already existed in another branch; no separate mail sent
6 years, 10 months
[unrar] Update to 5.5.8
by jwrdegoede
commit bbd9a3d7aef4c427c3c15e42c2814be7e0c2bbf7
Author: Hans de Goede <hdegoede(a)redhat.com>
Date: Thu Jan 18 11:53:43 2018 +0100
Update to 5.5.8
.gitignore | 1 +
sources | 2 +-
unrar.spec | 7 +++++--
3 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 5584562..9947049 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
unrarsrc-5.2.3.tar.gz
/unrarsrc-5.4.5.tar.gz
/unrarsrc-5.5.5.tar.gz
+/unrarsrc-5.5.8.tar.gz
diff --git a/sources b/sources
index 845b88d..f358b6a 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-d741dfe5f09bc24679ac5d0158c88f20 unrarsrc-5.5.5.tar.gz
+8d74b4d16b1317c4b1081e5f44025180 unrarsrc-5.5.8.tar.gz
diff --git a/unrar.spec b/unrar.spec
index 9fe0b71..2798fe2 100644
--- a/unrar.spec
+++ b/unrar.spec
@@ -1,6 +1,6 @@
Name: unrar
-Version: 5.5.5
-Release: 2%{?dist}
+Version: 5.5.8
+Release: 1%{?dist}
Summary: Utility for extracting, testing and viewing RAR archives
License: Freeware with further limitations
Group: Applications/Archiving
@@ -117,6 +117,9 @@ fi
%changelog
+* Thu Jan 18 2018 Hans de Goede <j.w.r.degoede(a)gmail.com> - 5.5.8-1
+- Update to 5.5.8
+
* Thu Aug 31 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> - 5.5.5-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
6 years, 10 months
[zoneminder] Rebuilt for ffmpeg-3.5 git
by Leigh Scott
commit 1757a1eb9a4ed11151069e646a3d8472a289fba9
Author: leigh123linux <leigh123linux(a)googlemail.com>
Date: Thu Jan 18 10:50:16 2018 +0000
Rebuilt for ffmpeg-3.5 git
zoneminder.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/zoneminder.spec b/zoneminder.spec
index 6ff0bd9..2e34f3f 100644
--- a/zoneminder.spec
+++ b/zoneminder.spec
@@ -34,7 +34,7 @@
Name: zoneminder
Version: 1.30.4
-Release: 4%{?dist}
+Release: 5%{?dist}
Summary: A camera monitoring and analysis tool
Group: System Environment/Daemons
# jscalendar is LGPL (any version): http://www.dynarch.com/projects/calendar/
@@ -354,6 +354,9 @@ rm -rf %{_docdir}/%{name}-%{version}
%dir %attr(755,%{zmuid_final},%{zmgid_final}) %{_localstatedir}/run/zoneminder
%changelog
+* Thu Jan 18 2018 Leigh Scott <leigh123linux(a)googlemail.com> - 1.30.4-5
+- Rebuilt for ffmpeg-3.5 git
+
* Thu Aug 31 2017 RPM Fusion Release Engineering <kwizart(a)rpmfusion.org> - 1.30.4-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
6 years, 10 months
[motion] fix build with ffmpeg-3.5
by Leigh Scott
commit 2d9898fcaa107dde6a0a42afd9e94334a0935bfb
Author: leigh123linux <leigh123linux(a)googlemail.com>
Date: Thu Jan 18 09:22:45 2018 +0000
fix build with ffmpeg-3.5
ffmpeg35_buildfix.patch | 21 +++++++++++++++++++++
motion.spec | 3 ++-
2 files changed, 23 insertions(+), 1 deletion(-)
---
diff --git a/ffmpeg35_buildfix.patch b/ffmpeg35_buildfix.patch
new file mode 100644
index 0000000..63fbdb8
--- /dev/null
+++ b/ffmpeg35_buildfix.patch
@@ -0,0 +1,21 @@
+--- a/ffmpeg.c
++++ b/ffmpeg.c
+@@ -538,7 +538,7 @@
+ /* The selection of 8000 in the else is a subjective number based upon viewing output files */
+ if (ffmpeg->vbr > 0){
+ ffmpeg->vbr =(int)(((100-ffmpeg->vbr)*(100-ffmpeg->vbr)*(100-ffmpeg->vbr) * 8000) / 1000000) + 1;
+- ffmpeg->ctx_codec->flags |= CODEC_FLAG_QSCALE;
++ ffmpeg->ctx_codec->flags |= AV_CODEC_FLAG_QSCALE;
+ ffmpeg->ctx_codec->global_quality=ffmpeg->vbr;
+ }
+ }
+@@ -663,7 +663,7 @@
+ ffmpeg->ctx_codec->strict_std_compliance = -2;
+ ffmpeg->ctx_codec->level = 3;
+ }
+- ffmpeg->ctx_codec->flags |= CODEC_FLAG_GLOBAL_HEADER;
++ ffmpeg->ctx_codec->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
+
+ retcd = ffmpeg_set_quality(ffmpeg);
+ if (retcd < 0){
+
diff --git a/motion.spec b/motion.spec
index 59ee1e1..5d60a06 100644
--- a/motion.spec
+++ b/motion.spec
@@ -33,6 +33,7 @@ URL: https://motion-project.github.io/
Source0: https://github.com/Motion-Project/motion/archive/release-%{nextver}.tar.g...
Source1: motion.service
Source2: motion.tmpfiles
+Patch0: ffmpeg35_buildfix.patch
BuildRequires: libjpeg-devel
Buildrequires: zlib-devel
@@ -63,7 +64,7 @@ with a rather small footprint. This version is built with ffmpeg support but
without MySQL and PostgreSQL support.
%prep
-%setup -q -n %{name}-release-%{nextver}
+%autosetup -p1 -n %{name}-release-%{nextver}
autoreconf
%build
6 years, 10 months
[qmplay2] Rebuilt for ffmpeg-3.5 git
by Leigh Scott
commit a6f07da6b030034d4bcebba78f08b4afe156fa7a
Author: leigh123linux <leigh123linux(a)googlemail.com>
Date: Thu Jan 18 09:02:07 2018 +0000
Rebuilt for ffmpeg-3.5 git
qmplay2.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/qmplay2.spec b/qmplay2.spec
index efa39c7..8bc83e7 100644
--- a/qmplay2.spec
+++ b/qmplay2.spec
@@ -2,7 +2,7 @@
Name: qmplay2
Version: 17.12.31
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: A Qt based media player, streamer and downloader
License: LGPLv3+
Url: http://zaps166.sourceforge.net/?app=QMPlay2
@@ -134,6 +134,9 @@ fi
%{_includedir}/%{pname}
%changelog
+* Thu Jan 18 2018 Leigh Scott <leigh123linux(a)googlemail.com> - 17.12.31-3
+- Rebuilt for ffmpeg-3.5 git
+
* Mon Jan 15 2018 Nicolas Chauvet <kwizart(a)gmail.com> - 17.12.31-2
- Rebuilt for VA-API 1.0.0
6 years, 10 months
[qtav] Rebuilt for ffmpeg-3.5 git
by Leigh Scott
commit d5a5ecb29cbc1c51cc527913456e17b6f113c508
Author: leigh123linux <leigh123linux(a)googlemail.com>
Date: Thu Jan 18 09:01:20 2018 +0000
Rebuilt for ffmpeg-3.5 git
qtav.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/qtav.spec b/qtav.spec
index 9ee64f3..2dacaa0 100644
--- a/qtav.spec
+++ b/qtav.spec
@@ -7,7 +7,7 @@
Name: qtav
Version: 1.12.0
-Release: 3.git%{shortcommit0}%{?dist}
+Release: 4.git%{shortcommit0}%{?dist}
Summary: A media playback framework based on Qt and FFmpeg
License: LGPLv2+ and GPLv3+ and BSD
Group: Development/Libraries
@@ -224,6 +224,9 @@ fi
%{_datadir}/icons/hicolor/*/apps/QtAV.svg
%changelog
+* Thu Jan 18 2018 Leigh Scott <leigh123linux(a)googlemail.com> - 1.12.0-4.gitcbab79e
+- Rebuilt for ffmpeg-3.5 git
+
* Mon Jan 15 2018 Nicolas Chauvet <kwizart(a)gmail.com> - 1.12.0-3.gitcbab79e
- Update to VA-API 1.0.0
6 years, 10 months
[kodi] Rebuilt for ffmpeg-3.5 git
by Leigh Scott
commit 70457bff93a696243d3d995b5b27954e5fcb9fac
Author: leigh123linux <leigh123linux(a)googlemail.com>
Date: Thu Jan 18 09:00:18 2018 +0000
Rebuilt for ffmpeg-3.5 git
kodi.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/kodi.spec b/kodi.spec
index afaba31..1691e9c 100644
--- a/kodi.spec
+++ b/kodi.spec
@@ -8,7 +8,7 @@
Name: kodi
Version: 17.6
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: Media center
License: GPLv2+ and GPLv3+ and LGPLv2+ and BSD and MIT
@@ -424,6 +424,9 @@ fi
%changelog
+* Thu Jan 18 2018 Leigh Scott <leigh123linux(a)googlemail.com> - 17.6-3
+- Rebuilt for ffmpeg-3.5 git
+
* Mon Jan 15 2018 Nicolas Chauvet <kwizart(a)gmail.com> - 17.6-2
- Rebuilt for VA-API 1.0.0
6 years, 10 months
[pianobar] Rebuilt for ffmpeg-3.5 git
by Leigh Scott
commit cfe9aade3af019fdab8e2415a1e4aad4fe5b0acc
Author: leigh123linux <leigh123linux(a)googlemail.com>
Date: Thu Jan 18 08:59:32 2018 +0000
Rebuilt for ffmpeg-3.5 git
pianobar.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/pianobar.spec b/pianobar.spec
index 47d21c2..31d093f 100644
--- a/pianobar.spec
+++ b/pianobar.spec
@@ -1,6 +1,6 @@
Name: pianobar
Version: 2017.08.30
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Console-based client for Pandora
License: MIT
@@ -53,6 +53,9 @@ chmod a+x configure
%changelog
+* Thu Jan 18 2018 Leigh Scott <leigh123linux(a)googlemail.com> - 2017.08.30-2
+- Rebuilt for ffmpeg-3.5 git
+
* Tue Oct 17 2017 Leigh Scott <leigh123linux(a)googlemail.com> - 2017.08.30-1
- Update to latest upstream release.
- Fix debuginfo issue (actually call configure)
6 years, 10 months
[openmw] Rebuilt for ffmpeg-3.5 git
by Leigh Scott
commit d6cae374649309063b464d1f78902495d603efbe
Author: leigh123linux <leigh123linux(a)googlemail.com>
Date: Thu Jan 18 08:58:42 2018 +0000
Rebuilt for ffmpeg-3.5 git
openmw.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/openmw.spec b/openmw.spec
index c4125cc..90058b9 100644
--- a/openmw.spec
+++ b/openmw.spec
@@ -1,6 +1,6 @@
Name: openmw
Version: 0.43.0
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Unofficial open source engine re-implementation of the game Morrowind
License: GPLv3 and MIT and zlib
@@ -138,6 +138,9 @@ mkdir -p %{buildroot}/%{_datadir}/%{name}/data
%changelog
+* Thu Jan 18 2018 Leigh Scott <leigh123linux(a)googlemail.com> - 0.43.0-2
+- Rebuilt for ffmpeg-3.5 git
+
* Fri Dec 22 2017 Ben Rosser <rosser.bjr(a)gmail.com> - 0.43.0-1
- Update to latest upstream release.
6 years, 10 months