Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package e16 for openSUSE:Factory checked in at 2021-07-05 22:23:14 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/e16 (Old) and /work/SRC/openSUSE:Factory/.e16.new.2625 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "e16" Mon Jul 5 22:23:14 2021 rev:11 rq:904098 version:1.0.23 Changes: -------- --- /work/SRC/openSUSE:Factory/e16/e16.changes 2020-01-06 15:22:45.616498652 +0100 +++ /work/SRC/openSUSE:Factory/.e16.new.2625/e16.changes 2021-07-05 22:24:01.041240301 +0200 @@ -1,0 +2,19 @@ +Mon Jul 5 08:28:58 UTC 2021 - Simon Lees <sfl...@suse.de> + +- Update to 1.0.23 + * Add option to allow only the primary mouse button to raise windows + * Use poll() for event handling by default + * Allow users to override fonts via ~/.e16/fonts/ + * bindings: Add 'W' as alias for modifier 4 + * Enable sounds in combined configuration dialog + * Optionally play sounds using audio player + * Avoid potential crash when attempting to enable sound + * Add alsa-lib sound backend + * Various bugfixes + * Add sndio sound back end for OpenBSD + * Menu generation speedups + * Translation updates: fr +- Refreshed fix-compile-gtk.patch +- Run spec cleaner + +------------------------------------------------------------------- Old: ---- e16-1.0.21.tar.xz New: ---- e16-1.0.23.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ e16.spec ++++++ --- /var/tmp/diff_new_pack.8qVed7/_old 2021-07-05 22:24:01.553236338 +0200 +++ /var/tmp/diff_new_pack.8qVed7/_new 2021-07-05 22:24:01.557236307 +0200 @@ -1,7 +1,7 @@ # # spec file for package e16 # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -23,18 +23,20 @@ %define enable_composite 1 %define enable_pango 1 Name: e16 -Version: 1.0.21 +Version: 1.0.23 Release: 0 Summary: A Window Manager for the X Window System -License: MIT-advertising AND GPL-2.0-or-later +License: GPL-2.0-or-later AND MIT-advertising Group: System/GUI/Other -URL: http://www.enlightenment.org -Source: e16-%{version}.tar.xz +URL: https://www.enlightenment.org +Source: e16-%{version}.tar.gz Patch0: fix-compile-gtk.patch BuildRequires: fdupes BuildRequires: libtool BuildRequires: pkgconfig +BuildRequires: pkgconfig(cairo) BuildRequires: pkgconfig(gobject-2.0) +BuildRequires: pkgconfig(harfbuzz) BuildRequires: pkgconfig(harfbuzz) >= 0.9.7 BuildRequires: pkgconfig(ice) BuildRequires: pkgconfig(imlib2) >= 1.2.0 @@ -56,28 +58,12 @@ Provides: enlight = %{version} # don't use provides as that will cause issues with the new enlightenment (e18) package Obsoletes: enlightenment >= 1.0.0 -BuildRoot: %{_tmppath}/%{name}-%{version}-build %if %{enable_sound} BuildRequires: pkgconfig(libpulse) %endif %if %{enable_pango} BuildRequires: pkgconfig(pango) %endif -BuildRequires: fdupes -BuildRequires: pkgconfig(cairo) -BuildRequires: pkgconfig(gobject-2.0) -BuildRequires: pkgconfig(harfbuzz) -BuildRequires: pkgconfig(ice) -BuildRequires: pkgconfig(sm) -BuildRequires: pkgconfig(x11) -BuildRequires: pkgconfig(xcomposite) -BuildRequires: pkgconfig(xdamage) -BuildRequires: pkgconfig(xext) -BuildRequires: pkgconfig(xfixes) -BuildRequires: pkgconfig(xft) -BuildRequires: pkgconfig(xinerama) -BuildRequires: pkgconfig(xrandr) -BuildRequires: pkgconfig(xrender) %description Enlightenment is a window manager for the X Window System that is @@ -128,7 +114,7 @@ %else --disable-pango %endif -make %{?_smp_mflags} V=1 +%make_build %install make DESTDIR=%{buildroot} \ @@ -147,11 +133,9 @@ %find_lang e16 %post -p /sbin/ldconfig - %postun -p /sbin/ldconfig %files -f e16.lang -%defattr(-,root,root) %doc AUTHORS ChangeLog TODO %license COPYING %{_bindir}/* ++++++ fix-compile-gtk.patch ++++++ --- /var/tmp/diff_new_pack.8qVed7/_old 2021-07-05 22:24:01.581236122 +0200 +++ /var/tmp/diff_new_pack.8qVed7/_new 2021-07-05 22:24:01.581236122 +0200 @@ -1,8 +1,8 @@ -Index: e16-1.0.21/configure.ac +Index: e16-1.0.23/configure.ac =================================================================== ---- e16-1.0.21.orig/configure.ac -+++ e16-1.0.21/configure.ac -@@ -192,6 +192,7 @@ AC_ARG_ENABLE(pango, +--- e16-1.0.23.orig/configure.ac ++++ e16-1.0.23/configure.ac +@@ -225,6 +225,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,11 @@ fi AM_CONDITIONAL(USE_LIBPANGO, test "x$enable_pango" = "xyes") -Index: e16-1.0.21/src/Makefile.am +Index: e16-1.0.23/src/Makefile.am =================================================================== ---- e16-1.0.21.orig/src/Makefile.am -+++ e16-1.0.21/src/Makefile.am -@@ -215,16 +215,16 @@ endif +--- e16-1.0.23.orig/src/Makefile.am ++++ e16-1.0.23/src/Makefile.am +@@ -233,8 +233,8 @@ endif if USE_LIBPANGO LIBFNT_PANGO = libfont_pango.la libfont_pango_la_SOURCES = text_pango.c @@ -25,12 +25,13 @@ libfont_pango_la_LDFLAGS = -module -avoid-version endif - else +@@ -242,8 +242,8 @@ 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_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) $(SNDLDR_LIBS) $(PANGO_LIBS) $(GOBJECT2_LIBS) $(XFT_LIBS) ++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