Hello community, here is the log from the commit of package e16 for openSUSE:Leap:15.2 checked in at 2020-02-04 17:59:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Leap:15.2/e16 (Old) and /work/SRC/openSUSE:Leap:15.2/.e16.new.26092 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "e16" Tue Feb 4 17:59:02 2020 rev:10 rq:761068 version:1.0.21 Changes: -------- --- /work/SRC/openSUSE:Leap:15.2/e16/e16.changes 2020-01-15 14:53:26.873523551 +0100 +++ /work/SRC/openSUSE:Leap:15.2/.e16.new.26092/e16.changes 2020-02-04 17:59:03.976917599 +0100 @@ -1,0 +2,48 @@ +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 + +------------------------------------------------------------------- +Sun Jun 2 12:36:03 UTC 2019 - Jan Engelhardt <[email protected]> + +- Trim bias and filler wording from description. + +------------------------------------------------------------------- +Wed May 29 12:10:41 UTC 2019 - Simon Lees <[email protected]> + +- Update to 16.0.19 + * Fix focus after slide-in + * Fix issue with initially shaded windows in certain cases + * Add new macros for theming in 'definitions' + * Update the restart cursor which looked a bit dated + * Do proper rendering of transparent icons in menus + * Fix magnifier pixel value display + * Remove long disabled pseudotransparency support + * Fix focus-if-group-focused cases + * (warning) fixes for gcc8 + * (warning) fixes for recent support package versions + * autotool updates +- use %license macro +- add fix-compile-gtk.patch as a hack for pango dropping gobj + flags + +------------------------------------------------------------------- @@ -418,2 +465,0 @@ - - Old: ---- e16-1.0.18.tar.xz New: ---- e16-1.0.21.tar.xz fix-compile-gtk.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ e16.spec ++++++ --- /var/tmp/diff_new_pack.Mg692c/_old 2020-02-04 17:59:04.676918021 +0100 +++ /var/tmp/diff_new_pack.Mg692c/_new 2020-02-04 17:59:04.680918023 +0100 @@ -1,7 +1,7 @@ # # spec file for package e16 # -# Copyright (c) 2017 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,7 +12,7 @@ # 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/ # @@ -23,13 +23,14 @@ %define enable_composite 1 %define enable_pango 1 Name: e16 -Version: 1.0.18 +Version: 1.0.21 Release: 0 -Summary: A Good-Looking Window Manager for the X Window System -License: MIT-advertising and GPL-2.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 BuildRequires: libtool BuildRequires: pkgconfig @@ -80,16 +81,16 @@ %description Enlightenment is a window manager for the X Window System that is -designed to be powerful, extensible, configurable, and very good -looking. It is one of the more graphically intense window managers. +extensible and configurable looking. It is one of the more +graphically intense window managers. -Enlightenment goes beyond managing windows by providing a useful and -appealing graphical shell from which to work. It is open in design and, -instead of dictating a policy, it allows the user to define their own -policy, down to every last detail. +Enlightenment goes beyond managing windows by providing a graphical +shell from which to work. It allows the user to define their own +policy down to every last detail. %prep %setup -q +%autopatch -p1 %build %if 0%{?sles_version} != 10 @@ -151,7 +152,8 @@ %files -f e16.lang %defattr(-,root,root) -%doc AUTHORS ChangeLog COPYING TODO +%doc AUTHORS ChangeLog TODO +%license COPYING %{_bindir}/* %{_bindir}/starte16 %{_libdir}/e16/ ++++++ e16-1.0.18.tar.xz -> e16-1.0.21.tar.xz ++++++ ++++ 89727 lines of diff (skipped) ++++++ fix-compile-gtk.patch ++++++ Index: e16-1.0.21/configure.ac =================================================================== --- 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 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.21/src/Makefile.am =================================================================== --- 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 -libfont_pango_la_CFLAGS = $(PANGO_CFLAGS) -libfont_pango_la_LIBADD = $(PANGO_LIBS) libfont_xft.la +libfont_pango_la_CFLAGS = $(PANGO_CFLAGS) $(GOBJECT2_CFLAGS) +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_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
