Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package e16 for openSUSE:Factory checked in at 2022-02-25 21:25:09 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/e16 (Old) and /work/SRC/openSUSE:Factory/.e16.new.1958 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "e16" Fri Feb 25 21:25:09 2022 rev:12 rq:957477 version:1.0.24 Changes: -------- --- /work/SRC/openSUSE:Factory/e16/e16.changes 2021-07-05 22:24:01.041240301 +0200 +++ /work/SRC/openSUSE:Factory/.e16.new.1958/e16.changes 2022-02-25 21:25:39.391644569 +0100 @@ -1,0 +2,13 @@ +Thu Feb 24 23:57:38 UTC 2022 - Simon Lees <simonf.l...@suse.com> + +- Update to 1.0.24 + * Pagers: Remember zoom setting when changed by pager menu + * Systray: Change default icon size to 32 + * Support _NET_WM_STATE_FOCUSED + * Focus: Fix focus on new clients requesting max size + * Fix bad memory access during shutdown + * FX (waves/ripples): Make it work in compositing mode + * Sound: Enable having multiple engines and changing it at runtime + * Translation updates: fr, da +- Refreshed fix-compile-gtk.patch +------------------------------------------------------------------- Old: ---- e16-1.0.23.tar.gz New: ---- e16-1.0.24.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ e16.spec ++++++ --- /var/tmp/diff_new_pack.TjjqMt/_old 2022-02-25 21:25:40.039644685 +0100 +++ /var/tmp/diff_new_pack.TjjqMt/_new 2022-02-25 21:25:40.047644686 +0100 @@ -1,7 +1,7 @@ # # spec file for package e16 # -# 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 @@ -23,13 +23,13 @@ %define enable_composite 1 %define enable_pango 1 Name: e16 -Version: 1.0.23 +Version: 1.0.24 Release: 0 Summary: A Window Manager for the X Window System License: GPL-2.0-or-later AND MIT-advertising Group: System/GUI/Other URL: https://www.enlightenment.org -Source: e16-%{version}.tar.gz +Source: e16-%{version}.tar.xz Patch0: fix-compile-gtk.patch BuildRequires: fdupes BuildRequires: libtool ++++++ fix-compile-gtk.patch ++++++ --- /var/tmp/diff_new_pack.TjjqMt/_old 2022-02-25 21:25:40.079644692 +0100 +++ /var/tmp/diff_new_pack.TjjqMt/_new 2022-02-25 21:25:40.083644692 +0100 @@ -1,8 +1,8 @@ -Index: e16-1.0.23/configure.ac +Index: e16-1.0.24/configure.ac =================================================================== ---- e16-1.0.23.orig/configure.ac -+++ e16-1.0.23/configure.ac -@@ -225,6 +225,7 @@ AC_ARG_ENABLE(pango, +--- e16-1.0.24.orig/configure.ac ++++ e16-1.0.24/configure.ac +@@ -261,6 +261,7 @@ AC_ARG_ENABLE(pango, enable_pango=yes) if test "x$enable_pango" = "xyes"; then PKG_CHECK_MODULES(PANGO, pangoxft gobject-2.0, AC_DEFINE(USE_PANGO, 1, [pango-xft support]), enable_pango=no) @@ -10,11 +10,29 @@ fi AM_CONDITIONAL(USE_LIBPANGO, test "x$enable_pango" = "xyes") -Index: e16-1.0.23/src/Makefile.am +Index: e16-1.0.24/src/Makefile.am =================================================================== ---- e16-1.0.23.orig/src/Makefile.am -+++ e16-1.0.23/src/Makefile.am -@@ -233,8 +233,8 @@ endif +--- e16-1.0.24.orig/src/Makefile.am ++++ e16-1.0.24/src/Makefile.am +@@ -134,7 +134,8 @@ e16_CPPFLAGS = \ + $(XI_CFLAGS) \ + $(XRANDR_CFLAGS) \ + $(XPRESENT_CFLAGS) \ +- $(X_CFLAGS) ++ $(X_CFLAGS) \ ++ $(GOBJECT2_CFLAGS) + + e16_LDADD = \ + $(LTLIBINTL) \ +@@ -160,6 +161,7 @@ e16_LDADD = \ + $(DBUS_LIBS) \ + $(MODULE_LIBS) \ + $(CLOCK_LIBS) \ ++ $(GOBJECT2_LIBS) \ + -lX11 -lm + + SNDLDR_CFLAGS = $(AUDIOFILE_CFLAGS) $(SNDFILE_CFLAGS) +@@ -233,8 +235,8 @@ endif if USE_LIBPANGO LIBFNT_PANGO = libfont_pango.la libfont_pango_la_SOURCES = text_pango.c @@ -25,15 +43,4 @@ libfont_pango_la_LDFLAGS = -module -avoid-version endif -@@ -242,8 +242,8 @@ else - - MODULE_SRCS = sound_esd.c sound_pulse.c sound_sndio.c sound_alsa.c sound_player.c sound_load.c \ - ttfont.c text_xft.c text_pango.c --MODULE_LIBS = $(ESD_LIBS) $(PA_LIBS) $(SNDIO_LIBS) $(ALSA_LIBS) $(SNDLDR_LIBS) $(PANGO_LIBS) $(XFT_LIBS) --MODULE_CFLAGS = $(ESD_CFLAGS) $(PA_CFLAGS) $(SNDIO_CFLAGS) $(SNDLDR_CFLAGS) $(PANGO_CFLAGS) $(XFT_CFLAGS) -+MODULE_LIBS = $(ESD_LIBS) $(PA_LIBS) $(SNDIO_LIBS) $(ALSA_LIBS) $(SNDLDR_LIBS) $(PANGO_LIBS) $(GOBJECT2_LIBS) $(XFT_LIBS) -+MODULE_CFLAGS = $(ESD_CFLAGS) $(PA_CFLAGS) $(SNDIO_CFLAGS) $(SNDLDR_CFLAGS) $(PANGO_CFLAGS) $(GOBJECT2_CFLAGS) $(XFT_CFLAGS) - - endif -