Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package spotify-easyrpm for openSUSE:Factory
checked in at 2023-04-14 15:40:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/spotify-easyrpm (Old)
and /work/SRC/openSUSE:Factory/.spotify-easyrpm.new.19717 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "spotify-easyrpm"
Fri Apr 14 15:40:06 2023 rev:8 rq:1079435 version:3.0.4
Changes:
--------
--- /work/SRC/openSUSE:Factory/spotify-easyrpm/spotify-easyrpm.changes
2022-04-27 21:41:12.073004516 +0200
+++
/work/SRC/openSUSE:Factory/.spotify-easyrpm.new.19717/spotify-easyrpm.changes
2023-04-14 15:40:07.570838159 +0200
@@ -1,0 +2,5 @@
+Fri Apr 14 12:04:32 UTC 2023 - [email protected]
+
+- Snap package no longer includes share/doc directory. Thanks @LeoniePhiline
+
+-------------------------------------------------------------------
Old:
----
spotify-easyrpm-3.0.3.tar.gz
New:
----
spotify-easyrpm-3.0.4.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ spotify-easyrpm.spec ++++++
--- /var/tmp/diff_new_pack.65MvGw/_old 2023-04-14 15:40:08.006840673 +0200
+++ /var/tmp/diff_new_pack.65MvGw/_new 2023-04-14 15:40:08.010840696 +0200
@@ -1,7 +1,7 @@
#
# spec file for package spotify-easyrpm
#
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
Name: spotify-easyrpm
-Version: 3.0.3
+Version: 3.0.4
Release: 0
Summary: Tool to download, convert and install the Spotify for Linux
package
License: GPL-3.0-only
++++++ spotify-easyrpm-3.0.3.tar.gz -> spotify-easyrpm-3.0.4.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/spotify-easyrpm-3.0.3/README.md
new/spotify-easyrpm-3.0.4/README.md
--- old/spotify-easyrpm-3.0.3/README.md 2022-04-26 23:26:25.000000000 +0200
+++ new/spotify-easyrpm-3.0.4/README.md 2023-04-14 12:58:58.000000000 +0200
@@ -2,7 +2,7 @@

-Spotify-EasyRPM is a script which automates the installing and updating of
Spotify on RPM-based Linux systems
+Spotify-EasyRPM is a script which automates the installing and updating of
Spotify on openSUSE / SLE
## Features
@@ -55,7 +55,6 @@
## Requirements
* openSUSE Leap / SLE, or Tumbleweed
-* Support for other RPM-based systems is being considered
## Auto Updates
@@ -83,6 +82,4 @@
### How to install
-
* openSUSE : `zypper install spotify-easyrpm`
-* mageia : coming soon
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/spotify-easyrpm-3.0.3/spotify-easyrpm
new/spotify-easyrpm-3.0.4/spotify-easyrpm
--- old/spotify-easyrpm-3.0.3/spotify-easyrpm 2022-04-26 23:26:25.000000000
+0200
+++ new/spotify-easyrpm-3.0.4/spotify-easyrpm 2023-04-14 12:58:58.000000000
+0200
@@ -31,7 +31,7 @@
âââââââââââ¬ââ¬âââ⬠â¬
âââââââââ⬠â¬â¬âââââââ¬â
âââââââ â â ââ⤠ââ¬ââââââ¤
âââ¤âââââ¬âââ¬âââââââ
ââââ´ âââ â´ â´â â´ ââââ´ â´âââ â´
â´âââ´ â´ â´
-Version: 3.0.3
+Version: 3.0.4
EOF
sleep 2
cat <<EOF
@@ -178,7 +178,7 @@
f_download() {
echo "Downloading the latest Spotify snap"
-if ! wget -P "${V_SOURCES_DIR}"/ "${V_HTTP_REPO}"; then
+if ! wget -q -P "${V_SOURCES_DIR}"/ "${V_HTTP_REPO}"; then
f_error "Failed to download Spotify. Aborting"
fi
}
@@ -209,10 +209,9 @@
f_extract_snap() {
echo "Extracting snap and preparing"
unsquashfs -d "${V_SNAP_EXTRACT_DIR}" "${V_SOURCES_DIR}"/"${V_HTTP_SNAP}" ||
f_error "Failed to extract snap"
-mkdir -p
"${V_SOURCES_DIR}"/"${V_PKGNAME}"/usr/{share/applications,share/doc,bin}
+mkdir -p "${V_SOURCES_DIR}"/"${V_PKGNAME}"/usr/{share/applications,bin}
mv "${V_SNAP_EXTRACT_DIR}"/usr/share/spotify
"${V_SOURCES_DIR}"/"${V_PKGNAME}"/usr/share
mv "${V_SNAP_EXTRACT_DIR}"/usr/bin/spotify
"${V_SOURCES_DIR}"/"${V_PKGNAME}"/usr/bin
-mv "${V_SNAP_EXTRACT_DIR}"/usr/share/doc/"${V_PKGNAME}"
"${V_SOURCES_DIR}"/"${V_PKGNAME}"/usr/share/doc
}
@@ -467,7 +466,6 @@
%dir %{_datadir}/spotify
%{_datadir}/spotify/*
%{_datadir}/applications/spotify.desktop
-%{_datadir}/doc/${V_PKGNAME}/*
%{_bindir}/spotify
EOF
}