[shotcut] Update to 19.01.27
by Martin Gansser
commit 4b7b26941b917d7195fa37257a06bd1163af26c5
Author: Martin Gansser <mgansser(a)online.de>
Date: Mon Jan 28 08:32:36 2019 +0100
Update to 19.01.27
.gitignore | 1 +
shotcut.spec | 5 ++++-
sources | 2 +-
3 files changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index c8c166f..85dc8d8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -17,3 +17,4 @@
/shotcut-18.12.23.tar.gz
/shotcut-19.01.19.tar.gz
/shotcut-19.01.24.tar.gz
+/shotcut-19.01.27.tar.gz
diff --git a/shotcut.spec b/shotcut.spec
index 80f0574..0dbb7e0 100644
--- a/shotcut.spec
+++ b/shotcut.spec
@@ -3,7 +3,7 @@
%define _vstring %(echo %{version} |tr -d ".")
Name: shotcut
-Version: 19.01.24
+Version: 19.01.27
Release: 1%{dist}
Summary: A free, open source, cross-platform video editor
# The entire source code is GPLv3+ except mvcp/ which is LGPLv2+
@@ -183,6 +183,9 @@ appstream-util validate-relax --nonet %{buildroot}/%{_metainfodir}/org.%{name}.S
%doc doc
%changelog
+* Mon Jan 28 2019 Martin Gansser <martinkg(a)fedoraproject.org> - 19.01.27-1
+- Update to 19.01.27
+
* Fri Jan 25 2019 Martin Gansser <martinkg(a)fedoraproject.org> - 19.01.24-1
- Update to 19.01.24
diff --git a/sources b/sources
index b57caf1..e42ef62 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-c9ca634e3ef9f610ff6bbbd23e6fc440 shotcut-19.01.24.tar.gz
+6b7ef08d7ad6dadbaf8b19a93923b779 shotcut-19.01.27.tar.gz
5 years, 9 months
[wl-kmod] Don't increment position if not needed after kernel_read function thanks to Alexander Alexandrovsk
by Nicolas Viéville
commit a221a2c82f824d46f43712182b662faa24f1d13b
Author: Nicolas Viéville <nicolas.vieville(a)uphf.fr>
Date: Sun Jan 27 17:06:59 2019 +0100
Don't increment position if not needed after kernel_read function
thanks to Alexander Alexandrovsky
wl-kmod.spec remove space at end of line
wl-kmod-014_kernel_read_pos_increment_fix.patch | 20 ++++++++++++++++++++
wl-kmod.spec | 19 +++++++++++++------
2 files changed, 33 insertions(+), 6 deletions(-)
---
diff --git a/wl-kmod-014_kernel_read_pos_increment_fix.patch b/wl-kmod-014_kernel_read_pos_increment_fix.patch
new file mode 100644
index 0000000..55b0c96
--- /dev/null
+++ b/wl-kmod-014_kernel_read_pos_increment_fix.patch
@@ -0,0 +1,20 @@
+diff -Naur hybrid-v35_64-nodebug-pcoem-6_30_223_271.orig/src/shared/linux_osl.c hybrid-v35_64-nodebug-pcoem-6_30_223_271/src/shared/linux_osl.c
+--- hybrid-v35_64-nodebug-pcoem-6_30_223_271.orig/src/shared/linux_osl.c 2017-11-24 10:45:55.764626000 +0100
++++ hybrid-v35_64-nodebug-pcoem-6_30_223_271/src/shared/linux_osl.c 2019-01-26 19:33:46.518389607 +0100
+@@ -1075,6 +1075,7 @@
+ osl_os_get_image_block(char *buf, int len, void *image)
+ {
+ struct file *fp = (struct file *)image;
++ loff_t pos = fp->f_pos;
+ int rdlen;
+
+ if (!image)
+@@ -1085,7 +1086,7 @@
+ #else
+ rdlen = kernel_read(fp, fp->f_pos, buf, len);
+ #endif
+- if (rdlen > 0)
++ if ((rdlen > 0) && (fp->f_pos == pos))
+ fp->f_pos += rdlen;
+
+ return rdlen;
diff --git a/wl-kmod.spec b/wl-kmod.spec
index a1465e8..0113383 100644
--- a/wl-kmod.spec
+++ b/wl-kmod.spec
@@ -8,7 +8,7 @@
Name: wl-kmod
Version: 6.30.223.271
-Release: 20%{?dist}
+Release: 21%{?dist}
Summary: Kernel module for Broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -29,6 +29,7 @@ Patch9: wl-kmod-010_kernel_4.12_add_cfg80211_roam_info_struct.patch
Patch10: wl-kmod-011_kernel_4.14_new_kernel_read_function_prototype.patch
Patch11: wl-kmod-012_kernel_4.15_new_timer.patch
Patch12: wl-kmod-013_gcc8_fix_bounds_check_warnings.patch
+Patch13: wl-kmod-014_kernel_read_pos_increment_fix.patch
# needed for plague to make sure it builds for i586 and i686
ExclusiveArch: i686 x86_64
@@ -44,14 +45,14 @@ BuildRequires: %{AkmodsBuildRequires}
%{expand:%(kmodtool --target %{_target_cpu} --repo rpmfusion --kmodname %{name} --filterfile %{SOURCE11} %{?buildforkernels:--%{buildforkernels}} %{?kernels:--for-kernels "%{?kernels}"} 2>/dev/null) }
%description
-These packages contain Broadcom's IEEE 802.11a/b/g/n hybrid Linux device
-driver for use with Broadcom's BCM4311-, BCM4312-, BCM4313-, BCM4321-,
-BCM4322-, BCM43142-, BCM43224-, BCM43225-, BCM43227-, BCM43228-,
+These packages contain Broadcom's IEEE 802.11a/b/g/n hybrid Linux device
+driver for use with Broadcom's BCM4311-, BCM4312-, BCM4313-, BCM4321-,
+BCM4322-, BCM43142-, BCM43224-, BCM43225-, BCM43227-, BCM43228-,
BCM4331-, BCM4360 and -BCM4352- based hardware.
NOTE: You must read the LICENSE.txt file in the docs directory before using
-this software. You should read the fedora.readme file in the docs directory
-in order to know how to configure this software if you encounter problems
+this software. You should read the fedora.readme file in the docs directory
+in order to know how to configure this software if you encounter problems
while boot sequence or with the CFG80211 API (revert to the WEXT API).
%prep
@@ -82,6 +83,7 @@ pushd %{name}-%{version}-src
%patch10 -p1 -b .kernel_4.14_new_kernel_read_function_prototype
%patch11 -p1 -b .kernel_4.15_new_timer
%patch12 -p1 -b .gcc8_fix_bounds_check_warnings
+%patch13 -p1 -b .kernel_read_pos_increment_fix
popd
for kernel_version in %{?kernel_versions} ; do
@@ -111,6 +113,11 @@ chmod 0755 $RPM_BUILD_ROOT%{kmodinstdir_prefix}*%{kmodinstdir_postfix}/* || :
rm -rf $RPM_BUILD_ROOT
%changelog
+* Sat Jan 26 2019 Nicolas Viéville <nicolas.vieville(a)uphf.fr> - 6.30.223.271-21
+- Don't increment position if not needed after kernel_read function
+ thanks to Alexander Alexandrovsky
+- wl-kmod.spec remove space at end of line
+
* Sun Aug 19 2018 RPM Fusion Release Engineering <leigh123linux(a)gmail.com> - 6.30.223.271-20
- Rebuilt for Fedora 29 Mass Rebuild binutils issue
5 years, 10 months
[mythtv-status] Add file that somehow escaped git.
by Göran Uddeborg
commit 22d79b4781e53119efedb9a88368315d69b6cded
Author: Göran Uddeborg <goeran(a)uddeborg.se>
Date: Sun Jan 27 16:43:09 2019 +0100
Add file that somehow escaped git.
mythtv-status-undefined.patch | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
---
diff --git a/mythtv-status-undefined.patch b/mythtv-status-undefined.patch
new file mode 100644
index 0000000..803634d
--- /dev/null
+++ b/mythtv-status-undefined.patch
@@ -0,0 +1,20 @@
+--- mythtv-status-1.0.0/bin/mythtv-status~ 2019-01-14 12:11:32.000000000 +0100
++++ mythtv-status-1.0.0/bin/mythtv-status 2019-01-25 22:34:40.000000000 +0100
+@@ -1047,7 +1047,7 @@
+ {
+ # MythTV::Program currently has a slightly broken line with a numeric
+ # comparision.
+- local($^W) = undef;
++ local($^W) = 0;
+ $show = new MythTV::Program(@$row);
+ }
+
+@@ -1096,7 +1096,7 @@
+ {
+ # MythTV::Program currently has a slightly broken line with a numeric
+ # comparision.
+- local($^W) = undef;
++ local($^W) = 0;
+ $show = new MythTV::Program(@$row);
+ }
+
5 years, 10 months
[chromium-freeworld] rebuild with widevine fix
by Akarshan Biswas
commit dfdeb1730f54a1e60121aaffb172c69687b3a7b9
Author: Tom Callaway <spot(a)fedoraproject.org>
Date: Mon Jan 21 14:07:36 2019 -0500
rebuild with widevine fix
Signed-off-by: Akarshan Biswas <akarshan.biswas(a)gmail.com>
chromium-freeworld.spec | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/chromium-freeworld.spec b/chromium-freeworld.spec
index 5f35274..e29c593 100644
--- a/chromium-freeworld.spec
+++ b/chromium-freeworld.spec
@@ -150,7 +150,7 @@ Name: chromium%{chromium_channel}%{?freeworld:-freeworld}
Name: chromium%{chromium_channel}
%endif
Version: %{majorversion}.0.3578.98
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: A WebKit (Blink) powered web browser
Url: http://www.chromium.org/Home
License: BSD and LGPLv2+ and ASL 2.0 and IJG and MIT and GPLv2+ and ISC and OpenSSL and (MPLv1.1 or GPLv2 or LGPLv2)
@@ -1834,6 +1834,9 @@ getent group chrome-remote-desktop >/dev/null || groupadd -r chrome-remote-deskt
%changelog
+* Mon Jan 21 2019 Tom Callaway <spot(a)fedoraproject.org> - 71.0.3578.98-3
+- rebuild with widevine fix
+
* Tue Jan 8 2019 Tom Callaway <spot(a)fedoraproject.org> - 71.0.3578.98-2
- drop rsp clobber, which breaks gcc9 (thanks to Jeff Law)
5 years, 10 months
[chromium-freeworld] Fix widevine on chromium
by Akarshan Biswas
commit 0e6de7c84d826444a8bc67718f7f644183225f18
Author: Akarshan Biswas <akarshan.biswas(a)gmail.com>
Date: Wed Jan 9 17:32:59 2019 +0000
Fix widevine on chromium
Fixes #RHBZ 1464705
Signed-off-by: Akarshan Biswas <akarshan.biswas(a)gmail.com>
chromium-71.0.3578.98-widevine-r3.patch | 25 ++++++++++++++++++-------
1 file changed, 18 insertions(+), 7 deletions(-)
---
diff --git a/chromium-71.0.3578.98-widevine-r3.patch b/chromium-71.0.3578.98-widevine-r3.patch
index a8deaf0..8d875c6 100644
--- a/chromium-71.0.3578.98-widevine-r3.patch
+++ b/chromium-71.0.3578.98-widevine-r3.patch
@@ -1,11 +1,22 @@
-diff -up chromium-71.0.3578.98/third_party/widevine/cdm/BUILD.gn.wvhack chromium-71.0.3578.98/third_party/widevine/cdm/BUILD.gn
-diff -up chromium-71.0.3578.98/third_party/widevine/cdm/widevine_cdm_version.h.wvhack chromium-71.0.3578.98/third_party/widevine/cdm/widevine_cdm_version.h
---- chromium-71.0.3578.98/third_party/widevine/cdm/widevine_cdm_version.h.wvhack 2018-12-14 11:58:37.918972853 -0500
-+++ chromium-71.0.3578.98/third_party/widevine/cdm/widevine_cdm_version.h 2018-12-14 11:58:57.327554078 -0500
-@@ -11,5 +11,6 @@
- // If the Widevine CDM is available define the following:
+diff -upr chromium-71.0.3578.80.orig/chrome/common/chrome_content_client.cc chromium-71.0.3578.80/chrome/common/chrome_content_client.cc
+--- chromium-71.0.3578.80.orig/chrome/common/chrome_content_client.cc 2018-12-21 20:16:43.000000000 +0000
++++ chromium-71.0.3578.80/chrome/common/chrome_content_client.cc 2018-12-21 21:34:28.658206942 +0000
+@@ -99,7 +99,7 @@
+ // Registers Widevine CDM if Widevine is enabled, the Widevine CDM is
+ // bundled and not a component. When the Widevine CDM is a component, it is
+ // registered in widevine_cdm_component_installer.cc.
+-#if BUILDFLAG(BUNDLE_WIDEVINE_CDM) && !BUILDFLAG(ENABLE_WIDEVINE_CDM_COMPONENT)
++#if BUILDFLAG(ENABLE_WIDEVINE) && !BUILDFLAG(ENABLE_WIDEVINE_CDM_COMPONENT)
+ #define REGISTER_BUNDLED_WIDEVINE_CDM
+ #include "third_party/widevine/cdm/widevine_cdm_common.h" // nogncheck
+ // TODO(crbug.com/663554): Needed for WIDEVINE_CDM_VERSION_STRING. Support
+diff -upr chromium-71.0.3578.80.orig/third_party/widevine/cdm/widevine_cdm_version.h chromium-71.0.3578.80/third_party/widevine/cdm/widevine_cdm_version.h
+--- chromium-71.0.3578.80.orig/third_party/widevine/cdm/widevine_cdm_version.h 2018-12-21 20:18:01.000000000 +0000
++++ chromium-71.0.3578.80/third_party/widevine/cdm/widevine_cdm_version.h 2018-12-21 21:37:45.635374949 +0000
+@@ -12,4 +12,6 @@
// - WIDEVINE_CDM_VERSION_STRING (with the version of the CDM that's available
// as a string, e.g., "1.0.123.456").
-+#define WIDEVINE_CDM_VERSION_STRING "unknown"
++#define WIDEVINE_CDM_VERSION_STRING "unknown"
++
#endif // WIDEVINE_CDM_VERSION_H_
5 years, 10 months
[mythtv-status] Update to 1.0.0
by Göran Uddeborg
commit 032048c38e63b8d381d51b023ce9c27f8ed13ae3
Author: Göran Uddeborg <goeran(a)uddeborg.se>
Date: Sat Jan 26 20:41:02 2019 +0100
Update to 1.0.0
.gitignore | 3 +--
mythtv-status-update-motd.patch | 50 -----------------------------------------
mythtv-status.spec | 20 +++++++++++------
sources | 2 +-
sysconfig | 5 +++++
5 files changed, 20 insertions(+), 60 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 3493bd3..9f62031 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1 @@
-mythtv-status-0.10.4.tar.gz
-/mythtv-status-0.10.8.tar.gz
+/mythtv-status-1.0.0.tar.gz
diff --git a/mythtv-status.spec b/mythtv-status.spec
index a5e6128..39f5238 100644
--- a/mythtv-status.spec
+++ b/mythtv-status.spec
@@ -1,14 +1,17 @@
Name: mythtv-status
-Version: 0.10.8
+Version: 1.0.0
Release: 1%{?dist}
Summary: Get the current status of your MythTV system at the command line
Summary(sv): Hämta ett MythTV-systems status på kommandoraden
License: GPLv3
URL: http://www.etc.gen.nz/projects/mythtv/mythtv-status.html
Source0: http://www.etc.gen.nz/projects/mythtv/tarballs/mythtv-status-%{version}.t...
+Source1: sysconfig
# Patch for Fedora specifics
Patch0: mythtv-status-fedora.patch
-Patch1: mythtv-status-update-motd.patch
+# Perl warns about uninitialized value in list assignment.
+# Reported upstreams via e-mail.
+Patch2: mythtv-status-undefined.patch
BuildArch: noarch
# For perl dependency auto-detection
BuildRequires: perl-generators
@@ -28,7 +31,7 @@ command line. It can optionally append it to the system message of the day
(MOTD) on a regular basis.
If you want to enable motd update, edit /etc/sysconfig/mythtv-status and change
-UPDATEMOTD=no to UPDATEMOTD=yes. The update is run hourly. The resulting motd
+UPDATE_MOTD=no to UPDATE_MOTD=yes. The update is run hourly. The resulting motd
is based on /etc/motd.stub, added with the output of mythtv-status.
%description -l sv
@@ -37,14 +40,14 @@ kommandoraden. Möjligheten finns även att lägga till statusen till dagens
systemmeddelande (MOTD) med regelbundna intervaller.
För att aktivera motd-uppdateringar redigerar man
-/etc/sysconfig/mythtv-status och ändrar UPDATEMOTD=no till UPDATEMOTD=yes.
+/etc/sysconfig/mythtv-status och ändrar UPDATE_MOTD=no till UPDATE_MOTD=yes.
Uppdateringen körs en gång i timmen. Den resulterande motd:n baseras på
/etc/motd.stub med utskriften från mythtv-status tillagd.
%prep
%setup -q
%patch0 -p1 -b .orig
-%patch1 -p1 -b .fedora
+%patch2 -p1 -b .undefined
%build
pod2man bin/mythtv-status man/mythtv-status.1
@@ -61,7 +64,7 @@ install -p -m 644 man/* %{buildroot}%{_mandir}/man1
# Sysconfig file
mkdir -p %{buildroot}%{_sysconfdir}/sysconfig
-echo -e "HOST=127.0.0.1\nUPDATEMOTD=no" > %{buildroot}%{_sysconfdir}/sysconfig/%{name}
+install -p -m 644 %SOURCE1 %{buildroot}%{_sysconfdir}/sysconfig/%{name}
# Cron file to update motd, doesn't do anything if not enabled in sysconfig
mkdir -p %{buildroot}%{_sysconfdir}/cron.hourly
@@ -75,9 +78,12 @@ chmod 755 %{buildroot}%{_sysconfdir}/cron.hourly/mythtv-update-motd.cron
%{_sbindir}/mythtv*
%{_mandir}/man1/mythtv*.1.gz
%{_sysconfdir}/cron.hourly/mythtv-update-motd.cron
-%config(noreplace) %{_sysconfdir}/sysconfig/%{name}
+%config %{_sysconfdir}/sysconfig/%{name}
%changelog
+* Sat Jan 26 2019 Göran Uddeborg <goeran(a)Uddeborg.se> - 1.0.0-1
+- Update to 1.0.0
+
* Sun Dec 23 2018 Sérgio Basto <sergio(a)serjux.com> - 0.10.8-1
- Update to 0.10.8
diff --git a/sources b/sources
index 0fc438e..70f5e16 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-3ae4b0c58f041e55a3155a28773214ae mythtv-status-0.10.8.tar.gz
+137ae016100b476464370ffe99e78a48 mythtv-status-1.0.0.tar.gz
diff --git a/sysconfig b/sysconfig
new file mode 100644
index 0000000..ece30ae
--- /dev/null
+++ b/sysconfig
@@ -0,0 +1,5 @@
+# Configurations for the update of /etc/motd
+# Set UPDATE_MOTD to "yes" to enable updates.
+UPDATE_MOTD=no
+# Talk the MythTV server on this host.
+HOST=127.0.0.1
5 years, 10 months