Hello community, here is the log from the commit of package sway for openSUSE:Factory checked in at 2019-06-04 12:14:37 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/sway (Old) and /work/SRC/openSUSE:Factory/.sway.new.5148 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "sway" Tue Jun 4 12:14:37 2019 rev:16 rq:707384 version:1.1.1 Changes: -------- --- /work/SRC/openSUSE:Factory/sway/sway.changes 2019-03-26 15:42:32.956239577 +0100 +++ /work/SRC/openSUSE:Factory/.sway.new.5148/sway.changes 2019-06-04 12:14:40.679775839 +0200 @@ -1,0 +2,28 @@ +Tue Jun 4 05:54:22 UTC 2019 - [email protected] + +- Update to 1.1.1: + * swaybar now includes touch support - tapping to activate + hotspots and dragging across to cycle through workspaces + * You can now manually inhibit idle notifications (DPMS) when a + certain criteria is active via inhibit_idle + * Keybindings can now be unconfigured at runtime via + unbind{sym,code,switch} + * workspace {prev,next}_on_output --create will create the + next workspace instead of wrapping to the start + * Output subpixel layouts can now be explicitly configured + * i3bar's short_text properties in the JSON protocol are + now supported + * swaybar now supports an "overlay" mode, which shows the bar + on top of other windows and doesn't process input events + * Switch devices (like lid switches) are now supported and + can be bound to actions via bindswitch + * swaymsg now supports a -p/--pretty option for explicitly + enabling pretty-printing + * More details: https://github.com/swaywm/sway/releases/tag/1.1 +- Remove sway-1.0-flow.patch: upstreamed + See https://github.com/swaywm/sway/issues/3862 +- Remove sway-1.0-scdocpath.patch: scdoc pkconfig files is fixed + See bsc#1128844 +- Update sway-1.0-include.patch + +------------------------------------------------------------------- Old: ---- sway-1.0-flow.patch sway-1.0-scdocpath.patch sway-1.0.tar.gz New: ---- sway-1.1.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ sway.spec ++++++ --- /var/tmp/diff_new_pack.D0bOsN/_old 2019-06-04 12:14:41.331775625 +0200 +++ /var/tmp/diff_new_pack.D0bOsN/_new 2019-06-04 12:14:41.335775624 +0200 @@ -17,19 +17,15 @@ Name: sway -Version: 1.0 +Version: 1.1.1 Release: 0 Summary: Window manager for Wayland compatible with i3 License: MIT Group: System/GUI/Other URL: https://github.com/swaywm/sway -Source0: https://github.com/swaywm/sway/archive/1.0.tar.gz#/%{name}-%{version}.tar.gz +Source0: https://github.com/swaywm/sway/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz Source2: sway.keyring Patch0: sway-1.0-include.patch -# FIX-OPENSUSE - [email protected] - workaround for bsc#684221 -Patch1: sway-1.0-scdocpath.patch -# FIX-UPSTREAM - [email protected] - https://github.com/swaywm/sway/issues/3862 -Patch2: sway-1.0-flow.patch BuildRequires: gcc-c++ #BuildRequires: libxslt-tools BuildRequires: libevdev-devel @@ -68,10 +64,8 @@ manager for Wayland. %prep -%setup -q -n %{name}-1.0 +%setup -q %patch0 -p1 -%patch1 -p1 -%patch2 -p1 %build export CFLAGS="%{optflags}" ++++++ sway-1.0-include.patch ++++++ --- /var/tmp/diff_new_pack.D0bOsN/_old 2019-06-04 12:14:41.347775620 +0200 +++ /var/tmp/diff_new_pack.D0bOsN/_new 2019-06-04 12:14:41.347775620 +0200 @@ -1,12 +1,36 @@ -diff -urEbwB sway-1.0-rc2/include/cairo.h sway-1.0-rc2.new/include/cairo.h ---- sway-1.0-rc2/include/cairo.h 2019-02-11 16:22:53.000000000 +0100 -+++ sway-1.0-rc2.new/include/cairo.h 2019-02-18 11:35:41.913345733 +0100 -@@ -4,7 +4,7 @@ +diff -urEbw sway-1.1.1/common/util.c sway-1.1.1.new/common/util.c +--- sway-1.1.1/common/util.c 2019-06-03 15:54:48.000000000 +0200 ++++ sway-1.1.1.new/common/util.c 2019-06-04 08:01:49.398954211 +0200 +@@ -5,7 +5,7 @@ + #include <stdlib.h> + #include <string.h> + #include <strings.h> +-#include <wayland-server-protocol.h> ++#include <wayland/wayland-client-protocol.h> + #include "log.h" + #include "util.h" + +diff -urEbw sway-1.1.1/include/cairo.h sway-1.1.1.new/include/cairo.h +--- sway-1.1.1/include/cairo.h 2019-06-03 15:54:48.000000000 +0200 ++++ sway-1.1.1.new/include/cairo.h 2019-06-04 07:58:54.169992613 +0200 +@@ -3,7 +3,7 @@ #include "config.h" #include <stdint.h> #include <cairo/cairo.h> -#include <wayland-client-protocol.h> +#include <wayland/wayland-client-protocol.h> - #if HAVE_GDK_PIXBUF - #include <gdk-pixbuf/gdk-pixbuf.h> - #endif + + void cairo_set_source_u32(cairo_t *cairo, uint32_t color); + cairo_subpixel_order_t to_cairo_subpixel_order(enum wl_output_subpixel subpixel); +diff -urEbw sway-1.1.1/include/util.h sway-1.1.1.new/include/util.h +--- sway-1.1.1/include/util.h 2019-06-03 15:54:48.000000000 +0200 ++++ sway-1.1.1.new/include/util.h 2019-06-04 08:03:46.167595133 +0200 +@@ -3,7 +3,7 @@ + + #include <stdint.h> + #include <stdbool.h> +-#include <wayland-server-protocol.h> ++#include <wayland/wayland-client-protocol.h> + + /** + * Wrap i into the range [0, max[ ++++++ sway-1.0.tar.gz -> sway-1.1.1.tar.gz ++++++ ++++ 12859 lines of diff (skipped)
