Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ncspot for openSUSE:Factory checked 
in at 2025-07-15 16:43:33
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ncspot (Old)
 and      /work/SRC/openSUSE:Factory/.ncspot.new.7373 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ncspot"

Tue Jul 15 16:43:33 2025 rev:2 rq:1293065 version:1.3.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/ncspot/ncspot.changes    2025-02-05 
12:42:56.118764487 +0100
+++ /work/SRC/openSUSE:Factory/.ncspot.new.7373/ncspot.changes  2025-07-15 
16:44:24.317178846 +0200
@@ -1,0 +2,49 @@
+Sun Jul 13 16:03:56 UTC 2025 - lorenzholzba...@ikmail.com
+
+- Update to version 1.3.0:
+  * chore: Release prep for 1.3.0
+  * chore(deps): bump the cargo group with 3 updates (#1664)
+  * feat(auth): Automatically find free port
+  * chore: `cargo clippy --fix`
+  * [create-pull-request] automated change
+  * chore(deps): bump the cargo group across 1 directory with 2 updates (#1661)
+  * chore(deps): bump the cargo group with 6 updates (#1658)
+  * fix: Do not crash due to unavailable tracks in queue
+  * fix: Switch command line fg/bg colors
+  * chore(deps): bump the cargo group across 1 directory with 4 updates (#1654)
+  * docs: Update documentation links
+  * chore(deps): bump the cargo group with 2 updates (#1646)
+  * fix(queue): Don't freeze on item double click
+  * chore(deps): bump zbus from 5.6.0 to 5.7.0 in the cargo group
+  * fix: `cargo clippy --fix`
+  * [create-pull-request] automated change
+  * chore(deps): bump the cargo group with 4 updates
+  * Prevent event loop starvation by unplayable tracks
+  * chore: remove unused `rustfmt.toml` file
+  * Added missing parenthesis
+  * chore(deps): bump the cargo group across 1 directory with 9 updates
+  * chore: `cargo clippy --fix`
+  * [create-pull-request] automated change
+  * chore(deps): bump crossbeam-channel from 0.5.14 to 0.5.15
+  * chore(deps): bump openssl from 0.10.71 to 0.10.72
+  * chore(deps): bump the cargo group with 3 updates
+  * chore(deps): bump the cargo group across 1 directory with 5 updates
+  * chore(deps): bump the cargo group with 4 updates
+  * chore: Tweak log levels a little
+  * fix: Skip unplayable tracks
+  * feat(ci): Add nix-shell setup
+  * chore(deps): bump the cargo group across 1 directory with 3 updates
+  * chore: Update to edition 2024
+  * chore(deps): bump the cargo group with 3 updates
+  * chore(deps): bump ring from 0.17.8 to 0.17.13
+  * chore: Remove unnecessary `take()` call
+  * [create-pull-request] automated change
+  * chore(deps): bump the cargo group with 6 updates
+  * fix: Corrected incorrect comment
+  * chore: other small fixes
+  * chore: adapt to `rand` changes
+  * chore(deps): bump the cargo group across 1 directory with 7 updates
+  * chore(deps): bump openssl from 0.10.69 to 0.10.70
+  * [create-pull-request] automated change
+
+-------------------------------------------------------------------

Old:
----
  cargo_config
  ncspot-1.2.2.obscpio
  ncspot-1.2.2.tar.gz

New:
----
  ncspot-1.3.0.obscpio
  ncspot-1.3.0.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ncspot.spec ++++++
--- /var/tmp/diff_new_pack.KxC2Qi/_old  2025-07-15 16:44:26.733266189 +0200
+++ /var/tmp/diff_new_pack.KxC2Qi/_new  2025-07-15 16:44:26.733266189 +0200
@@ -15,10 +15,11 @@
 # Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
+
 %global rustflags '-Clink-arg=-Wl,-z,relro,-z,now'
 %define _lto_cflags %{nil}
 Name:           ncspot
-Version:        1.2.2
+Version:        1.3.0
 Release:        0
 Summary:       Cross-platform ncurses Spotify client written in Rust
 Group:          Productivity/Multimedia/Sound/Players
@@ -26,34 +27,29 @@
 URL:            https://github.com/hrkfdn/ncspot
 Source0:        %{name}-%{version}.tar.gz
 Source1:        vendor.tar.zst
-Source2:        cargo_config
+BuildRequires:  cargo
 BuildRequires:  cargo-packaging
+BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(dbus-1)
-BuildRequires:  pkgconfig(ncursesw)
 BuildRequires:  pkgconfig(libpulse)
 BuildRequires:  pkgconfig(libssl)
+BuildRequires:  pkgconfig(ncursesw)
 BuildRequires:  pkgconfig(xcb)
-BuildRequires:  update-desktop-files
 
 %description
 ncurses Spotify client written in Rust using librespot. It is heavily inspired 
by ncurses MPD clients, such as ncmpc. My motivation was to provide a simple 
and resource friendly alternative to the official client as well as to support 
platforms that currently don't have a Spotify client, such as the *BSDs.
 
 %prep
 %autosetup -a1
-cp %{SOURCE2} .cargo/config
 
 %build
-RUSTFLAGS=%{rustflags} cargo build --release
+%{cargo_build}
 
 %install
-RUSTFLAGS=%{rustflags} cargo install --root=%{buildroot}%{_prefix} --path .
-# remove residue crate file
-rm %{buildroot}%{_prefix}/.crates.toml
-rm %{buildroot}%{_prefix}/.crates2.json
+%{cargo_install}
 # install the desktop file
 install -Dm 0644 misc/ncspot.desktop 
%{buildroot}/%{_datadir}/applications/ncspot.desktop
 install -Dm 0644 images/logo.svg 
%{buildroot}/%{_datadir}/icons/hicolor/scalable/apps/ncspot.svg
-%suse_update_desktop_file ncspot
 
 %files
 %license LICENSE

++++++ _service ++++++
--- /var/tmp/diff_new_pack.KxC2Qi/_old  2025-07-15 16:44:26.765267345 +0200
+++ /var/tmp/diff_new_pack.KxC2Qi/_new  2025-07-15 16:44:26.769267490 +0200
@@ -6,7 +6,7 @@
     <param name="scm">git</param>
     <param name="version">git-master</param>
     <param name="versionformat">@PARENT_TAG@</param>
-    <param name="revision">v1.2.2</param>
+    <param name="revision">v1.3.0</param>
     <param name="versionrewrite-pattern">v(.*)</param>
     <param name="changesgenerate">enable</param>
     <param name="changesauthor">lorenzholzba...@ikmail.com</param>

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.KxC2Qi/_old  2025-07-15 16:44:26.797268502 +0200
+++ /var/tmp/diff_new_pack.KxC2Qi/_new  2025-07-15 16:44:26.801268647 +0200
@@ -1,6 +1,6 @@
 <servicedata>
 <service name="tar_scm">
                 <param name="url">https://github.com/hrkfdn/ncspot.git</param>
-              <param 
name="changesrevision">cb9e6d04244fadb46113f40fc7643639d8b7d0ed</param></service></servicedata>
+              <param 
name="changesrevision">fbd3a574a3b18ce68555eea3e2729523212e0021</param></service></servicedata>
 (No newline at EOF)
 

++++++ ncspot-1.2.2.obscpio -> ncspot-1.3.0.obscpio ++++++
++++ 4635 lines of diff (skipped)

++++++ ncspot-1.2.2.tar.gz -> ncspot-1.3.0.tar.gz ++++++
++++ 4635 lines of diff (skipped)

++++++ ncspot.obsinfo ++++++
--- /var/tmp/diff_new_pack.KxC2Qi/_old  2025-07-15 16:44:27.061278046 +0200
+++ /var/tmp/diff_new_pack.KxC2Qi/_new  2025-07-15 16:44:27.065278190 +0200
@@ -1,5 +1,5 @@
 name: ncspot
-version: 1.2.2
-mtime: 1738351590
-commit: cb9e6d04244fadb46113f40fc7643639d8b7d0ed
+version: 1.3.0
+mtime: 1751962815
+commit: fbd3a574a3b18ce68555eea3e2729523212e0021
 

++++++ vendor.tar.zst ++++++
/work/SRC/openSUSE:Factory/ncspot/vendor.tar.zst 
/work/SRC/openSUSE:Factory/.ncspot.new.7373/vendor.tar.zst differ: char 7, line 
1

Reply via email to