[lpf-spotify-client] Update to 1.1.72.439.gc253025e
by Sérgio M. Basto
commit b9ba88d3b0628a0f14a36331f0ef69e5558faa7a
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Wed Nov 24 14:48:04 2021 +0000
Update to 1.1.72.439.gc253025e
check_new_version.py | 4 ++--
lpf-spotify-client.spec | 5 ++++-
spotify-client.spec.in | 7 +++++--
3 files changed, 11 insertions(+), 5 deletions(-)
---
diff --git a/check_new_version.py b/check_new_version.py
index 7847f42..db16bac 100755
--- a/check_new_version.py
+++ b/check_new_version.py
@@ -71,7 +71,7 @@ if spec != spec3:
print('error running runme')
print("New version available!")
- print('rfpkg srpm && mock -r fedora-33-x86_64-rpmfusion_nonfree --no-clean --rebuild lpf-spotify-client-%s-1.fc36.src.rpm'
+ print('rfpkg srpm && mock -r fedora-34-x86_64-rpmfusion_nonfree --no-clean --rebuild lpf-spotify-client-%s-1.fc36.src.rpm'
% version64)
else:
print("Already updated !")
@@ -79,4 +79,4 @@ else:
print('rfpkg ci -c && git show && echo Press enter to push and build; read dummy; rfpkg push && rfpkg build --nowait')
print('git checkout f35 && git merge master && git push && rfpkg build --nowait; git checkout master')
print('git checkout f34 && git merge master && git push && rfpkg build --nowait; git checkout master')
-print('git checkout f33 && git merge master && git push && rfpkg build --nowait; git checkout master')
+print('git checkout epel8 && git merge master && git push && rfpkg build --nowait; git checkout master')
diff --git a/lpf-spotify-client.spec b/lpf-spotify-client.spec
index a05f8c7..03c0229 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.1.68.632
+Version: 1.1.72.439
Release: 1%{?dist}
Summary: Spotify music player native client package bootstrap
@@ -79,6 +79,9 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/%{name}.desktop
%changelog
+* Wed Nov 24 2021 Sérgio Basto <sergio(a)serjux.com> - 1.1.72.439-1
+- Update to 1.1.72.439.gc253025e
+
* Sun Sep 26 2021 Sérgio Basto <sergio(a)serjux.com> - 1.1.68.632-1
- Update to 1.1.68.632.g2b11de83
diff --git a/spotify-client.spec.in b/spotify-client.spec.in
index 5c59cfb..8ad7c0a 100644
--- a/spotify-client.spec.in
+++ b/spotify-client.spec.in
@@ -13,7 +13,7 @@
Name: spotify-client
-Version: 1.1.68.632
+Version: 1.1.72.439
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}.g2b11de83_amd64.deb
+Source1: %{repo}/spotify-client_%{version}.gc253025e_amd64.deb
%global spotify_pkg %{SOURCE1}
%global req_64 ()(64bit)
%else
@@ -110,6 +110,9 @@ ln -s ../libcurl.so.4 libcurl-gnutls.so.4
%changelog
+* Wed Nov 24 2021 Sérgio Basto <sergio(a)serjux.com> - 1.1.72.439-1
+- Update to 1.1.72.439.gc253025e
+
* Sun Sep 26 2021 Sérgio Basto <sergio(a)serjux.com> - 1.1.68.632-1
- Update to 1.1.68.632.g2b11de83
3 years
[VirtualBox-kmod] improve helper script
by Sérgio M. Basto
commit c99a27b6cd2f4976abb66bbd98de5a3e5d05610d
Author: Sérgio M. Basto <sergio(a)serjux.com>
Date: Tue Nov 23 14:20:32 2021 +0000
improve helper script
update_vbox.sh | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/update_vbox.sh b/update_vbox.sh
index dc12997..1524c71 100755
--- a/update_vbox.sh
+++ b/update_vbox.sh
@@ -1,7 +1,7 @@
VERSION=6.1.30
REL=1
RAWHIDE=36
-REPOS="f35 f34 f33 el8 el7"
+REPOS="f35 f34 el8 el7"
if [ -z "$1" ]
then
@@ -45,11 +45,13 @@ BRANCH2=$repo
if [[ $repo == f* ]]; then
BRANCH2=fc${repo:1}
fi
-echo Press enter tag-build $BRANCH1 to continue; read dummy;
+echo Press enter tag-build $BRANCH1 to continue or n to skip; read dummy;
+if [[ "$dummy" != "n" ]]; then
echo koji-rpmfusion tag-build $BRANCH1-free-override VirtualBox-$VERSION-$REL.$BRANCH2
git checkout $BRANCH1 && git merge master && git push && koji-rpmfusion tag-build $BRANCH1-free-override VirtualBox-$VERSION-$REL.$BRANCH2
(koji-rpmfusion wait-repo $BRANCH1-free-build --build=VirtualBox-$VERSION-$REL.$BRANCH2 && \
git checkout $BRANCH1 && rfpkg build --nowait; git checkout master) &
+fi
done
fi
3 years