Hello community,

here is the log from the commit of package libmpdclient for openSUSE:Leap:15.2 
checked in at 2020-02-29 17:15:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/libmpdclient (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.libmpdclient.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libmpdclient"

Sat Feb 29 17:15:45 2020 rev:12 rq:779978 version:2.18

Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/libmpdclient/libmpdclient.changes      
2020-01-15 15:22:04.342464357 +0100
+++ /work/SRC/openSUSE:Leap:15.2/.libmpdclient.new.26092/libmpdclient.changes   
2020-02-29 17:16:20.057028889 +0100
@@ -1,0 +2,48 @@
+Mon Jan 27 06:35:18 UTC 2020 - Илья Индиго <[email protected]>
+
+- Update to 2.18
+  * https://raw.githubusercontent.com/MusicPlayerDaemon/libmpdclient/v2.18/NEWS
+  * more out-of-memory checks
+  * partition: add mpd_recv_partition()
+  * support MPD protocol 0.21
+    * "oneshot" single state
+  * support MPD protocol 0.22
+    * status: add mpd_status_get_partition()
+    * commands "delpartition", "moveoutput"
+
+-------------------------------------------------------------------
+Thu Dec  5 07:37:55 UTC 2019 - Илья Индиго <[email protected]>
+
+- Update to 2.17
+  * https://raw.githubusercontent.com/MusicPlayerDaemon/libmpdclient/v2.17/NEWS
+  * search: add mpd_search_add_db_songs_to_playlist()
+  * idle: support event "partition"
+  * support MPD protocol 0.19 - "listneighbors"
+  * support MPD protocol 0.22 - "getfingerprint"
+  * support tags "MPD_TAG_LABEL", "MPD_TAG_MUSICBRAINZ_WORKID",
+    "Grouping", "Work", "Conductor"
+  * support MPD partitions
+  * mpd_async_set_keepalive() returns bool
+  * mpd_connection_set_keepalive() returns bool
+
+-------------------------------------------------------------------
+Thu Nov  8 15:08:30 UTC 2018 - Luigi Baldoni <[email protected]>
+
+- Update to version 2.16
+  * support MPD protocol 0.19
+    + "mount", "unmount", "listmounts"
+  * support MPD protocol 0.17
+    + "load" with range
+  * add mpd_output_get_attribute()
+  * use UINX_MAX instead of `(unsigned)-1` to avoid undefined
+    behavior
+
+-------------------------------------------------------------------
+Thu Oct  4 08:43:30 UTC 2018 - Tomáš Chvátal <[email protected]>
+
+- Update to 2.15:
+  * support MPD protocol 0.17
+  * Various compiler warning fixes
+- Use meson macros
+
+-------------------------------------------------------------------

Old:
----
  libmpdclient-2.13.tar.xz

New:
----
  libmpdclient-2.18.tar.xz

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

Other differences:
------------------
++++++ libmpdclient.spec ++++++
--- /var/tmp/diff_new_pack.NwE00z/_old  2020-02-29 17:16:22.701034339 +0100
+++ /var/tmp/diff_new_pack.NwE00z/_new  2020-02-29 17:16:22.713034364 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libmpdclient
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,22 +12,22 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
+
 %define so_name 2
 Name:           libmpdclient
-Version:        2.13
+Version:        2.18
 Release:        0
 Summary:        Library for interfacing the Music Player Daemon
 License:        BSD-3-Clause
 Group:          Development/Libraries/C and C++
-Url:            http://www.musicpd.org/libs/libmpdclient/
-Source:         
http://www.musicpd.org/download/libmpdclient/2/%{name}-%{version}.tar.xz
-BuildRequires:  meson >= 0.40
+URL:            https://musicpd.org/libs/libmpdclient
+Source0:        
https://musicpd.org/download/%{name}/2/%{name}-%{version}.tar.xz
+BuildRequires:  meson
 BuildRequires:  ninja
 BuildRequires:  pkgconfig
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
 %description
 A stable, documented, asynchronous API library for interfacing MPD (Music 
Player Daemon)
@@ -54,46 +54,26 @@
 %setup -q
 
 %build
-meson \
-    --prefix %{_prefix} \
-    --libdir %{_libdir} \
-    --libexecdir %{_libexecdir} \
-    --bindir %{_bindir} \
-    --sbindir %{_sbindir} \
-    --includedir %{_includedir} \
-    --datadir %{_datadir} \
-    --mandir %{_mandir} \
-    --infodir %{_infodir} \
-    --localedir %{_datadir}/locale \
-    --sysconfdir %{_sysconfdir} \
-    --localstatedir %{_localstatedir} \
-    --sharedstatedir %{_sharedstatedir} \
-    --default-library shared \
-    --backend ninja \
-    -D documentation=false \
-    . output
-ninja -C output %{?_smp_flags}
+%meson -D documentation=false
+%meson_build
 
 %install
-env DESTDIR=%{buildroot} \
-ninja -C output install
-rm -rf %{buildroot}/usr/share/doc
+%meson_install
+rm -r %{buildroot}%{_datadir}/doc
 
 %post   -n %{name}%{so_name} -p /sbin/ldconfig
-
 %postun -n %{name}%{so_name} -p /sbin/ldconfig
 
 %files -n %{name}%{so_name}
-%defattr(-,root,root)
-%doc AUTHORS COPYING
+%license COPYING
+%doc AUTHORS
 %{_libdir}/%{name}.so.*
 
 %files devel
-%defattr(644, root, root)
 %doc NEWS
 %{_includedir}/mpd
 %{_libdir}/%{name}.so
-%{_libdir}/pkgconfig/libmpdclient.pc
+%{_libdir}/pkgconfig/%{name}.pc
 %{_datadir}/vala
 
 %changelog

++++++ libmpdclient-2.13.tar.xz -> libmpdclient-2.18.tar.xz ++++++
++++ 7296 lines of diff (skipped)


Reply via email to