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 2022-04-27 21:41:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/spotify-easyrpm (Old)
and /work/SRC/openSUSE:Factory/.spotify-easyrpm.new.1538 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "spotify-easyrpm"
Wed Apr 27 21:41:06 2022 rev:7 rq:972981 version:3.0.3
Changes:
--------
--- /work/SRC/openSUSE:Factory/spotify-easyrpm/spotify-easyrpm.changes
2021-10-06 19:49:53.388056276 +0200
+++
/work/SRC/openSUSE:Factory/.spotify-easyrpm.new.1538/spotify-easyrpm.changes
2022-04-27 21:41:12.073004516 +0200
@@ -1,0 +2,5 @@
+Tue Apr 26 22:32:34 UTC 2022 - [email protected]
+
+- Remove dependency on gconf2
+
+-------------------------------------------------------------------
Old:
----
spotify-easyrpm-3.0.2.tar.gz
New:
----
spotify-easyrpm-3.0.3.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ spotify-easyrpm.spec ++++++
--- /var/tmp/diff_new_pack.4cdKhA/_old 2022-04-27 21:41:12.653005200 +0200
+++ /var/tmp/diff_new_pack.4cdKhA/_new 2022-04-27 21:41:12.657005204 +0200
@@ -1,7 +1,7 @@
#
# spec file for package spotify-easyrpm
#
-# Copyright (c) 2021 SUSE LLC
+# Copyright (c) 2022 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.2
+Version: 3.0.3
Release: 0
Summary: Tool to download, convert and install the Spotify for Linux
package
License: GPL-3.0-only
++++++ spotify-easyrpm-3.0.2.tar.gz -> spotify-easyrpm-3.0.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/spotify-easyrpm-3.0.2/README.md
new/spotify-easyrpm-3.0.3/README.md
--- old/spotify-easyrpm-3.0.2/README.md 2021-10-05 22:31:31.000000000 +0200
+++ new/spotify-easyrpm-3.0.3/README.md 2022-04-26 23:26:25.000000000 +0200
@@ -2,93 +2,87 @@

-Spotify-easyrpm is a script which can download the latest Spotify snapcraft.io
package and convert it into an RPM.
-It is also capable of installing, automated updating and storing the Spotify
RPMs in a local filesystem repo
-for installing Spotify updates alongside regular system updates
+Spotify-EasyRPM is a script which automates the installing and updating of
Spotify on RPM-based Linux systems
+## Features
- ### Features
+* Auto download the latest version of Spotify from snapcraft.io
+* Convert the snap package to RPM format
+* Install the Spotify RPM
+* Automated Spotify update check
+* Update Spofity alongside your regular system updates
+* Create a local filesystem repo
+* Fully unattended quiet mode
- * Set up a build enviornment on your PC and install rpm-build
- * Auto download the latest version of Spotify
- * Convert the snap package to RPM format
- * Install the Spotify RPM
- * Automated Spotify update check
- * Create a local filesystem repo so Spotify can be updated alongside regular
updates
- * Fully unattended quiet mode
+## Howto
-
- ### Howto
+Regular prompt based mode to create an RPM and optionally install and create
an update schedule:
```bash
$> spotify-easyrpm
```
- - Regular prompt based mode to create an RPM and optionally install and
create an update schedule
+
+Automate everything for me and don't ask questions:
```bash
$> spotify-easyrpm --quiet
```
- - Create the RPM
- - Install the Spotify RPM
- - Set up a update timer job
- - Set up a local filesystem repo
+Set either "edge" or "stable" version of Spotify client:
```bash
$> spotify-easyrpm --set-channel edge
```
- - Set either "edge" or "stable" version of Spotify client
-
+Create a new update check schedule:
```bash
$> spotify-easyrpm --create-schedule
```
- - If you previously opted out creating an automated update schedule but now
desire it
+Remove the schedule and local repo if present:
```bash
$> spotify-easyrpm --remove-schedule
```
- - Removes the schedule and local repo if present
+Clean up the local filesystem repo:
```bash
$> spotify-easyrpm --clean-repo
```
- - Cleans up the local filesystem repo
-
-
- ### Requirements
+## Requirements
- * openSUSE Leap / SLE, or Tumbleweed
+* openSUSE Leap / SLE, or Tumbleweed
+* Support for other RPM-based systems is being considered
+## Auto Updates
- ### Auto Updates
+spotify-easyrpm can create a systemd user timer job which will run daily and 5
minutes after user login.
+This will call the script to do a light check against the Spotify debian repo
for a new release.
+If a new release is found, a build process is kicked off in the background and
the final RPM will
+be placed on your machine in a local filesystem repo
(/var/cache/spotify-easyrpm).
+The next time you run the system updater or zypper up you will see
spotify-client appear as an
+update alongside regular updates.
- spotify-easyrpm can create a systemd user timer job which will run daily
and 5 minutes after user login.
- This will call the script to do a light check against the Spotify debian
repo for a new release.
- If a new release is found, a build process is kicked off in the background
and the final RPM will
- be placed on your machine in a local filesystem repo
(/var/cache/spotify-easyrpm).
- The next time you run the system updater or zypper up you will see
spotify-client appear as an
- update alongside regular updates.
+If you want to modify the update check timer, the file is at
$HOME/.local/share/systemd/user/spotify-easyrpm.timer
+Please see the systemd documentation for more information
- If you want to modify the update check timer, the file is at
$HOME/.local/share/systemd/user/spotify-easyrpm.timer
- Please see the systemd documentation for more information
+To see a brief summary of the last run do
- To see a brief summary of the last run do
-
- systemctl --user status spotify-easyrpm
+```bash
+systemctl --user status spotify-easyrpm
+```
- If you want to see the full output of the last run you can do
+If you want to see the full output of the last run you can do
- journalctl --user-unit spotify-easyrpm
+```bash
+journalctl --user-unit spotify-easyrpm
+```
+### How to install
- ### Download links (One Click Install)
- * [openSUSE
15.1](https://software.opensuse.org/ymp/multimedia:apps/openSUSE_Leap_15.1/spotify-easyrpm.ymp?base=openSUSE%3ALeap%3A15.1&query=spotify-easyrpm)
- * [openSUSE
15.2](https://software.opensuse.org/ymp/multimedia:apps/openSUSE_Leap_15.2/spotify-easyrpm.ymp?base=openSUSE%3ALeap%3A15.2&query=spotify-easyrpm)
- * openSUSE 15.3 / SLE 15 SP3: `zypper install spotify-easyrpm`
- * openSUSE Tumbleweed: `zypper install spotify-easyrpm`
+* openSUSE : `zypper install spotify-easyrpm`
+* mageia : coming soon
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/spotify-easyrpm-3.0.2/spotify-easyrpm
new/spotify-easyrpm-3.0.3/spotify-easyrpm
--- old/spotify-easyrpm-3.0.2/spotify-easyrpm 2021-10-05 22:31:31.000000000
+0200
+++ new/spotify-easyrpm-3.0.3/spotify-easyrpm 2022-04-26 23:26:25.000000000
+0200
@@ -31,7 +31,7 @@
??????????????????????????????????????????????????? ???
?????????????????????????????? ??????????????????????????????
????????????????????? ??? ??? ????????? ????????????????????????
??????????????????????????????????????????????????????
???????????? ????????? ??? ?????? ??? ???????????? ???????????? ???
???????????? ??? ???
-Version: 3.0.2
+Version: 3.0.3
EOF
sleep 2
cat <<EOF
@@ -412,7 +412,6 @@
Requires: libatomic1
Requires: libcurl4
Requires: libgbm1
-Requires: gconf2
Requires: libglib-2_0-0
Requires: libgtk-3-0
Requires: mozilla-nss