Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package xfce4-clipman-plugin for
openSUSE:Factory checked in at 2023-10-10 20:59:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xfce4-clipman-plugin (Old)
and /work/SRC/openSUSE:Factory/.xfce4-clipman-plugin.new.28202 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xfce4-clipman-plugin"
Tue Oct 10 20:59:16 2023 rev:9 rq:1116394 version:1.6.5
Changes:
--------
---
/work/SRC/openSUSE:Factory/xfce4-clipman-plugin/xfce4-clipman-plugin.changes
2023-08-15 16:40:19.723119007 +0200
+++
/work/SRC/openSUSE:Factory/.xfce4-clipman-plugin.new.28202/xfce4-clipman-plugin.changes
2023-10-10 20:59:41.524759147 +0200
@@ -1,0 +2,29 @@
+Fri Sep 29 15:40:20 UTC 2023 - Manfred Hollstein <[email protected]>
+
+- Update to version 1.6.5
+ * wayland: Hide skip-action-on-key-down setting
+ * wayland: Hide persistent-primary-clipboard setting
+ * Add set-text action to plugin app to allow D-Bus calls
+ * Add Wayland impl for clipboard-manager
+ * Make clipboard manager an interface and add X11 impl
+ * Rename x11-clipboard-manager to clipboard-manager
+ * Move paste_on_activate() to common
+ * Make X11 dependencies optional and guard X11 code paths
+ * cleanup: Remove unused project files
+ * cleanup: Remove useless variable assignment
+ * tests: Add missing include
+ * history-dialog: Fix memory leak
+ * ui: Mark 2 strings translatable
+ * history-dialog: Keep paste-on-activate in sync with the settings (V2)
+ * settings: Fix tooltip text
+ * status-icon: Enable tooltip
+ * status-icon: Add missing sanity check
+ * popup-clipman: Replace deprecated gdk_keyboard_grab()
+ * Replace deprecated gtk_menu_popup() when possible
+ * collector: Do not restore default clipboard if not really empty
+ * menu: Fix translated string
+ * Update URLs
+ * Translation Updates
+- Add xfce4-clipman-plugin-relax-x11-version.patch
+
+-------------------------------------------------------------------
Old:
----
xfce4-clipman-plugin-1.6.4.tar.bz2
New:
----
xfce4-clipman-plugin-1.6.5.tar.bz2
xfce4-clipman-plugin-relax-x11-version.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ xfce4-clipman-plugin.spec ++++++
--- /var/tmp/diff_new_pack.d7W9ib/_old 2023-10-10 20:59:42.624799037 +0200
+++ /var/tmp/diff_new_pack.d7W9ib/_new 2023-10-10 20:59:42.628799182 +0200
@@ -20,13 +20,15 @@
%define plugin clipman
%bcond_with git
Name: xfce4-%{plugin}-plugin
-Version: 1.6.4
+Version: 1.6.5
Release: 0
Summary: Clipboard Manager Plugin for the Xfce Panel
License: GPL-2.0-or-later
Group: System/GUI/XFCE
URL: https://docs.xfce.org/panel-plugins/xfce4-clipman-plugin
Source0:
https://archive.xfce.org/src/panel-plugins/%{name}/1.6/%{name}-%{version}.tar.bz2
+# PATCH-FIX-OPENSUSE xfce4-clipman-plugin-relax-x11-version.patch lower
required X11 version to allow building for Leap which only has 1.6.5, which is
enough, though
+Patch0: xfce4-clipman-plugin-relax-x11-version.patch
BuildRequires: appstream-glib
BuildRequires: fdupes
BuildRequires: intltool
@@ -36,11 +38,12 @@
BuildRequires: pkgconfig(gio-2.0) >= 2.60.0
BuildRequires: pkgconfig(glib-2.0) >= 2.60.0
BuildRequires: pkgconfig(gtk+-3.0) >= 3.22.29
-BuildRequires: pkgconfig(libqrencode)
+BuildRequires: pkgconfig(libqrencode) >= 3.3.0
BuildRequires: pkgconfig(libxfce4panel-2.0) >= %{panel_version}
BuildRequires: pkgconfig(libxfce4ui-2) >= 4.14.0
BuildRequires: pkgconfig(libxfce4util-1.0) >= 4.14.0
BuildRequires: pkgconfig(libxfconf-0) >= 4.14.0
+BuildRequires: pkgconfig(x11)
BuildRequires: pkgconfig(xproto) >= 7.0.0
BuildRequires: pkgconfig(xtst) >= 1.0.0
%if %{with git}
++++++ xfce4-clipman-plugin-1.6.4.tar.bz2 -> xfce4-clipman-plugin-1.6.5.tar.bz2
++++++
++++ 21920 lines of diff (skipped)
++++++ xfce4-clipman-plugin-relax-x11-version.patch ++++++
diff -rup a/configure.ac b/configure.ac
--- a/configure.ac 2023-09-29 13:06:56.000000000 +0200
+++ b/configure.ac 2023-09-29 19:40:08.099277983 +0200
@@ -28,7 +28,7 @@ m4_define([libxfce4ui_min_version], [4.1
m4_define([libxfce4util_min_version], [4.14.0])
m4_define([libxfce4panel_min_version], [4.14.0])
m4_define([xfconf_minimum_version], [4.14.0])
-m4_define([libx11_min_version], [1.6.7])
+m4_define([libx11_min_version], [1.6.5])
m4_define([libxproto_min_version], [7.0.0])
m4_define([libxtst_min_version], [1.0.0])
m4_define([wayland_min_version], [1.15.0])
diff -rup a/configure b/configure
--- a/configure 2023-09-29 13:07:37.000000000 +0200
+++ b/configure 2023-09-29 19:40:33.085933469 +0200
@@ -16089,7 +16089,7 @@ fi
if test x"$xdt_cv_LIBX11_check" = x"yes"; then
- if $PKG_CONFIG --exists "x11 >= 1.6.7" >/dev/null 2>&1; then
+ if $PKG_CONFIG --exists "x11 >= 1.6.5" >/dev/null 2>&1; then
# minimum supported version of pkg-config
@@ -16240,9 +16240,9 @@ fi
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for x11 >= 1.6.7" >&5
-printf %s "checking for x11 >= 1.6.7... " >&6; }
- if $PKG_CONFIG "--atleast-version=1.6.7" "x11" >/dev/null 2>&1; then
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for x11 >= 1.6.5" >&5
+printf %s "checking for x11 >= 1.6.5... " >&6; }
+ if $PKG_CONFIG "--atleast-version=1.6.5" "x11" >/dev/null 2>&1; then
LIBX11_VERSION=`$PKG_CONFIG --modversion "x11"`
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $LIBX11_VERSION" >&5
printf "%s\n" "$LIBX11_VERSION" >&6; }
@@ -16259,7 +16259,7 @@ printf %s "checking LIBX11_LIBS... " >&6
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $LIBX11_LIBS" >&5
printf "%s\n" "$LIBX11_LIBS" >&6; }
- LIBX11_REQUIRED_VERSION=1.6.7
+ LIBX11_REQUIRED_VERSION=1.6.5
@@ -16288,7 +16288,7 @@ printf "%s\n" "found, but $xdt_cv_versio
echo "*** The required package x11 was found on your system,"
echo "*** but the installed version ($xdt_cv_version) is too old."
- echo "*** Please upgrade x11 to atleast version 1.6.7, or adjust"
+ echo "*** Please upgrade x11 to atleast version 1.6.5, or adjust"
echo "*** the PKG_CONFIG_PATH environment variable if you installed"
echo "*** the new version of the package in a nonstandard prefix so"
echo "*** pkg-config is able to find it."
@@ -16300,7 +16300,7 @@ printf "%s\n" "not found" >&6; }
echo "*** The required package x11 was not found on your system."
- echo "*** Please install x11 (atleast version 1.6.7) or adjust"
+ echo "*** Please install x11 (atleast version 1.6.5) or adjust"
echo "*** the PKG_CONFIG_PATH environment variable if you"
echo "*** installed the package in a nonstandard prefix so that"
echo "*** pkg-config is able to find it."
@@ -16309,8 +16309,8 @@ printf "%s\n" "not found" >&6; }
fi
else
- { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for optional
package x11 >= 1.6.7" >&5
-printf %s "checking for optional package x11 >= 1.6.7... " >&6; }
+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for optional
package x11 >= 1.6.5" >&5
+printf %s "checking for optional package x11 >= 1.6.5... " >&6; }
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not found" >&5
printf "%s\n" "not found" >&6; }
fi