Hello community, here is the log from the commit of package e16 for openSUSE:Factory checked in at 2020-01-06 15:22:43 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/e16 (Old) and /work/SRC/openSUSE:Factory/.e16.new.6675 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "e16" Mon Jan 6 15:22:43 2020 rev:10 rq:761066 version:1.0.21 Changes: -------- --- /work/SRC/openSUSE:Factory/e16/e16.changes 2019-06-18 14:56:45.849387679 +0200 +++ /work/SRC/openSUSE:Factory/.e16.new.6675/e16.changes 2020-01-06 15:22:45.616498652 +0100 @@ -1,0 +2,24 @@ +Thu Jan 2 05:10:08 UTC 2020 - Simon Lees <[email protected]> + +- Add sndio sound back end for OpenBSD +- Menu generation speedups + +------------------------------------------------------------------- +Thu Sep 5 07:16:38 UTC 2019 - Simon Lees <[email protected]> + +- Update to 16.0.20 + * Theming macro updates (Don Harrop) + * Warning fixes for gcc 9 + * Fix transient placement involving desk/area change + * GSOD: Fix restart after choosing Restart on e.g. segv + * GSOD: Better keyboard grab + * Don't do double-clicks on scroll wheel events + * Correct refresh when switching away from background "None" + * Restore background to last set if quitting background selector + * Fix memory leak in pulseaudio sound loader + * Fix potential segv in pulseaudio sound handler + * Fix compositing glitches with tiled backgrounds + * Make config dialog edge flip mode changes take effect immediately + * Add gobject-2.0 dependency in case pango doesn't include it + +------------------------------------------------------------------- Old: ---- e16-1.0.19.tar.xz New: ---- e16-1.0.21.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ e16.spec ++++++ --- /var/tmp/diff_new_pack.Y7gU82/_old 2020-01-06 15:22:46.472499095 +0100 +++ /var/tmp/diff_new_pack.Y7gU82/_new 2020-01-06 15:22:46.476499097 +0100 @@ -1,7 +1,7 @@ # # spec file for package e16 # -# Copyright (c) 2019 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 @@ -23,12 +23,12 @@ %define enable_composite 1 %define enable_pango 1 Name: e16 -Version: 1.0.19 +Version: 1.0.21 Release: 0 Summary: A Window Manager for the X Window System License: MIT-advertising AND GPL-2.0-or-later Group: System/GUI/Other -Url: http://www.enlightenment.org +URL: http://www.enlightenment.org Source: e16-%{version}.tar.xz Patch0: fix-compile-gtk.patch BuildRequires: fdupes ++++++ e16-1.0.19.tar.xz -> e16-1.0.21.tar.xz ++++++ ++++ 53675 lines of diff (skipped) ++++++ fix-compile-gtk.patch ++++++ --- /var/tmp/diff_new_pack.Y7gU82/_old 2020-01-06 15:22:46.968499351 +0100 +++ /var/tmp/diff_new_pack.Y7gU82/_new 2020-01-06 15:22:46.968499351 +0100 @@ -1,20 +1,20 @@ -Index: e16-1.0.19/configure.ac +Index: e16-1.0.21/configure.ac =================================================================== ---- e16-1.0.19.orig/configure.ac -+++ e16-1.0.19/configure.ac -@@ -179,6 +179,7 @@ AC_ARG_ENABLE(pango, +--- e16-1.0.21.orig/configure.ac ++++ e16-1.0.21/configure.ac +@@ -192,6 +192,7 @@ AC_ARG_ENABLE(pango, enable_pango=yes) if test "x$enable_pango" = "xyes"; then - PKG_CHECK_MODULES(PANGO, pangoxft, AC_DEFINE(USE_PANGO, 1, [pango-xft support]), enable_pango=no) + PKG_CHECK_MODULES(PANGO, pangoxft gobject-2.0, AC_DEFINE(USE_PANGO, 1, [pango-xft support]), enable_pango=no) + PKG_CHECK_MODULES(GOBJECT2, gobject-2.0, AC_DEFINE(USE_PANGO, 1, [pango-xft support]), enable_pango=no) fi AM_CONDITIONAL(USE_LIBPANGO, test "x$enable_pango" = "xyes") - -Index: e16-1.0.19/src/Makefile.am + +Index: e16-1.0.21/src/Makefile.am =================================================================== ---- e16-1.0.19.orig/src/Makefile.am -+++ e16-1.0.19/src/Makefile.am -@@ -201,16 +201,16 @@ endif +--- e16-1.0.21.orig/src/Makefile.am ++++ e16-1.0.21/src/Makefile.am +@@ -215,16 +215,16 @@ endif if USE_LIBPANGO LIBFNT_PANGO = libfont_pango.la libfont_pango_la_SOURCES = text_pango.c @@ -24,13 +24,14 @@ +libfont_pango_la_LIBADD = $(PANGO_LIBS) $(GOBJECT2_LIBS) libfont_xft.la libfont_pango_la_LDFLAGS = -module -avoid-version endif - + else - - MODULE_SRCS = sound_esd.c sound_pa.c sound_load.c ttfont.c text_xft.c text_pango.c --MODULE_LIBS = $(ESD_LIBS) $(PA_LIBS) $(SNDLDR_LIBS) $(PANGO_LIBS) $(XFT_LIBS) --MODULE_CFLAGS = $(ESD_CFLAGS) $(PA_CFLAGS) $(SNDLDR_CFLAGS) $(PANGO_CFLAGS) $(XFT_CFLAGS) -+MODULE_LIBS = $(ESD_LIBS) $(PA_LIBS) $(SNDLDR_LIBS) $(PANGO_LIBS) $(GOBJECT2_LIBS) $(XFT_LIBS) -+MODULE_CFLAGS = $(ESD_CFLAGS) $(PA_CFLAGS) $(SNDLDR_CFLAGS) $(PANGO_CFLAGS) $(GOBJECT2_CFLAGS) $(XFT_CFLAGS) - + + MODULE_SRCS = sound_esd.c sound_pa.c sound_sndio.c sound_load.c ttfont.c text_xft.c text_pango.c +-MODULE_LIBS = $(ESD_LIBS) $(PA_LIBS) $(SNDIO_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) $(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 +
