commit e16 for openSUSE:Factory

2020-01-06 Thread root
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.changes2020-01-06 
15:22:45.616498652 +0100
@@ -1,0 +2,24 @@
+Thu Jan  2 05:10:08 UTC 2020 - Simon Lees 
+
+- Add sndio sound back end for OpenBSD
+- Menu generation speedups  
+
+---
+Thu Sep  5 07:16:38 UTC 2019 - Simon Lees 
+
+- 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) 

commit e16 for openSUSE:Factory

2019-06-18 Thread root
Hello community,

here is the log from the commit of package e16 for openSUSE:Factory checked in 
at 2019-06-18 14:56:35

Comparing /work/SRC/openSUSE:Factory/e16 (Old)
 and  /work/SRC/openSUSE:Factory/.e16.new.4811 (New)


Package is "e16"

Tue Jun 18 14:56:35 2019 rev:9 rq:707126 version:1.0.19

Changes:

--- /work/SRC/openSUSE:Factory/e16/e16.changes  2017-09-29 11:56:41.151808340 
+0200
+++ /work/SRC/openSUSE:Factory/.e16.new.4811/e16.changes2019-06-18 
14:56:45.849387679 +0200
@@ -1,0 +2,24 @@
+Sun Jun  2 12:36:03 UTC 2019 - Jan Engelhardt 
+
+- Trim bias and filler wording from description.
+
+---
+Wed May 29 12:10:41 UTC 2019 - Simon Lees 
+
+- 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 +441,0 @@
-
-

Old:

  e16-1.0.18.tar.xz

New:

  e16-1.0.19.tar.xz
  fix-compile-gtk.patch



Other differences:
--
++ e16.spec ++
--- /var/tmp/diff_new_pack.gVfcON/_old  2019-06-18 14:56:47.521386634 +0200
+++ /var/tmp/diff_new_pack.gVfcON/_new  2019-06-18 14:56:47.553386614 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package e16
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # 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.19
 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
 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.19.tar.xz ++
 56286 lines of diff (skipped)

++ fix-compile-gtk.patch ++
Index: e16-1.0.19/configure.ac
===
--- e16-1.0.19.orig/configure.ac
+++ e16-1.0.19/configure.ac
@@ -179,6 +179,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(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
===
--- 

commit e16 for openSUSE:Factory

2017-09-29 Thread root
Hello community,

here is the log from the commit of package e16 for openSUSE:Factory checked in 
at 2017-09-29 11:56:39

Comparing /work/SRC/openSUSE:Factory/e16 (Old)
 and  /work/SRC/openSUSE:Factory/.e16.new (New)


Package is "e16"

Fri Sep 29 11:56:39 2017 rev:8 rq:529105 version:1.0.18

Changes:

--- /work/SRC/openSUSE:Factory/e16/e16.changes  2017-06-17 10:22:40.750376228 
+0200
+++ /work/SRC/openSUSE:Factory/.e16.new/e16.changes 2017-09-29 
11:56:41.151808340 +0200
@@ -1,0 +2,17 @@
+Wed Sep 27 16:50:54 UTC 2017 - dims...@opensuse.org
+
+- Fixup sound dependencies: we pass --enable-sound to configure,
+  which, according to configure, implies 'pulseaudio' (unless
+  specified as --enable-sound=esound).
+  + Drop esound-devel BuildRequires: not needed, since we never
+passed --enable-sound=esound to configure.
+  + Drop pkgconfig(alas) BuildRequires: no needed, since e16 has no
+alsa support.
+  + Add pkgconfig(libpulse) BuildRequires: Enable the implied sound
+module for 16.
+- Toggle with_sound to 0, until somebody actually fixes the build
+  with PulseAudio (note: this is defacto the same as we had before
+  as the dependencies were simply not in place and configure
+  silently switched off --enable-sound).
+
+---



Other differences:
--
++ e16.spec ++
--- /var/tmp/diff_new_pack.pvQiYC/_old  2017-09-29 11:56:41.883705138 +0200
+++ /var/tmp/diff_new_pack.pvQiYC/_new  2017-09-29 11:56:41.887704574 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define enable_sound   1
+%define enable_sound   0
 %define enable_hints_gnome 0
 %define enable_zoom1
 %define enable_xrandr  1
@@ -57,8 +57,7 @@
 Obsoletes:  enlightenment >= 1.0.0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{enable_sound}
-BuildRequires:  esound-devel
-BuildRequires:  pkgconfig(alsa)
+BuildRequires:  pkgconfig(libpulse)
 %endif
 %if %{enable_pango}
 BuildRequires:  pkgconfig(pango)




commit e16 for openSUSE:Factory

2017-06-17 Thread root
Hello community,

here is the log from the commit of package e16 for openSUSE:Factory checked in 
at 2017-06-17 10:22:33

Comparing /work/SRC/openSUSE:Factory/e16 (Old)
 and  /work/SRC/openSUSE:Factory/.e16.new (New)


Package is "e16"

Sat Jun 17 10:22:33 2017 rev:7 rq:504174 version:1.0.18

Changes:

--- /work/SRC/openSUSE:Factory/e16/e16.changes  2016-01-09 23:13:34.0 
+0100
+++ /work/SRC/openSUSE:Factory/.e16.new/e16.changes 2017-06-17 
10:22:40.750376228 +0200
@@ -1,0 +2,10 @@
+Fri Jun 16 09:03:03 UTC 2017 - simonf.l...@suse.com
+
+- Fix license should be MIT-advertising and GPL-2.0+
+
+---
+Wed May 10 01:33:11 UTC 2017 - sfl...@suse.de
+
+- Update to 1.0.18 - warnings / autotools fixes
+
+---

Old:

  e16-1.0.17.tar.gz

New:

  e16-1.0.18.tar.xz



Other differences:
--
++ e16.spec ++
--- /var/tmp/diff_new_pack.TwfOL2/_old  2017-06-17 10:22:42.334152812 +0200
+++ /var/tmp/diff_new_pack.TwfOL2/_new  2017-06-17 10:22:42.338152247 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package e16
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # 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.17
+Version:1.0.18
 Release:0
 Summary:A Good-Looking Window Manager for the X Window System
-License:MIT and GPL-2.0+
+License:MIT-advertising and GPL-2.0+
 Group:  System/GUI/Other
 Url:http://www.enlightenment.org
-Source: e16-%{version}.tar.gz
+Source: e16-%{version}.tar.xz
 BuildRequires:  fdupes
 BuildRequires:  libtool
 BuildRequires:  pkgconfig
@@ -90,7 +90,7 @@
 policy, down to every last detail.
 
 %prep
-%setup -q -n e16-%{version}
+%setup -q
 
 %build
 %if 0%{?sles_version} != 10




commit e16 for openSUSE:Factory

2016-01-09 Thread h_root
Hello community,

here is the log from the commit of package e16 for openSUSE:Factory checked in 
at 2016-01-09 23:13:23

Comparing /work/SRC/openSUSE:Factory/e16 (Old)
 and  /work/SRC/openSUSE:Factory/.e16.new (New)


Package is "e16"

Changes:

--- /work/SRC/openSUSE:Factory/e16/e16.changes  2015-08-23 17:37:35.0 
+0200
+++ /work/SRC/openSUSE:Factory/.e16.new/e16.changes 2016-01-09 
23:13:34.0 +0100
@@ -1,0 +2,6 @@
+Fri Oct  9 12:24:51 UTC 2015 - sleep_wal...@opensuse.org
+
+- add cairo as build requirement
+- add harfbuzz as build requirement
+
+---



Other differences:
--
++ e16.spec ++
--- /var/tmp/diff_new_pack.HltLpE/_old  2016-01-09 23:13:35.0 +0100
+++ /var/tmp/diff_new_pack.HltLpE/_new  2016-01-09 23:13:35.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package e16
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -30,18 +30,32 @@
 Group:  System/GUI/Other
 Url:http://www.enlightenment.org
 Source: e16-%{version}.tar.gz
+BuildRequires:  fdupes
 BuildRequires:  libtool
 BuildRequires:  pkgconfig
+BuildRequires:  pkgconfig(gobject-2.0)
+BuildRequires:  pkgconfig(harfbuzz) >= 0.9.7
+BuildRequires:  pkgconfig(ice)
 BuildRequires:  pkgconfig(imlib2) >= 1.2.0
+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)
 Requires:   imlib2-loaders
+#conflict with the old enlightenment package
+Conflicts:  enlightenment >= 1.0.0
 Provides:   windowmanager
 Obsoletes:  enlight < %{version}
 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
-#conflict with the old enlightenment package
-Conflicts:  enlightenment >= 1.0.0
 %if %{enable_sound}
 BuildRequires:  esound-devel
 BuildRequires:  pkgconfig(alsa)
@@ -50,7 +64,9 @@
 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)




commit e16 for openSUSE:Factory

2015-08-23 Thread h_root
Hello community,

here is the log from the commit of package e16 for openSUSE:Factory checked in 
at 2015-08-23 15:43:39

Comparing /work/SRC/openSUSE:Factory/e16 (Old)
 and  /work/SRC/openSUSE:Factory/.e16.new (New)


Package is e16

Changes:

--- /work/SRC/openSUSE:Factory/e16/e16.changes  2014-10-19 19:29:11.0 
+0200
+++ /work/SRC/openSUSE:Factory/.e16.new/e16.changes 2015-08-23 
17:37:35.0 +0200
@@ -1,0 +2,5 @@
+Thu Aug  6 08:35:52 UTC 2015 - si...@simotek.net
+
+- update to 1.0.17 - bug fixes
+
+---

Old:

  e16-1.0.14.tar.gz

New:

  e16-1.0.17.tar.gz



Other differences:
--
++ e16.spec ++
--- /var/tmp/diff_new_pack.MxzY1M/_old  2015-08-23 17:37:36.0 +0200
+++ /var/tmp/diff_new_pack.MxzY1M/_new  2015-08-23 17:37:36.0 +0200
@@ -23,7 +23,7 @@
 %define enable_composite   1
 %define enable_pango   1
 Name:   e16
-Version:1.0.14
+Version:1.0.17
 Release:0
 Summary:A Good-Looking Window Manager for the X Window System
 License:MIT and GPL-2.0+

++ e16-1.0.14.tar.gz - e16-1.0.17.tar.gz ++
 89716 lines of diff (skipped)




commit e16 for openSUSE:Factory

2014-10-19 Thread h_root
Hello community,

here is the log from the commit of package e16 for openSUSE:Factory checked in 
at 2014-10-19 19:28:29

Comparing /work/SRC/openSUSE:Factory/e16 (Old)
 and  /work/SRC/openSUSE:Factory/.e16.new (New)


Package is e16

Changes:

--- /work/SRC/openSUSE:Factory/e16/e16.changes  2014-04-09 13:12:40.0 
+0200
+++ /work/SRC/openSUSE:Factory/.e16.new/e16.changes 2014-10-19 
19:29:11.0 +0200
@@ -1,0 +2,8 @@
+Sat Oct 18 23:53:23 UTC 2014 - crrodrig...@opensuse.org
+
+- Run spec-cleaner 
+- Discontinue use of metapackage xorg-x11-devel replacing it
+  by specific pkgconfig() requires.
+- Enable verbose build.
+
+---



Other differences:
--
++ e16.spec ++
--- /var/tmp/diff_new_pack.sFt9c7/_old  2014-10-19 19:29:12.0 +0200
+++ /var/tmp/diff_new_pack.sFt9c7/_new  2014-10-19 19:29:12.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package enlightenment
+# spec file for package e16
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,44 +16,52 @@
 #
 
 
-Name:   e16
 %define enable_sound   1
 %define enable_hints_gnome 0
 %define enable_zoom1
 %define enable_xrandr  1
 %define enable_composite   1
 %define enable_pango   1
+Name:   e16
+Version:1.0.14
+Release:0
 Summary:A Good-Looking Window Manager for the X Window System
 License:MIT and GPL-2.0+
 Group:  System/GUI/Other
 Url:http://www.enlightenment.org
-Version:1.0.14
-Release:0
-Requires:   imlib2-loaders
-BuildRequires:  imlib2-devel = 1.2.0
+Source: e16-%{version}.tar.gz
 BuildRequires:  libtool
 BuildRequires:  pkgconfig
-BuildRequires:  xorg-x11
-BuildRequires:  xorg-x11-devel
-%if %enable_sound
-BuildRequires:  alsa-devel
-BuildRequires:  esound-devel
-%endif
-%if %enable_pango
-BuildRequires:  pango-devel
-%endif
-%if %{?suse_version} = 1100
-BuildRequires:  fdupes
-%endif
-Source: e16-%{version}.tar.gz
+BuildRequires:  pkgconfig(imlib2) = 1.2.0
+Requires:   imlib2-loaders
 Provides:   windowmanager
 Obsoletes:  enlight  %{version}
 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
 #conflict with the old enlightenment package
 Conflicts: enlightenment = 1.0.0
-# don't use provides as that will cause issues with the new enlightenment 
(e18) package
-Obsoletes:enlightenment = 1.0.0
+%if %{enable_sound}
+BuildRequires:  esound-devel
+BuildRequires:  pkgconfig(alsa)
+%endif
+%if %{enable_pango}
+BuildRequires:  pkgconfig(pango)
+%endif
+BuildRequires:  fdupes
+BuildRequires:  pkgconfig(gobject-2.0)
+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
@@ -74,49 +82,49 @@
 %endif
 %configure \
 --disable-roothacklib \
-%if %enable_sound
+%if %{enable_sound}
--enable-sound \
 %else
--disable-sound \
 %endif
-%if %enable_hints_gnome
+%if %{enable_hints_gnome}
--enable-hints-gnome \
 %else
--disable-hints-gnome \
 %endif
-%if %enable_zoom
+%if %{enable_zoom}
--enable-zoom \
 %else
--disable-zoom \
 %endif
-%if %enable_xrandr
+%if %{enable_xrandr}
--enable-xrandr \
 %else
--disable-xrandr \
 %endif
-%if %enable_composite
+%if %{enable_composite}
--enable-composite \
 %else
--disable-composite \
 %endif
-%if %enable_pango
+%if %{enable_pango}
--enable-pango
 %else
--disable-pango
 %endif
-make %{?_smp_mflags}
+make %{?_smp_mflags} V=1
 
 %install
-make DESTDIR=$RPM_BUILD_ROOT \
- localedir=%{_prefix}/share/locale \
- gnulocaledir=%{_prefix}/share/locale \
+make DESTDIR=%{buildroot} \
+ localedir=%{_datadir}/locale \
+ gnulocaledir=%{_datadir}/locale \
  install
-find $RPM_BUILD_ROOT/usr/share/e16/themes -type d | xargs chmod 755
-find $RPM_BUILD_ROOT/usr/share/e16/themes -type f | xargs chmod 644
-rm 

commit e16 for openSUSE:Factory

2014-04-09 Thread h_root
Hello community,

here is the log from the commit of package e16 for openSUSE:Factory checked in 
at 2014-04-09 13:12:38

Comparing /work/SRC/openSUSE:Factory/e16 (Old)
 and  /work/SRC/openSUSE:Factory/.e16.new (New)


Package is e16

Changes:

--- /work/SRC/openSUSE:Factory/e16/e16.changes  2014-02-02 22:19:22.0 
+0100
+++ /work/SRC/openSUSE:Factory/.e16.new/e16.changes 2014-04-09 
13:12:40.0 +0200
@@ -1,0 +2,14 @@
+Tue Apr  8 03:54:16 UTC 2014 - si...@simotek.net
+
+- Update to 1.0.14 - Release Notes Below
+
+
+There are apparently still a couple of e16 users out there, so
+
+e16-1.0.14 is available for download:
+http://sourceforge.net/projects/enlightenment/files/
+
+There are no major changes since e16-1.0.13.
+Mostly a couple of minor bug fixes and some internal reworkings.
+
+---

Old:

  e16-1.0.13.tar.bz2

New:

  e16-1.0.14.tar.gz



Other differences:
--
++ e16.spec ++
--- /var/tmp/diff_new_pack.4clfMm/_old  2014-04-09 13:12:40.0 +0200
+++ /var/tmp/diff_new_pack.4clfMm/_new  2014-04-09 13:12:40.0 +0200
@@ -27,7 +27,7 @@
 License:MIT and GPL-2.0+
 Group:  System/GUI/Other
 Url:http://www.enlightenment.org
-Version:1.0.13
+Version:1.0.14
 Release:0
 Requires:   imlib2-loaders
 BuildRequires:  imlib2-devel = 1.2.0
@@ -45,7 +45,7 @@
 %if %{?suse_version} = 1100
 BuildRequires:  fdupes
 %endif
-Source: e16-%{version}.tar.bz2
+Source: e16-%{version}.tar.gz
 Provides:   windowmanager
 Obsoletes:  enlight  %{version}
 Provides:   enlight = %{version}

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org