[ffmpeg/f29] Add support for rpi
by Nicolas Chauvet
commit 9f938879c0d8bbe75a4a16c2a87a2385481554d9
Author: Nicolas Chauvet <kwizart(a)gmail.com>
Date: Thu Nov 8 10:34:53 2018 +0100
Add support for rpi
ffmpeg.spec | 6 ++++++
1 file changed, 6 insertions(+)
---
diff --git a/ffmpeg.spec b/ffmpeg.spec
index 31fadb3..96e4e68 100644
--- a/ffmpeg.spec
+++ b/ffmpeg.spec
@@ -61,6 +61,10 @@
%global libnpp_ldlags $(pkg-config --libs-only-L nppi-%{_cuda_version} nppc-%{_cuda_version})
%endif
+%if 0%{?_with_rpi:1}
+%global _with_mmal 1
+%endif
+
%if 0%{?_without_gpl}
%global lesser L
%endif
@@ -137,6 +141,7 @@ BuildRequires: nasm
%endif
%{?_with_webp:BuildRequires: libwebp-devel}
%{?_with_netcdf:BuildRequires: netcdf-devel}
+%{?_with_rpi:BuildRequires: raspberrypi-vc-libs-devel}
%{!?_without_nvenc:BuildRequires: nv-codec-headers}
%{!?_without_amr:BuildRequires: opencore-amr-devel vo-amrwbenc-devel}
%{!?_without_openal:BuildRequires: openal-soft-devel}
@@ -255,6 +260,7 @@ This package contains development files for %{name}
%{?_with_libnpp:--enable-libnpp --enable-nonfree} \\\
--enable-libmp3lame \\\
%{?_with_netcdf:--enable-netcdf} \\\
+ %{?_with_mmal:--enable-mmal} \\\
%{!?_without_nvenc:--enable-nvenc} \\\
%{!?_without_openal:--enable-openal} \\\
%{!?_without_opencl:--enable-opencl} \\\
5 years, 10 months
[mpd/f29] Update to 0.21.4
by Leigh Scott
Summary of changes:
a56b1e5... Update to 0.21.4 (*)
(*) This commit already existed in another branch; no separate mail sent
5 years, 10 months
[mpd] Update to 0.21.4
by Leigh Scott
commit a56b1e56e5bcb07d0405ca0da0a8277c6b1a0a01
Author: Leigh Scott <leigh123linux(a)googlemail.com>
Date: Tue Jan 15 07:48:10 2019 +0000
Update to 0.21.4
mpd.spec | 48 +++++++++++++++++++++++++-----------------------
sources | 4 ++--
2 files changed, 27 insertions(+), 25 deletions(-)
---
diff --git a/mpd.spec b/mpd.spec
index 979a27a..cb11ccb 100644
--- a/mpd.spec
+++ b/mpd.spec
@@ -16,14 +16,14 @@
Name: mpd
Epoch: 1
-Version: 0.20.22
+Version: 0.21.4
Release: 1%{?dist}
Summary: The Music Player Daemon
License: GPLv2+
URL: https://www.musicpd.org
-Source0: %{url}/download/mpd/0.20/mpd-%{version}.tar.xz
-Source1: %{url}/download/mpd/0.20/mpd-%{version}.tar.xz.sig
+Source0: %{url}/download/mpd/0.21/mpd-%{version}.tar.xz
+Source1: %{url}/download/mpd/0.21/mpd-%{version}.tar.xz.sig
# Note that the 0.18.x branch doesn't yet work with Fedora's version of
# libmpcdec which needs updating.
# https://bugzilla.redhat.com/show_bug.cgi?id=1014468
@@ -35,7 +35,7 @@ Patch1: mpd-0.20-remove_NoNewPrivileges.patch
BuildRequires: alsa-lib-devel
BuildRequires: audiofile-devel
-BuildRequires: autoconf
+BuildRequires: meson
BuildRequires: boost-devel
BuildRequires: bzip2-devel
BuildRequires: faad2-devel
@@ -47,6 +47,7 @@ BuildRequires: lame-devel
BuildRequires: libao-devel
BuildRequires: libcdio-paranoia-devel
BuildRequires: libcurl-devel
+BuildRequires: libgcrypt-devel
BuildRequires: libid3tag-devel
BuildRequires: libmad-devel
BuildRequires: libmms-devel
@@ -65,6 +66,7 @@ BuildRequires: libsndfile-devel
BuildRequires: libupnp-devel
BuildRequires: mpg123-devel
BuildRequires: openal-soft-devel
+BuildRequires: python2-sphinx
BuildRequires: twolame-devel
BuildRequires: wildmidi-devel
# Need new version with SV8
@@ -105,29 +107,25 @@ browsing and playing your MPD music collection.
%setup -q -n %{name}-%{version}
%patch0 -p0
%patch1 -p1
-# There is no libsystemd-daemon in F25
-sed -i -e 's@libsystemd-daemon@libsystemd@g' configure.ac
-sed -i -e 's@ -lresid-builder@@g' configure.ac
-NOCONFIGURE=1 ./autogen.sh
%build
-%{configure} \
- --with-systemdsystemunitdir=%{_unitdir} \
- --with-systemduserunitdir=%{_userunitdir} \
- --enable-bzip2 \
- --enable-soundcloud \
- --enable-mikmod \
- --enable-pipe-output \
- --disable-mpc \
- --enable-systemd-daemon \
- --enable-zzip \
- --enable-soxr \
- --enable-sidplay
-
-%{make_build}
+%{meson} \
+ -Dsystemd_system_unit_dir=%{_unitdir} \
+ -Dsystemd_user_unit_dir=%{_userunitdir} \
+ -Dipv6=enabled \
+ -Dpipe=true \
+ -Ddocumentation=true \
+ -Dsolaris_output=disabled \
+ -Dsndio=disabled \
+ -Dchromaprint=disabled \
+ -Dgme=disabled \
+ -Dmpcdec=disabled \
+ -Dshine=disabled
+
+%{meson_build}
%install
-%{make_install}
+%{meson_install}
install -p -D -m 0644 %{SOURCE2} \
%buildroot%{_sysconfdir}/logrotate.d/mpd
@@ -203,6 +201,10 @@ fi
%changelog
+* Mon Jan 14 2019 Leigh Scott <leigh123linux(a)googlemail.com> - 1:0.21.4-1
+- Update to 0.21.4
+- Add changes for meson build
+
* Thu Oct 25 2018 Leigh Scott <leigh123linux(a)googlemail.com> - 1:0.20.22-1
- Update to 0.20.22
- Switch buildroot macro
diff --git a/sources b/sources
index b821053..ae3576e 100644
--- a/sources
+++ b/sources
@@ -1,2 +1,2 @@
-6acee2bc5b30f6c97fdaf46682b0116c mpd-0.20.22.tar.xz
-d75702884c18993fde3d134b930f0d47 mpd-0.20.22.tar.xz.sig
+ce0c5aa42c9e8b5e712689d5ea95f67d mpd-0.21.4.tar.xz
+f1a0923a0fac04f40491ab07d2e26c14 mpd-0.21.4.tar.xz.sig
5 years, 10 months
[lpf-spotify-client] Update to 1.0.96.181.gf6bc1b6b
by Sérgio M. Basto
commit eda44ae393488d8e3dfcc678b477d402b21f03f5
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Sat Jan 12 15:33:58 2019 +0000
Update to 1.0.96.181.gf6bc1b6b
check_new_version.py | 11 ++++-------
lpf-spotify-client.spec | 5 ++++-
spotify-client.spec.in | 7 +++++--
3 files changed, 13 insertions(+), 10 deletions(-)
---
diff --git a/check_new_version.py b/check_new_version.py
index 7e491ae..46a4e8e 100755
--- a/check_new_version.py
+++ b/check_new_version.py
@@ -29,14 +29,11 @@ res = str_mx.findall(html.text)
res2 = str_mx2.findall(html.text)
deb32 = res[-1]
deb64 = res2[-1]
-print ("deb32 = %s" % deb32)
-print ("deb64 = %s" % deb64)
-res2 = str_mx.findall(html.text)
-
regexp = re.compile('spotify-client_(\d{1,2}[.]\d{1,2}[.]\d{1,3}[.]\d{1,3})([.].*)')
(version32, minor32) = regexp.findall(deb32)[0]
(version64, minor64) = regexp.findall(deb64)[0]
-print ("versions:", version32, minor32, version64, minor64)
+print ("deb64 = %s\nVersions: %s %s" % (deb64, version64, minor64))
+print ("deb32 = %s\nVersions: %s %s" % (deb32, version32, minor32))
spec = open('spotify-client.spec.in').read()
#print (spec)
@@ -61,7 +58,7 @@ if spec != spec3:
print('error running runme')
print('rfpkg ci -c && git show')
- print('rfpkg srpm && mock -r fedora-27-x86_64-rpmfusion_nonfree --no-clean --rebuild lpf-spotify-client-%s-1.fc30.src.rpm'
+ print('rfpkg srpm && mock -r fedora-28-x86_64-rpmfusion_nonfree --no-clean --rebuild lpf-spotify-client-%s-1.fc30.src.rpm'
% version64)
else:
print("Already updated !")
@@ -69,4 +66,4 @@ else:
print('git show && echo Press enter to push and build; read dummy; rfpkg push && rfpkg build --nowait')
print('git checkout f29 && git merge master && git push && rfpkg build --nowait; git checkout master')
print('git checkout f28 && git merge master && git push && rfpkg build --nowait; git checkout master')
-print('git checkout f27 && git merge master && git push && rfpkg build --nowait; git checkout master')
+#print('git checkout f27 && git merge master && git push && rfpkg build --nowait; git checkout master')
diff --git a/lpf-spotify-client.spec b/lpf-spotify-client.spec
index 0ad4333..47c39f8 100644
--- a/lpf-spotify-client.spec
+++ b/lpf-spotify-client.spec
@@ -11,7 +11,7 @@
Name: lpf-spotify-client
# Upstream spotify version, verbatim.
-Version: 1.0.94.262
+Version: 1.0.96.181
Release: 1%{?dist}
Summary: Spotify music player native client package bootstrap
@@ -79,6 +79,9 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop
%changelog
+* Sat Jan 12 2019 Sérgio Basto <sergio(a)serjux.com> - 1.0.96.181-1
+- Update to 1.0.96.181.gf6bc1b6b
+
* Tue Dec 11 2018 Sérgio Basto <sergio(a)serjux.com> - 1.0.94.262-1
- Update to 1.0.94.262.g3d5c231c
diff --git a/spotify-client.spec.in b/spotify-client.spec.in
index 1a22a50..a3f7c92 100644
--- a/spotify-client.spec.in
+++ b/spotify-client.spec.in
@@ -13,7 +13,7 @@
Name: spotify-client
-Version: 1.0.94.262
+Version: 1.0.96.181
Release: 1%{?dist}
Summary: Spotify music player native client
@@ -27,7 +27,7 @@ ExclusiveArch: %{ix86} x86_64
Source0: spotify-make-%{shortcommit}.tar.gz
%ifarch x86_64
-Source1: %{repo}/spotify-client_%{version}.g3d5c231c-9_amd64.deb
+Source1: %{repo}/spotify-client_%{version}.gf6bc1b6b-12_amd64.deb
%global spotify_pkg %{SOURCE1}
%global req_64 ()(64bit)
%else
@@ -122,6 +122,9 @@ fi
%changelog
+* Sat Jan 12 2019 Sérgio Basto <sergio(a)serjux.com> - 1.0.96.181-1
+- Update to 1.0.96.181.gf6bc1b6b
+
* Tue Dec 11 2018 Sérgio Basto <sergio(a)serjux.com> - 1.0.94.262-1
- Update to 1.0.94.262.g3d5c231c
5 years, 10 months
[lpf-flash-plugin] Update to 32.0.0.114
by Sérgio M. Basto
commit d76c0aaadfb7318645e9c74b299cb7f7f3bb5e8d
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Sat Jan 12 15:07:48 2019 +0000
Update to 32.0.0.114
check_new_version.py | 10 +++++-----
flash-plugin.spec.in | 5 ++++-
lpf-flash-plugin.spec | 5 ++++-
3 files changed, 13 insertions(+), 7 deletions(-)
---
diff --git a/check_new_version.py b/check_new_version.py
index 39890e5..c02999c 100755
--- a/check_new_version.py
+++ b/check_new_version.py
@@ -23,17 +23,17 @@ def runme(cmd, env, cwd='.'):
html = requests.get('http://get.adobe.com/flashplayer/about/')
#print (html.text)
-str_mx = re.compile('Linux.*?Firefox.*?NPAPI.*?<td>([\d.]+)<.td>', re.S)
-res = str_mx.findall(html.text)
-new_version = res[-1]
-print ("new_version = %s" % new_version)
-
spec = open('flash-plugin.spec.in').read()
str_mx3 = re.compile('Version:\s*([\d.]+)')
res2 = str_mx3.findall(spec)
old_version = res2[-1]
print ("old_version = %s" % old_version)
+str_mx = re.compile('Linux.*?Firefox.*?NPAPI.*?<td>([\d.]+)<.td>', re.S)
+res = str_mx.findall(html.text)
+new_version = res[-1]
+print ("new_version = %s" % new_version)
+
if new_version != old_version:
enviro = os.environ
pkgcmd = ['rpmdev-bumpspec', '-n', new_version, '-c', 'Update to %s' % (new_version), 'flash-plugin.spec.in']
diff --git a/flash-plugin.spec.in b/flash-plugin.spec.in
index a7a7e96..49dc8c5 100644
--- a/flash-plugin.spec.in
+++ b/flash-plugin.spec.in
@@ -2,7 +2,7 @@
%global __strip /bin/true
Name: flash-plugin
-Version: 32.0.0.101
+Version: 32.0.0.114
Release: 1%{?dist}
Epoch: 1
Summary: Adobe Flash Player
@@ -75,6 +75,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
%{_datadir}/icons/hicolor/*/apps/flash-player-properties.png
%changelog
+* Sat Jan 12 2019 Sérgio Basto <sergio(a)serjux.com> - 1:32.0.0.114-1
+- Update to 32.0.0.114
+
* Tue Dec 11 2018 Sérgio Basto <sergio(a)serjux.com> - 1:32.0.0.101-1
- Update to 32.0.0.101
diff --git a/lpf-flash-plugin.spec b/lpf-flash-plugin.spec
index 0b40024..9a17fc2 100644
--- a/lpf-flash-plugin.spec
+++ b/lpf-flash-plugin.spec
@@ -5,7 +5,7 @@
%define target_pkg %(t=%{name}; echo ${t#lpf-})
Name: lpf-flash-plugin
-Version: 32.0.0.101
+Version: 32.0.0.114
Release: 1%{?dist}
Epoch: 1
Summary: Adobe Flash Player package bootstrap
@@ -67,6 +67,9 @@ fi
%changelog
+* Sat Jan 12 2019 Sérgio Basto <sergio(a)serjux.com> - 1:32.0.0.114-1
+- Update to 32.0.0.114
+
* Tue Dec 11 2018 Sérgio Basto <sergio(a)serjux.com> - 1:32.0.0.101-1
- Update to 32.0.0.101
5 years, 10 months