[lpf-spotify-client] Fix bug on 32 bits
by Sérgio M. Basto
commit ee5c8c6245d1ce5e30b559c04e449a9cad595857
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Fri Aug 31 01:13:34 2018 +0100
Fix bug on 32 bits
check_new_version.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/check_new_version.py b/check_new_version.py
index 523b975..d702332 100755
--- a/check_new_version.py
+++ b/check_new_version.py
@@ -44,8 +44,8 @@ spec = open('spotify-client.spec.in').read()
#spec2 = re.sub(str_mx3, r'\1 %s' % version64, spec)
str_mx4 = re.compile('(Source1:.*?)[.].*')
spec3 = re.sub(str_mx4, r'\1%s' % minor64, spec)
-str_mx5 = re.compile('(Source2:.*?)[.].*')
-spec4 = re.sub(str_mx5, r'\1%s' % minor32, spec3)
+str_mx5 = re.compile('(Source2:.*?/).*')
+spec4 = re.sub(str_mx5, r'\1%s' % deb32, spec3)
if spec != spec3:
open('spotify-client.spec.in', 'w').write(spec4)
6 years, 2 months
[lpf-spotify-client] Update check_new_version.py script
by Sérgio M. Basto
commit 98d5a070c6c303f650bd963e3763d01e299a7c26
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Fri Aug 31 00:54:58 2018 +0100
Update check_new_version.py script
check_new_version.py | 46 +++++++++++++++++++++++++---------------------
1 file changed, 25 insertions(+), 21 deletions(-)
---
diff --git a/check_new_version.py b/check_new_version.py
index 307097d..523b975 100755
--- a/check_new_version.py
+++ b/check_new_version.py
@@ -7,6 +7,19 @@ import re
import os
import subprocess
+def runme(cmd, env, cwd='.'):
+ """Simple function to run a command and return 0 for success, 1 for
+ failure. cmd is a list of the command and arguments, action is a
+ name for the action (for logging), pkg is the name of the package
+ being operated on, env is the environment dict, and cwd is where
+ the script should be executed from."""
+ try:
+ subprocess.check_call(cmd, env=env, cwd=cwd) #, stderr=None
+ except subprocess.CalledProcessError as e:
+ sys.stderr.write('%s failed: %s\n' % (cmd, e))
+ return 1
+ return 0
+
html = requests.get('http://repository.spotify.com/pool/non-free/s/spotify-client/')
#print (html.text)
@@ -23,7 +36,7 @@ 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 (version32, minor32, version64, minor64)
+print ("versions:", version32, minor32, version64, minor64)
spec = open('spotify-client.spec.in').read()
#print (spec)
@@ -34,35 +47,26 @@ spec3 = re.sub(str_mx4, r'\1%s' % minor64, spec)
str_mx5 = re.compile('(Source2:.*?)[.].*')
spec4 = re.sub(str_mx5, r'\1%s' % minor32, spec3)
-def runme(cmd, env, cwd='.'):
- """Simple function to run a command and return 0 for success, 1 for
- failure. cmd is a list of the command and arguments, action is a
- name for the action (for logging), pkg is the name of the package
- being operated on, env is the environment dict, and cwd is where
- the script should be executed from."""
- try:
- subprocess.check_call(cmd, env=env, cwd=cwd) #, stderr=None
- except subprocess.CalledProcessError as e:
- sys.stderr.write('%s failed: %s\n' % (cmd, e))
- return 1
- return 0
-
if spec != spec3:
open('spotify-client.spec.in', 'w').write(spec4)
enviro = os.environ
- pkgcmd = ['rpmdev-bumpspec', '-n', version64, '-c', 'Update to %s%s' % (version64, minor64[:10]), 'spotify-client.spec.in']
+ pkgcmd = ['rpmdev-bumpspec', '-n', version64, '-c', 'Update to %s%s' % (version64, minor64[:10]),
+ 'spotify-client.spec.in']
#pkgcmd = ['rpmdev-bumpspec -n %s -c "Update to %s%s" spotify-client.spec.in' % (version64, version64, minor64[:4])]
if runme(pkgcmd, enviro):
print('error running runme')
- pkgcmd = ['rpmdev-bumpspec', '-n', version64, '-c', 'Update to %s%s' % (version64, minor64[:10]), 'lpf-spotify-client.spec'] # 2>/dev/null
+ pkgcmd = ['rpmdev-bumpspec', '-n', version64, '-c', 'Update to %s%s' % (version64, minor64[:10]),
+ 'lpf-spotify-client.spec'] # 2>/dev/null
if runme(pkgcmd, enviro):
print('error running runme')
print('rfpkg ci -c && git show')
- print('rfpkg push && rfpkg build --nowait')
- 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 f26 && git merge master && git push && rfpkg build --nowait; git checkout master')
-
+ print('rfpkg srpm && mock -r fedora-27-x86_64-rpmfusion_nonfree --no-clean --rebuild lpf-spotify-client-%s-1.fc30.src.rpm'
+ % version64)
else:
print("Already updated !")
+
+print('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')
6 years, 2 months
[kodi] Update Requires for new split packages
by Michael Cronenworth
commit db86c8efd7e6c2c0b3a98da3d4715ae43b96727d
Author: Michael Cronenworth <mike(a)cchtml.com>
Date: Thu Aug 30 17:21:13 2018 -0500
Update Requires for new split packages
kodi.spec | 17 +++++++++++------
1 file changed, 11 insertions(+), 6 deletions(-)
---
diff --git a/kodi.spec b/kodi.spec
index 9d55248..49834c7 100644
--- a/kodi.spec
+++ b/kodi.spec
@@ -30,7 +30,7 @@
Name: kodi
Version: 18.0
-Release: 0.6.b1%{?dist}
+Release: 0.7.b1%{?dist}
Summary: Media center
License: GPLv2+ and GPLv3+ and LGPLv2+ and BSD and MIT
@@ -210,11 +210,10 @@ BuildRequires: waylandpp-devel
BuildRequires: yajl-devel
BuildRequires: zlib-devel
-# Install all backends, users can remove them individually
+# Install major backends, users can remove them individually
Requires: %{name}-common = %{version}
-Requires: %{name}-gbm = %{version}
-Requires: %{name}-wayland = %{version}
-Requires: %{name}-x11 = %{version}
+Requires: %{name}-wayland = %{version} if libwayland-server
+Requires: %{name}-x11 = %{version} if xorg-x11-server-Xorg
%description
@@ -306,6 +305,7 @@ This package contains FirewallD files for Kodi.
%package gbm
Summary: Kodi binary for Generic Buffer Management
+Requires: %{name}-common = %{version}
%description gbm
@@ -314,6 +314,7 @@ This package contains the Kodi binary for Generic Buffer Management.
%package wayland
Summary: Kodi binary for Wayland compositors
+Requires: %{name}-common = %{version}
%description wayland
@@ -322,6 +323,7 @@ This package contains the Kodi binary for Wayland compositors.
%package x11
Summary: Kodi binary for X11 servers
+Requires: %{name}-common = %{version}
%description x11
@@ -373,7 +375,7 @@ done
for BACKEND in %{kodi_backends}
do
pushd fedora-$BACKEND
- make DESTDIR=$RPM_BUILD_ROOT install
+ make DESTDIR=$RPM_BUILD_ROOT %{?_smp_mflags} install
popd
done
@@ -469,6 +471,9 @@ mv docs/manpages ${RPM_BUILD_ROOT}%{_mandir}/man1/
%changelog
+* Thu Aug 30 2018 Michael Cronenworth <mike(a)cchtml.com> - 18.0-0.7.b1
+- Update Requires for new split packages
+
* Tue Aug 28 2018 Michael Cronenworth <mike(a)cchtml.com> - 18.0-0.6.b1
- Build wayland and GBM binaries
6 years, 2 months
[kodi-pvr-demo/f29] - Update to 3.6.1 - Enable aarch64 build
by Mohamed ElMorabity
commit f6956c11f348ccbfffe10fbbbde564427197eb25
Author: Mohamed El Morabity <melmorabity(a)fedoraproject.org>
Date: Thu Aug 30 22:49:01 2018 +0200
- Update to 3.6.1
- Enable aarch64 build
.gitignore | 1 +
kodi-pvr-demo.spec | 14 +++++++++-----
sources | 2 +-
3 files changed, 11 insertions(+), 6 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 0d0f0bc..70a4457 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
/kodi-pvr-demo-57a1c56.tar.gz
/kodi-pvr-demo-07cb805.tar.gz
/pvr.demo-8f62053.tar.gz
+/pvr.demo-cc1dc5d.tar.gz
diff --git a/kodi-pvr-demo.spec b/kodi-pvr-demo.spec
index 1295109..1e806e7 100644
--- a/kodi-pvr-demo.spec
+++ b/kodi-pvr-demo.spec
@@ -1,6 +1,6 @@
-%global commit 8f620539bfa4a52f7799d9496ad200a23f0a31fc
+%global commit cc1dc5db3080bdc23052ad72519153e4fd758261
%global shortcommit %(c=%{commit}; echo ${c:0:7})
-%global commitdate 20180205
+%global commitdate 20180620
%global kodi_addon pvr.demo
%global kodi_version 18.0
@@ -9,8 +9,8 @@ Name: kodi-%(tr "." "-" <<<%{kodi_addon})
# Use Epoch to manage upgrades from older upstream
# (https://github.com/opdenkamp/xbmc-pvr-addons/)
Epoch: 1
-Version: 3.5.2
-Release: 2%{?dist}
+Version: 3.6.1
+Release: 1%{?dist}
Summary: Demo PVR for Kodi
License: GPLv2+
@@ -23,7 +23,7 @@ BuildRequires: kodi-devel >= %{kodi_version}
BuildRequires: kodi-platform-devel >= %{kodi_version}
BuildRequires: platform-devel
Requires: kodi >= %{kodi_version}
-ExclusiveArch: i686 x86_64
+ExclusiveArch: i686 x86_64 aarch64
%description
%{summary}.
@@ -49,6 +49,10 @@ ExclusiveArch: i686 x86_64
%changelog
+* Thu Aug 30 2018 Mohamed El Morabity <melmorabity(a)fedoraproject.org> - 1:3.6.1-1
+- Update to 3.6.1
+- Enable aarch64 build
+
* Thu Jul 26 2018 RPM Fusion Release Engineering <leigh123linux(a)gmail.com> - 1:3.5.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
diff --git a/sources b/sources
index 8679107..f95749f 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-bc286b5e5d7bb6ba1167c3e7fda5181b pvr.demo-8f62053.tar.gz
+822a449ef5966b6f9108d8a941160c1b pvr.demo-cc1dc5d.tar.gz
6 years, 2 months
[kodi-pvr-demo] - Update to 3.6.1 - Enable aarch64 build
by Mohamed ElMorabity
commit ecc4826fe49c83ca119e6206cc02063b6073f483
Author: Mohamed El Morabity <melmorabity(a)fedoraproject.org>
Date: Thu Aug 30 22:49:01 2018 +0200
- Update to 3.6.1
- Enable aarch64 build
.gitignore | 1 +
kodi-pvr-demo.spec | 14 +++++++++-----
sources | 2 +-
3 files changed, 11 insertions(+), 6 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 0d0f0bc..70a4457 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
/kodi-pvr-demo-57a1c56.tar.gz
/kodi-pvr-demo-07cb805.tar.gz
/pvr.demo-8f62053.tar.gz
+/pvr.demo-cc1dc5d.tar.gz
diff --git a/kodi-pvr-demo.spec b/kodi-pvr-demo.spec
index 1295109..1e806e7 100644
--- a/kodi-pvr-demo.spec
+++ b/kodi-pvr-demo.spec
@@ -1,6 +1,6 @@
-%global commit 8f620539bfa4a52f7799d9496ad200a23f0a31fc
+%global commit cc1dc5db3080bdc23052ad72519153e4fd758261
%global shortcommit %(c=%{commit}; echo ${c:0:7})
-%global commitdate 20180205
+%global commitdate 20180620
%global kodi_addon pvr.demo
%global kodi_version 18.0
@@ -9,8 +9,8 @@ Name: kodi-%(tr "." "-" <<<%{kodi_addon})
# Use Epoch to manage upgrades from older upstream
# (https://github.com/opdenkamp/xbmc-pvr-addons/)
Epoch: 1
-Version: 3.5.2
-Release: 2%{?dist}
+Version: 3.6.1
+Release: 1%{?dist}
Summary: Demo PVR for Kodi
License: GPLv2+
@@ -23,7 +23,7 @@ BuildRequires: kodi-devel >= %{kodi_version}
BuildRequires: kodi-platform-devel >= %{kodi_version}
BuildRequires: platform-devel
Requires: kodi >= %{kodi_version}
-ExclusiveArch: i686 x86_64
+ExclusiveArch: i686 x86_64 aarch64
%description
%{summary}.
@@ -49,6 +49,10 @@ ExclusiveArch: i686 x86_64
%changelog
+* Thu Aug 30 2018 Mohamed El Morabity <melmorabity(a)fedoraproject.org> - 1:3.6.1-1
+- Update to 3.6.1
+- Enable aarch64 build
+
* Thu Jul 26 2018 RPM Fusion Release Engineering <leigh123linux(a)gmail.com> - 1:3.5.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
diff --git a/sources b/sources
index 8679107..f95749f 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-bc286b5e5d7bb6ba1167c3e7fda5181b pvr.demo-8f62053.tar.gz
+822a449ef5966b6f9108d8a941160c1b pvr.demo-cc1dc5d.tar.gz
6 years, 2 months
[kodi-pvr-argustv/f29] - Update to 3.5.2 - Enable aarch64 build
by Mohamed ElMorabity
commit 92c9674906bc3febeabd84224f27925fa9450ff9
Author: Mohamed El Morabity <melmorabity(a)fedoraproject.org>
Date: Thu Aug 30 22:38:51 2018 +0200
- Update to 3.5.2
- Enable aarch64 build
.gitignore | 1 +
kodi-pvr-argustv.spec | 14 +++++++++-----
sources | 2 +-
3 files changed, 11 insertions(+), 6 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 3b811ec..eeb42dd 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
/kodi-pvr-argustv-9040b14.tar.gz
/kodi-pvr-argustv-ac9cc55.tar.gz
/pvr.argustv-3556049.tar.gz
+/pvr.argustv-c57a5c4.tar.gz
diff --git a/kodi-pvr-argustv.spec b/kodi-pvr-argustv.spec
index 6760ee4..67ca661 100644
--- a/kodi-pvr-argustv.spec
+++ b/kodi-pvr-argustv.spec
@@ -1,6 +1,6 @@
-%global commit 3556049fbcfe051569402cb3b420a18680cb9ed2
+%global commit c57a5c4e7dae8c2a7035c17dbc5d36eebcbcf130
%global shortcommit %(c=%{commit}; echo ${c:0:7})
-%global commitdate 20180312
+%global commitdate 20180825
%global kodi_addon pvr.argustv
%global kodi_version 18.0
@@ -9,8 +9,8 @@ Name: kodi-%(tr "." "-" <<<%{kodi_addon})
# Use Epoch to manage upgrades from older upstream
# (https://github.com/opdenkamp/xbmc-pvr-addons/)
Epoch: 1
-Version: 3.4.1
-Release: 2%{?dist}
+Version: 3.5.2
+Release: 1%{?dist}
Summary: ArgusTV PVR for Kodi
License: GPLv2+
@@ -24,7 +24,7 @@ BuildRequires: kodi-platform-devel >= %{kodi_version}
BuildRequires: pkgconfig(jsoncpp)
BuildRequires: platform-devel
Requires: kodi >= %{kodi_version}
-ExclusiveArch: i686 x86_64
+ExclusiveArch: i686 x86_64 aarch64
%description
%{summary}.
@@ -53,6 +53,10 @@ export PKG_CONFIG_ALLOW_SYSTEM_CFLAGS=1
%changelog
+* Thu Aug 30 2018 Mohamed El Morabity <melmorabity(a)fedoraproject.org> - 1:3.5.2-1
+- Update to 3.5.2
+- Enable aarch64 build
+
* Thu Jul 26 2018 RPM Fusion Release Engineering <leigh123linux(a)gmail.com> - 1:3.4.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
diff --git a/sources b/sources
index d500ae5..5535810 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-6abb9586dadb711df1bffde116b1308b pvr.argustv-3556049.tar.gz
+dd68eaea22a08eded2112fef9a0fb2cc pvr.argustv-c57a5c4.tar.gz
6 years, 2 months
[kodi-pvr-argustv] - Update to 3.5.2 - Enable aarch64 build
by Mohamed ElMorabity
commit 5d191bf7b2be74019803fcf65e984a9b99eb954c
Author: Mohamed El Morabity <melmorabity(a)fedoraproject.org>
Date: Thu Aug 30 22:38:51 2018 +0200
- Update to 3.5.2
- Enable aarch64 build
.gitignore | 1 +
kodi-pvr-argustv.spec | 14 +++++++++-----
sources | 2 +-
3 files changed, 11 insertions(+), 6 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 3b811ec..eeb42dd 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
/kodi-pvr-argustv-9040b14.tar.gz
/kodi-pvr-argustv-ac9cc55.tar.gz
/pvr.argustv-3556049.tar.gz
+/pvr.argustv-c57a5c4.tar.gz
diff --git a/kodi-pvr-argustv.spec b/kodi-pvr-argustv.spec
index 6760ee4..67ca661 100644
--- a/kodi-pvr-argustv.spec
+++ b/kodi-pvr-argustv.spec
@@ -1,6 +1,6 @@
-%global commit 3556049fbcfe051569402cb3b420a18680cb9ed2
+%global commit c57a5c4e7dae8c2a7035c17dbc5d36eebcbcf130
%global shortcommit %(c=%{commit}; echo ${c:0:7})
-%global commitdate 20180312
+%global commitdate 20180825
%global kodi_addon pvr.argustv
%global kodi_version 18.0
@@ -9,8 +9,8 @@ Name: kodi-%(tr "." "-" <<<%{kodi_addon})
# Use Epoch to manage upgrades from older upstream
# (https://github.com/opdenkamp/xbmc-pvr-addons/)
Epoch: 1
-Version: 3.4.1
-Release: 2%{?dist}
+Version: 3.5.2
+Release: 1%{?dist}
Summary: ArgusTV PVR for Kodi
License: GPLv2+
@@ -24,7 +24,7 @@ BuildRequires: kodi-platform-devel >= %{kodi_version}
BuildRequires: pkgconfig(jsoncpp)
BuildRequires: platform-devel
Requires: kodi >= %{kodi_version}
-ExclusiveArch: i686 x86_64
+ExclusiveArch: i686 x86_64 aarch64
%description
%{summary}.
@@ -53,6 +53,10 @@ export PKG_CONFIG_ALLOW_SYSTEM_CFLAGS=1
%changelog
+* Thu Aug 30 2018 Mohamed El Morabity <melmorabity(a)fedoraproject.org> - 1:3.5.2-1
+- Update to 3.5.2
+- Enable aarch64 build
+
* Thu Jul 26 2018 RPM Fusion Release Engineering <leigh123linux(a)gmail.com> - 1:3.4.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
diff --git a/sources b/sources
index d500ae5..5535810 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-6abb9586dadb711df1bffde116b1308b pvr.argustv-3556049.tar.gz
+dd68eaea22a08eded2112fef9a0fb2cc pvr.argustv-c57a5c4.tar.gz
6 years, 2 months
[kodi-peripheral-joystick/f29] Update sources
by Mohamed ElMorabity
commit 463d8b948676484228592ac28aaf65a7da862a71
Author: Mohamed El Morabity <melmorabity(a)fedoraproject.org>
Date: Thu Aug 30 22:31:21 2018 +0200
Update sources
.gitignore | 1 +
sources | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
---
diff --git a/.gitignore b/.gitignore
index 2283809..ef1abcc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
/peripheral.joystick-1.3.2.tar.gz
+/peripheral.joystick-1.4.6.tar.gz
diff --git a/sources b/sources
index 13455e8..1bf2344 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-f3c14ccd6fb4204ae701459869e514a2 peripheral.joystick-1.3.2.tar.gz
+9f5bf70165e2e28b6cbc133fe79aa58e peripheral.joystick-1.4.6.tar.gz
6 years, 2 months
[kodi-peripheral-joystick/f29] - Update to 1.4.6 - Enable aarch64 build
by Mohamed ElMorabity
commit d0251c9384144ff23dfb9625ff83f9d867dcd828
Author: Mohamed El Morabity <melmorabity(a)fedoraproject.org>
Date: Thu Aug 30 22:13:39 2018 +0200
- Update to 1.4.6
- Enable aarch64 build
kodi-peripheral-joystick.spec | 26 ++++++++++++++++----------
1 file changed, 16 insertions(+), 10 deletions(-)
---
diff --git a/kodi-peripheral-joystick.spec b/kodi-peripheral-joystick.spec
index 6ab969a..158acac 100644
--- a/kodi-peripheral-joystick.spec
+++ b/kodi-peripheral-joystick.spec
@@ -1,37 +1,38 @@
%global kodi_addon peripheral.joystick
-%global kodi_version 17.4
-%global kodi_platform_version 17.0
+%global kodi_version 18.0
+%global kodi_platform_version 18.0
Name: kodi-peripheral-joystick
-Version: 1.3.2
-Release: 5%{?dist}
+Version: 1.4.6
+Release: 1%{?dist}
Summary: Joystick Peripheral addon for Kodi
Group: Applications/Multimedia
License: GPLv2+
URL: https://github.com/xbmc/%{kodi_addon}/
-Source0: %{url}/archive/%{kodi_addon}-%{version}.tar.gz
+Source0: %{url}/archive/v%{version}/%{kodi_addon}-%{version}.tar.gz
BuildRequires: cmake
BuildRequires: gcc-c++
BuildRequires: kodi-devel >= %{kodi_version}
BuildRequires: kodi-platform-devel >= %{kodi_platform_version}
+BuildRequires: pkgconfig(libpcrecpp)
+BuildRequires: pkgconfig(libudev)
+BuildRequires: pkgconfig(sdl2)
BuildRequires: platform-devel
-BuildRequires: pcre-devel
-BuildRequires: systemd-devel
Requires: kodi >= %{kodi_version}
-ExclusiveArch: i686 x86_64
+ExclusiveArch: i686 x86_64 aarch64
%description
Joystick Peripheral Addon for Kodi
%prep
-%autosetup -n %{kodi_addon}-%{version} -p0
+%autosetup -n %{kodi_addon}-%{version}
%build
-%cmake -DCMAKE_INSTALL_LIBDIR=%{_libdir}/kodi/ .
+%cmake -DSTEAMLINK=1
%make_build
@@ -40,11 +41,16 @@ Joystick Peripheral Addon for Kodi
%files
+%doc Readme.md
%{_libdir}/kodi/addons/%{kodi_addon}/
%{_datadir}/kodi/addons/%{kodi_addon}/
%changelog
+* Thu Aug 30 2018 Mohamed El Morabity <melmorabity(a)fedoraproject.org> - 1.4.6-1
+- Update to 1.4.6
+- Enable aarch64 build
+
* Thu Jul 26 2018 RPM Fusion Release Engineering <leigh123linux(a)gmail.com> - 1.3.2-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
6 years, 2 months
[kodi-peripheral-joystick] Update sources
by Mohamed ElMorabity
commit 2c8b8fa218878d017b04e818819a51dffeeaa0de
Author: Mohamed El Morabity <melmorabity(a)fedoraproject.org>
Date: Thu Aug 30 22:30:55 2018 +0200
Update sources
.gitignore | 1 +
sources | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
---
diff --git a/.gitignore b/.gitignore
index 2283809..ef1abcc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
/peripheral.joystick-1.3.2.tar.gz
+/peripheral.joystick-1.4.6.tar.gz
diff --git a/sources b/sources
index 13455e8..1bf2344 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-f3c14ccd6fb4204ae701459869e514a2 peripheral.joystick-1.3.2.tar.gz
+9f5bf70165e2e28b6cbc133fe79aa58e peripheral.joystick-1.4.6.tar.gz
6 years, 2 months