[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/, xfce-base/xfwm4/files/

2023-03-17 Thread Michał Górny
commit: 596b0066414e9478ce81ae67f175fbbe07a99108
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Mar 17 10:48:22 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar 17 10:50:19 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=596b0066

xfce-base/xfwm4: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest   |  2 -
 .../files/xfwm4-4.16.1-gtk_frame_extents.patch | 56 
 xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild | 74 --
 xfce-base/xfwm4/xfwm4-4.17.2.ebuild| 74 --
 4 files changed, 206 deletions(-)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index fbfc53c25f63..7f7af9425bf4 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,3 +1 @@
-DIST xfwm4-4.16.1.tar.bz2 1201722 BLAKE2B 
4aae9b97095b423964a2ece7fe09b46ecfcea6688af6ab3b38ee34611cd68a7427597cb963b91b209d161c85aed552df15d005268bd8585d365b0cf63adf36b3
 SHA512 
f0d5d00e58202457d0d7d5f9772e7b2aa3f3339850065609baab7d379248a628d147464cc605698970134b87d58b7867b8c09d0a3a45ab84b2f3aa95be26f0b9
-DIST xfwm4-4.17.2.tar.bz2 1220699 BLAKE2B 
4bc011f17ee7fb662e4bb0c656056c45bfb2a07c4964cf9e7791fde35f5b2a072ed7ad8066305228c2af061caee8bf44488ffec0f98a0aba95d3d95fd30123d3
 SHA512 
2b0c45a5960fca4168431d8efdcaa6d6f22ad26949e40cbe54fb4895f185bb1180386ee61447a0255b3b723657a89b38e6f704d44490ab466be8631fd5494f62
 DIST xfwm4-4.18.0.tar.bz2 1220901 BLAKE2B 
3a3db6368063b94fa46407fbf2173021a91efff04ed3d11c757d3e785de5e70289ae03e138e95979b3801a781c05d5f84b86b29727171796e1b80f874865bb36
 SHA512 
1003bb1ca5254221a5d56ffcb51c12cdef1b17b9d252622c6b18f3d3fbcf9d6e0e66b5f61e0f6eae6601ea3e50a70be98320e60d6738b04e44879e6f4e6da34d

diff --git a/xfce-base/xfwm4/files/xfwm4-4.16.1-gtk_frame_extents.patch 
b/xfce-base/xfwm4/files/xfwm4-4.16.1-gtk_frame_extents.patch
deleted file mode 100644
index bb170d836b7f..
--- a/xfce-base/xfwm4/files/xfwm4-4.16.1-gtk_frame_extents.patch
+++ /dev/null
@@ -1,56 +0,0 @@
-From 488288f6e35d5d3dc077e87fe2ed83129692f62e Mon Sep 17 00:00:00 2001
-From: Olivier Fourdan 
-Date: Sun, 14 Nov 2021 11:00:55 +0100
-Subject: [PATCH] client: Handle removal of GTK_FRAME_EXTENTS
-
-Chromium and GOOGLE Chrome have now support for GTK_FRAME_EXTENTS.
-
-When maximizing a window, Chromium/Chrome simply removes the property
-on its toplevel rather than setting all values to 0.
-
-xfwm4 would simply ignore the property change because it could not read
-the values and therefore apply the old, wrong values.
-
-Fix xfwm4 to handle the property removal like an actual property change
-to 0.
-
-Signed-off-by: Olivier Fourdan 
-Closes: https://gitlab.xfce.org/xfce/xfwm4/-/issues/603

- src/client.c | 6 ++
- 1 file changed, 6 insertions(+)
-
-diff --git a/src/client.c b/src/client.c
-index 4e6affcfd..310cf90aa 100644
 a/src/client.c
-+++ b/src/client.c
-@@ -4200,6 +4200,7 @@ clientGetGtkFrameExtents (Client * c)
- DisplayInfo *display_info;
- gboolean value_changed = FALSE;
- gulong *extents;
-+unsigned long old_value;
- int nitems;
- int i;
- 
-@@ -4209,6 +4210,8 @@ clientGetGtkFrameExtents (Client * c)
- screen_info = c->screen_info;
- display_info = screen_info->display_info;
- extents = NULL;
-+
-+old_value = FLAG_TEST (c->flags, CLIENT_FLAG_HAS_FRAME_EXTENTS);
- FLAG_UNSET (c->flags, CLIENT_FLAG_HAS_FRAME_EXTENTS);
- 
- if (getCardinalList (display_info, c->window, GTK_FRAME_EXTENTS, 
, ))
-@@ -4232,6 +4235,9 @@ clientGetGtkFrameExtents (Client * c)
- XFree (extents);
- }
- 
-+/* Adding or removing the property also counts as a change */
-+value_changed |= (old_value ^ FLAG_TEST (c->flags, 
CLIENT_FLAG_HAS_FRAME_EXTENTS));
-+
- return value_changed;
- }
- 
--- 
-2.32.0
-

diff --git a/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild
deleted file mode 100644
index c39278ede9c4..
--- a/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit xdg-utils
-
-DESCRIPTION="Window manager for the Xfce desktop environment"
-HOMEPAGE="https://www.xfce.org/projects/;
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="opengl startup-notification +xcomposite +xpresent"
-
-RDEPEND=">=dev-libs/glib-2.20
-   >=x11-libs/gtk+-3.22:3
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXi
-   x11-libs/libXinerama
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   x11-libs/libXres
-   x11-libs/pango
-   >=x11-libs/libwnck-3.14:3
-   >=xfce-base/libxfce4util-4.10:=
-  

[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2023-03-17 Thread Arthur Zamarin
commit: c40c3f865f2c8f31575130d9a43752529162ad7d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Mar 17 08:56:03 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Mar 17 08:56:03 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c40c3f86

xfce-base/xfwm4: Stabilize 4.18.0 x86, #893064

Signed-off-by: Arthur Zamarin  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.18.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.18.0.ebuild 
b/xfce-base/xfwm4/xfwm4-4.18.0.ebuild
index 6b4bd671f283..e4ebfc6488ee 100644
--- a/xfce-base/xfwm4/xfwm4-4.18.0.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.18.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2023-03-15 Thread Michał Górny
commit: 4e2d9554ff58f75e333722fb97ee600342d02f3a
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 15 06:54:04 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 15 06:55:06 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e2d9554

xfce-base/xfwm4: Stabilize 4.18.0 ppc, #893064

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.18.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.18.0.ebuild 
b/xfce-base/xfwm4/xfwm4-4.18.0.ebuild
index cd0bb9ecd43a..6b4bd671f283 100644
--- a/xfce-base/xfwm4/xfwm4-4.18.0.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.18.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2023-02-03 Thread Sam James
commit: f4e3aeb7cc505a73d08518fa97caf382cc87d8fb
Author: Sam James  gentoo  org>
AuthorDate: Fri Feb  3 16:52:16 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Feb  3 16:52:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4e3aeb7

xfce-base/xfwm4: Stabilize 4.18.0 amd64, #893064

Signed-off-by: Sam James  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.18.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.18.0.ebuild 
b/xfce-base/xfwm4/xfwm4-4.18.0.ebuild
index 92707fe53e77..cd0bb9ecd43a 100644
--- a/xfce-base/xfwm4/xfwm4-4.18.0.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.18.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2023-02-03 Thread Arthur Zamarin
commit: 661a678b31fc6ec7da08f4dfb021c2664b6d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Feb  3 14:21:22 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Feb  3 14:21:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=661a678b

xfce-base/xfwm4: Stabilize 4.18.0 arm64, #893064

Signed-off-by: Arthur Zamarin  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.18.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.18.0.ebuild 
b/xfce-base/xfwm4/xfwm4-4.18.0.ebuild
index a2646fbd392c..92707fe53e77 100644
--- a/xfce-base/xfwm4/xfwm4-4.18.0.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.18.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2023-02-03 Thread Arthur Zamarin
commit: ce6a3ac2dc62052e1f1072f7e65236935d5e4a14
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Feb  3 14:20:34 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Feb  3 14:20:34 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce6a3ac2

xfce-base/xfwm4: Stabilize 4.18.0 ppc64, #893064

Signed-off-by: Arthur Zamarin  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.18.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.18.0.ebuild 
b/xfce-base/xfwm4/xfwm4-4.18.0.ebuild
index 64f0a7f3c601..a2646fbd392c 100644
--- a/xfce-base/xfwm4/xfwm4-4.18.0.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.18.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2023-02-03 Thread Arthur Zamarin
commit: e785402b774dfda524a87eb82c0c72fd87b51591
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Feb  3 13:31:31 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Feb  3 13:31:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e785402b

xfce-base/xfwm4: Stabilize 4.18.0 arm, #893064

Signed-off-by: Arthur Zamarin  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.18.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.18.0.ebuild 
b/xfce-base/xfwm4/xfwm4-4.18.0.ebuild
index 350c367a5f0b..64f0a7f3c601 100644
--- a/xfce-base/xfwm4/xfwm4-4.18.0.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.18.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2022-12-15 Thread Michał Górny
commit: 7d50336958010b91d6dd67a8675a093c62f636e1
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Dec 15 14:41:59 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Dec 15 15:03:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d503369

xfce-base/xfwm4: Bump to 4.18.0

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest|  1 +
 xfce-base/xfwm4/xfwm4-4.18.0.ebuild | 74 +
 2 files changed, 75 insertions(+)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index 68ff033d1b1c..fbfc53c25f63 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,2 +1,3 @@
 DIST xfwm4-4.16.1.tar.bz2 1201722 BLAKE2B 
4aae9b97095b423964a2ece7fe09b46ecfcea6688af6ab3b38ee34611cd68a7427597cb963b91b209d161c85aed552df15d005268bd8585d365b0cf63adf36b3
 SHA512 
f0d5d00e58202457d0d7d5f9772e7b2aa3f3339850065609baab7d379248a628d147464cc605698970134b87d58b7867b8c09d0a3a45ab84b2f3aa95be26f0b9
 DIST xfwm4-4.17.2.tar.bz2 1220699 BLAKE2B 
4bc011f17ee7fb662e4bb0c656056c45bfb2a07c4964cf9e7791fde35f5b2a072ed7ad8066305228c2af061caee8bf44488ffec0f98a0aba95d3d95fd30123d3
 SHA512 
2b0c45a5960fca4168431d8efdcaa6d6f22ad26949e40cbe54fb4895f185bb1180386ee61447a0255b3b723657a89b38e6f704d44490ab466be8631fd5494f62
+DIST xfwm4-4.18.0.tar.bz2 1220901 BLAKE2B 
3a3db6368063b94fa46407fbf2173021a91efff04ed3d11c757d3e785de5e70289ae03e138e95979b3801a781c05d5f84b86b29727171796e1b80f874865bb36
 SHA512 
1003bb1ca5254221a5d56ffcb51c12cdef1b17b9d252622c6b18f3d3fbcf9d6e0e66b5f61e0f6eae6601ea3e50a70be98320e60d6738b04e44879e6f4e6da34d

diff --git a/xfce-base/xfwm4/xfwm4-4.18.0.ebuild 
b/xfce-base/xfwm4/xfwm4-4.18.0.ebuild
new file mode 100644
index ..350c367a5f0b
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.18.0.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit xdg-utils
+
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="
+   https://docs.xfce.org/xfce/xfwm4/start
+   https://gitlab.xfce.org/xfce/xfwm4
+"
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl startup-notification +xcomposite +xpresent"
+
+DEPEND="
+   >=x11-libs/gtk+-3.24.0:3
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXi
+   x11-libs/libXinerama
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXres
+   x11-libs/pango
+   >=x11-libs/libwnck-3.14:3
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/xfconf-4.13:=
+   opengl? ( media-libs/libepoxy:=[X(+)] )
+   startup-notification? ( x11-libs/startup-notification )
+   xcomposite? (
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXfixes
+   )
+   xpresent? ( x11-libs/libXpresent )
+"
+RDEPEND="
+   ${DEPEND}
+"
+BDEPEND="
+   dev-libs/glib
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_configure() {
+   local myconf=(
+   $(use_enable opengl epoxy)
+   $(use_enable startup-notification)
+   $(use_enable xcomposite compositor)
+   $(use_enable xpresent)
+   --enable-randr
+   --enable-render
+   --enable-xi2
+   --enable-xsync
+   )
+
+   econf "${myconf[@]}"
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2022-12-15 Thread Michał Górny
commit: 539744f78ece3d163cb37b78414b33a7c9f0ecf9
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Dec 15 14:40:11 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Dec 15 15:03:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=539744f7

xfce-base/xfwm4: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest|  1 -
 xfce-base/xfwm4/xfwm4-4.17.1.ebuild | 78 -
 2 files changed, 79 deletions(-)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index 71dca1817fee..68ff033d1b1c 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,3 +1,2 @@
 DIST xfwm4-4.16.1.tar.bz2 1201722 BLAKE2B 
4aae9b97095b423964a2ece7fe09b46ecfcea6688af6ab3b38ee34611cd68a7427597cb963b91b209d161c85aed552df15d005268bd8585d365b0cf63adf36b3
 SHA512 
f0d5d00e58202457d0d7d5f9772e7b2aa3f3339850065609baab7d379248a628d147464cc605698970134b87d58b7867b8c09d0a3a45ab84b2f3aa95be26f0b9
-DIST xfwm4-4.17.1.tar.bz2 1216851 BLAKE2B 
7e9cc7b8c40d6f8b4945edc3f5b6663805e9b2ca7dc216c97e69431859d61fbdccc2833adb8cd171add2ef37bee85bafb983aa2ca048d6a1151a85e69debe6a4
 SHA512 
ebbf47630e56ff4438bfa642864dbc91fec9b35951489dd9a7b5ce12b6115a09314bfa6fe3ebd870fdde9cd31768483cd4098e6e36c95423711cda59b00703c2
 DIST xfwm4-4.17.2.tar.bz2 1220699 BLAKE2B 
4bc011f17ee7fb662e4bb0c656056c45bfb2a07c4964cf9e7791fde35f5b2a072ed7ad8066305228c2af061caee8bf44488ffec0f98a0aba95d3d95fd30123d3
 SHA512 
2b0c45a5960fca4168431d8efdcaa6d6f22ad26949e40cbe54fb4895f185bb1180386ee61447a0255b3b723657a89b38e6f704d44490ab466be8631fd5494f62

diff --git a/xfce-base/xfwm4/xfwm4-4.17.1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.17.1.ebuild
deleted file mode 100644
index 736f16fbe361..
--- a/xfce-base/xfwm4/xfwm4-4.17.1.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit xdg-utils
-
-DESCRIPTION="Window manager for the Xfce desktop environment"
-HOMEPAGE="
-   https://docs.xfce.org/xfce/xfwm4/start
-   https://gitlab.xfce.org/xfce/xfwm4
-"
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="opengl startup-notification +xcomposite +xpresent"
-
-RDEPEND="
-   >=dev-libs/glib-2.20
-   >=x11-libs/gtk+-3.22:3
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXi
-   x11-libs/libXinerama
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   x11-libs/libXres
-   x11-libs/pango
-   >=x11-libs/libwnck-3.14:3
-   >=xfce-base/libxfce4util-4.10:=
-   >=xfce-base/libxfce4ui-4.12:=
-   >=xfce-base/xfconf-4.13:=
-   opengl? ( media-libs/libepoxy:=[X(+)] )
-   startup-notification? ( x11-libs/startup-notification )
-   xcomposite? (
-   x11-libs/libXcomposite
-   x11-libs/libXdamage
-   x11-libs/libXfixes
-   )
-   xpresent? ( x11-libs/libXpresent )
-"
-# libICE/libSM: not really used anywhere but checked by configure
-#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
-DEPEND="
-   ${RDEPEND}
-   x11-libs/libICE
-   x11-libs/libSM
-"
-BDEPEND="
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-src_configure() {
-   local myconf=(
-   $(use_enable opengl epoxy)
-   $(use_enable startup-notification)
-   $(use_enable xcomposite compositor)
-   $(use_enable xpresent)
-   --enable-randr
-   --enable-render
-   --enable-xi2
-   --enable-xsync
-   )
-
-   econf "${myconf[@]}"
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2022-12-01 Thread Michał Górny
commit: dd0e4c8cf3f28cc4f9542f0d63e5cc0349f8acd4
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Dec  1 13:47:08 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Dec  1 13:47:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd0e4c8c

xfce-base/xfwm4: Bump to 4.17.2

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest|  1 +
 xfce-base/xfwm4/xfwm4-4.17.2.ebuild | 74 +
 2 files changed, 75 insertions(+)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index ecdb696b29e6..71dca1817fee 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,2 +1,3 @@
 DIST xfwm4-4.16.1.tar.bz2 1201722 BLAKE2B 
4aae9b97095b423964a2ece7fe09b46ecfcea6688af6ab3b38ee34611cd68a7427597cb963b91b209d161c85aed552df15d005268bd8585d365b0cf63adf36b3
 SHA512 
f0d5d00e58202457d0d7d5f9772e7b2aa3f3339850065609baab7d379248a628d147464cc605698970134b87d58b7867b8c09d0a3a45ab84b2f3aa95be26f0b9
 DIST xfwm4-4.17.1.tar.bz2 1216851 BLAKE2B 
7e9cc7b8c40d6f8b4945edc3f5b6663805e9b2ca7dc216c97e69431859d61fbdccc2833adb8cd171add2ef37bee85bafb983aa2ca048d6a1151a85e69debe6a4
 SHA512 
ebbf47630e56ff4438bfa642864dbc91fec9b35951489dd9a7b5ce12b6115a09314bfa6fe3ebd870fdde9cd31768483cd4098e6e36c95423711cda59b00703c2
+DIST xfwm4-4.17.2.tar.bz2 1220699 BLAKE2B 
4bc011f17ee7fb662e4bb0c656056c45bfb2a07c4964cf9e7791fde35f5b2a072ed7ad8066305228c2af061caee8bf44488ffec0f98a0aba95d3d95fd30123d3
 SHA512 
2b0c45a5960fca4168431d8efdcaa6d6f22ad26949e40cbe54fb4895f185bb1180386ee61447a0255b3b723657a89b38e6f704d44490ab466be8631fd5494f62

diff --git a/xfce-base/xfwm4/xfwm4-4.17.2.ebuild 
b/xfce-base/xfwm4/xfwm4-4.17.2.ebuild
new file mode 100644
index ..b42e4331c03c
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.17.2.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit xdg-utils
+
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="
+   https://docs.xfce.org/xfce/xfwm4/start
+   https://gitlab.xfce.org/xfce/xfwm4
+"
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl startup-notification +xcomposite +xpresent"
+
+DEPEND="
+   >=dev-libs/glib-2.20
+   >=x11-libs/gtk+-3.22:3
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXi
+   x11-libs/libXinerama
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXres
+   x11-libs/pango
+   >=x11-libs/libwnck-3.14:3
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/xfconf-4.13:=
+   opengl? ( media-libs/libepoxy:=[X(+)] )
+   startup-notification? ( x11-libs/startup-notification )
+   xcomposite? (
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXfixes
+   )
+   xpresent? ( x11-libs/libXpresent )
+"
+RDEPEND="
+   ${DEPEND}
+"
+BDEPEND="
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_configure() {
+   local myconf=(
+   $(use_enable opengl epoxy)
+   $(use_enable startup-notification)
+   $(use_enable xcomposite compositor)
+   $(use_enable xpresent)
+   --enable-randr
+   --enable-render
+   --enable-xi2
+   --enable-xsync
+   )
+
+   econf "${myconf[@]}"
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2022-11-01 Thread Michał Górny
commit: c833316526a9d45119a630a1fff463b15fd7aeb5
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Nov  1 12:30:10 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Nov  1 12:35:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8333165

xfce-base/xfwm4: Bump to 4.17.1

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest|  1 +
 xfce-base/xfwm4/xfwm4-4.17.1.ebuild | 78 +
 2 files changed, 79 insertions(+)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index f575db376221..ecdb696b29e6 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1 +1,2 @@
 DIST xfwm4-4.16.1.tar.bz2 1201722 BLAKE2B 
4aae9b97095b423964a2ece7fe09b46ecfcea6688af6ab3b38ee34611cd68a7427597cb963b91b209d161c85aed552df15d005268bd8585d365b0cf63adf36b3
 SHA512 
f0d5d00e58202457d0d7d5f9772e7b2aa3f3339850065609baab7d379248a628d147464cc605698970134b87d58b7867b8c09d0a3a45ab84b2f3aa95be26f0b9
+DIST xfwm4-4.17.1.tar.bz2 1216851 BLAKE2B 
7e9cc7b8c40d6f8b4945edc3f5b6663805e9b2ca7dc216c97e69431859d61fbdccc2833adb8cd171add2ef37bee85bafb983aa2ca048d6a1151a85e69debe6a4
 SHA512 
ebbf47630e56ff4438bfa642864dbc91fec9b35951489dd9a7b5ce12b6115a09314bfa6fe3ebd870fdde9cd31768483cd4098e6e36c95423711cda59b00703c2

diff --git a/xfce-base/xfwm4/xfwm4-4.17.1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.17.1.ebuild
new file mode 100644
index ..736f16fbe361
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.17.1.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit xdg-utils
+
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="
+   https://docs.xfce.org/xfce/xfwm4/start
+   https://gitlab.xfce.org/xfce/xfwm4
+"
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl startup-notification +xcomposite +xpresent"
+
+RDEPEND="
+   >=dev-libs/glib-2.20
+   >=x11-libs/gtk+-3.22:3
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXi
+   x11-libs/libXinerama
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXres
+   x11-libs/pango
+   >=x11-libs/libwnck-3.14:3
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/xfconf-4.13:=
+   opengl? ( media-libs/libepoxy:=[X(+)] )
+   startup-notification? ( x11-libs/startup-notification )
+   xcomposite? (
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXfixes
+   )
+   xpresent? ( x11-libs/libXpresent )
+"
+# libICE/libSM: not really used anywhere but checked by configure
+#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
+DEPEND="
+   ${RDEPEND}
+   x11-libs/libICE
+   x11-libs/libSM
+"
+BDEPEND="
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_configure() {
+   local myconf=(
+   $(use_enable opengl epoxy)
+   $(use_enable startup-notification)
+   $(use_enable xcomposite compositor)
+   $(use_enable xpresent)
+   --enable-randr
+   --enable-render
+   --enable-xi2
+   --enable-xsync
+   )
+
+   econf "${myconf[@]}"
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2022-08-28 Thread WANG Xuerui
commit: f4a3fb926b86b12c65ba60c469c897cb59ce03f0
Author: WANG Xuerui  gentoo  org>
AuthorDate: Sun Aug 28 06:45:49 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Sun Aug 28 06:48:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4a3fb92

xfce-base/xfwm4: keyword 4.16.1-r1 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild
index 874b0ee69112..c39278ede9c4 100644
--- a/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2021-11-24 Thread Michał Górny
commit: d3f0590887d79cd9f9534cac187699855cf644fa
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 24 18:11:55 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 24 18:11:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3f05908

xfce-base/xfwm4: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.16.1.ebuild | 70 -
 1 file changed, 70 deletions(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.16.1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.16.1.ebuild
deleted file mode 100644
index e32d02171cb1..
--- a/xfce-base/xfwm4/xfwm4-4.16.1.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit xdg-utils
-
-DESCRIPTION="Window manager for the Xfce desktop environment"
-HOMEPAGE="https://www.xfce.org/projects/;
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="opengl startup-notification +xcomposite +xpresent"
-
-RDEPEND=">=dev-libs/glib-2.20
-   >=x11-libs/gtk+-3.22:3
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXi
-   x11-libs/libXinerama
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   x11-libs/libXres
-   x11-libs/pango
-   >=x11-libs/libwnck-3.14:3
-   >=xfce-base/libxfce4util-4.10:=
-   >=xfce-base/libxfce4ui-4.12:=
-   >=xfce-base/xfconf-4.13:=
-   opengl? ( media-libs/libepoxy:=[X(+)] )
-   startup-notification? ( x11-libs/startup-notification )
-   xcomposite? (
-   x11-libs/libXcomposite
-   x11-libs/libXdamage
-   x11-libs/libXfixes
-   )
-   xpresent? ( x11-libs/libXpresent )"
-# libICE/libSM: not really used anywhere but checked by configure
-#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
-DEPEND="${RDEPEND}
-   x11-libs/libICE
-   x11-libs/libSM"
-BDEPEND="
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig"
-
-src_configure() {
-   local myconf=(
-   $(use_enable opengl epoxy)
-   $(use_enable startup-notification)
-   $(use_enable xcomposite compositor)
-   $(use_enable xpresent)
-   --enable-randr
-   --enable-render
-   --enable-xi2
-   --enable-xsync
-   )
-
-   econf "${myconf[@]}"
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2021-11-24 Thread Sam James
commit: c58d41d0488e4c7852e46e65187b85315efa053f
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 24 16:45:44 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 24 16:45:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c58d41d0

xfce-base/xfwm4: Stabilize 4.16.1-r1 amd64, #826938

Signed-off-by: Sam James  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild
index 93a69c560dac..874b0ee69112 100644
--- a/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~sparc 
x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2021-11-23 Thread Agostino Sarubbo
commit: 1c2bf76f0bea4e406a901165063f39fc62071804
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Nov 24 07:57:54 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Nov 24 07:57:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c2bf76f

xfce-base/xfwm4: x86 stable wrt bug #826938

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild
index b63c904a08ee..93a69c560dac 100644
--- a/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~sparc 
~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~sparc 
x86 ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2021-11-23 Thread Sam James
commit: 6b2f4885ed2bfc3a43c3baae077bc3a8d07caa5a
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 23 21:38:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 23 21:38:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b2f4885

xfce-base/xfwm4: Stabilize 4.16.1-r1 ppc, #826938

Signed-off-by: Sam James  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild
index b723d9059699..b63c904a08ee 100644
--- a/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~sparc 
~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~sparc 
~x86 ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2021-11-23 Thread Sam James
commit: 214da8f09083338027eb3553a871f5547361d385
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 23 21:38:26 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 23 21:38:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=214da8f0

xfce-base/xfwm4: Stabilize 4.16.1-r1 ppc64, #826938

Signed-off-by: Sam James  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild
index ad6614bbb711..b723d9059699 100644
--- a/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc 
~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~sparc 
~x86 ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2021-11-23 Thread Sam James
commit: 0695a197f63a47b88a224fbd68ad2685bc58b970
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 23 21:36:19 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 23 21:36:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0695a197

xfce-base/xfwm4: Stabilize 4.16.1-r1 arm64, #826938

Signed-off-by: Sam James  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild
index 7797f12f1808..ad6614bbb711 100644
--- a/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc 
~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc 
~x86 ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2021-11-23 Thread Sam James
commit: fad08942e85d84866dea0c77b8d30f0e8402c9c9
Author: Sam James  gentoo  org>
AuthorDate: Tue Nov 23 17:01:40 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Nov 23 17:01:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fad08942

xfce-base/xfwm4: Stabilize 4.16.1-r1 arm, #826938

Signed-off-by: Sam James  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild
index 485538b1b413..7797f12f1808 100644
--- a/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc 
~x86 ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/, xfce-base/xfwm4/files/

2021-11-18 Thread Stephan Hartmann
commit: 6a48f9aa81348de4240df10eb44933acd5348412
Author: Stephan Hartmann  gentoo  org>
AuthorDate: Thu Nov 18 17:05:34 2021 +
Commit: Stephan Hartmann  gentoo  org>
CommitDate: Thu Nov 18 17:05:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a48f9aa

xfce-base/xfwm4: add patch for handling GTK_FRAME_EXTENTS

Bug: https://bugs.gentoo.org/819771
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Stephan Hartmann  gentoo.org>

 .../files/xfwm4-4.16.1-gtk_frame_extents.patch | 56 
 xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild | 74 ++
 2 files changed, 130 insertions(+)

diff --git a/xfce-base/xfwm4/files/xfwm4-4.16.1-gtk_frame_extents.patch 
b/xfce-base/xfwm4/files/xfwm4-4.16.1-gtk_frame_extents.patch
new file mode 100644
index ..bb170d836b7f
--- /dev/null
+++ b/xfce-base/xfwm4/files/xfwm4-4.16.1-gtk_frame_extents.patch
@@ -0,0 +1,56 @@
+From 488288f6e35d5d3dc077e87fe2ed83129692f62e Mon Sep 17 00:00:00 2001
+From: Olivier Fourdan 
+Date: Sun, 14 Nov 2021 11:00:55 +0100
+Subject: [PATCH] client: Handle removal of GTK_FRAME_EXTENTS
+
+Chromium and GOOGLE Chrome have now support for GTK_FRAME_EXTENTS.
+
+When maximizing a window, Chromium/Chrome simply removes the property
+on its toplevel rather than setting all values to 0.
+
+xfwm4 would simply ignore the property change because it could not read
+the values and therefore apply the old, wrong values.
+
+Fix xfwm4 to handle the property removal like an actual property change
+to 0.
+
+Signed-off-by: Olivier Fourdan 
+Closes: https://gitlab.xfce.org/xfce/xfwm4/-/issues/603
+---
+ src/client.c | 6 ++
+ 1 file changed, 6 insertions(+)
+
+diff --git a/src/client.c b/src/client.c
+index 4e6affcfd..310cf90aa 100644
+--- a/src/client.c
 b/src/client.c
+@@ -4200,6 +4200,7 @@ clientGetGtkFrameExtents (Client * c)
+ DisplayInfo *display_info;
+ gboolean value_changed = FALSE;
+ gulong *extents;
++unsigned long old_value;
+ int nitems;
+ int i;
+ 
+@@ -4209,6 +4210,8 @@ clientGetGtkFrameExtents (Client * c)
+ screen_info = c->screen_info;
+ display_info = screen_info->display_info;
+ extents = NULL;
++
++old_value = FLAG_TEST (c->flags, CLIENT_FLAG_HAS_FRAME_EXTENTS);
+ FLAG_UNSET (c->flags, CLIENT_FLAG_HAS_FRAME_EXTENTS);
+ 
+ if (getCardinalList (display_info, c->window, GTK_FRAME_EXTENTS, 
, ))
+@@ -4232,6 +4235,9 @@ clientGetGtkFrameExtents (Client * c)
+ XFree (extents);
+ }
+ 
++/* Adding or removing the property also counts as a change */
++value_changed |= (old_value ^ FLAG_TEST (c->flags, 
CLIENT_FLAG_HAS_FRAME_EXTENTS));
++
+ return value_changed;
+ }
+ 
+-- 
+2.32.0
+

diff --git a/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild
new file mode 100644
index ..485538b1b413
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.16.1-r1.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xdg-utils
+
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="https://www.xfce.org/projects/;
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl startup-notification +xcomposite +xpresent"
+
+RDEPEND=">=dev-libs/glib-2.20
+   >=x11-libs/gtk+-3.22:3
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXi
+   x11-libs/libXinerama
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXres
+   x11-libs/pango
+   >=x11-libs/libwnck-3.14:3
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/xfconf-4.13:=
+   opengl? ( media-libs/libepoxy:=[X(+)] )
+   startup-notification? ( x11-libs/startup-notification )
+   xcomposite? (
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXfixes
+   )
+   xpresent? ( x11-libs/libXpresent )"
+# libICE/libSM: not really used anywhere but checked by configure
+#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
+DEPEND="${RDEPEND}
+   x11-libs/libICE
+   x11-libs/libSM"
+BDEPEND="
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig"
+
+PATCHES=(
+   "${FILESDIR}/${P}-gtk_frame_extents.patch" # bug 819771
+)
+
+src_configure() {
+   local myconf=(
+   $(use_enable opengl epoxy)
+   $(use_enable startup-notification)
+   $(use_enable xcomposite compositor)
+   $(use_enable xpresent)
+   --enable-randr
+   --enable-render
+   --enable-xi2
+   --enable-xsync
+   )
+
+   econf "${myconf[@]}"
+}
+
+pkg_postinst() {

[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2021-05-28 Thread Yixun Lan
commit: edf4ba539976d70d8a67e96d8ebda817132ea4cf
Author: Yixun Lan  gentoo  org>
AuthorDate: Fri May 28 15:46:24 2021 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Fri May 28 23:22:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edf4ba53

xfce-base/xfwm4: add riscv keyword

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Yixun Lan  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.16.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.16.1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.16.1.ebuild
index 96235cda298..e32d02171cb 100644
--- a/xfce-base/xfwm4/xfwm4-4.16.1.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.16.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2021-04-12 Thread Sam James
commit: 042e7dc81f270e90174bab71406c725b068bc87e
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr 12 23:26:07 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr 12 23:32:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=042e7dc8

xfce-base/xfwm4: Stabilize 4.16.1 arm64, #776703

Signed-off-by: Sam James  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.16.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.16.1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.16.1.ebuild
index 5315650f598..96235cda298 100644
--- a/xfce-base/xfwm4/xfwm4-4.16.1.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.16.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2021-02-18 Thread Michał Górny
commit: 94cd7be10e8009fe0e66f81387ede4f6eccc85ae
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb 19 00:56:58 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Feb 19 01:03:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94cd7be1

xfce-base/xfwm4: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest|  1 -
 xfce-base/xfwm4/xfwm4-4.14.6.ebuild | 70 -
 2 files changed, 71 deletions(-)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index 38da6c2173d..f575db37622 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,2 +1 @@
-DIST xfwm4-4.14.6.tar.bz2 1167818 BLAKE2B 
2315843da3684ea069d8361d1d787634052da5449d7aeb4ba6b219cd46ae4b7b6007becca316a5ab552fe4432baab3efa6a23793b68a00d06c9fbe3d1164080a
 SHA512 
1e3cc3e976250e311607d12e1a51047132584d6e8cd8979e3d5a85a3cc49e420453e3812b2d8a8f6268f3d6f1b44f4df2b57b7e1395d02ec63ae82a55bb9d4ee
 DIST xfwm4-4.16.1.tar.bz2 1201722 BLAKE2B 
4aae9b97095b423964a2ece7fe09b46ecfcea6688af6ab3b38ee34611cd68a7427597cb963b91b209d161c85aed552df15d005268bd8585d365b0cf63adf36b3
 SHA512 
f0d5d00e58202457d0d7d5f9772e7b2aa3f3339850065609baab7d379248a628d147464cc605698970134b87d58b7867b8c09d0a3a45ab84b2f3aa95be26f0b9

diff --git a/xfce-base/xfwm4/xfwm4-4.14.6.ebuild 
b/xfce-base/xfwm4/xfwm4-4.14.6.ebuild
deleted file mode 100644
index 58a16b960ec..000
--- a/xfce-base/xfwm4/xfwm4-4.14.6.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit xdg-utils
-
-DESCRIPTION="Window manager for the Xfce desktop environment"
-HOMEPAGE="https://www.xfce.org/projects/;
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="opengl startup-notification +xcomposite +xpresent"
-
-RDEPEND=">=dev-libs/glib-2.20
-   >=x11-libs/gtk+-3.20:3
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXinerama
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   x11-libs/libXres
-   x11-libs/pango
-   >=x11-libs/libwnck-3.14:3
-   >=xfce-base/libxfce4util-4.10:=
-   >=xfce-base/libxfce4ui-4.12:=
-   >=xfce-base/xfconf-4.13:=
-   opengl? ( media-libs/libepoxy:=[X(+)] )
-   startup-notification? ( x11-libs/startup-notification )
-   xpresent? ( x11-libs/libXpresent )
-   xcomposite? (
-   x11-libs/libXcomposite
-   x11-libs/libXdamage
-   x11-libs/libXfixes
-   )"
-# libICE/libSM: not really used anywhere but checked by configure
-#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
-DEPEND="${RDEPEND}
-   dev-util/intltool
-   sys-devel/gettext
-   x11-libs/libICE
-   x11-libs/libSM
-   xfce-base/exo
-   virtual/pkgconfig"
-
-DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
-
-src_configure() {
-   local myconf=(
-   $(use_enable opengl epoxy)
-   $(use_enable startup-notification)
-   --enable-xsync
-   --enable-render
-   --enable-randr
-   $(use_enable xpresent)
-   $(use_enable xcomposite compositor)
-   )
-
-   econf "${myconf[@]}"
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2021-02-18 Thread Sam James
commit: 3785a48bf52d69c9a663462b98fb55eeac84036b
Author: Sam James  gentoo  org>
AuthorDate: Thu Feb 18 22:08:03 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Feb 18 22:08:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3785a48b

xfce-base/xfwm4: Stabilize 4.16.1 ppc, #769368

Signed-off-by: Sam James  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.16.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.16.1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.16.1.ebuild
index 89b6c3bf2d8..5315650f598 100644
--- a/xfce-base/xfwm4/xfwm4-4.16.1.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.16.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2021-02-17 Thread Sam James
commit: 3b4437b82fea4b18837df12c78328cb160a2761c
Author: Sam James  gentoo  org>
AuthorDate: Thu Feb 18 07:24:25 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Feb 18 07:26:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b4437b8

xfce-base/xfwm4: Stabilize 4.16.1 arm, #769368

Signed-off-by: Sam James  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.16.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.16.1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.16.1.ebuild
index 245aa07b6ea..89b6c3bf2d8 100644
--- a/xfce-base/xfwm4/xfwm4-4.16.1.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.16.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2021-02-07 Thread Sam James
commit: 64cca88c45b0d07f294ea85acbf131e8d47f18e0
Author: Sam James  gentoo  org>
AuthorDate: Mon Feb  8 06:10:59 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Feb  8 06:11:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64cca88c

xfce-base/xfwm4: Stabilize 4.16.1 ppc64, #769368

Signed-off-by: Sam James  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.16.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.16.1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.16.1.ebuild
index 5c635cee067..245aa07b6ea 100644
--- a/xfce-base/xfwm4/xfwm4-4.16.1.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.16.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2021-02-07 Thread Sam James
commit: 10e668d3ca08d03c088ec7c543fca0a7efe2cdcc
Author: Sam James  gentoo  org>
AuthorDate: Mon Feb  8 06:05:09 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Feb  8 06:05:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10e668d3

xfce-base/xfwm4: Stabilize 4.16.1 amd64, #769368

Signed-off-by: Sam James  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.16.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.16.1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.16.1.ebuild
index 9291eff3b8e..5c635cee067 100644
--- a/xfce-base/xfwm4/xfwm4-4.16.1.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.16.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2021-01-18 Thread Michał Górny
commit: 48fd00ecaaf22c2f2e3d730b4bb046c952acbc21
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan 18 20:25:39 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan 18 20:27:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48fd00ec

xfce-base/xfwm4: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest|  2 --
 xfce-base/xfwm4/xfwm4-4.15.3.ebuild | 68 
 xfce-base/xfwm4/xfwm4-4.16.0.ebuild | 69 -
 3 files changed, 139 deletions(-)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index 5c7156126f4..38da6c2173d 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,4 +1,2 @@
 DIST xfwm4-4.14.6.tar.bz2 1167818 BLAKE2B 
2315843da3684ea069d8361d1d787634052da5449d7aeb4ba6b219cd46ae4b7b6007becca316a5ab552fe4432baab3efa6a23793b68a00d06c9fbe3d1164080a
 SHA512 
1e3cc3e976250e311607d12e1a51047132584d6e8cd8979e3d5a85a3cc49e420453e3812b2d8a8f6268f3d6f1b44f4df2b57b7e1395d02ec63ae82a55bb9d4ee
-DIST xfwm4-4.15.3.tar.bz2 1180308 BLAKE2B 
e76651e58bdb6b4c4b15c6dd49d5df16b40729fc41302d0eff336194d84a8b467c9b6b2f37094657b0555c25d87d92744991dfc00127638468b23eae31088475
 SHA512 
6ca7faba7fdd225d1c91e7c217200eebf271abc6058f3b9a46ce7bce8f31028c99e454412afa4ca441a5b30decb0d33a03ca5caeed7e4b20a29efa855af8328d
-DIST xfwm4-4.16.0.tar.bz2 1200929 BLAKE2B 
2df17028287ff3e4fea7ea082ea39545a05fba5089fbaea1764bbb59ff550d9dbf14322246d9dcd455bc589055c75b7941f08f6ab4a59fe2089001236ab8677b
 SHA512 
f21e773b34092cadd86713373e59880cf68020cbfa3d16ab651f48a8a051a38925428358e0bca5ffc346eb62dc6cc53c87a9e6895d7e613dadf3cdac499dae02
 DIST xfwm4-4.16.1.tar.bz2 1201722 BLAKE2B 
4aae9b97095b423964a2ece7fe09b46ecfcea6688af6ab3b38ee34611cd68a7427597cb963b91b209d161c85aed552df15d005268bd8585d365b0cf63adf36b3
 SHA512 
f0d5d00e58202457d0d7d5f9772e7b2aa3f3339850065609baab7d379248a628d147464cc605698970134b87d58b7867b8c09d0a3a45ab84b2f3aa95be26f0b9

diff --git a/xfce-base/xfwm4/xfwm4-4.15.3.ebuild 
b/xfce-base/xfwm4/xfwm4-4.15.3.ebuild
deleted file mode 100644
index bf9677a0086..000
--- a/xfce-base/xfwm4/xfwm4-4.15.3.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit xdg-utils
-
-DESCRIPTION="Window manager for the Xfce desktop environment"
-HOMEPAGE="https://www.xfce.org/projects/;
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="opengl startup-notification +xcomposite +xpresent"
-
-RDEPEND=">=dev-libs/glib-2.20
-   >=x11-libs/gtk+-3.20:3
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXinerama
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   x11-libs/libXres
-   x11-libs/pango
-   >=x11-libs/libwnck-3.14:3
-   >=xfce-base/libxfce4util-4.10:=
-   >=xfce-base/libxfce4ui-4.12:=
-   >=xfce-base/xfconf-4.13:=
-   opengl? ( media-libs/libepoxy:=[X(+)] )
-   startup-notification? ( x11-libs/startup-notification )
-   xpresent? ( x11-libs/libXpresent )
-   xcomposite? (
-   x11-libs/libXcomposite
-   x11-libs/libXdamage
-   x11-libs/libXfixes
-   )"
-# libICE/libSM: not really used anywhere but checked by configure
-#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
-DEPEND="${RDEPEND}
-   dev-util/intltool
-   sys-devel/gettext
-   x11-libs/libICE
-   x11-libs/libSM
-   xfce-base/exo
-   virtual/pkgconfig"
-
-src_configure() {
-   local myconf=(
-   $(use_enable opengl epoxy)
-   $(use_enable startup-notification)
-   --enable-xsync
-   --enable-render
-   --enable-randr
-   $(use_enable xpresent)
-   $(use_enable xcomposite compositor)
-   )
-
-   econf "${myconf[@]}"
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-}

diff --git a/xfce-base/xfwm4/xfwm4-4.16.0.ebuild 
b/xfce-base/xfwm4/xfwm4-4.16.0.ebuild
deleted file mode 100644
index 26cb91f8158..000
--- a/xfce-base/xfwm4/xfwm4-4.16.0.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit xdg-utils
-
-DESCRIPTION="Window manager for the Xfce desktop environment"
-HOMEPAGE="https://www.xfce.org/projects/;
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="opengl startup-notification +xcomposite +xpresent"
-

[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2021-01-16 Thread Michał Górny
commit: 15bd01769228fe8a1503625bb188a86dcfebe443
Author: David Michael  gmail  com>
AuthorDate: Sat Jan 16 17:41:39 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jan 16 19:03:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15bd0176

xfce-base/xfwm4: restore xcomposite USE flag

Closes: https://bugs.gentoo.org/765523
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: David Michael  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/19079
Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.16.1.ebuild | 12 +++-
 1 file changed, 7 insertions(+), 5 deletions(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.16.1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.16.1.ebuild
index 52677c1a05f..3e1e46eded7 100644
--- a/xfce-base/xfwm4/xfwm4-4.16.1.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.16.1.ebuild
@@ -12,15 +12,12 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="opengl startup-notification +xpresent"
+IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20
>=x11-libs/gtk+-3.22:3
x11-libs/libX11
-   x11-libs/libXcomposite
-   x11-libs/libXdamage
x11-libs/libXext
-   x11-libs/libXfixes
x11-libs/libXi
x11-libs/libXinerama
x11-libs/libXrandr
@@ -33,6 +30,11 @@ RDEPEND=">=dev-libs/glib-2.20
>=xfce-base/xfconf-4.13:=
opengl? ( media-libs/libepoxy:=[X(+)] )
startup-notification? ( x11-libs/startup-notification )
+   xcomposite? (
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXfixes
+   )
xpresent? ( x11-libs/libXpresent )"
 # libICE/libSM: not really used anywhere but checked by configure
 #   https://bugzilla.xfce.org/show_bug.cgi?id=11914
@@ -48,8 +50,8 @@ src_configure() {
local myconf=(
$(use_enable opengl epoxy)
$(use_enable startup-notification)
+   $(use_enable xcomposite compositor)
$(use_enable xpresent)
-   --enable-compositor
--enable-randr
--enable-render
--enable-xi2



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2021-01-12 Thread Michał Górny
commit: 05fefac10ba726e61a5e92f250584ec5dbc169c7
Author: David Michael  gmail  com>
AuthorDate: Fri Jan  8 00:17:59 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jan 12 18:33:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05fefac1

xfce-base/xfwm4: enable libXi and drop the exo dep

The exo dependency appears to have been for calling exo-csource,
which was replaced with xdt-csource from xfce4-dev-tools, but this
is only used in maintainer mode, so just drop it.

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: David Michael  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/18988
Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.16.1.ebuild | 23 +++
 1 file changed, 11 insertions(+), 12 deletions(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.16.1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.16.1.ebuild
index 0a4b9d4fdac..52677c1a05f 100644
--- a/xfce-base/xfwm4/xfwm4-4.16.1.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.16.1.ebuild
@@ -12,12 +12,16 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="opengl startup-notification +xcomposite +xpresent"
+IUSE="opengl startup-notification +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20
>=x11-libs/gtk+-3.22:3
x11-libs/libX11
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXi
x11-libs/libXinerama
x11-libs/libXrandr
x11-libs/libXrender
@@ -29,12 +33,7 @@ RDEPEND=">=dev-libs/glib-2.20
>=xfce-base/xfconf-4.13:=
opengl? ( media-libs/libepoxy:=[X(+)] )
startup-notification? ( x11-libs/startup-notification )
-   xpresent? ( x11-libs/libXpresent )
-   xcomposite? (
-   x11-libs/libXcomposite
-   x11-libs/libXdamage
-   x11-libs/libXfixes
-   )"
+   xpresent? ( x11-libs/libXpresent )"
 # libICE/libSM: not really used anywhere but checked by configure
 #   https://bugzilla.xfce.org/show_bug.cgi?id=11914
 DEPEND="${RDEPEND}
@@ -43,18 +42,18 @@ DEPEND="${RDEPEND}
 BDEPEND="
dev-util/intltool
sys-devel/gettext
-   xfce-base/exo
virtual/pkgconfig"
 
 src_configure() {
local myconf=(
$(use_enable opengl epoxy)
$(use_enable startup-notification)
-   --enable-xsync
-   --enable-render
-   --enable-randr
$(use_enable xpresent)
-   $(use_enable xcomposite compositor)
+   --enable-compositor
+   --enable-randr
+   --enable-render
+   --enable-xi2
+   --enable-xsync
)
 
econf "${myconf[@]}"



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2021-01-09 Thread Michał Górny
commit: 9624ce50047a7b3544ce0840767a857b5f7e647e
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jan  9 19:52:58 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jan  9 19:54:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9624ce50

xfce-base/xfwm4: Bump to 4.16.1

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest|  1 +
 xfce-base/xfwm4/xfwm4-4.16.1.ebuild | 69 +
 2 files changed, 70 insertions(+)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index 0b0738841f7..5c7156126f4 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,3 +1,4 @@
 DIST xfwm4-4.14.6.tar.bz2 1167818 BLAKE2B 
2315843da3684ea069d8361d1d787634052da5449d7aeb4ba6b219cd46ae4b7b6007becca316a5ab552fe4432baab3efa6a23793b68a00d06c9fbe3d1164080a
 SHA512 
1e3cc3e976250e311607d12e1a51047132584d6e8cd8979e3d5a85a3cc49e420453e3812b2d8a8f6268f3d6f1b44f4df2b57b7e1395d02ec63ae82a55bb9d4ee
 DIST xfwm4-4.15.3.tar.bz2 1180308 BLAKE2B 
e76651e58bdb6b4c4b15c6dd49d5df16b40729fc41302d0eff336194d84a8b467c9b6b2f37094657b0555c25d87d92744991dfc00127638468b23eae31088475
 SHA512 
6ca7faba7fdd225d1c91e7c217200eebf271abc6058f3b9a46ce7bce8f31028c99e454412afa4ca441a5b30decb0d33a03ca5caeed7e4b20a29efa855af8328d
 DIST xfwm4-4.16.0.tar.bz2 1200929 BLAKE2B 
2df17028287ff3e4fea7ea082ea39545a05fba5089fbaea1764bbb59ff550d9dbf14322246d9dcd455bc589055c75b7941f08f6ab4a59fe2089001236ab8677b
 SHA512 
f21e773b34092cadd86713373e59880cf68020cbfa3d16ab651f48a8a051a38925428358e0bca5ffc346eb62dc6cc53c87a9e6895d7e613dadf3cdac499dae02
+DIST xfwm4-4.16.1.tar.bz2 1201722 BLAKE2B 
4aae9b97095b423964a2ece7fe09b46ecfcea6688af6ab3b38ee34611cd68a7427597cb963b91b209d161c85aed552df15d005268bd8585d365b0cf63adf36b3
 SHA512 
f0d5d00e58202457d0d7d5f9772e7b2aa3f3339850065609baab7d379248a628d147464cc605698970134b87d58b7867b8c09d0a3a45ab84b2f3aa95be26f0b9

diff --git a/xfce-base/xfwm4/xfwm4-4.16.1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.16.1.ebuild
new file mode 100644
index 000..0a4b9d4fdac
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.16.1.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xdg-utils
+
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="https://www.xfce.org/projects/;
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl startup-notification +xcomposite +xpresent"
+
+RDEPEND=">=dev-libs/glib-2.20
+   >=x11-libs/gtk+-3.22:3
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXinerama
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXres
+   x11-libs/pango
+   >=x11-libs/libwnck-3.14:3
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/xfconf-4.13:=
+   opengl? ( media-libs/libepoxy:=[X(+)] )
+   startup-notification? ( x11-libs/startup-notification )
+   xpresent? ( x11-libs/libXpresent )
+   xcomposite? (
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXfixes
+   )"
+# libICE/libSM: not really used anywhere but checked by configure
+#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
+DEPEND="${RDEPEND}
+   x11-libs/libICE
+   x11-libs/libSM"
+BDEPEND="
+   dev-util/intltool
+   sys-devel/gettext
+   xfce-base/exo
+   virtual/pkgconfig"
+
+src_configure() {
+   local myconf=(
+   $(use_enable opengl epoxy)
+   $(use_enable startup-notification)
+   --enable-xsync
+   --enable-render
+   --enable-randr
+   $(use_enable xpresent)
+   $(use_enable xcomposite compositor)
+   )
+
+   econf "${myconf[@]}"
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2020-12-22 Thread Michał Górny
commit: 13d5905060132c798116e192b956135af498c968
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Dec 22 23:26:17 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Dec 22 23:35:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13d59050

xfce-base/xfwm4: Bump to 4.16.0

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest|  1 +
 xfce-base/xfwm4/xfwm4-4.16.0.ebuild | 69 +
 2 files changed, 70 insertions(+)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index ba0c673daac..0b0738841f7 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,2 +1,3 @@
 DIST xfwm4-4.14.6.tar.bz2 1167818 BLAKE2B 
2315843da3684ea069d8361d1d787634052da5449d7aeb4ba6b219cd46ae4b7b6007becca316a5ab552fe4432baab3efa6a23793b68a00d06c9fbe3d1164080a
 SHA512 
1e3cc3e976250e311607d12e1a51047132584d6e8cd8979e3d5a85a3cc49e420453e3812b2d8a8f6268f3d6f1b44f4df2b57b7e1395d02ec63ae82a55bb9d4ee
 DIST xfwm4-4.15.3.tar.bz2 1180308 BLAKE2B 
e76651e58bdb6b4c4b15c6dd49d5df16b40729fc41302d0eff336194d84a8b467c9b6b2f37094657b0555c25d87d92744991dfc00127638468b23eae31088475
 SHA512 
6ca7faba7fdd225d1c91e7c217200eebf271abc6058f3b9a46ce7bce8f31028c99e454412afa4ca441a5b30decb0d33a03ca5caeed7e4b20a29efa855af8328d
+DIST xfwm4-4.16.0.tar.bz2 1200929 BLAKE2B 
2df17028287ff3e4fea7ea082ea39545a05fba5089fbaea1764bbb59ff550d9dbf14322246d9dcd455bc589055c75b7941f08f6ab4a59fe2089001236ab8677b
 SHA512 
f21e773b34092cadd86713373e59880cf68020cbfa3d16ab651f48a8a051a38925428358e0bca5ffc346eb62dc6cc53c87a9e6895d7e613dadf3cdac499dae02

diff --git a/xfce-base/xfwm4/xfwm4-4.16.0.ebuild 
b/xfce-base/xfwm4/xfwm4-4.16.0.ebuild
new file mode 100644
index 000..26cb91f8158
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.16.0.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xdg-utils
+
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="https://www.xfce.org/projects/;
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl startup-notification +xcomposite +xpresent"
+
+RDEPEND=">=dev-libs/glib-2.20
+   >=x11-libs/gtk+-3.22:3
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXinerama
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXres
+   x11-libs/pango
+   >=x11-libs/libwnck-3.14:3
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/xfconf-4.13:=
+   opengl? ( media-libs/libepoxy:=[X(+)] )
+   startup-notification? ( x11-libs/startup-notification )
+   xpresent? ( x11-libs/libXpresent )
+   xcomposite? (
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXfixes
+   )"
+# libICE/libSM: not really used anywhere but checked by configure
+#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
+DEPEND="${RDEPEND}
+   x11-libs/libICE
+   x11-libs/libSM"
+BDEPEND="
+   dev-util/intltool
+   sys-devel/gettext
+   xfce-base/exo
+   virtual/pkgconfig"
+
+src_configure() {
+   local myconf=(
+   $(use_enable opengl epoxy)
+   $(use_enable startup-notification)
+   --enable-xsync
+   --enable-render
+   --enable-randr
+   $(use_enable xpresent)
+   $(use_enable xcomposite compositor)
+   )
+
+   econf "${myconf[@]}"
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2020-11-18 Thread Michał Górny
commit: 9da9a1833b95582408f570bbddcc0031bfe0238d
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 18 09:27:13 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 18 09:31:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9da9a183

xfce-base/xfwm4: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest|  4 ---
 xfce-base/xfwm4/xfwm4-4.14.2.ebuild | 69 
 xfce-base/xfwm4/xfwm4-4.14.5.ebuild | 70 -
 xfce-base/xfwm4/xfwm4-4.15.1.ebuild | 70 -
 xfce-base/xfwm4/xfwm4-4.15.2.ebuild | 68 ---
 5 files changed, 281 deletions(-)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index 22a2ccf5912..ba0c673daac 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,6 +1,2 @@
-DIST xfwm4-4.14.2.tar.bz2 1158799 BLAKE2B 
87270997688a44e1476935f2158842999befebf18628f6cd92131d81beac2f0a91db0a6522f86340688285fd67cf48e94259bdb2e4ce8df567eba83319bb31e3
 SHA512 
9e28f7782ce6c1734f9a50efec75d4c03a193bf078fd29f42c11770cef134c4516c256cb9c4b92a71fca81f37ba0ce19477831bb1da858c839135005b8f2
-DIST xfwm4-4.14.5.tar.bz2 1165140 BLAKE2B 
3f598b5cb8ce58a8aa4a4c82e53a5b02a870e26ddd0487796aeab86695c5dc6bc132daac32630dc109ec12dd10dab370a91c00dfbdf1109815cf5a9ae82fc88b
 SHA512 
d2b5b198f3ffa91b0b07d5258f5f14f45e431fd7d992143bf9fc381f647ea0ee47ae447122ef8c7a40606c08955f83975fcff94b6f7ceb331a0a8681b57050fd
 DIST xfwm4-4.14.6.tar.bz2 1167818 BLAKE2B 
2315843da3684ea069d8361d1d787634052da5449d7aeb4ba6b219cd46ae4b7b6007becca316a5ab552fe4432baab3efa6a23793b68a00d06c9fbe3d1164080a
 SHA512 
1e3cc3e976250e311607d12e1a51047132584d6e8cd8979e3d5a85a3cc49e420453e3812b2d8a8f6268f3d6f1b44f4df2b57b7e1395d02ec63ae82a55bb9d4ee
-DIST xfwm4-4.15.1.tar.bz2 1179671 BLAKE2B 
c358f8050dd6fcc356c2d300dab959dbfb5f452484e0998b25755aa6c6dd1783ca117ba43f44e18a942a1794000a768765a5b98e1e381367260df1d503ba
 SHA512 
ae4cea9da4bc852aa3ce19039b66cc05f7c7cabe07637837bf1a51c37b6c9536a46b6af85e9402c33578e8da305b28bac23792afa080076e625a7df9f769935c
-DIST xfwm4-4.15.2.tar.bz2 1180556 BLAKE2B 
c7ec0e03ec7693e04ffe19a3f35b5c24d70ce5655f28177b48b5aaa68587d460480627f43cc2282c80cc0b296683a0ff75e796ac7abd1e08b5cb96ac53c77952
 SHA512 
710060aec978820d84275eb269bd9b803695458a411b5c17c2ab7a5900f63caa3613c5ed7fd956f4333926302666828b7849fedc53390f56053a7000eaf0100e
 DIST xfwm4-4.15.3.tar.bz2 1180308 BLAKE2B 
e76651e58bdb6b4c4b15c6dd49d5df16b40729fc41302d0eff336194d84a8b467c9b6b2f37094657b0555c25d87d92744991dfc00127638468b23eae31088475
 SHA512 
6ca7faba7fdd225d1c91e7c217200eebf271abc6058f3b9a46ce7bce8f31028c99e454412afa4ca441a5b30decb0d33a03ca5caeed7e4b20a29efa855af8328d

diff --git a/xfce-base/xfwm4/xfwm4-4.14.2.ebuild 
b/xfce-base/xfwm4/xfwm4-4.14.2.ebuild
deleted file mode 100644
index d7d6669f20a..000
--- a/xfce-base/xfwm4/xfwm4-4.14.2.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit xdg-utils
-
-DESCRIPTION="Window manager for the Xfce desktop environment"
-HOMEPAGE="https://www.xfce.org/projects/;
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="opengl startup-notification +xcomposite +xpresent"
-
-RDEPEND=">=dev-libs/glib-2.20
-   >=x11-libs/gtk+-3.20:3
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXinerama
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   x11-libs/pango
-   >=x11-libs/libwnck-3.14:3
-   >=xfce-base/libxfce4util-4.10:=
-   >=xfce-base/libxfce4ui-4.12:=
-   >=xfce-base/xfconf-4.13:=
-   opengl? ( media-libs/libepoxy:=[X(+)] )
-   startup-notification? ( x11-libs/startup-notification )
-   xpresent? ( x11-libs/libXpresent )
-   xcomposite? (
-   x11-libs/libXcomposite
-   x11-libs/libXdamage
-   x11-libs/libXfixes
-   )"
-# libICE/libSM: not really used anywhere but checked by configure
-#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
-DEPEND="${RDEPEND}
-   dev-util/intltool
-   sys-devel/gettext
-   x11-libs/libICE
-   x11-libs/libSM
-   xfce-base/exo
-   virtual/pkgconfig"
-
-DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
-
-src_configure() {
-   local myconf=(
-   $(use_enable opengl epoxy)
-   $(use_enable startup-notification)
-   --enable-xsync
-   --enable-render
-   --enable-randr
-   $(use_enable xpresent)
-   $(use_enable xcomposite compositor)
-   )
-
-   econf "${myconf[@]}"
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-}
-

[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2020-11-17 Thread Agostino Sarubbo
commit: 83031b7dfc12223c419d1c2326a521b5db31a6f7
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 17 19:16:07 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 17 19:16:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83031b7d

xfce-base/xfwm4: x86 stable wrt bug #754843

Package-Manager: Portage-3.0.8, Repoman-3.0.2
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.14.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.14.6.ebuild 
b/xfce-base/xfwm4/xfwm4-4.14.6.ebuild
index f642f5ec43a..58a16b960ec 100644
--- a/xfce-base/xfwm4/xfwm4-4.14.6.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.14.6.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2020-11-17 Thread Agostino Sarubbo
commit: 8c9ec326109219a783d415a043045349f84c6c45
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 17 18:54:22 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 17 18:55:28 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c9ec326

xfce-base/xfwm4: ppc64 stable wrt bug #754843

Package-Manager: Portage-3.0.8, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.14.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.14.6.ebuild 
b/xfce-base/xfwm4/xfwm4-4.14.6.ebuild
index 180cb574ff8..f642f5ec43a 100644
--- a/xfce-base/xfwm4/xfwm4-4.14.6.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.14.6.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2020-11-17 Thread Agostino Sarubbo
commit: 637d47f7faf00871653cee3bdff1284f6a6a718d
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Nov 17 18:48:32 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Nov 17 18:48:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=637d47f7

xfce-base/xfwm4: ppc stable wrt bug #754843

Package-Manager: Portage-3.0.8, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.14.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.14.6.ebuild 
b/xfce-base/xfwm4/xfwm4-4.14.6.ebuild
index 7fdbffb1e35..180cb574ff8 100644
--- a/xfce-base/xfwm4/xfwm4-4.14.6.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.14.6.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2020-11-16 Thread Sam James
commit: 4c48a331399ef74d711dbcfa3a757ae33440c802
Author: Sam James  gentoo  org>
AuthorDate: Mon Nov 16 23:37:11 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Nov 16 23:37:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c48a331

xfce-base/xfwm4: Stabilize 4.14.6 amd64, #754843

Signed-off-by: Sam James  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.14.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.14.6.ebuild 
b/xfce-base/xfwm4/xfwm4-4.14.6.ebuild
index 9556d697e99..7fdbffb1e35 100644
--- a/xfce-base/xfwm4/xfwm4-4.14.6.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.14.6.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2020-11-15 Thread Sam James
commit: 8525b1c1aa47c499ef081046dcbc24ba2a94f426
Author: Sam James  gentoo  org>
AuthorDate: Mon Nov 16 02:53:57 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Nov 16 02:53:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8525b1c1

xfce-base/xfwm4: Stabilize 4.14.6 arm, #754843

Signed-off-by: Sam James  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.14.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.14.6.ebuild 
b/xfce-base/xfwm4/xfwm4-4.14.6.ebuild
index 77ed670eb91..9556d697e99 100644
--- a/xfce-base/xfwm4/xfwm4-4.14.6.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.14.6.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2020-11-01 Thread Michał Górny
commit: dbcba5ed7efab639979286f9ed64f30c52a2ea9f
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Nov  1 21:12:29 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Nov  1 21:12:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbcba5ed

xfce-base/xfwm4: Bump to 4.15.3

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest|  1 +
 xfce-base/xfwm4/xfwm4-4.15.3.ebuild | 68 +
 2 files changed, 69 insertions(+)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index 70f67d03cf0..22a2ccf5912 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -3,3 +3,4 @@ DIST xfwm4-4.14.5.tar.bz2 1165140 BLAKE2B 
3f598b5cb8ce58a8aa4a4c82e53a5b02a870e2
 DIST xfwm4-4.14.6.tar.bz2 1167818 BLAKE2B 
2315843da3684ea069d8361d1d787634052da5449d7aeb4ba6b219cd46ae4b7b6007becca316a5ab552fe4432baab3efa6a23793b68a00d06c9fbe3d1164080a
 SHA512 
1e3cc3e976250e311607d12e1a51047132584d6e8cd8979e3d5a85a3cc49e420453e3812b2d8a8f6268f3d6f1b44f4df2b57b7e1395d02ec63ae82a55bb9d4ee
 DIST xfwm4-4.15.1.tar.bz2 1179671 BLAKE2B 
c358f8050dd6fcc356c2d300dab959dbfb5f452484e0998b25755aa6c6dd1783ca117ba43f44e18a942a1794000a768765a5b98e1e381367260df1d503ba
 SHA512 
ae4cea9da4bc852aa3ce19039b66cc05f7c7cabe07637837bf1a51c37b6c9536a46b6af85e9402c33578e8da305b28bac23792afa080076e625a7df9f769935c
 DIST xfwm4-4.15.2.tar.bz2 1180556 BLAKE2B 
c7ec0e03ec7693e04ffe19a3f35b5c24d70ce5655f28177b48b5aaa68587d460480627f43cc2282c80cc0b296683a0ff75e796ac7abd1e08b5cb96ac53c77952
 SHA512 
710060aec978820d84275eb269bd9b803695458a411b5c17c2ab7a5900f63caa3613c5ed7fd956f4333926302666828b7849fedc53390f56053a7000eaf0100e
+DIST xfwm4-4.15.3.tar.bz2 1180308 BLAKE2B 
e76651e58bdb6b4c4b15c6dd49d5df16b40729fc41302d0eff336194d84a8b467c9b6b2f37094657b0555c25d87d92744991dfc00127638468b23eae31088475
 SHA512 
6ca7faba7fdd225d1c91e7c217200eebf271abc6058f3b9a46ce7bce8f31028c99e454412afa4ca441a5b30decb0d33a03ca5caeed7e4b20a29efa855af8328d

diff --git a/xfce-base/xfwm4/xfwm4-4.15.3.ebuild 
b/xfce-base/xfwm4/xfwm4-4.15.3.ebuild
new file mode 100644
index 000..bf9677a0086
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.15.3.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xdg-utils
+
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="https://www.xfce.org/projects/;
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl startup-notification +xcomposite +xpresent"
+
+RDEPEND=">=dev-libs/glib-2.20
+   >=x11-libs/gtk+-3.20:3
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXinerama
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXres
+   x11-libs/pango
+   >=x11-libs/libwnck-3.14:3
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/xfconf-4.13:=
+   opengl? ( media-libs/libepoxy:=[X(+)] )
+   startup-notification? ( x11-libs/startup-notification )
+   xpresent? ( x11-libs/libXpresent )
+   xcomposite? (
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXfixes
+   )"
+# libICE/libSM: not really used anywhere but checked by configure
+#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   x11-libs/libICE
+   x11-libs/libSM
+   xfce-base/exo
+   virtual/pkgconfig"
+
+src_configure() {
+   local myconf=(
+   $(use_enable opengl epoxy)
+   $(use_enable startup-notification)
+   --enable-xsync
+   --enable-render
+   --enable-randr
+   $(use_enable xpresent)
+   $(use_enable xcomposite compositor)
+   )
+
+   econf "${myconf[@]}"
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2020-11-01 Thread Michał Górny
commit: 57101789965cec3182485a2305df19ac7ad3b376
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Nov  1 15:06:02 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Nov  1 15:45:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57101789

xfce-base/xfwm4: Bump to 4.15.2

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest|  1 +
 xfce-base/xfwm4/xfwm4-4.15.2.ebuild | 68 +
 2 files changed, 69 insertions(+)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index db016783a20..70f67d03cf0 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -2,3 +2,4 @@ DIST xfwm4-4.14.2.tar.bz2 1158799 BLAKE2B 
87270997688a44e1476935f2158842999befeb
 DIST xfwm4-4.14.5.tar.bz2 1165140 BLAKE2B 
3f598b5cb8ce58a8aa4a4c82e53a5b02a870e26ddd0487796aeab86695c5dc6bc132daac32630dc109ec12dd10dab370a91c00dfbdf1109815cf5a9ae82fc88b
 SHA512 
d2b5b198f3ffa91b0b07d5258f5f14f45e431fd7d992143bf9fc381f647ea0ee47ae447122ef8c7a40606c08955f83975fcff94b6f7ceb331a0a8681b57050fd
 DIST xfwm4-4.14.6.tar.bz2 1167818 BLAKE2B 
2315843da3684ea069d8361d1d787634052da5449d7aeb4ba6b219cd46ae4b7b6007becca316a5ab552fe4432baab3efa6a23793b68a00d06c9fbe3d1164080a
 SHA512 
1e3cc3e976250e311607d12e1a51047132584d6e8cd8979e3d5a85a3cc49e420453e3812b2d8a8f6268f3d6f1b44f4df2b57b7e1395d02ec63ae82a55bb9d4ee
 DIST xfwm4-4.15.1.tar.bz2 1179671 BLAKE2B 
c358f8050dd6fcc356c2d300dab959dbfb5f452484e0998b25755aa6c6dd1783ca117ba43f44e18a942a1794000a768765a5b98e1e381367260df1d503ba
 SHA512 
ae4cea9da4bc852aa3ce19039b66cc05f7c7cabe07637837bf1a51c37b6c9536a46b6af85e9402c33578e8da305b28bac23792afa080076e625a7df9f769935c
+DIST xfwm4-4.15.2.tar.bz2 1180556 BLAKE2B 
c7ec0e03ec7693e04ffe19a3f35b5c24d70ce5655f28177b48b5aaa68587d460480627f43cc2282c80cc0b296683a0ff75e796ac7abd1e08b5cb96ac53c77952
 SHA512 
710060aec978820d84275eb269bd9b803695458a411b5c17c2ab7a5900f63caa3613c5ed7fd956f4333926302666828b7849fedc53390f56053a7000eaf0100e

diff --git a/xfce-base/xfwm4/xfwm4-4.15.2.ebuild 
b/xfce-base/xfwm4/xfwm4-4.15.2.ebuild
new file mode 100644
index 000..bf9677a0086
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.15.2.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xdg-utils
+
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="https://www.xfce.org/projects/;
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl startup-notification +xcomposite +xpresent"
+
+RDEPEND=">=dev-libs/glib-2.20
+   >=x11-libs/gtk+-3.20:3
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXinerama
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXres
+   x11-libs/pango
+   >=x11-libs/libwnck-3.14:3
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/xfconf-4.13:=
+   opengl? ( media-libs/libepoxy:=[X(+)] )
+   startup-notification? ( x11-libs/startup-notification )
+   xpresent? ( x11-libs/libXpresent )
+   xcomposite? (
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXfixes
+   )"
+# libICE/libSM: not really used anywhere but checked by configure
+#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   x11-libs/libICE
+   x11-libs/libSM
+   xfce-base/exo
+   virtual/pkgconfig"
+
+src_configure() {
+   local myconf=(
+   $(use_enable opengl epoxy)
+   $(use_enable startup-notification)
+   --enable-xsync
+   --enable-render
+   --enable-randr
+   $(use_enable xpresent)
+   $(use_enable xcomposite compositor)
+   )
+
+   econf "${myconf[@]}"
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2020-11-01 Thread Michał Górny
commit: 1e0625bb53c135e4dfb504451c05f08e4a524ecb
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Nov  1 15:05:36 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Nov  1 15:45:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e0625bb

xfce-base/xfwm4: Bump to 4.14.6

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest|  1 +
 xfce-base/xfwm4/xfwm4-4.14.6.ebuild | 70 +
 2 files changed, 71 insertions(+)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index 13fae578a1d..db016783a20 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,3 +1,4 @@
 DIST xfwm4-4.14.2.tar.bz2 1158799 BLAKE2B 
87270997688a44e1476935f2158842999befebf18628f6cd92131d81beac2f0a91db0a6522f86340688285fd67cf48e94259bdb2e4ce8df567eba83319bb31e3
 SHA512 
9e28f7782ce6c1734f9a50efec75d4c03a193bf078fd29f42c11770cef134c4516c256cb9c4b92a71fca81f37ba0ce19477831bb1da858c839135005b8f2
 DIST xfwm4-4.14.5.tar.bz2 1165140 BLAKE2B 
3f598b5cb8ce58a8aa4a4c82e53a5b02a870e26ddd0487796aeab86695c5dc6bc132daac32630dc109ec12dd10dab370a91c00dfbdf1109815cf5a9ae82fc88b
 SHA512 
d2b5b198f3ffa91b0b07d5258f5f14f45e431fd7d992143bf9fc381f647ea0ee47ae447122ef8c7a40606c08955f83975fcff94b6f7ceb331a0a8681b57050fd
+DIST xfwm4-4.14.6.tar.bz2 1167818 BLAKE2B 
2315843da3684ea069d8361d1d787634052da5449d7aeb4ba6b219cd46ae4b7b6007becca316a5ab552fe4432baab3efa6a23793b68a00d06c9fbe3d1164080a
 SHA512 
1e3cc3e976250e311607d12e1a51047132584d6e8cd8979e3d5a85a3cc49e420453e3812b2d8a8f6268f3d6f1b44f4df2b57b7e1395d02ec63ae82a55bb9d4ee
 DIST xfwm4-4.15.1.tar.bz2 1179671 BLAKE2B 
c358f8050dd6fcc356c2d300dab959dbfb5f452484e0998b25755aa6c6dd1783ca117ba43f44e18a942a1794000a768765a5b98e1e381367260df1d503ba
 SHA512 
ae4cea9da4bc852aa3ce19039b66cc05f7c7cabe07637837bf1a51c37b6c9536a46b6af85e9402c33578e8da305b28bac23792afa080076e625a7df9f769935c

diff --git a/xfce-base/xfwm4/xfwm4-4.14.6.ebuild 
b/xfce-base/xfwm4/xfwm4-4.14.6.ebuild
new file mode 100644
index 000..77ed670eb91
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.14.6.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xdg-utils
+
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="https://www.xfce.org/projects/;
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl startup-notification +xcomposite +xpresent"
+
+RDEPEND=">=dev-libs/glib-2.20
+   >=x11-libs/gtk+-3.20:3
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXinerama
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXres
+   x11-libs/pango
+   >=x11-libs/libwnck-3.14:3
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/xfconf-4.13:=
+   opengl? ( media-libs/libepoxy:=[X(+)] )
+   startup-notification? ( x11-libs/startup-notification )
+   xpresent? ( x11-libs/libXpresent )
+   xcomposite? (
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXfixes
+   )"
+# libICE/libSM: not really used anywhere but checked by configure
+#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   x11-libs/libICE
+   x11-libs/libSM
+   xfce-base/exo
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
+
+src_configure() {
+   local myconf=(
+   $(use_enable opengl epoxy)
+   $(use_enable startup-notification)
+   --enable-xsync
+   --enable-render
+   --enable-randr
+   $(use_enable xpresent)
+   $(use_enable xcomposite compositor)
+   )
+
+   econf "${myconf[@]}"
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2020-09-23 Thread Agostino Sarubbo
commit: 23e310a95036c9c235be10e2a4aaef01f007e992
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Sep 23 10:21:35 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Sep 23 10:21:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23e310a9

xfce-base/xfwm4: arm stable wrt bug #743283

Package-Manager: Portage-2.3.103, Repoman-2.3.23
RepoMan-Options: --include-arches="arm"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.14.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.14.5.ebuild 
b/xfce-base/xfwm4/xfwm4-4.14.5.ebuild
index 87384241cf8..f642f5ec43a 100644
--- a/xfce-base/xfwm4/xfwm4-4.14.5.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.14.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2020-09-23 Thread Agostino Sarubbo
commit: 40465307ef3056cb47ebb9eb202fae6363c900ff
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Sep 23 10:16:26 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Sep 23 10:16:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40465307

xfce-base/xfwm4: amd64 stable wrt bug #743283

Package-Manager: Portage-2.3.103, Repoman-2.3.23
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.14.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.14.5.ebuild 
b/xfce-base/xfwm4/xfwm4-4.14.5.ebuild
index 36cd69d9a6e..87384241cf8 100644
--- a/xfce-base/xfwm4/xfwm4-4.14.5.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.14.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2020-09-18 Thread Agostino Sarubbo
commit: 4a55fb34280f8136f84ae8a8b39e11106638805a
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Sep 18 15:09:18 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Sep 18 15:09:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a55fb34

xfce-base/xfwm4: ppc64 stable wrt bug #743283

Package-Manager: Portage-2.3.103, Repoman-2.3.23
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.14.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.14.5.ebuild 
b/xfce-base/xfwm4/xfwm4-4.14.5.ebuild
index 5ad954f4073..36cd69d9a6e 100644
--- a/xfce-base/xfwm4/xfwm4-4.14.5.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.14.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2020-09-18 Thread Agostino Sarubbo
commit: 62d0ebea386885fb4ee188e89f6dd4cffcd26743
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Sep 18 15:07:13 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Sep 18 15:07:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62d0ebea

xfce-base/xfwm4: ppc stable wrt bug #743283

Package-Manager: Portage-2.3.103, Repoman-2.3.23
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.14.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.14.5.ebuild 
b/xfce-base/xfwm4/xfwm4-4.14.5.ebuild
index 77ed670eb91..5ad954f4073 100644
--- a/xfce-base/xfwm4/xfwm4-4.14.5.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.14.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2020-09-18 Thread Michał Górny
commit: 2e098794fed259b5b4d84240778ba8deb4e8c6fd
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Sep 18 09:42:17 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Sep 18 09:45:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e098794

xfce-base/xfwm4: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest|  3 --
 xfce-base/xfwm4/xfwm4-4.14.3.ebuild | 70 -
 xfce-base/xfwm4/xfwm4-4.14.4.ebuild | 70 -
 xfce-base/xfwm4/xfwm4-4.15.0.ebuild | 70 -
 4 files changed, 213 deletions(-)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index 8a4394300b9..13fae578a1d 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,6 +1,3 @@
 DIST xfwm4-4.14.2.tar.bz2 1158799 BLAKE2B 
87270997688a44e1476935f2158842999befebf18628f6cd92131d81beac2f0a91db0a6522f86340688285fd67cf48e94259bdb2e4ce8df567eba83319bb31e3
 SHA512 
9e28f7782ce6c1734f9a50efec75d4c03a193bf078fd29f42c11770cef134c4516c256cb9c4b92a71fca81f37ba0ce19477831bb1da858c839135005b8f2
-DIST xfwm4-4.14.3.tar.bz2 1164653 BLAKE2B 
24db309df708164bd0554fb96499205b4f1437023c014d571ba86f7419e09e23ffdacbf31d3afd05b7bd4f4e8e88394cfe34ec233518078b88eb8c0c640b8af7
 SHA512 
eb27c9d540a4b1d773f31c16dd8e7e4cd8fb833514ecc62251c68b53e88440beccb4923c49c66a29b387c77e2e69cb36e83d0a3d457ef8e7fdd5d2b925fdfda6
-DIST xfwm4-4.14.4.tar.bz2 1164972 BLAKE2B 
5bdf4837bd19708c975d6400750059c5182b9d1b1a0b7b30e8721e1c443d9f78c1ea1c868ad7ceb384e442b94139b89d50327dc6413e938348816a311cada2b2
 SHA512 
ca3c94d1835076b904aca9f531dccebd9d78a1c85e0f7af7ac7aaba1a067e0f11f5224bdc20dc233038dc752ae1ac85602608c168a4d91643ac7538b448c04bf
 DIST xfwm4-4.14.5.tar.bz2 1165140 BLAKE2B 
3f598b5cb8ce58a8aa4a4c82e53a5b02a870e26ddd0487796aeab86695c5dc6bc132daac32630dc109ec12dd10dab370a91c00dfbdf1109815cf5a9ae82fc88b
 SHA512 
d2b5b198f3ffa91b0b07d5258f5f14f45e431fd7d992143bf9fc381f647ea0ee47ae447122ef8c7a40606c08955f83975fcff94b6f7ceb331a0a8681b57050fd
-DIST xfwm4-4.15.0.tar.bz2 1179779 BLAKE2B 
c12ec365218b8afda7b01706d4f2822b4663d327aad482e89f8c8b2811b687594c6f58ea0b5be79eabe3771c125edb111c3b03a708dcfbf720eef993181b0e14
 SHA512 
8359c8e9414bc7a66a95c4b9eb98da7a3ba08c0e15752c2ebb4a569f9afcd50697d37685c786d6a4c23f1bfa12f8782293923fde309c7d027cf66dd4db44340e
 DIST xfwm4-4.15.1.tar.bz2 1179671 BLAKE2B 
c358f8050dd6fcc356c2d300dab959dbfb5f452484e0998b25755aa6c6dd1783ca117ba43f44e18a942a1794000a768765a5b98e1e381367260df1d503ba
 SHA512 
ae4cea9da4bc852aa3ce19039b66cc05f7c7cabe07637837bf1a51c37b6c9536a46b6af85e9402c33578e8da305b28bac23792afa080076e625a7df9f769935c

diff --git a/xfce-base/xfwm4/xfwm4-4.14.3.ebuild 
b/xfce-base/xfwm4/xfwm4-4.14.3.ebuild
deleted file mode 100644
index 77ed670eb91..000
--- a/xfce-base/xfwm4/xfwm4-4.14.3.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit xdg-utils
-
-DESCRIPTION="Window manager for the Xfce desktop environment"
-HOMEPAGE="https://www.xfce.org/projects/;
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="opengl startup-notification +xcomposite +xpresent"
-
-RDEPEND=">=dev-libs/glib-2.20
-   >=x11-libs/gtk+-3.20:3
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXinerama
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   x11-libs/libXres
-   x11-libs/pango
-   >=x11-libs/libwnck-3.14:3
-   >=xfce-base/libxfce4util-4.10:=
-   >=xfce-base/libxfce4ui-4.12:=
-   >=xfce-base/xfconf-4.13:=
-   opengl? ( media-libs/libepoxy:=[X(+)] )
-   startup-notification? ( x11-libs/startup-notification )
-   xpresent? ( x11-libs/libXpresent )
-   xcomposite? (
-   x11-libs/libXcomposite
-   x11-libs/libXdamage
-   x11-libs/libXfixes
-   )"
-# libICE/libSM: not really used anywhere but checked by configure
-#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
-DEPEND="${RDEPEND}
-   dev-util/intltool
-   sys-devel/gettext
-   x11-libs/libICE
-   x11-libs/libSM
-   xfce-base/exo
-   virtual/pkgconfig"
-
-DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
-
-src_configure() {
-   local myconf=(
-   $(use_enable opengl epoxy)
-   $(use_enable startup-notification)
-   --enable-xsync
-   --enable-render
-   --enable-randr
-   $(use_enable xpresent)
-   $(use_enable xcomposite compositor)
-   )
-
-   econf "${myconf[@]}"
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-}

diff --git 

[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2020-08-12 Thread Michał Górny
commit: 4a5285790b11c0714fd5fc2782ec64921b2d0cf9
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Aug 12 14:08:44 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Aug 12 14:10:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a528579

xfce-base/xfwm4: Bump to 4.15.1

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest|  1 +
 xfce-base/xfwm4/xfwm4-4.15.1.ebuild | 70 +
 2 files changed, 71 insertions(+)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index 58d966f561a..8a4394300b9 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -3,3 +3,4 @@ DIST xfwm4-4.14.3.tar.bz2 1164653 BLAKE2B 
24db309df708164bd0554fb96499205b4f1437
 DIST xfwm4-4.14.4.tar.bz2 1164972 BLAKE2B 
5bdf4837bd19708c975d6400750059c5182b9d1b1a0b7b30e8721e1c443d9f78c1ea1c868ad7ceb384e442b94139b89d50327dc6413e938348816a311cada2b2
 SHA512 
ca3c94d1835076b904aca9f531dccebd9d78a1c85e0f7af7ac7aaba1a067e0f11f5224bdc20dc233038dc752ae1ac85602608c168a4d91643ac7538b448c04bf
 DIST xfwm4-4.14.5.tar.bz2 1165140 BLAKE2B 
3f598b5cb8ce58a8aa4a4c82e53a5b02a870e26ddd0487796aeab86695c5dc6bc132daac32630dc109ec12dd10dab370a91c00dfbdf1109815cf5a9ae82fc88b
 SHA512 
d2b5b198f3ffa91b0b07d5258f5f14f45e431fd7d992143bf9fc381f647ea0ee47ae447122ef8c7a40606c08955f83975fcff94b6f7ceb331a0a8681b57050fd
 DIST xfwm4-4.15.0.tar.bz2 1179779 BLAKE2B 
c12ec365218b8afda7b01706d4f2822b4663d327aad482e89f8c8b2811b687594c6f58ea0b5be79eabe3771c125edb111c3b03a708dcfbf720eef993181b0e14
 SHA512 
8359c8e9414bc7a66a95c4b9eb98da7a3ba08c0e15752c2ebb4a569f9afcd50697d37685c786d6a4c23f1bfa12f8782293923fde309c7d027cf66dd4db44340e
+DIST xfwm4-4.15.1.tar.bz2 1179671 BLAKE2B 
c358f8050dd6fcc356c2d300dab959dbfb5f452484e0998b25755aa6c6dd1783ca117ba43f44e18a942a1794000a768765a5b98e1e381367260df1d503ba
 SHA512 
ae4cea9da4bc852aa3ce19039b66cc05f7c7cabe07637837bf1a51c37b6c9536a46b6af85e9402c33578e8da305b28bac23792afa080076e625a7df9f769935c

diff --git a/xfce-base/xfwm4/xfwm4-4.15.1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.15.1.ebuild
new file mode 100644
index 000..77ed670eb91
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.15.1.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xdg-utils
+
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="https://www.xfce.org/projects/;
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl startup-notification +xcomposite +xpresent"
+
+RDEPEND=">=dev-libs/glib-2.20
+   >=x11-libs/gtk+-3.20:3
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXinerama
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXres
+   x11-libs/pango
+   >=x11-libs/libwnck-3.14:3
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/xfconf-4.13:=
+   opengl? ( media-libs/libepoxy:=[X(+)] )
+   startup-notification? ( x11-libs/startup-notification )
+   xpresent? ( x11-libs/libXpresent )
+   xcomposite? (
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXfixes
+   )"
+# libICE/libSM: not really used anywhere but checked by configure
+#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   x11-libs/libICE
+   x11-libs/libSM
+   xfce-base/exo
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
+
+src_configure() {
+   local myconf=(
+   $(use_enable opengl epoxy)
+   $(use_enable startup-notification)
+   --enable-xsync
+   --enable-render
+   --enable-randr
+   $(use_enable xpresent)
+   $(use_enable xcomposite compositor)
+   )
+
+   econf "${myconf[@]}"
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2020-08-12 Thread Michał Górny
commit: 08b6a0e401bc57d0638b7595c8499cf3402fe20e
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Aug 12 14:07:25 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Aug 12 14:10:25 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08b6a0e4

xfce-base/xfwm4: Bump to 4.14.5

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest|  1 +
 xfce-base/xfwm4/xfwm4-4.14.5.ebuild | 70 +
 2 files changed, 71 insertions(+)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index 9c36abe533c..58d966f561a 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,4 +1,5 @@
 DIST xfwm4-4.14.2.tar.bz2 1158799 BLAKE2B 
87270997688a44e1476935f2158842999befebf18628f6cd92131d81beac2f0a91db0a6522f86340688285fd67cf48e94259bdb2e4ce8df567eba83319bb31e3
 SHA512 
9e28f7782ce6c1734f9a50efec75d4c03a193bf078fd29f42c11770cef134c4516c256cb9c4b92a71fca81f37ba0ce19477831bb1da858c839135005b8f2
 DIST xfwm4-4.14.3.tar.bz2 1164653 BLAKE2B 
24db309df708164bd0554fb96499205b4f1437023c014d571ba86f7419e09e23ffdacbf31d3afd05b7bd4f4e8e88394cfe34ec233518078b88eb8c0c640b8af7
 SHA512 
eb27c9d540a4b1d773f31c16dd8e7e4cd8fb833514ecc62251c68b53e88440beccb4923c49c66a29b387c77e2e69cb36e83d0a3d457ef8e7fdd5d2b925fdfda6
 DIST xfwm4-4.14.4.tar.bz2 1164972 BLAKE2B 
5bdf4837bd19708c975d6400750059c5182b9d1b1a0b7b30e8721e1c443d9f78c1ea1c868ad7ceb384e442b94139b89d50327dc6413e938348816a311cada2b2
 SHA512 
ca3c94d1835076b904aca9f531dccebd9d78a1c85e0f7af7ac7aaba1a067e0f11f5224bdc20dc233038dc752ae1ac85602608c168a4d91643ac7538b448c04bf
+DIST xfwm4-4.14.5.tar.bz2 1165140 BLAKE2B 
3f598b5cb8ce58a8aa4a4c82e53a5b02a870e26ddd0487796aeab86695c5dc6bc132daac32630dc109ec12dd10dab370a91c00dfbdf1109815cf5a9ae82fc88b
 SHA512 
d2b5b198f3ffa91b0b07d5258f5f14f45e431fd7d992143bf9fc381f647ea0ee47ae447122ef8c7a40606c08955f83975fcff94b6f7ceb331a0a8681b57050fd
 DIST xfwm4-4.15.0.tar.bz2 1179779 BLAKE2B 
c12ec365218b8afda7b01706d4f2822b4663d327aad482e89f8c8b2811b687594c6f58ea0b5be79eabe3771c125edb111c3b03a708dcfbf720eef993181b0e14
 SHA512 
8359c8e9414bc7a66a95c4b9eb98da7a3ba08c0e15752c2ebb4a569f9afcd50697d37685c786d6a4c23f1bfa12f8782293923fde309c7d027cf66dd4db44340e

diff --git a/xfce-base/xfwm4/xfwm4-4.14.5.ebuild 
b/xfce-base/xfwm4/xfwm4-4.14.5.ebuild
new file mode 100644
index 000..77ed670eb91
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.14.5.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xdg-utils
+
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="https://www.xfce.org/projects/;
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl startup-notification +xcomposite +xpresent"
+
+RDEPEND=">=dev-libs/glib-2.20
+   >=x11-libs/gtk+-3.20:3
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXinerama
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXres
+   x11-libs/pango
+   >=x11-libs/libwnck-3.14:3
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/xfconf-4.13:=
+   opengl? ( media-libs/libepoxy:=[X(+)] )
+   startup-notification? ( x11-libs/startup-notification )
+   xpresent? ( x11-libs/libXpresent )
+   xcomposite? (
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXfixes
+   )"
+# libICE/libSM: not really used anywhere but checked by configure
+#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   x11-libs/libICE
+   x11-libs/libSM
+   xfce-base/exo
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
+
+src_configure() {
+   local myconf=(
+   $(use_enable opengl epoxy)
+   $(use_enable startup-notification)
+   --enable-xsync
+   --enable-render
+   --enable-randr
+   $(use_enable xpresent)
+   $(use_enable xcomposite compositor)
+   )
+
+   econf "${myconf[@]}"
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2020-08-05 Thread Michał Górny
commit: a849c6a7ffa9a36e0f6f67caed223803e8fb3622
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Aug  5 15:06:26 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Aug  5 15:06:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a849c6a7

xfce-base/xfwm4: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest   |  1 -
 xfce-base/xfwm4/xfwm4-4.14.0-r1.ebuild | 69 --
 2 files changed, 70 deletions(-)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index e92693d811a..9c36abe533c 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,4 +1,3 @@
-DIST xfwm4-4.14.0.tar.bz2 1122735 BLAKE2B 
1865c0714ddd4107e806de5607ef0e260c3fd1b6c9abcbec112a126bf780f456873786595a4cb924ce2154a40868670699519e4bb4576d971f853f7d3f63e98c
 SHA512 
27261b08b53ba7e70db547db81775154c2f4285ab0f1f8336bd9ef0aeacb3ab705ae8ac5b05f9ac23de550a9065e76487dc93a99e553549bff1c25ceb5216939
 DIST xfwm4-4.14.2.tar.bz2 1158799 BLAKE2B 
87270997688a44e1476935f2158842999befebf18628f6cd92131d81beac2f0a91db0a6522f86340688285fd67cf48e94259bdb2e4ce8df567eba83319bb31e3
 SHA512 
9e28f7782ce6c1734f9a50efec75d4c03a193bf078fd29f42c11770cef134c4516c256cb9c4b92a71fca81f37ba0ce19477831bb1da858c839135005b8f2
 DIST xfwm4-4.14.3.tar.bz2 1164653 BLAKE2B 
24db309df708164bd0554fb96499205b4f1437023c014d571ba86f7419e09e23ffdacbf31d3afd05b7bd4f4e8e88394cfe34ec233518078b88eb8c0c640b8af7
 SHA512 
eb27c9d540a4b1d773f31c16dd8e7e4cd8fb833514ecc62251c68b53e88440beccb4923c49c66a29b387c77e2e69cb36e83d0a3d457ef8e7fdd5d2b925fdfda6
 DIST xfwm4-4.14.4.tar.bz2 1164972 BLAKE2B 
5bdf4837bd19708c975d6400750059c5182b9d1b1a0b7b30e8721e1c443d9f78c1ea1c868ad7ceb384e442b94139b89d50327dc6413e938348816a311cada2b2
 SHA512 
ca3c94d1835076b904aca9f531dccebd9d78a1c85e0f7af7ac7aaba1a067e0f11f5224bdc20dc233038dc752ae1ac85602608c168a4d91643ac7538b448c04bf

diff --git a/xfce-base/xfwm4/xfwm4-4.14.0-r1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.14.0-r1.ebuild
deleted file mode 100644
index d7d6669f20a..000
--- a/xfce-base/xfwm4/xfwm4-4.14.0-r1.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit xdg-utils
-
-DESCRIPTION="Window manager for the Xfce desktop environment"
-HOMEPAGE="https://www.xfce.org/projects/;
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="opengl startup-notification +xcomposite +xpresent"
-
-RDEPEND=">=dev-libs/glib-2.20
-   >=x11-libs/gtk+-3.20:3
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXinerama
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   x11-libs/pango
-   >=x11-libs/libwnck-3.14:3
-   >=xfce-base/libxfce4util-4.10:=
-   >=xfce-base/libxfce4ui-4.12:=
-   >=xfce-base/xfconf-4.13:=
-   opengl? ( media-libs/libepoxy:=[X(+)] )
-   startup-notification? ( x11-libs/startup-notification )
-   xpresent? ( x11-libs/libXpresent )
-   xcomposite? (
-   x11-libs/libXcomposite
-   x11-libs/libXdamage
-   x11-libs/libXfixes
-   )"
-# libICE/libSM: not really used anywhere but checked by configure
-#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
-DEPEND="${RDEPEND}
-   dev-util/intltool
-   sys-devel/gettext
-   x11-libs/libICE
-   x11-libs/libSM
-   xfce-base/exo
-   virtual/pkgconfig"
-
-DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
-
-src_configure() {
-   local myconf=(
-   $(use_enable opengl epoxy)
-   $(use_enable startup-notification)
-   --enable-xsync
-   --enable-render
-   --enable-randr
-   $(use_enable xpresent)
-   $(use_enable xcomposite compositor)
-   )
-
-   econf "${myconf[@]}"
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2020-08-01 Thread Michał Górny
commit: 28ec04997ac82cefe68d345f476b7ba4a20d47ec
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Aug  1 14:56:48 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Aug  1 14:57:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28ec0499

xfce-base/xfwm4: Bump to 4.15.0

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest|  1 +
 xfce-base/xfwm4/xfwm4-4.15.0.ebuild | 70 +
 2 files changed, 71 insertions(+)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index 4a526bb8692..e92693d811a 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -2,3 +2,4 @@ DIST xfwm4-4.14.0.tar.bz2 1122735 BLAKE2B 
1865c0714ddd4107e806de5607ef0e260c3fd1
 DIST xfwm4-4.14.2.tar.bz2 1158799 BLAKE2B 
87270997688a44e1476935f2158842999befebf18628f6cd92131d81beac2f0a91db0a6522f86340688285fd67cf48e94259bdb2e4ce8df567eba83319bb31e3
 SHA512 
9e28f7782ce6c1734f9a50efec75d4c03a193bf078fd29f42c11770cef134c4516c256cb9c4b92a71fca81f37ba0ce19477831bb1da858c839135005b8f2
 DIST xfwm4-4.14.3.tar.bz2 1164653 BLAKE2B 
24db309df708164bd0554fb96499205b4f1437023c014d571ba86f7419e09e23ffdacbf31d3afd05b7bd4f4e8e88394cfe34ec233518078b88eb8c0c640b8af7
 SHA512 
eb27c9d540a4b1d773f31c16dd8e7e4cd8fb833514ecc62251c68b53e88440beccb4923c49c66a29b387c77e2e69cb36e83d0a3d457ef8e7fdd5d2b925fdfda6
 DIST xfwm4-4.14.4.tar.bz2 1164972 BLAKE2B 
5bdf4837bd19708c975d6400750059c5182b9d1b1a0b7b30e8721e1c443d9f78c1ea1c868ad7ceb384e442b94139b89d50327dc6413e938348816a311cada2b2
 SHA512 
ca3c94d1835076b904aca9f531dccebd9d78a1c85e0f7af7ac7aaba1a067e0f11f5224bdc20dc233038dc752ae1ac85602608c168a4d91643ac7538b448c04bf
+DIST xfwm4-4.15.0.tar.bz2 1179779 BLAKE2B 
c12ec365218b8afda7b01706d4f2822b4663d327aad482e89f8c8b2811b687594c6f58ea0b5be79eabe3771c125edb111c3b03a708dcfbf720eef993181b0e14
 SHA512 
8359c8e9414bc7a66a95c4b9eb98da7a3ba08c0e15752c2ebb4a569f9afcd50697d37685c786d6a4c23f1bfa12f8782293923fde309c7d027cf66dd4db44340e

diff --git a/xfce-base/xfwm4/xfwm4-4.15.0.ebuild 
b/xfce-base/xfwm4/xfwm4-4.15.0.ebuild
new file mode 100644
index 000..77ed670eb91
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.15.0.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xdg-utils
+
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="https://www.xfce.org/projects/;
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl startup-notification +xcomposite +xpresent"
+
+RDEPEND=">=dev-libs/glib-2.20
+   >=x11-libs/gtk+-3.20:3
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXinerama
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXres
+   x11-libs/pango
+   >=x11-libs/libwnck-3.14:3
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/xfconf-4.13:=
+   opengl? ( media-libs/libepoxy:=[X(+)] )
+   startup-notification? ( x11-libs/startup-notification )
+   xpresent? ( x11-libs/libXpresent )
+   xcomposite? (
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXfixes
+   )"
+# libICE/libSM: not really used anywhere but checked by configure
+#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   x11-libs/libICE
+   x11-libs/libSM
+   xfce-base/exo
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
+
+src_configure() {
+   local myconf=(
+   $(use_enable opengl epoxy)
+   $(use_enable startup-notification)
+   --enable-xsync
+   --enable-render
+   --enable-randr
+   $(use_enable xpresent)
+   $(use_enable xcomposite compositor)
+   )
+
+   econf "${myconf[@]}"
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2020-08-01 Thread Michał Górny
commit: f3f9c259a670d304ec8a01cb67115b7e36c0090e
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Aug  1 14:24:30 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Aug  1 14:57:28 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3f9c259

xfce-base/xfwm4: Bump to 4.14.4

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest|  1 +
 xfce-base/xfwm4/xfwm4-4.14.4.ebuild | 70 +
 2 files changed, 71 insertions(+)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index 5996d1caa9f..4a526bb8692 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,3 +1,4 @@
 DIST xfwm4-4.14.0.tar.bz2 1122735 BLAKE2B 
1865c0714ddd4107e806de5607ef0e260c3fd1b6c9abcbec112a126bf780f456873786595a4cb924ce2154a40868670699519e4bb4576d971f853f7d3f63e98c
 SHA512 
27261b08b53ba7e70db547db81775154c2f4285ab0f1f8336bd9ef0aeacb3ab705ae8ac5b05f9ac23de550a9065e76487dc93a99e553549bff1c25ceb5216939
 DIST xfwm4-4.14.2.tar.bz2 1158799 BLAKE2B 
87270997688a44e1476935f2158842999befebf18628f6cd92131d81beac2f0a91db0a6522f86340688285fd67cf48e94259bdb2e4ce8df567eba83319bb31e3
 SHA512 
9e28f7782ce6c1734f9a50efec75d4c03a193bf078fd29f42c11770cef134c4516c256cb9c4b92a71fca81f37ba0ce19477831bb1da858c839135005b8f2
 DIST xfwm4-4.14.3.tar.bz2 1164653 BLAKE2B 
24db309df708164bd0554fb96499205b4f1437023c014d571ba86f7419e09e23ffdacbf31d3afd05b7bd4f4e8e88394cfe34ec233518078b88eb8c0c640b8af7
 SHA512 
eb27c9d540a4b1d773f31c16dd8e7e4cd8fb833514ecc62251c68b53e88440beccb4923c49c66a29b387c77e2e69cb36e83d0a3d457ef8e7fdd5d2b925fdfda6
+DIST xfwm4-4.14.4.tar.bz2 1164972 BLAKE2B 
5bdf4837bd19708c975d6400750059c5182b9d1b1a0b7b30e8721e1c443d9f78c1ea1c868ad7ceb384e442b94139b89d50327dc6413e938348816a311cada2b2
 SHA512 
ca3c94d1835076b904aca9f531dccebd9d78a1c85e0f7af7ac7aaba1a067e0f11f5224bdc20dc233038dc752ae1ac85602608c168a4d91643ac7538b448c04bf

diff --git a/xfce-base/xfwm4/xfwm4-4.14.4.ebuild 
b/xfce-base/xfwm4/xfwm4-4.14.4.ebuild
new file mode 100644
index 000..77ed670eb91
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.14.4.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xdg-utils
+
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="https://www.xfce.org/projects/;
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl startup-notification +xcomposite +xpresent"
+
+RDEPEND=">=dev-libs/glib-2.20
+   >=x11-libs/gtk+-3.20:3
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXinerama
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXres
+   x11-libs/pango
+   >=x11-libs/libwnck-3.14:3
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/xfconf-4.13:=
+   opengl? ( media-libs/libepoxy:=[X(+)] )
+   startup-notification? ( x11-libs/startup-notification )
+   xpresent? ( x11-libs/libXpresent )
+   xcomposite? (
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXfixes
+   )"
+# libICE/libSM: not really used anywhere but checked by configure
+#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   x11-libs/libICE
+   x11-libs/libSM
+   xfce-base/exo
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
+
+src_configure() {
+   local myconf=(
+   $(use_enable opengl epoxy)
+   $(use_enable startup-notification)
+   --enable-xsync
+   --enable-render
+   --enable-randr
+   $(use_enable xpresent)
+   $(use_enable xcomposite compositor)
+   )
+
+   econf "${myconf[@]}"
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2020-08-01 Thread Sergei Trofimovich
commit: dddbc00621897cfecad56c6dc265caaf8018e4ae
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Aug  1 08:58:45 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Aug  1 08:58:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dddbc006

xfce-base/xfwm4: stable 4.14.2 for ppc64

stable wrt bug #733990

Package-Manager: Portage-3.0.1, Repoman-2.3.23
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.14.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.14.2.ebuild 
b/xfce-base/xfwm4/xfwm4-4.14.2.ebuild
index 998dc4fbbcc..c8500f46d96 100644
--- a/xfce-base/xfwm4/xfwm4-4.14.2.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.14.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2020-07-28 Thread Sam James
commit: d24ee3e2564791f3f0d2d562490cbf242411bba3
Author: Sam James  gentoo  org>
AuthorDate: Tue Jul 28 19:21:10 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jul 28 19:21:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d24ee3e2

xfce-base/xfwm4: arm stable (bug #733990)

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.14.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.14.2.ebuild 
b/xfce-base/xfwm4/xfwm4-4.14.2.ebuild
index 506e3be6e03..ad56b0c6dea 100644
--- a/xfce-base/xfwm4/xfwm4-4.14.2.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.14.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2020-07-26 Thread Sam James
commit: 951d887f496d71cfec581b682c85620ed5bb78c8
Author: Sam James  gentoo  org>
AuthorDate: Mon Jul 27 01:52:16 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul 27 01:52:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=951d887f

xfce-base/xfwm4: amd64 stable (bug #733990)

Package-Manager: Portage-3.0.0, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.14.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.14.2.ebuild 
b/xfce-base/xfwm4/xfwm4-4.14.2.ebuild
index 683589e357a..506e3be6e03 100644
--- a/xfce-base/xfwm4/xfwm4-4.14.2.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.14.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2020-07-26 Thread Michał Górny
commit: 4e9e86da6939cb806268dd0e48153177e559fb58
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jul 26 19:23:32 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jul 26 19:28:25 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e9e86da

xfce-base/xfwm4: Bump to 4.14.3

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest|  1 +
 xfce-base/xfwm4/xfwm4-4.14.3.ebuild | 70 +
 2 files changed, 71 insertions(+)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index 7cd8beffae1..5996d1caa9f 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,2 +1,3 @@
 DIST xfwm4-4.14.0.tar.bz2 1122735 BLAKE2B 
1865c0714ddd4107e806de5607ef0e260c3fd1b6c9abcbec112a126bf780f456873786595a4cb924ce2154a40868670699519e4bb4576d971f853f7d3f63e98c
 SHA512 
27261b08b53ba7e70db547db81775154c2f4285ab0f1f8336bd9ef0aeacb3ab705ae8ac5b05f9ac23de550a9065e76487dc93a99e553549bff1c25ceb5216939
 DIST xfwm4-4.14.2.tar.bz2 1158799 BLAKE2B 
87270997688a44e1476935f2158842999befebf18628f6cd92131d81beac2f0a91db0a6522f86340688285fd67cf48e94259bdb2e4ce8df567eba83319bb31e3
 SHA512 
9e28f7782ce6c1734f9a50efec75d4c03a193bf078fd29f42c11770cef134c4516c256cb9c4b92a71fca81f37ba0ce19477831bb1da858c839135005b8f2
+DIST xfwm4-4.14.3.tar.bz2 1164653 BLAKE2B 
24db309df708164bd0554fb96499205b4f1437023c014d571ba86f7419e09e23ffdacbf31d3afd05b7bd4f4e8e88394cfe34ec233518078b88eb8c0c640b8af7
 SHA512 
eb27c9d540a4b1d773f31c16dd8e7e4cd8fb833514ecc62251c68b53e88440beccb4923c49c66a29b387c77e2e69cb36e83d0a3d457ef8e7fdd5d2b925fdfda6

diff --git a/xfce-base/xfwm4/xfwm4-4.14.3.ebuild 
b/xfce-base/xfwm4/xfwm4-4.14.3.ebuild
new file mode 100644
index 000..77ed670eb91
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.14.3.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xdg-utils
+
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="https://www.xfce.org/projects/;
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl startup-notification +xcomposite +xpresent"
+
+RDEPEND=">=dev-libs/glib-2.20
+   >=x11-libs/gtk+-3.20:3
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXinerama
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXres
+   x11-libs/pango
+   >=x11-libs/libwnck-3.14:3
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/xfconf-4.13:=
+   opengl? ( media-libs/libepoxy:=[X(+)] )
+   startup-notification? ( x11-libs/startup-notification )
+   xpresent? ( x11-libs/libXpresent )
+   xcomposite? (
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXfixes
+   )"
+# libICE/libSM: not really used anywhere but checked by configure
+#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   x11-libs/libICE
+   x11-libs/libSM
+   xfce-base/exo
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
+
+src_configure() {
+   local myconf=(
+   $(use_enable opengl epoxy)
+   $(use_enable startup-notification)
+   --enable-xsync
+   --enable-render
+   --enable-randr
+   $(use_enable xpresent)
+   $(use_enable xcomposite compositor)
+   )
+
+   econf "${myconf[@]}"
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2020-05-04 Thread Michał Górny
commit: d0fc8ced03fdbe7797e0f726e2b9d136a25a1e38
Author: Michał Górny  gentoo  org>
AuthorDate: Mon May  4 09:39:29 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon May  4 09:39:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0fc8ced

xfce-base/xfwm4: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest|  1 -
 xfce-base/xfwm4/xfwm4-4.14.1.ebuild | 69 -
 2 files changed, 70 deletions(-)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index 2ceeafb4e37..7cd8beffae1 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,3 +1,2 @@
 DIST xfwm4-4.14.0.tar.bz2 1122735 BLAKE2B 
1865c0714ddd4107e806de5607ef0e260c3fd1b6c9abcbec112a126bf780f456873786595a4cb924ce2154a40868670699519e4bb4576d971f853f7d3f63e98c
 SHA512 
27261b08b53ba7e70db547db81775154c2f4285ab0f1f8336bd9ef0aeacb3ab705ae8ac5b05f9ac23de550a9065e76487dc93a99e553549bff1c25ceb5216939
-DIST xfwm4-4.14.1.tar.bz2 1165131 BLAKE2B 
77c8e13793a0fc97d006e038c19db13f0a3c646979824e6141c5bdfc34b0e630dece04cd70d7876ab735f99a0ebebbc22a2ef6d370fe3036c0d3aec1247be42f
 SHA512 
2e924498fa467837fae6a148958c0bbb27fc310383c06a4d101928762781f3dbc48e51ff67ddc5c7ce7d04f6af2ff63c64d1d6a0d5eebed224eb23db9ebeea73
 DIST xfwm4-4.14.2.tar.bz2 1158799 BLAKE2B 
87270997688a44e1476935f2158842999befebf18628f6cd92131d81beac2f0a91db0a6522f86340688285fd67cf48e94259bdb2e4ce8df567eba83319bb31e3
 SHA512 
9e28f7782ce6c1734f9a50efec75d4c03a193bf078fd29f42c11770cef134c4516c256cb9c4b92a71fca81f37ba0ce19477831bb1da858c839135005b8f2

diff --git a/xfce-base/xfwm4/xfwm4-4.14.1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.14.1.ebuild
deleted file mode 100644
index 683589e357a..000
--- a/xfce-base/xfwm4/xfwm4-4.14.1.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit xdg-utils
-
-DESCRIPTION="Window manager for the Xfce desktop environment"
-HOMEPAGE="https://www.xfce.org/projects/;
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="opengl startup-notification +xcomposite +xpresent"
-
-RDEPEND=">=dev-libs/glib-2.20
-   >=x11-libs/gtk+-3.20:3
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXinerama
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   x11-libs/pango
-   >=x11-libs/libwnck-3.14:3
-   >=xfce-base/libxfce4util-4.10:=
-   >=xfce-base/libxfce4ui-4.12:=
-   >=xfce-base/xfconf-4.13:=
-   opengl? ( media-libs/libepoxy:=[X(+)] )
-   startup-notification? ( x11-libs/startup-notification )
-   xpresent? ( x11-libs/libXpresent )
-   xcomposite? (
-   x11-libs/libXcomposite
-   x11-libs/libXdamage
-   x11-libs/libXfixes
-   )"
-# libICE/libSM: not really used anywhere but checked by configure
-#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
-DEPEND="${RDEPEND}
-   dev-util/intltool
-   sys-devel/gettext
-   x11-libs/libICE
-   x11-libs/libSM
-   xfce-base/exo
-   virtual/pkgconfig"
-
-DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
-
-src_configure() {
-   local myconf=(
-   $(use_enable opengl epoxy)
-   $(use_enable startup-notification)
-   --enable-xsync
-   --enable-render
-   --enable-randr
-   $(use_enable xpresent)
-   $(use_enable xcomposite compositor)
-   )
-
-   econf "${myconf[@]}"
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2020-05-01 Thread Michał Górny
commit: 556245f0efc891570b913ac624eef159341fd9c7
Author: Michał Górny  gentoo  org>
AuthorDate: Fri May  1 17:45:38 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri May  1 20:10:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=556245f0

xfce-base/xfwm4: Bump to 4.14.2

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest|  1 +
 xfce-base/xfwm4/xfwm4-4.14.2.ebuild | 69 +
 2 files changed, 70 insertions(+)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index 633dd5ba9f6..2ceeafb4e37 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,2 +1,3 @@
 DIST xfwm4-4.14.0.tar.bz2 1122735 BLAKE2B 
1865c0714ddd4107e806de5607ef0e260c3fd1b6c9abcbec112a126bf780f456873786595a4cb924ce2154a40868670699519e4bb4576d971f853f7d3f63e98c
 SHA512 
27261b08b53ba7e70db547db81775154c2f4285ab0f1f8336bd9ef0aeacb3ab705ae8ac5b05f9ac23de550a9065e76487dc93a99e553549bff1c25ceb5216939
 DIST xfwm4-4.14.1.tar.bz2 1165131 BLAKE2B 
77c8e13793a0fc97d006e038c19db13f0a3c646979824e6141c5bdfc34b0e630dece04cd70d7876ab735f99a0ebebbc22a2ef6d370fe3036c0d3aec1247be42f
 SHA512 
2e924498fa467837fae6a148958c0bbb27fc310383c06a4d101928762781f3dbc48e51ff67ddc5c7ce7d04f6af2ff63c64d1d6a0d5eebed224eb23db9ebeea73
+DIST xfwm4-4.14.2.tar.bz2 1158799 BLAKE2B 
87270997688a44e1476935f2158842999befebf18628f6cd92131d81beac2f0a91db0a6522f86340688285fd67cf48e94259bdb2e4ce8df567eba83319bb31e3
 SHA512 
9e28f7782ce6c1734f9a50efec75d4c03a193bf078fd29f42c11770cef134c4516c256cb9c4b92a71fca81f37ba0ce19477831bb1da858c839135005b8f2

diff --git a/xfce-base/xfwm4/xfwm4-4.14.2.ebuild 
b/xfce-base/xfwm4/xfwm4-4.14.2.ebuild
new file mode 100644
index 000..683589e357a
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.14.2.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xdg-utils
+
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="https://www.xfce.org/projects/;
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl startup-notification +xcomposite +xpresent"
+
+RDEPEND=">=dev-libs/glib-2.20
+   >=x11-libs/gtk+-3.20:3
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXinerama
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/pango
+   >=x11-libs/libwnck-3.14:3
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/xfconf-4.13:=
+   opengl? ( media-libs/libepoxy:=[X(+)] )
+   startup-notification? ( x11-libs/startup-notification )
+   xpresent? ( x11-libs/libXpresent )
+   xcomposite? (
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXfixes
+   )"
+# libICE/libSM: not really used anywhere but checked by configure
+#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   x11-libs/libICE
+   x11-libs/libSM
+   xfce-base/exo
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
+
+src_configure() {
+   local myconf=(
+   $(use_enable opengl epoxy)
+   $(use_enable startup-notification)
+   --enable-xsync
+   --enable-render
+   --enable-randr
+   $(use_enable xpresent)
+   $(use_enable xcomposite compositor)
+   )
+
+   econf "${myconf[@]}"
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2020-04-13 Thread Michał Górny
commit: 97e8603d552bc9c9633efe7023ae646b1ac101e5
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Apr 13 16:06:33 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Apr 13 16:11:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97e8603d

xfce-base/xfwm4: Bump to 4.14.1

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest|  1 +
 xfce-base/xfwm4/xfwm4-4.14.1.ebuild | 69 +
 2 files changed, 70 insertions(+)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index 485e73c91e4..633dd5ba9f6 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1 +1,2 @@
 DIST xfwm4-4.14.0.tar.bz2 1122735 BLAKE2B 
1865c0714ddd4107e806de5607ef0e260c3fd1b6c9abcbec112a126bf780f456873786595a4cb924ce2154a40868670699519e4bb4576d971f853f7d3f63e98c
 SHA512 
27261b08b53ba7e70db547db81775154c2f4285ab0f1f8336bd9ef0aeacb3ab705ae8ac5b05f9ac23de550a9065e76487dc93a99e553549bff1c25ceb5216939
+DIST xfwm4-4.14.1.tar.bz2 1165131 BLAKE2B 
77c8e13793a0fc97d006e038c19db13f0a3c646979824e6141c5bdfc34b0e630dece04cd70d7876ab735f99a0ebebbc22a2ef6d370fe3036c0d3aec1247be42f
 SHA512 
2e924498fa467837fae6a148958c0bbb27fc310383c06a4d101928762781f3dbc48e51ff67ddc5c7ce7d04f6af2ff63c64d1d6a0d5eebed224eb23db9ebeea73

diff --git a/xfce-base/xfwm4/xfwm4-4.14.1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.14.1.ebuild
new file mode 100644
index 000..683589e357a
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.14.1.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xdg-utils
+
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="https://www.xfce.org/projects/;
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl startup-notification +xcomposite +xpresent"
+
+RDEPEND=">=dev-libs/glib-2.20
+   >=x11-libs/gtk+-3.20:3
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXinerama
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/pango
+   >=x11-libs/libwnck-3.14:3
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/xfconf-4.13:=
+   opengl? ( media-libs/libepoxy:=[X(+)] )
+   startup-notification? ( x11-libs/startup-notification )
+   xpresent? ( x11-libs/libXpresent )
+   xcomposite? (
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXfixes
+   )"
+# libICE/libSM: not really used anywhere but checked by configure
+#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   x11-libs/libICE
+   x11-libs/libSM
+   xfce-base/exo
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
+
+src_configure() {
+   local myconf=(
+   $(use_enable opengl epoxy)
+   $(use_enable startup-notification)
+   --enable-xsync
+   --enable-render
+   --enable-randr
+   $(use_enable xpresent)
+   $(use_enable xcomposite compositor)
+   )
+
+   econf "${myconf[@]}"
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2019-10-13 Thread Mikle Kolyada
commit: e1c355c957f412199e29bf1e5bcdff0131c6345d
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Oct 13 11:23:26 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Oct 13 11:24:41 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1c355c9

xfce-base/xfwm4: alpha stable wrt bug #697454

Package-Manager: Portage-2.3.76, Repoman-2.3.16
RepoMan-Options: --include-arches="alpha"
Signed-off-by: Mikle Kolyada  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.14.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.14.0-r1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.14.0-r1.ebuild
index 5ac28f59f71..1747ca3fdab 100644
--- a/xfce-base/xfwm4/xfwm4-4.14.0-r1.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.14.0-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2019-10-12 Thread Sergei Trofimovich
commit: fc3116540527f18641ad5eaf3b3ac1dbd1fdeb56
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Oct 12 21:19:25 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Oct 12 21:23:18 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc311654

xfce-base/xfwm4: stable 4.14.0-r1 for ppc64, bug #697454

Package-Manager: Portage-2.3.76, Repoman-2.3.17
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.14.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.14.0-r1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.14.0-r1.ebuild
index 9fad244eebf..0c7a728d349 100644
--- a/xfce-base/xfwm4/xfwm4-4.14.0-r1.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.14.0-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2019-10-12 Thread Sergei Trofimovich
commit: abfd83ebf1ad1f47be920339efae64860d394f1c
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Oct 12 21:03:04 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Oct 12 21:16:25 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abfd83eb

xfce-base/xfwm4: stable 4.14.0-r1 for ppc, bug #697454

Package-Manager: Portage-2.3.76, Repoman-2.3.17
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.14.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.14.0-r1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.14.0-r1.ebuild
index 7e299d90c57..9fad244eebf 100644
--- a/xfce-base/xfwm4/xfwm4-4.14.0-r1.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.14.0-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND=">=dev-libs/glib-2.20



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2019-09-10 Thread Michał Górny
commit: 870f20cd1a4a0bd25e598d76cfd529d14a5a05a6
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Sep 10 12:21:08 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Sep 10 12:21:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=870f20cd

xfce-base/xfwm4: Remove stale dbus-glib dep

Thanks to Olof Kindgren for noticing!

Closes: https://bugs.gentoo.org/693960
Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/{xfwm4-4.14.0.ebuild => xfwm4-4.14.0-r1.ebuild} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.14.0.ebuild 
b/xfce-base/xfwm4/xfwm4-4.14.0-r1.ebuild
similarity index 97%
rename from xfce-base/xfwm4/xfwm4-4.14.0.ebuild
rename to xfce-base/xfwm4/xfwm4-4.14.0-r1.ebuild
index 8b257894cfb..15e63bfa3ad 100644
--- a/xfce-base/xfwm4/xfwm4-4.14.0.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.14.0-r1.ebuild
@@ -14,8 +14,7 @@ SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
-RDEPEND="dev-libs/dbus-glib
-   >=dev-libs/glib-2.20
+RDEPEND=">=dev-libs/glib-2.20
>=x11-libs/gtk+-3.20:3
x11-libs/libX11
x11-libs/libXext



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2019-09-10 Thread Michał Górny
commit: 2b858f0e9508c20ba31c29f583e809247b0fbe89
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Sep 10 12:22:33 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Sep 10 12:22:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b858f0e

xfce-base/xfwm4: Drop old

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest|  2 --
 xfce-base/xfwm4/xfwm4-4.13.3.ebuild | 70 -
 xfce-base/xfwm4/xfwm4-4.13.4.ebuild | 70 -
 3 files changed, 142 deletions(-)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index f3ec6efb1c2..22e5c3d239c 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,4 +1,2 @@
 DIST xfwm4-4.12.5.tar.bz2 1215450 BLAKE2B 
3a156af589ec7391245edbedbc6e10ac9c746121f68e4bd0c64e30b9b0c11abfe13c1fb77321249edd4e5c8d3051f62f135093fabfd8ba215573d330fd3745c2
 SHA512 
b723638b9cd858beb75232a251471cfb2d01ddb412b536c3f0b432e1f894014e1ad51c77d208d5439ae8a8d970344d0146d5f9475106c1b66d22715af7af42d9
-DIST xfwm4-4.13.3.tar.bz2 1143136 BLAKE2B 
3d39b9313e97350c8c914b772262be83aa87255521dfde3f9f57a669e855c31824b717a617d7cf6f0b858b6611475dbe256dec5c1708b967e114f4d3cff87f79
 SHA512 
cbd410c9a5a997be6582c9bcd0af879be2c6e5b5362c0e950bb1281b4d2f4a1acbf40b3da88fb8dea3b22f491b69bc3c6df4f75c09c8c36cf9c76a02b528785a
-DIST xfwm4-4.13.4.tar.bz2 1144261 BLAKE2B 
70b54f0393008706bec4dc2e763bd089908ebffed98ee33b85901d99bdf4de325e31525c1e21a50615318b3558d78808f54e7831cc055d5bdea262e34a098b28
 SHA512 
a4adbd5212ed34f8877adbe43c12edb17372ad871d34ad844a3c64c647f8c2fd3d8b9e44e7e09e12508bfc92837b32116fae7416b9c16d4f430f2fadcb2b845a
 DIST xfwm4-4.14.0.tar.bz2 1122735 BLAKE2B 
1865c0714ddd4107e806de5607ef0e260c3fd1b6c9abcbec112a126bf780f456873786595a4cb924ce2154a40868670699519e4bb4576d971f853f7d3f63e98c
 SHA512 
27261b08b53ba7e70db547db81775154c2f4285ab0f1f8336bd9ef0aeacb3ab705ae8ac5b05f9ac23de550a9065e76487dc93a99e553549bff1c25ceb5216939

diff --git a/xfce-base/xfwm4/xfwm4-4.13.3.ebuild 
b/xfce-base/xfwm4/xfwm4-4.13.3.ebuild
deleted file mode 100644
index b4ae00f6bce..000
--- a/xfce-base/xfwm4/xfwm4-4.13.3.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit xdg-utils
-
-DESCRIPTION="Window manager for the Xfce desktop environment"
-HOMEPAGE="https://www.xfce.org/projects/;
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="opengl startup-notification +xcomposite +xpresent"
-
-RDEPEND="dev-libs/dbus-glib:=
-   >=dev-libs/glib-2.20:=
-   >=x11-libs/gtk+-3.20:3=
-   x11-libs/libX11:=
-   x11-libs/libXext:=
-   x11-libs/libXinerama:=
-   x11-libs/libXrandr:=
-   x11-libs/libXrender:=
-   x11-libs/pango:=
-   >=x11-libs/libwnck-3.14:3=
-   >=xfce-base/libxfce4util-4.10:=
-   >=xfce-base/libxfce4ui-4.12:=
-   >=xfce-base/xfconf-4.13:=
-   opengl? ( media-libs/libepoxy:=[X(+)] )
-   startup-notification? ( x11-libs/startup-notification:= )
-   xpresent? ( x11-libs/libXpresent )
-   xcomposite? (
-   x11-libs/libXcomposite:=
-   x11-libs/libXdamage:=
-   x11-libs/libXfixes:=
-   )"
-# libICE/libSM: not really used anywhere but checked by configure
-#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
-DEPEND="${RDEPEND}
-   dev-util/intltool
-   sys-devel/gettext
-   x11-libs/libICE
-   x11-libs/libSM
-   xfce-base/exo
-   virtual/pkgconfig"
-
-DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
-
-src_configure() {
-   local myconf=(
-   $(use_enable opengl epoxy)
-   $(use_enable startup-notification)
-   --enable-xsync
-   --enable-render
-   --enable-randr
-   $(use_enable xpresent)
-   $(use_enable xcomposite compositor)
-   )
-
-   econf "${myconf[@]}"
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-}

diff --git a/xfce-base/xfwm4/xfwm4-4.13.4.ebuild 
b/xfce-base/xfwm4/xfwm4-4.13.4.ebuild
deleted file mode 100644
index b4ae00f6bce..000
--- a/xfce-base/xfwm4/xfwm4-4.13.4.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit xdg-utils
-
-DESCRIPTION="Window manager for the Xfce desktop environment"
-HOMEPAGE="https://www.xfce.org/projects/;
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~amd64-linux 

[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2019-08-22 Thread Michał Górny
commit: 367ee98f21964b4554972521e4195ed399c5971f
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Aug 22 11:36:40 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Aug 22 12:31:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=367ee98f

xfce-base/xfwm4: Require GTK+2 libxfce4ui

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/{xfwm4-4.12.5.ebuild => xfwm4-4.12.5-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.12.5.ebuild 
b/xfce-base/xfwm4/xfwm4-4.12.5-r1.ebuild
similarity index 97%
rename from xfce-base/xfwm4/xfwm4-4.12.5.ebuild
rename to xfce-base/xfwm4/xfwm4-4.12.5-r1.ebuild
index 1edd28d357d..c320a367906 100644
--- a/xfce-base/xfwm4/xfwm4-4.12.5.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.12.5-r1.ebuild
@@ -23,7 +23,7 @@ RDEPEND="dev-libs/dbus-glib:=
x11-libs/pango:=
>=x11-libs/libwnck-2.30:1=
>=xfce-base/libxfce4util-4.10:=
-   >=xfce-base/libxfce4ui-4.11:=
+   >=xfce-base/libxfce4ui-4.11:=[gtk2(+)]
>=xfce-base/xfconf-4.10:=
startup-notification? ( x11-libs/startup-notification:= )
xcomposite? (



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2019-08-11 Thread Michał Górny
commit: bbf664c672e13cffcb2f79a403c8bc0cc5d40172
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Aug 12 02:55:00 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Aug 12 02:58:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbf664c6

xfce-base/xfwm4: Bump to 4.14.0

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest|  1 +
 xfce-base/xfwm4/xfwm4-4.14.0.ebuild | 70 +
 2 files changed, 71 insertions(+)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index e79530b609b..f3ec6efb1c2 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,3 +1,4 @@
 DIST xfwm4-4.12.5.tar.bz2 1215450 BLAKE2B 
3a156af589ec7391245edbedbc6e10ac9c746121f68e4bd0c64e30b9b0c11abfe13c1fb77321249edd4e5c8d3051f62f135093fabfd8ba215573d330fd3745c2
 SHA512 
b723638b9cd858beb75232a251471cfb2d01ddb412b536c3f0b432e1f894014e1ad51c77d208d5439ae8a8d970344d0146d5f9475106c1b66d22715af7af42d9
 DIST xfwm4-4.13.3.tar.bz2 1143136 BLAKE2B 
3d39b9313e97350c8c914b772262be83aa87255521dfde3f9f57a669e855c31824b717a617d7cf6f0b858b6611475dbe256dec5c1708b967e114f4d3cff87f79
 SHA512 
cbd410c9a5a997be6582c9bcd0af879be2c6e5b5362c0e950bb1281b4d2f4a1acbf40b3da88fb8dea3b22f491b69bc3c6df4f75c09c8c36cf9c76a02b528785a
 DIST xfwm4-4.13.4.tar.bz2 1144261 BLAKE2B 
70b54f0393008706bec4dc2e763bd089908ebffed98ee33b85901d99bdf4de325e31525c1e21a50615318b3558d78808f54e7831cc055d5bdea262e34a098b28
 SHA512 
a4adbd5212ed34f8877adbe43c12edb17372ad871d34ad844a3c64c647f8c2fd3d8b9e44e7e09e12508bfc92837b32116fae7416b9c16d4f430f2fadcb2b845a
+DIST xfwm4-4.14.0.tar.bz2 1122735 BLAKE2B 
1865c0714ddd4107e806de5607ef0e260c3fd1b6c9abcbec112a126bf780f456873786595a4cb924ce2154a40868670699519e4bb4576d971f853f7d3f63e98c
 SHA512 
27261b08b53ba7e70db547db81775154c2f4285ab0f1f8336bd9ef0aeacb3ab705ae8ac5b05f9ac23de550a9065e76487dc93a99e553549bff1c25ceb5216939

diff --git a/xfce-base/xfwm4/xfwm4-4.14.0.ebuild 
b/xfce-base/xfwm4/xfwm4-4.14.0.ebuild
new file mode 100644
index 000..8b257894cfb
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.14.0.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xdg-utils
+
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="https://www.xfce.org/projects/;
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl startup-notification +xcomposite +xpresent"
+
+RDEPEND="dev-libs/dbus-glib
+   >=dev-libs/glib-2.20
+   >=x11-libs/gtk+-3.20:3
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXinerama
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/pango
+   >=x11-libs/libwnck-3.14:3
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/xfconf-4.13:=
+   opengl? ( media-libs/libepoxy:=[X(+)] )
+   startup-notification? ( x11-libs/startup-notification )
+   xpresent? ( x11-libs/libXpresent )
+   xcomposite? (
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXfixes
+   )"
+# libICE/libSM: not really used anywhere but checked by configure
+#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   x11-libs/libICE
+   x11-libs/libSM
+   xfce-base/exo
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
+
+src_configure() {
+   local myconf=(
+   $(use_enable opengl epoxy)
+   $(use_enable startup-notification)
+   --enable-xsync
+   --enable-render
+   --enable-randr
+   $(use_enable xpresent)
+   $(use_enable xcomposite compositor)
+   )
+
+   econf "${myconf[@]}"
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2019-07-27 Thread Michał Górny
commit: d39abb0d2a580552afb3022a3d6b7bf48f4baf20
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jul 28 05:42:54 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jul 28 05:42:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d39abb0d

xfce-base/xfwm4: Bump to 4.13.4

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest|  1 +
 xfce-base/xfwm4/xfwm4-4.13.4.ebuild | 70 +
 2 files changed, 71 insertions(+)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index 2bd79734505..e79530b609b 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,2 +1,3 @@
 DIST xfwm4-4.12.5.tar.bz2 1215450 BLAKE2B 
3a156af589ec7391245edbedbc6e10ac9c746121f68e4bd0c64e30b9b0c11abfe13c1fb77321249edd4e5c8d3051f62f135093fabfd8ba215573d330fd3745c2
 SHA512 
b723638b9cd858beb75232a251471cfb2d01ddb412b536c3f0b432e1f894014e1ad51c77d208d5439ae8a8d970344d0146d5f9475106c1b66d22715af7af42d9
 DIST xfwm4-4.13.3.tar.bz2 1143136 BLAKE2B 
3d39b9313e97350c8c914b772262be83aa87255521dfde3f9f57a669e855c31824b717a617d7cf6f0b858b6611475dbe256dec5c1708b967e114f4d3cff87f79
 SHA512 
cbd410c9a5a997be6582c9bcd0af879be2c6e5b5362c0e950bb1281b4d2f4a1acbf40b3da88fb8dea3b22f491b69bc3c6df4f75c09c8c36cf9c76a02b528785a
+DIST xfwm4-4.13.4.tar.bz2 1144261 BLAKE2B 
70b54f0393008706bec4dc2e763bd089908ebffed98ee33b85901d99bdf4de325e31525c1e21a50615318b3558d78808f54e7831cc055d5bdea262e34a098b28
 SHA512 
a4adbd5212ed34f8877adbe43c12edb17372ad871d34ad844a3c64c647f8c2fd3d8b9e44e7e09e12508bfc92837b32116fae7416b9c16d4f430f2fadcb2b845a

diff --git a/xfce-base/xfwm4/xfwm4-4.13.4.ebuild 
b/xfce-base/xfwm4/xfwm4-4.13.4.ebuild
new file mode 100644
index 000..b4ae00f6bce
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.13.4.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xdg-utils
+
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="https://www.xfce.org/projects/;
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl startup-notification +xcomposite +xpresent"
+
+RDEPEND="dev-libs/dbus-glib:=
+   >=dev-libs/glib-2.20:=
+   >=x11-libs/gtk+-3.20:3=
+   x11-libs/libX11:=
+   x11-libs/libXext:=
+   x11-libs/libXinerama:=
+   x11-libs/libXrandr:=
+   x11-libs/libXrender:=
+   x11-libs/pango:=
+   >=x11-libs/libwnck-3.14:3=
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/xfconf-4.13:=
+   opengl? ( media-libs/libepoxy:=[X(+)] )
+   startup-notification? ( x11-libs/startup-notification:= )
+   xpresent? ( x11-libs/libXpresent )
+   xcomposite? (
+   x11-libs/libXcomposite:=
+   x11-libs/libXdamage:=
+   x11-libs/libXfixes:=
+   )"
+# libICE/libSM: not really used anywhere but checked by configure
+#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   x11-libs/libICE
+   x11-libs/libSM
+   xfce-base/exo
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
+
+src_configure() {
+   local myconf=(
+   $(use_enable opengl epoxy)
+   $(use_enable startup-notification)
+   --enable-xsync
+   --enable-render
+   --enable-randr
+   $(use_enable xpresent)
+   $(use_enable xcomposite compositor)
+   )
+
+   econf "${myconf[@]}"
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2019-07-27 Thread Michał Górny
commit: 65a9768957d9be5b5f6481659e89e83ba7b1b8ca
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jul 28 05:29:01 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jul 28 05:29:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65a97689

xfce-base/xfwm4: Drop old

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest|  1 -
 xfce-base/xfwm4/xfwm4-4.13.2.ebuild | 70 -
 2 files changed, 71 deletions(-)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index d89f4de9c61..2bd79734505 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,3 +1,2 @@
 DIST xfwm4-4.12.5.tar.bz2 1215450 BLAKE2B 
3a156af589ec7391245edbedbc6e10ac9c746121f68e4bd0c64e30b9b0c11abfe13c1fb77321249edd4e5c8d3051f62f135093fabfd8ba215573d330fd3745c2
 SHA512 
b723638b9cd858beb75232a251471cfb2d01ddb412b536c3f0b432e1f894014e1ad51c77d208d5439ae8a8d970344d0146d5f9475106c1b66d22715af7af42d9
-DIST xfwm4-4.13.2.tar.bz2 1139976 BLAKE2B 
724cb6562f89048f3f94740ff6984f2780274240800646050c62d0b19e303fcdfb107262953c09bb42a9a5a176dca8e1e69252d953df15660dd22f906ecb
 SHA512 
85440a377cd7034e986b317e35c25ac6d4723bd4c1ce1e6951d8545a44f3c47340952fd0211f55cf19411539be6d86f4c34fca7b2219b0873654a6d311c95055
 DIST xfwm4-4.13.3.tar.bz2 1143136 BLAKE2B 
3d39b9313e97350c8c914b772262be83aa87255521dfde3f9f57a669e855c31824b717a617d7cf6f0b858b6611475dbe256dec5c1708b967e114f4d3cff87f79
 SHA512 
cbd410c9a5a997be6582c9bcd0af879be2c6e5b5362c0e950bb1281b4d2f4a1acbf40b3da88fb8dea3b22f491b69bc3c6df4f75c09c8c36cf9c76a02b528785a

diff --git a/xfce-base/xfwm4/xfwm4-4.13.2.ebuild 
b/xfce-base/xfwm4/xfwm4-4.13.2.ebuild
deleted file mode 100644
index b4ae00f6bce..000
--- a/xfce-base/xfwm4/xfwm4-4.13.2.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit xdg-utils
-
-DESCRIPTION="Window manager for the Xfce desktop environment"
-HOMEPAGE="https://www.xfce.org/projects/;
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="opengl startup-notification +xcomposite +xpresent"
-
-RDEPEND="dev-libs/dbus-glib:=
-   >=dev-libs/glib-2.20:=
-   >=x11-libs/gtk+-3.20:3=
-   x11-libs/libX11:=
-   x11-libs/libXext:=
-   x11-libs/libXinerama:=
-   x11-libs/libXrandr:=
-   x11-libs/libXrender:=
-   x11-libs/pango:=
-   >=x11-libs/libwnck-3.14:3=
-   >=xfce-base/libxfce4util-4.10:=
-   >=xfce-base/libxfce4ui-4.12:=
-   >=xfce-base/xfconf-4.13:=
-   opengl? ( media-libs/libepoxy:=[X(+)] )
-   startup-notification? ( x11-libs/startup-notification:= )
-   xpresent? ( x11-libs/libXpresent )
-   xcomposite? (
-   x11-libs/libXcomposite:=
-   x11-libs/libXdamage:=
-   x11-libs/libXfixes:=
-   )"
-# libICE/libSM: not really used anywhere but checked by configure
-#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
-DEPEND="${RDEPEND}
-   dev-util/intltool
-   sys-devel/gettext
-   x11-libs/libICE
-   x11-libs/libSM
-   xfce-base/exo
-   virtual/pkgconfig"
-
-DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
-
-src_configure() {
-   local myconf=(
-   $(use_enable opengl epoxy)
-   $(use_enable startup-notification)
-   --enable-xsync
-   --enable-render
-   --enable-randr
-   $(use_enable xpresent)
-   $(use_enable xcomposite compositor)
-   )
-
-   econf "${myconf[@]}"
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2019-07-23 Thread Kent Fredric
commit: 933cb4e36eb69de6b0f84f6b247abc63403e11ea
Author: Kent Fredric  gentoo  org>
AuthorDate: Tue Jul 23 13:54:42 2019 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Jul 23 13:54:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=933cb4e3

xfce-base/xfwm4: Drop ~x86-fbsd due to bug #665088

Judicious dropping of keywords due to inactivity in bug #665088
This percolates due to keyword inconsistencies in:
  dev-perl/Log-Agent, dev-perl/glib-perl, xfce-base/xfconf

Bug: https://bugs.gentoo.org/665088
Package-Manager: Portage-2.3.66, Repoman-2.3.16
RepoMan-Options: --include-arches="x86-fbsd"
Signed-off-by: Kent Fredric  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.12.5.ebuild | 4 ++--
 xfce-base/xfwm4/xfwm4-4.13.2.ebuild | 2 +-
 xfce-base/xfwm4/xfwm4-4.13.3.ebuild | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.12.5.ebuild 
b/xfce-base/xfwm4/xfwm4-4.12.5.ebuild
index 2ae8b4a5695..1edd28d357d 100644
--- a/xfce-base/xfwm4/xfwm4-4.12.5.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.12.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="dri startup-notification +xcomposite"
 
 RDEPEND="dev-libs/dbus-glib:=

diff --git a/xfce-base/xfwm4/xfwm4-4.13.2.ebuild 
b/xfce-base/xfwm4/xfwm4-4.13.2.ebuild
index db4e29db4f9..b4ae00f6bce 100644
--- a/xfce-base/xfwm4/xfwm4-4.13.2.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.13.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND="dev-libs/dbus-glib:=

diff --git a/xfce-base/xfwm4/xfwm4-4.13.3.ebuild 
b/xfce-base/xfwm4/xfwm4-4.13.3.ebuild
index db4e29db4f9..b4ae00f6bce 100644
--- a/xfce-base/xfwm4/xfwm4-4.13.3.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.13.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND="dev-libs/dbus-glib:=



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2019-06-30 Thread Michał Górny
commit: 717f9dc9d6b226e9fcf2dbf7921e4534177e8a6d
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jun 30 20:34:36 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jun 30 21:00:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=717f9dc9

xfce-base/xfwm4: Bump to 4.13.3

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest|  1 +
 xfce-base/xfwm4/xfwm4-4.13.3.ebuild | 70 +
 2 files changed, 71 insertions(+)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index fce1ae9d719..d89f4de9c61 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,2 +1,3 @@
 DIST xfwm4-4.12.5.tar.bz2 1215450 BLAKE2B 
3a156af589ec7391245edbedbc6e10ac9c746121f68e4bd0c64e30b9b0c11abfe13c1fb77321249edd4e5c8d3051f62f135093fabfd8ba215573d330fd3745c2
 SHA512 
b723638b9cd858beb75232a251471cfb2d01ddb412b536c3f0b432e1f894014e1ad51c77d208d5439ae8a8d970344d0146d5f9475106c1b66d22715af7af42d9
 DIST xfwm4-4.13.2.tar.bz2 1139976 BLAKE2B 
724cb6562f89048f3f94740ff6984f2780274240800646050c62d0b19e303fcdfb107262953c09bb42a9a5a176dca8e1e69252d953df15660dd22f906ecb
 SHA512 
85440a377cd7034e986b317e35c25ac6d4723bd4c1ce1e6951d8545a44f3c47340952fd0211f55cf19411539be6d86f4c34fca7b2219b0873654a6d311c95055
+DIST xfwm4-4.13.3.tar.bz2 1143136 BLAKE2B 
3d39b9313e97350c8c914b772262be83aa87255521dfde3f9f57a669e855c31824b717a617d7cf6f0b858b6611475dbe256dec5c1708b967e114f4d3cff87f79
 SHA512 
cbd410c9a5a997be6582c9bcd0af879be2c6e5b5362c0e950bb1281b4d2f4a1acbf40b3da88fb8dea3b22f491b69bc3c6df4f75c09c8c36cf9c76a02b528785a

diff --git a/xfce-base/xfwm4/xfwm4-4.13.3.ebuild 
b/xfce-base/xfwm4/xfwm4-4.13.3.ebuild
new file mode 100644
index 000..db4e29db4f9
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.13.3.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xdg-utils
+
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="https://www.xfce.org/projects/;
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl startup-notification +xcomposite +xpresent"
+
+RDEPEND="dev-libs/dbus-glib:=
+   >=dev-libs/glib-2.20:=
+   >=x11-libs/gtk+-3.20:3=
+   x11-libs/libX11:=
+   x11-libs/libXext:=
+   x11-libs/libXinerama:=
+   x11-libs/libXrandr:=
+   x11-libs/libXrender:=
+   x11-libs/pango:=
+   >=x11-libs/libwnck-3.14:3=
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/xfconf-4.13:=
+   opengl? ( media-libs/libepoxy:=[X(+)] )
+   startup-notification? ( x11-libs/startup-notification:= )
+   xpresent? ( x11-libs/libXpresent )
+   xcomposite? (
+   x11-libs/libXcomposite:=
+   x11-libs/libXdamage:=
+   x11-libs/libXfixes:=
+   )"
+# libICE/libSM: not really used anywhere but checked by configure
+#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   x11-libs/libICE
+   x11-libs/libSM
+   xfce-base/exo
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
+
+src_configure() {
+   local myconf=(
+   $(use_enable opengl epoxy)
+   $(use_enable startup-notification)
+   --enable-xsync
+   --enable-render
+   --enable-randr
+   $(use_enable xpresent)
+   $(use_enable xcomposite compositor)
+   )
+
+   econf "${myconf[@]}"
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/files/, xfce-base/xfwm4/

2019-05-24 Thread Michał Górny
commit: bf7c797bd2a23cf6806752e4f14fd19cbe7abfaa
Author: Michał Górny  gentoo  org>
AuthorDate: Fri May 24 22:02:03 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri May 24 22:20:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf7c797b

xfce-base/xfwm4: Drop old

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest   |  2 -
 .../xfwm4/files/xfwm4-4.13.1-fix-mask-len.patch| 31 -
 xfce-base/xfwm4/xfwm4-4.13.1-r2.ebuild | 79 --
 3 files changed, 112 deletions(-)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index 5f2bcbed353..fce1ae9d719 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,4 +1,2 @@
 DIST xfwm4-4.12.5.tar.bz2 1215450 BLAKE2B 
3a156af589ec7391245edbedbc6e10ac9c746121f68e4bd0c64e30b9b0c11abfe13c1fb77321249edd4e5c8d3051f62f135093fabfd8ba215573d330fd3745c2
 SHA512 
b723638b9cd858beb75232a251471cfb2d01ddb412b536c3f0b432e1f894014e1ad51c77d208d5439ae8a8d970344d0146d5f9475106c1b66d22715af7af42d9
-DIST xfwm4-4.13.1-patchset.tar.bz2 2739 BLAKE2B 
895ac4939c9f9ab75e7f9e5b237cc731dd619bc87ac7a4f6623dc30ef5f4b7e0a80c826881a430b9c1d42ae0172fb72af2d4ff7c5ad6b54890f6d9233c4ecf49
 SHA512 
aa918e8efb050b87afb90594cfeb69a4457117b6bd47142d16f3cdf3d1cd7a4d9d2670dbbb68d939f5d2e52a05b42cefb59325963aabad84fd82ddf1f6ffd6f5
-DIST xfwm4-4.13.1.tar.bz2 1224120 BLAKE2B 
983b12775ba8998598efb22a2a7ab6f539cb1c6074c3fbaa882b9627e5ad0ff3b96ed0d4352c31dd04451c37dd706404147b87bd899f6b6f1b38df0162b82a15
 SHA512 
2ac5acdefff3a89b8525719b345dfeb2dc71104b4da341afe99d7c57c049753c4cdb81a512d1f344e5fb463c7143673e83316b63888777bdcf254c4a07ca8320
 DIST xfwm4-4.13.2.tar.bz2 1139976 BLAKE2B 
724cb6562f89048f3f94740ff6984f2780274240800646050c62d0b19e303fcdfb107262953c09bb42a9a5a176dca8e1e69252d953df15660dd22f906ecb
 SHA512 
85440a377cd7034e986b317e35c25ac6d4723bd4c1ce1e6951d8545a44f3c47340952fd0211f55cf19411539be6d86f4c34fca7b2219b0873654a6d311c95055

diff --git a/xfce-base/xfwm4/files/xfwm4-4.13.1-fix-mask-len.patch 
b/xfce-base/xfwm4/files/xfwm4-4.13.1-fix-mask-len.patch
deleted file mode 100644
index 640e297ce92..000
--- a/xfce-base/xfwm4/files/xfwm4-4.13.1-fix-mask-len.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 2080fa3c81b3810228ae5a8abbb494c78dd1d566 Mon Sep 17 00:00:00 2001
-From: Timo 
-Date: Thu, 13 Sep 2018 20:25:33 +0200
-Subject: device: Fix wrong mask len
-
-Bug: 14695
-
-The `mask_len` field is setup incorrectly in
-`xfwm_device_fill_xi2_event_mask()`.
-
-The size is the pointer length, not the bitmask data area length.

- src/device.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/device.c b/src/device.c
-index b1e33ae2..01c0c81d 100644
 a/src/device.c
-+++ b/src/device.c
-@@ -301,7 +301,7 @@ xfwm_device_fill_xi2_event_mask (XIEventMask 
*xievent_mask, gulong core_mask)
- guint i;
- 
- xievent_mask->deviceid = XIAllMasterDevices;
--xievent_mask->mask_len = sizeof (mask);
-+xievent_mask->mask_len = len;
- xievent_mask->mask = mask;
- 
- for (i = 0; i < G_N_ELEMENTS (core_to_xi2); i++)
--- 
-cgit v1.2.1
-

diff --git a/xfce-base/xfwm4/xfwm4-4.13.1-r2.ebuild 
b/xfce-base/xfwm4/xfwm4-4.13.1-r2.ebuild
deleted file mode 100644
index b929ce60b99..000
--- a/xfce-base/xfwm4/xfwm4-4.13.1-r2.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome2-utils
-
-DESCRIPTION="Window manager for the Xfce desktop environment"
-HOMEPAGE="https://www.xfce.org/projects/;
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2
-   https://dev.gentoo.org/~mgorny/dist/${P}-patchset.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="opengl startup-notification +xcomposite +xpresent"
-
-RDEPEND="dev-libs/dbus-glib:=
-   >=dev-libs/glib-2.20:=
-   >=x11-libs/gtk+-3.20:3=
-   x11-libs/libX11:=
-   x11-libs/libXext:=
-   x11-libs/libXinerama:=
-   x11-libs/libXrandr:=
-   x11-libs/libXrender:=
-   x11-libs/pango:=
-   >=x11-libs/libwnck-3.14:3=
-   >=xfce-base/libxfce4util-4.10:=
-   >=xfce-base/libxfce4ui-4.12:=
-   >=xfce-base/xfconf-4.13:=
-   opengl? ( media-libs/libepoxy:=[X(+)] )
-   startup-notification? ( x11-libs/startup-notification:= )
-   xpresent? ( x11-libs/libXpresent )
-   xcomposite? (
-   x11-libs/libXcomposite:=
-   x11-libs/libXdamage:=
-   x11-libs/libXfixes:=
-   )"
-# libICE/libSM: not really used anywhere but checked by configure
-#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
-DEPEND="${RDEPEND}
-   dev-util/intltool
-   sys-devel/gettext
-   x11-libs/libICE
-   x11-libs/libSM

[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2019-05-18 Thread Michał Górny
commit: 94361e1af1325e8dc601b2451ebebcda9661f328
Author: Michał Górny  gentoo  org>
AuthorDate: Sat May 18 18:42:51 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat May 18 18:46:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94361e1a

xfce-base/xfwm4: Bump to 4.13.2

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest|  1 +
 xfce-base/xfwm4/xfwm4-4.13.2.ebuild | 70 +
 2 files changed, 71 insertions(+)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index 89001219ccd..5f2bcbed353 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,3 +1,4 @@
 DIST xfwm4-4.12.5.tar.bz2 1215450 BLAKE2B 
3a156af589ec7391245edbedbc6e10ac9c746121f68e4bd0c64e30b9b0c11abfe13c1fb77321249edd4e5c8d3051f62f135093fabfd8ba215573d330fd3745c2
 SHA512 
b723638b9cd858beb75232a251471cfb2d01ddb412b536c3f0b432e1f894014e1ad51c77d208d5439ae8a8d970344d0146d5f9475106c1b66d22715af7af42d9
 DIST xfwm4-4.13.1-patchset.tar.bz2 2739 BLAKE2B 
895ac4939c9f9ab75e7f9e5b237cc731dd619bc87ac7a4f6623dc30ef5f4b7e0a80c826881a430b9c1d42ae0172fb72af2d4ff7c5ad6b54890f6d9233c4ecf49
 SHA512 
aa918e8efb050b87afb90594cfeb69a4457117b6bd47142d16f3cdf3d1cd7a4d9d2670dbbb68d939f5d2e52a05b42cefb59325963aabad84fd82ddf1f6ffd6f5
 DIST xfwm4-4.13.1.tar.bz2 1224120 BLAKE2B 
983b12775ba8998598efb22a2a7ab6f539cb1c6074c3fbaa882b9627e5ad0ff3b96ed0d4352c31dd04451c37dd706404147b87bd899f6b6f1b38df0162b82a15
 SHA512 
2ac5acdefff3a89b8525719b345dfeb2dc71104b4da341afe99d7c57c049753c4cdb81a512d1f344e5fb463c7143673e83316b63888777bdcf254c4a07ca8320
+DIST xfwm4-4.13.2.tar.bz2 1139976 BLAKE2B 
724cb6562f89048f3f94740ff6984f2780274240800646050c62d0b19e303fcdfb107262953c09bb42a9a5a176dca8e1e69252d953df15660dd22f906ecb
 SHA512 
85440a377cd7034e986b317e35c25ac6d4723bd4c1ce1e6951d8545a44f3c47340952fd0211f55cf19411539be6d86f4c34fca7b2219b0873654a6d311c95055

diff --git a/xfce-base/xfwm4/xfwm4-4.13.2.ebuild 
b/xfce-base/xfwm4/xfwm4-4.13.2.ebuild
new file mode 100644
index 000..db4e29db4f9
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.13.2.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit xdg-utils
+
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="https://www.xfce.org/projects/;
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl startup-notification +xcomposite +xpresent"
+
+RDEPEND="dev-libs/dbus-glib:=
+   >=dev-libs/glib-2.20:=
+   >=x11-libs/gtk+-3.20:3=
+   x11-libs/libX11:=
+   x11-libs/libXext:=
+   x11-libs/libXinerama:=
+   x11-libs/libXrandr:=
+   x11-libs/libXrender:=
+   x11-libs/pango:=
+   >=x11-libs/libwnck-3.14:3=
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/xfconf-4.13:=
+   opengl? ( media-libs/libepoxy:=[X(+)] )
+   startup-notification? ( x11-libs/startup-notification:= )
+   xpresent? ( x11-libs/libXpresent )
+   xcomposite? (
+   x11-libs/libXcomposite:=
+   x11-libs/libXdamage:=
+   x11-libs/libXfixes:=
+   )"
+# libICE/libSM: not really used anywhere but checked by configure
+#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   x11-libs/libICE
+   x11-libs/libSM
+   xfce-base/exo
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
+
+src_configure() {
+   local myconf=(
+   $(use_enable opengl epoxy)
+   $(use_enable startup-notification)
+   --enable-xsync
+   --enable-render
+   --enable-randr
+   $(use_enable xpresent)
+   $(use_enable xcomposite compositor)
+   )
+
+   econf "${myconf[@]}"
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2019-05-18 Thread Michał Górny
commit: f4d3a41f96b11885b17cb4286ff2a7c48d483868
Author: Michał Górny  gentoo  org>
AuthorDate: Sat May 18 07:45:11 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat May 18 11:11:00 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4d3a41f

xfce-base/xfwm4: Degrade to ~ia64

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.12.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.12.5.ebuild 
b/xfce-base/xfwm4/xfwm4-4.12.5.ebuild
index 229449fe8a7..2ae8b4a5695 100644
--- a/xfce-base/xfwm4/xfwm4-4.12.5.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.12.5.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="dri startup-notification +xcomposite"
 
 RDEPEND="dev-libs/dbus-glib:=



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2019-05-02 Thread Michał Górny
commit: 566eb4b47f393c6c59b0f76b7ddc17af8f383935
Author: Michał Górny  gentoo  org>
AuthorDate: Thu May  2 21:54:13 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu May  2 21:56:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=566eb4b4

xfce-base/xfwm4: Drop old

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.13.1-r1.ebuild | 77 --
 1 file changed, 77 deletions(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.13.1-r1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.13.1-r1.ebuild
deleted file mode 100644
index 45a8b26c189..000
--- a/xfce-base/xfwm4/xfwm4-4.13.1-r1.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome2-utils
-
-DESCRIPTION="Window manager for the Xfce desktop environment"
-HOMEPAGE="https://www.xfce.org/projects/;
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2
-   https://dev.gentoo.org/~mgorny/dist/${P}-patchset.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="opengl startup-notification +xcomposite +xpresent"
-
-RDEPEND="dev-libs/dbus-glib:=
-   >=dev-libs/glib-2.20:=
-   >=x11-libs/gtk+-3.20:3=
-   x11-libs/libX11:=
-   x11-libs/libXext:=
-   x11-libs/libXinerama:=
-   x11-libs/libXrandr:=
-   x11-libs/libXrender:=
-   x11-libs/pango:=
-   >=x11-libs/libwnck-3.14:3=
-   >=xfce-base/libxfce4util-4.10:=
-   >=xfce-base/libxfce4ui-4.12:=
-   >=xfce-base/xfconf-4.13:=
-   opengl? ( media-libs/libepoxy:=[X(+)] )
-   startup-notification? ( x11-libs/startup-notification:= )
-   xpresent? ( x11-libs/libXpresent )
-   xcomposite? (
-   x11-libs/libXcomposite:=
-   x11-libs/libXdamage:=
-   x11-libs/libXfixes:=
-   )"
-# libICE/libSM: not really used anywhere but checked by configure
-#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
-DEPEND="${RDEPEND}
-   dev-util/intltool
-   sys-devel/gettext
-   x11-libs/libICE
-   x11-libs/libSM
-   xfce-base/exo
-   virtual/pkgconfig"
-
-DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
-
-PATCHES=(
-   # set of patches to fix refresh issues
-   # https://bugs.gentoo.org/614564
-   "${WORKDIR}/${P}-patchset"
-)
-
-src_configure() {
-   local myconf=(
-   $(use_enable opengl epoxy)
-   $(use_enable startup-notification)
-   --enable-xsync
-   --enable-render
-   --enable-randr
-   $(use_enable xpresent)
-   $(use_enable xcomposite compositor)
-   )
-
-   econf "${myconf[@]}"
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/files/, xfce-base/xfwm4/

2019-04-10 Thread Michał Górny
commit: dc6a5562a06951cb3fbfab4595463c73af3e2d0d
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Apr 10 07:59:50 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Apr 10 08:19:08 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc6a5562

xfce-base/xfwm4: Backport upstream fix for event mask length

Closes: https://bugs.gentoo.org/664710
Signed-off-by: Michał Górny  gentoo.org>

 .../xfwm4/files/xfwm4-4.13.1-fix-mask-len.patch| 31 +
 xfce-base/xfwm4/xfwm4-4.13.1-r2.ebuild | 79 ++
 2 files changed, 110 insertions(+)

diff --git a/xfce-base/xfwm4/files/xfwm4-4.13.1-fix-mask-len.patch 
b/xfce-base/xfwm4/files/xfwm4-4.13.1-fix-mask-len.patch
new file mode 100644
index 000..640e297ce92
--- /dev/null
+++ b/xfce-base/xfwm4/files/xfwm4-4.13.1-fix-mask-len.patch
@@ -0,0 +1,31 @@
+From 2080fa3c81b3810228ae5a8abbb494c78dd1d566 Mon Sep 17 00:00:00 2001
+From: Timo 
+Date: Thu, 13 Sep 2018 20:25:33 +0200
+Subject: device: Fix wrong mask len
+
+Bug: 14695
+
+The `mask_len` field is setup incorrectly in
+`xfwm_device_fill_xi2_event_mask()`.
+
+The size is the pointer length, not the bitmask data area length.
+---
+ src/device.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/device.c b/src/device.c
+index b1e33ae2..01c0c81d 100644
+--- a/src/device.c
 b/src/device.c
+@@ -301,7 +301,7 @@ xfwm_device_fill_xi2_event_mask (XIEventMask 
*xievent_mask, gulong core_mask)
+ guint i;
+ 
+ xievent_mask->deviceid = XIAllMasterDevices;
+-xievent_mask->mask_len = sizeof (mask);
++xievent_mask->mask_len = len;
+ xievent_mask->mask = mask;
+ 
+ for (i = 0; i < G_N_ELEMENTS (core_to_xi2); i++)
+-- 
+cgit v1.2.1
+

diff --git a/xfce-base/xfwm4/xfwm4-4.13.1-r2.ebuild 
b/xfce-base/xfwm4/xfwm4-4.13.1-r2.ebuild
new file mode 100644
index 000..b929ce60b99
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.13.1-r2.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils
+
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="https://www.xfce.org/projects/;
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2
+   https://dev.gentoo.org/~mgorny/dist/${P}-patchset.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl startup-notification +xcomposite +xpresent"
+
+RDEPEND="dev-libs/dbus-glib:=
+   >=dev-libs/glib-2.20:=
+   >=x11-libs/gtk+-3.20:3=
+   x11-libs/libX11:=
+   x11-libs/libXext:=
+   x11-libs/libXinerama:=
+   x11-libs/libXrandr:=
+   x11-libs/libXrender:=
+   x11-libs/pango:=
+   >=x11-libs/libwnck-3.14:3=
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/xfconf-4.13:=
+   opengl? ( media-libs/libepoxy:=[X(+)] )
+   startup-notification? ( x11-libs/startup-notification:= )
+   xpresent? ( x11-libs/libXpresent )
+   xcomposite? (
+   x11-libs/libXcomposite:=
+   x11-libs/libXdamage:=
+   x11-libs/libXfixes:=
+   )"
+# libICE/libSM: not really used anywhere but checked by configure
+#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   x11-libs/libICE
+   x11-libs/libSM
+   xfce-base/exo
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
+
+PATCHES=(
+   # set of patches to fix refresh issues
+   # https://bugs.gentoo.org/614564
+   "${WORKDIR}/${P}-patchset"
+
+   "${FILESDIR}"/xfwm4-4.13.1-fix-mask-len.patch
+)
+
+src_configure() {
+   local myconf=(
+   $(use_enable opengl epoxy)
+   $(use_enable startup-notification)
+   --enable-xsync
+   --enable-render
+   --enable-randr
+   $(use_enable xpresent)
+   $(use_enable xcomposite compositor)
+   )
+
+   econf "${myconf[@]}"
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2018-12-02 Thread Mikle Kolyada
commit: d05ba78648b52393ef8c3788ab33ca9f64363673
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Dec  2 11:10:20 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Dec  2 11:10:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d05ba786

xfce-base/xfwm4: arm stable wrt bug #652774

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 xfce-base/xfwm4/xfwm4-4.12.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.12.5.ebuild 
b/xfce-base/xfwm4/xfwm4-4.12.5.ebuild
index 00a78fdc173..229449fe8a7 100644
--- a/xfce-base/xfwm4/xfwm4-4.12.5.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.12.5.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="dri startup-notification +xcomposite"
 
 RDEPEND="dev-libs/dbus-glib:=



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2018-11-27 Thread Tobias Klausmann
commit: c507def0264784ec7626e025d91240d6e814874f
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Tue Nov 27 16:00:58 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Tue Nov 27 16:00:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c507def0

xfce-base/xfwm4-4.12.5-r0: alpha stable

Bug: http://bugs.gentoo.org/652774
Signed-off-by: Tobias Klausmann  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.12.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.12.5.ebuild 
b/xfce-base/xfwm4/xfwm4-4.12.5.ebuild
index 53afd367072..56a607220c1 100644
--- a/xfce-base/xfwm4/xfwm4-4.12.5.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.12.5.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="dri startup-notification +xcomposite"
 
 RDEPEND="dev-libs/dbus-glib:=



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2018-11-24 Thread Sergei Trofimovich
commit: 32a74cb3469504d17b03e8fa2efd31a73f5dcff4
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Nov 24 13:39:19 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Nov 24 13:39:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32a74cb3

xfce-base/xfwm4: stable 4.12.5 for ppc, bug #652774

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.52, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.12.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.12.5.ebuild 
b/xfce-base/xfwm4/xfwm4-4.12.5.ebuild
index 28eedf3780e..53afd367072 100644
--- a/xfce-base/xfwm4/xfwm4-4.12.5.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.12.5.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="dri startup-notification +xcomposite"
 
 RDEPEND="dev-libs/dbus-glib:=



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2018-11-12 Thread Mikle Kolyada
commit: 49287695ce15a42baa60c42533ad3f0f4466eede
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Nov 12 13:46:25 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Nov 12 13:46:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49287695

xfce-base/xfwm4: amd64 stable wrt bug #652774

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 xfce-base/xfwm4/xfwm4-4.12.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.12.5.ebuild 
b/xfce-base/xfwm4/xfwm4-4.12.5.ebuild
index b1ef18f4ba3..6fd1e34148b 100644
--- a/xfce-base/xfwm4/xfwm4-4.12.5.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.12.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="dri startup-notification +xcomposite"
 
 RDEPEND="dev-libs/dbus-glib:=



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/, xfce-base/xfwm4/files/

2018-11-11 Thread Michał Górny
commit: f840d93be37d3a6d629380c6cf11174d0cae2752
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Nov 11 13:07:35 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Nov 11 19:07:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f840d93b

xfce-base/xfwm4: Clean old up

Signed-off-by: Michał Górny  gentoo.org>

 xfce-base/xfwm4/Manifest |  1 -
 xfce-base/xfwm4/files/xfwm4-4.13.0-ctrl-f1.patch | 37 
 xfce-base/xfwm4/xfwm4-4.13.0-r1.ebuild   | 72 
 xfce-base/xfwm4/xfwm4-4.13.1.ebuild  | 70 ---
 4 files changed, 180 deletions(-)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index f2256f0fe8f..a1bf75581e7 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,5 +1,4 @@
 DIST xfwm4-4.12.4.tar.bz2 1208874 BLAKE2B 
60b584d71bc4696bae83897d80cd90d9c13233d1971c823eea6417c8020a0440dc0d648df4e11b27947915ca57130ea3bc7b588e902dc7db74945349ff9ac514
 SHA512 
a33530b08f094456c45ad7c627ba34d3772eaeacdc9f422a3a54a16194d494cb1d6798122398d917fb8bc970db7e1184d9dc8edefc365dacc86de22be397b43d
 DIST xfwm4-4.12.5.tar.bz2 1215450 BLAKE2B 
3a156af589ec7391245edbedbc6e10ac9c746121f68e4bd0c64e30b9b0c11abfe13c1fb77321249edd4e5c8d3051f62f135093fabfd8ba215573d330fd3745c2
 SHA512 
b723638b9cd858beb75232a251471cfb2d01ddb412b536c3f0b432e1f894014e1ad51c77d208d5439ae8a8d970344d0146d5f9475106c1b66d22715af7af42d9
-DIST xfwm4-4.13.0.tar.bz2 1229878 BLAKE2B 
9d7f3d6121a1d1522294a659204d391e120b971cbca00f53f0a0d37f256f2ad65dc6ac1cfd5355d78fa5bd811ed8f7d4013081a10470f18e3edb9fcc0395e218
 SHA512 
01c6cc31dc179ccb51f9881f64ee9e4e16320ab888381d0b203ca0b2a46097048c30eabe7083aaec869c80e8e358c287896d6a1965a36ed6f2f981c27cfb2dce
 DIST xfwm4-4.13.1-patchset.tar.bz2 2739 BLAKE2B 
895ac4939c9f9ab75e7f9e5b237cc731dd619bc87ac7a4f6623dc30ef5f4b7e0a80c826881a430b9c1d42ae0172fb72af2d4ff7c5ad6b54890f6d9233c4ecf49
 SHA512 
aa918e8efb050b87afb90594cfeb69a4457117b6bd47142d16f3cdf3d1cd7a4d9d2670dbbb68d939f5d2e52a05b42cefb59325963aabad84fd82ddf1f6ffd6f5
 DIST xfwm4-4.13.1.tar.bz2 1224120 BLAKE2B 
983b12775ba8998598efb22a2a7ab6f539cb1c6074c3fbaa882b9627e5ad0ff3b96ed0d4352c31dd04451c37dd706404147b87bd899f6b6f1b38df0162b82a15
 SHA512 
2ac5acdefff3a89b8525719b345dfeb2dc71104b4da341afe99d7c57c049753c4cdb81a512d1f344e5fb463c7143673e83316b63888777bdcf254c4a07ca8320

diff --git a/xfce-base/xfwm4/files/xfwm4-4.13.0-ctrl-f1.patch 
b/xfce-base/xfwm4/files/xfwm4-4.13.0-ctrl-f1.patch
deleted file mode 100644
index 28624ee754c..000
--- a/xfce-base/xfwm4/files/xfwm4-4.13.0-ctrl-f1.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From 012bdbfc826466d7ffae0c52387ae949aa17aabe Mon Sep 17 00:00:00 2001
-From: Olivier Fourdan 
-Date: Thu, 23 Mar 2017 11:40:46 +0100
-Subject: [PATCH] Revert "Add PointerMotionHintMask"
-
-Bug: 12534
-
-This reverts commit 0dfb55407a830572f03297b3c118fac1f3c5b80d.

- src/client.c | 1 -
- src/moveresize.c | 1 -
- 2 files changed, 2 deletions(-)
-
-diff --git a/src/client.c b/src/client.c
-index 668c11b0b..6a16971a3 100644
 a/src/client.c
-+++ b/src/client.c
-@@ -73,7 +73,6 @@
- #define FRAME_EVENT_MASK \
- SubstructureNotifyMask|\
- SubstructureRedirectMask|\
--PointerMotionHintMask|\
- PointerMotionMask|\
- ButtonMotionMask|\
- FocusChangeMask|\
-diff --git a/src/moveresize.c b/src/moveresize.c
-index 026cc0d9e..1c07e8ed7 100644
 a/src/moveresize.c
-+++ b/src/moveresize.c
-@@ -53,7 +53,6 @@
- #include "xsync.h"
- 
- #define MOVERESIZE_EVENT_MASK \
--PointerMotionHintMask | \
- PointerMotionMask | \
- ButtonMotionMask | \
- ButtonReleaseMask | \

diff --git a/xfce-base/xfwm4/xfwm4-4.13.0-r1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.13.0-r1.ebuild
deleted file mode 100644
index 398cd2db17a..000
--- a/xfce-base/xfwm4/xfwm4-4.13.0-r1.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome2-utils
-
-DESCRIPTION="Window manager for the Xfce desktop environment"
-HOMEPAGE="https://www.xfce.org/projects/;
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="opengl startup-notification +xcomposite xpresent"
-
-RDEPEND="dev-libs/dbus-glib:=
-   >=dev-libs/glib-2.20:=
-   >=x11-libs/gtk+-2.24:2=
-   x11-libs/libX11:=
-   x11-libs/libXext:=
-   x11-libs/libXrandr:=
-   x11-libs/libXrender:=
-   x11-libs/pango:=
-   >=x11-libs/libwnck-2.30:1=
-   >=xfce-base/libxfce4util-4.10:=
-   >=xfce-base/libxfce4ui-4.11:=
-   >=xfce-base/xfconf-4.10:=
-   opengl? ( media-libs/libepoxy:=[X(+)] )
-   startup-notification? ( x11-libs/startup-notification:= )
-   xpresent? ( 

[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2018-09-03 Thread Denis Dupeyron
commit: 6ba183ca9c29048274662ddf00bff4c781069551
Author: Denis Dupeyron  gentoo  org>
AuthorDate: Mon Sep  3 15:10:22 2018 +
Commit: Denis Dupeyron  gentoo  org>
CommitDate: Mon Sep  3 15:11:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ba183ca

xfce-base/xfwm4

Make the xpresent USE flag default to enabled (bug #664710)

Package-Manager: Portage-2.3.48, Repoman-2.3.10

 xfce-base/xfwm4/xfwm4-4.13.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.13.1-r1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.13.1-r1.ebuild
index c44da6e62c0..45a8b26c189 100644
--- a/xfce-base/xfwm4/xfwm4-4.13.1-r1.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.13.1-r1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="opengl startup-notification +xcomposite xpresent"
+IUSE="opengl startup-notification +xcomposite +xpresent"
 
 RDEPEND="dev-libs/dbus-glib:=
>=dev-libs/glib-2.20:=



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2018-08-09 Thread Michał Górny
commit: f46528d4c0e9309f2625de2d365376f38deb199a
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Aug  9 09:49:29 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Aug  9 09:49:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f46528d4

xfce-base/xfwm4: Backport refresh issue fixes

Backport the 3 upstream patches that fix the refresh issues.  They
at least fix the issues introduced by 4.13.1, and hopefully the older
ones as well.

Closes: https://bugs.gentoo.org/614564

 xfce-base/xfwm4/Manifest   |  1 +
 xfce-base/xfwm4/xfwm4-4.13.1-r1.ebuild | 77 ++
 2 files changed, 78 insertions(+)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index 9fb8e8a907b..f2256f0fe8f 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,4 +1,5 @@
 DIST xfwm4-4.12.4.tar.bz2 1208874 BLAKE2B 
60b584d71bc4696bae83897d80cd90d9c13233d1971c823eea6417c8020a0440dc0d648df4e11b27947915ca57130ea3bc7b588e902dc7db74945349ff9ac514
 SHA512 
a33530b08f094456c45ad7c627ba34d3772eaeacdc9f422a3a54a16194d494cb1d6798122398d917fb8bc970db7e1184d9dc8edefc365dacc86de22be397b43d
 DIST xfwm4-4.12.5.tar.bz2 1215450 BLAKE2B 
3a156af589ec7391245edbedbc6e10ac9c746121f68e4bd0c64e30b9b0c11abfe13c1fb77321249edd4e5c8d3051f62f135093fabfd8ba215573d330fd3745c2
 SHA512 
b723638b9cd858beb75232a251471cfb2d01ddb412b536c3f0b432e1f894014e1ad51c77d208d5439ae8a8d970344d0146d5f9475106c1b66d22715af7af42d9
 DIST xfwm4-4.13.0.tar.bz2 1229878 BLAKE2B 
9d7f3d6121a1d1522294a659204d391e120b971cbca00f53f0a0d37f256f2ad65dc6ac1cfd5355d78fa5bd811ed8f7d4013081a10470f18e3edb9fcc0395e218
 SHA512 
01c6cc31dc179ccb51f9881f64ee9e4e16320ab888381d0b203ca0b2a46097048c30eabe7083aaec869c80e8e358c287896d6a1965a36ed6f2f981c27cfb2dce
+DIST xfwm4-4.13.1-patchset.tar.bz2 2739 BLAKE2B 
895ac4939c9f9ab75e7f9e5b237cc731dd619bc87ac7a4f6623dc30ef5f4b7e0a80c826881a430b9c1d42ae0172fb72af2d4ff7c5ad6b54890f6d9233c4ecf49
 SHA512 
aa918e8efb050b87afb90594cfeb69a4457117b6bd47142d16f3cdf3d1cd7a4d9d2670dbbb68d939f5d2e52a05b42cefb59325963aabad84fd82ddf1f6ffd6f5
 DIST xfwm4-4.13.1.tar.bz2 1224120 BLAKE2B 
983b12775ba8998598efb22a2a7ab6f539cb1c6074c3fbaa882b9627e5ad0ff3b96ed0d4352c31dd04451c37dd706404147b87bd899f6b6f1b38df0162b82a15
 SHA512 
2ac5acdefff3a89b8525719b345dfeb2dc71104b4da341afe99d7c57c049753c4cdb81a512d1f344e5fb463c7143673e83316b63888777bdcf254c4a07ca8320

diff --git a/xfce-base/xfwm4/xfwm4-4.13.1-r1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.13.1-r1.ebuild
new file mode 100644
index 000..c44da6e62c0
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.13.1-r1.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils
+
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="https://www.xfce.org/projects/;
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2
+   https://dev.gentoo.org/~mgorny/dist/${P}-patchset.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl startup-notification +xcomposite xpresent"
+
+RDEPEND="dev-libs/dbus-glib:=
+   >=dev-libs/glib-2.20:=
+   >=x11-libs/gtk+-3.20:3=
+   x11-libs/libX11:=
+   x11-libs/libXext:=
+   x11-libs/libXinerama:=
+   x11-libs/libXrandr:=
+   x11-libs/libXrender:=
+   x11-libs/pango:=
+   >=x11-libs/libwnck-3.14:3=
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/xfconf-4.13:=
+   opengl? ( media-libs/libepoxy:=[X(+)] )
+   startup-notification? ( x11-libs/startup-notification:= )
+   xpresent? ( x11-libs/libXpresent )
+   xcomposite? (
+   x11-libs/libXcomposite:=
+   x11-libs/libXdamage:=
+   x11-libs/libXfixes:=
+   )"
+# libICE/libSM: not really used anywhere but checked by configure
+#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   x11-libs/libICE
+   x11-libs/libSM
+   xfce-base/exo
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
+
+PATCHES=(
+   # set of patches to fix refresh issues
+   # https://bugs.gentoo.org/614564
+   "${WORKDIR}/${P}-patchset"
+)
+
+src_configure() {
+   local myconf=(
+   $(use_enable opengl epoxy)
+   $(use_enable startup-notification)
+   --enable-xsync
+   --enable-render
+   --enable-randr
+   $(use_enable xpresent)
+   $(use_enable xcomposite compositor)
+   )
+
+   econf "${myconf[@]}"
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2018-08-05 Thread Jason Zaman
commit: 505276a3b27b8b9de21df855c22cd4d56dd7a50c
Author: Jason Zaman  gentoo  org>
AuthorDate: Sun Aug  5 13:00:31 2018 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Sun Aug  5 13:00:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=505276a3

xfce-base/xfwm4: bump to 4.13.1

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 xfce-base/xfwm4/Manifest|  1 +
 xfce-base/xfwm4/xfwm4-4.13.1.ebuild | 70 +
 2 files changed, 71 insertions(+)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index 9a7a65bf9d1..9fb8e8a907b 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,3 +1,4 @@
 DIST xfwm4-4.12.4.tar.bz2 1208874 BLAKE2B 
60b584d71bc4696bae83897d80cd90d9c13233d1971c823eea6417c8020a0440dc0d648df4e11b27947915ca57130ea3bc7b588e902dc7db74945349ff9ac514
 SHA512 
a33530b08f094456c45ad7c627ba34d3772eaeacdc9f422a3a54a16194d494cb1d6798122398d917fb8bc970db7e1184d9dc8edefc365dacc86de22be397b43d
 DIST xfwm4-4.12.5.tar.bz2 1215450 BLAKE2B 
3a156af589ec7391245edbedbc6e10ac9c746121f68e4bd0c64e30b9b0c11abfe13c1fb77321249edd4e5c8d3051f62f135093fabfd8ba215573d330fd3745c2
 SHA512 
b723638b9cd858beb75232a251471cfb2d01ddb412b536c3f0b432e1f894014e1ad51c77d208d5439ae8a8d970344d0146d5f9475106c1b66d22715af7af42d9
 DIST xfwm4-4.13.0.tar.bz2 1229878 BLAKE2B 
9d7f3d6121a1d1522294a659204d391e120b971cbca00f53f0a0d37f256f2ad65dc6ac1cfd5355d78fa5bd811ed8f7d4013081a10470f18e3edb9fcc0395e218
 SHA512 
01c6cc31dc179ccb51f9881f64ee9e4e16320ab888381d0b203ca0b2a46097048c30eabe7083aaec869c80e8e358c287896d6a1965a36ed6f2f981c27cfb2dce
+DIST xfwm4-4.13.1.tar.bz2 1224120 BLAKE2B 
983b12775ba8998598efb22a2a7ab6f539cb1c6074c3fbaa882b9627e5ad0ff3b96ed0d4352c31dd04451c37dd706404147b87bd899f6b6f1b38df0162b82a15
 SHA512 
2ac5acdefff3a89b8525719b345dfeb2dc71104b4da341afe99d7c57c049753c4cdb81a512d1f344e5fb463c7143673e83316b63888777bdcf254c4a07ca8320

diff --git a/xfce-base/xfwm4/xfwm4-4.13.1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.13.1.ebuild
new file mode 100644
index 000..6c5cc896fae
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.13.1.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils
+
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="https://www.xfce.org/projects/;
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl startup-notification +xcomposite xpresent"
+
+RDEPEND="dev-libs/dbus-glib:=
+   >=dev-libs/glib-2.20:=
+   >=x11-libs/gtk+-3.20:3=
+   x11-libs/libX11:=
+   x11-libs/libXext:=
+   x11-libs/libXinerama:=
+   x11-libs/libXrandr:=
+   x11-libs/libXrender:=
+   x11-libs/pango:=
+   >=x11-libs/libwnck-3.14:3=
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/xfconf-4.13:=
+   opengl? ( media-libs/libepoxy:=[X(+)] )
+   startup-notification? ( x11-libs/startup-notification:= )
+   xpresent? ( x11-libs/libXpresent )
+   xcomposite? (
+   x11-libs/libXcomposite:=
+   x11-libs/libXdamage:=
+   x11-libs/libXfixes:=
+   )"
+# libICE/libSM: not really used anywhere but checked by configure
+#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   x11-libs/libICE
+   x11-libs/libSM
+   xfce-base/exo
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
+
+src_configure() {
+   local myconf=(
+   $(use_enable opengl epoxy)
+   $(use_enable startup-notification)
+   --enable-xsync
+   --enable-render
+   --enable-randr
+   $(use_enable xpresent)
+   $(use_enable xcomposite compositor)
+   )
+
+   econf "${myconf[@]}"
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2018-08-04 Thread Michał Górny
commit: 42101aefd32c6e1d0b5f5a43d835e32249fda484
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Aug  4 10:29:15 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Aug  4 10:40:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42101aef

xfce-base/xfwm4: Bump to 4.12.5 (stable branch)

 xfce-base/xfwm4/Manifest|  1 +
 xfce-base/xfwm4/xfwm4-4.12.5.ebuild | 59 +
 2 files changed, 60 insertions(+)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index a17a6ce3a21..9a7a65bf9d1 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,2 +1,3 @@
 DIST xfwm4-4.12.4.tar.bz2 1208874 BLAKE2B 
60b584d71bc4696bae83897d80cd90d9c13233d1971c823eea6417c8020a0440dc0d648df4e11b27947915ca57130ea3bc7b588e902dc7db74945349ff9ac514
 SHA512 
a33530b08f094456c45ad7c627ba34d3772eaeacdc9f422a3a54a16194d494cb1d6798122398d917fb8bc970db7e1184d9dc8edefc365dacc86de22be397b43d
+DIST xfwm4-4.12.5.tar.bz2 1215450 BLAKE2B 
3a156af589ec7391245edbedbc6e10ac9c746121f68e4bd0c64e30b9b0c11abfe13c1fb77321249edd4e5c8d3051f62f135093fabfd8ba215573d330fd3745c2
 SHA512 
b723638b9cd858beb75232a251471cfb2d01ddb412b536c3f0b432e1f894014e1ad51c77d208d5439ae8a8d970344d0146d5f9475106c1b66d22715af7af42d9
 DIST xfwm4-4.13.0.tar.bz2 1229878 BLAKE2B 
9d7f3d6121a1d1522294a659204d391e120b971cbca00f53f0a0d37f256f2ad65dc6ac1cfd5355d78fa5bd811ed8f7d4013081a10470f18e3edb9fcc0395e218
 SHA512 
01c6cc31dc179ccb51f9881f64ee9e4e16320ab888381d0b203ca0b2a46097048c30eabe7083aaec869c80e8e358c287896d6a1965a36ed6f2f981c27cfb2dce

diff --git a/xfce-base/xfwm4/xfwm4-4.12.5.ebuild 
b/xfce-base/xfwm4/xfwm4-4.12.5.ebuild
new file mode 100644
index 000..b1ef18f4ba3
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.12.5.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="https://www.xfce.org/projects/;
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="dri startup-notification +xcomposite"
+
+RDEPEND="dev-libs/dbus-glib:=
+   >=dev-libs/glib-2.20:=
+   >=x11-libs/gtk+-2.24:2=
+   x11-libs/libX11:=
+   x11-libs/libXext:=
+   x11-libs/libXinerama:=
+   x11-libs/libXrandr:=
+   x11-libs/libXrender:=
+   x11-libs/pango:=
+   >=x11-libs/libwnck-2.30:1=
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.11:=
+   >=xfce-base/xfconf-4.10:=
+   startup-notification? ( x11-libs/startup-notification:= )
+   xcomposite? (
+   x11-libs/libXcomposite:=
+   x11-libs/libXdamage:=
+   x11-libs/libXfixes:=
+   )"
+# libdrm: only headers are used
+# libICE/liBSM: not really used anywhere but checked by configure
+#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   x11-libs/libICE
+   x11-libs/libSM
+   xfce-base/exo
+   virtual/pkgconfig
+   dri? ( >=x11-libs/libdrm-2.4 )"
+
+DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
+
+src_configure() {
+   local myconf=(
+   $(use_enable dri libdrm)
+   $(use_enable startup-notification)
+   --enable-xsync
+   --enable-render
+   --enable-randr
+   $(use_enable xcomposite compositor)
+   )
+
+   econf "${myconf[@]}"
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2018-03-23 Thread Markus Meier
commit: 7c2095cd4ec5a5957dd1946c0bc5b3f0dcfc5fa6
Author: Markus Meier  gentoo  org>
AuthorDate: Fri Mar 23 19:50:53 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Fri Mar 23 19:50:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c2095cd

xfce-base/xfwm4: arm stable, bug #643074

Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="arm"

 xfce-base/xfwm4/xfwm4-4.12.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.12.4.ebuild 
b/xfce-base/xfwm4/xfwm4-4.12.4.ebuild
index bafd8b3ee3a..4fb2281e6dc 100644
--- a/xfce-base/xfwm4/xfwm4-4.12.4.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.12.4.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="dri startup-notification +xcomposite"
 
 RDEPEND="dev-libs/dbus-glib:=



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2018-03-03 Thread Tobias Klausmann
commit: f537fca4895956fb0ddbfedb287524975f1e2a3b
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Mar  3 13:42:54 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Mar  3 17:48:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f537fca4

xfce-base/xfwm4-4.12.4-r0: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/643074

 xfce-base/xfwm4/xfwm4-4.12.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.12.4.ebuild 
b/xfce-base/xfwm4/xfwm4-4.12.4.ebuild
index 312191b7971..bafd8b3ee3a 100644
--- a/xfce-base/xfwm4/xfwm4-4.12.4.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.12.4.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="dri startup-notification +xcomposite"
 
 RDEPEND="dev-libs/dbus-glib:=



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2018-01-10 Thread Sergei Trofimovich
commit: cd7b9a902eff469633c25f4728eaa089f9f97e2e
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Jan 10 20:06:16 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Jan 10 21:22:13 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd7b9a90

xfce-base/xfwm4: stable 4.12.4 for hppa, bug #643074

Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="hppa"

 xfce-base/xfwm4/xfwm4-4.12.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.12.4.ebuild 
b/xfce-base/xfwm4/xfwm4-4.12.4.ebuild
index ebee6033110..312191b7971 100644
--- a/xfce-base/xfwm4/xfwm4-4.12.4.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.12.4.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="dri startup-notification +xcomposite"
 
 RDEPEND="dev-libs/dbus-glib:=



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2018-01-08 Thread Sergei Trofimovich
commit: 89e0c481fc19a2047ea19842a9951e9da6f4cd9e
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Jan  8 07:32:08 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jan  8 08:00:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89e0c481

xfce-base/xfwm4: stable 4.12.4 for ia64, bug #643074

Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="ia64"

 xfce-base/xfwm4/xfwm4-4.12.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.12.4.ebuild 
b/xfce-base/xfwm4/xfwm4-4.12.4.ebuild
index b61bb0b969b..ebee6033110 100644
--- a/xfce-base/xfwm4/xfwm4-4.12.4.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.12.4.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="dri startup-notification +xcomposite"
 
 RDEPEND="dev-libs/dbus-glib:=



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2018-01-07 Thread Sergei Trofimovich
commit: 162785f3960ecb6e91b51bed395db743da8cfaa5
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jan  7 20:04:21 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jan  7 20:04:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=162785f3

xfce-base/xfwm4: stable 4.12.4 for ppc, bug #643074

Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc"

 xfce-base/xfwm4/xfwm4-4.12.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.12.4.ebuild 
b/xfce-base/xfwm4/xfwm4-4.12.4.ebuild
index 454e91e0f72..b61bb0b969b 100644
--- a/xfce-base/xfwm4/xfwm4-4.12.4.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.12.4.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="dri startup-notification +xcomposite"
 
 RDEPEND="dev-libs/dbus-glib:=



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2018-01-07 Thread Sergei Trofimovich
commit: e601cef447516324e5d11a420f52f0e0bdc0d22d
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jan  7 13:12:53 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jan  7 13:16:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e601cef4

xfce-base/xfwm4: stable 4.12.4 for ppc64, bug #643074

Package-Manager: Portage-2.3.19, Repoman-2.3.6
RepoMan-Options: --include-arches="ppc64"

 xfce-base/xfwm4/xfwm4-4.12.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.12.4.ebuild 
b/xfce-base/xfwm4/xfwm4-4.12.4.ebuild
index eab61d2a1c3..454e91e0f72 100644
--- a/xfce-base/xfwm4/xfwm4-4.12.4.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.12.4.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="dri startup-notification +xcomposite"
 
 RDEPEND="dev-libs/dbus-glib:=



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2018-01-05 Thread Mikle Kolyada
commit: e4de5cc25b6c6fb4fb77b695a40ca6692871332d
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jan  5 10:58:15 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jan  5 10:58:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4de5cc2

xfce-base/xfwm4: amd64 stable wrt bug #643074

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 xfce-base/xfwm4/xfwm4-4.12.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.12.4.ebuild 
b/xfce-base/xfwm4/xfwm4-4.12.4.ebuild
index 462f4064503..bcbdd43e2e6 100644
--- a/xfce-base/xfwm4/xfwm4-4.12.4.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.12.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="dri startup-notification +xcomposite"
 
 RDEPEND="dev-libs/dbus-glib:=



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2017-08-30 Thread Michał Górny
commit: 8e6a338783ac1c87ab263bebf475e1e9e0027b81
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Aug 30 06:30:33 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Aug 30 07:12:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e6a3387

xfce-base/xfwm4: Remove the bad snapshot

The snapshot is too buggy to be useful even on ~arch systems. Remove
it and backport the one good patch to the previous release.

 xfce-base/xfwm4/xfwm4-4.13.0_p20170825.ebuild | 75 ---
 1 file changed, 75 deletions(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.13.0_p20170825.ebuild 
b/xfce-base/xfwm4/xfwm4-4.13.0_p20170825.ebuild
deleted file mode 100644
index 0e551af3d59..000
--- a/xfce-base/xfwm4/xfwm4-4.13.0_p20170825.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome2-utils
-
-# note: this is upstream b9f910bd with aee8b25a reverted
-# due to https://bugzilla.xfce.org/show_bug.cgi?id=13823
-MY_P=${P%_p*}git.2b80a066
-DESCRIPTION="Window manager for the Xfce desktop environment"
-HOMEPAGE="https://www.xfce.org/projects/;
-SRC_URI="https://dev.gentoo.org/~mgorny/dist/${MY_P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="opengl startup-notification +xcomposite xpresent"
-
-RDEPEND="dev-libs/dbus-glib:=
-   >=dev-libs/glib-2.20:=
-   >=x11-libs/gtk+-2.24:2=
-   x11-libs/libX11:=
-   x11-libs/libXext:=
-   x11-libs/libXinerama:=
-   x11-libs/libXrandr:=
-   x11-libs/libXrender:=
-   x11-libs/pango:=
-   >=x11-libs/libwnck-2.30:1=
-   >=xfce-base/libxfce4util-4.10:=
-   >=xfce-base/libxfce4ui-4.11:=
-   >=xfce-base/xfconf-4.10:=
-   opengl? ( media-libs/libepoxy:=[X(+)] )
-   startup-notification? ( x11-libs/startup-notification:= )
-   xpresent? ( x11-libs/libXpresent )
-   xcomposite? (
-   x11-libs/libXcomposite:=
-   x11-libs/libXdamage:=
-   x11-libs/libXfixes:=
-   )"
-# libICE/libSM: not really used anywhere but checked by configure
-#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
-DEPEND="${RDEPEND}
-   dev-util/intltool
-   sys-devel/gettext
-   x11-libs/libICE
-   x11-libs/libSM
-   xfce-base/exo
-   virtual/pkgconfig"
-
-DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
-
-S=${WORKDIR}/${MY_P}
-
-src_configure() {
-   local myconf=(
-   $(use_enable opengl epoxy)
-   $(use_enable startup-notification)
-   --enable-xsync
-   --enable-render
-   --enable-randr
-   $(use_enable xpresent)
-   $(use_enable xcomposite compositor)
-   )
-
-   econf "${myconf[@]}"
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/, xfce-base/xfwm4/files/

2017-08-30 Thread Michał Górny
commit: 989b1e717891dbb106b9d9b70652581abe59886c
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Aug 30 06:35:36 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Aug 30 07:12:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=989b1e71

xfce-base/xfwm4: Backport the patch for Ctrl-F1, #616644

 xfce-base/xfwm4/Manifest |  1 -
 xfce-base/xfwm4/files/xfwm4-4.13.0-ctrl-f1.patch | 37 
 xfce-base/xfwm4/xfwm4-4.13.0-r1.ebuild   | 72 
 3 files changed, 109 insertions(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index 569fd0e9fcd..78ad5e1c1a3 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,4 +1,3 @@
 DIST xfwm4-4.12.3.tar.bz2 1191929 SHA256 
f4a988fbc4e0df7e8583c781d271559e56fd28696092f94ae052e9e6edb09eac SHA512 
96fcc76fc640027883a7a3373836565987b1d3d4e61fb40aa7e2f990a8140d92cf66171fb4517368faba45c9083a3ad19f589d59b07a55c3417aaaca87e408d7
 WHIRLPOOL 
0fd8e058694cb2f6486bc59443e00d8ed42ebd9dabe39775451d94c14c7e2ea87a520edea26e3bc7033fa1d95aa0ca1a6b2045eca9a1c9d8ecfb67f1ef88b0a8
 DIST xfwm4-4.12.4.tar.bz2 1208874 SHA256 
fa74048a75649a6e92df763a3cfb706d3fed1e1a6adf567f6693325a5a6efb36 SHA512 
a33530b08f094456c45ad7c627ba34d3772eaeacdc9f422a3a54a16194d494cb1d6798122398d917fb8bc970db7e1184d9dc8edefc365dacc86de22be397b43d
 WHIRLPOOL 
fa26fd4bf758b7c57964956809e9036320aaecc43fad2a0aa3fdca2bd83dda7edc1884fa86ed7f1ab12b94066f4bc729d5aa4e001121f813f128ebb4cc3c3018
 DIST xfwm4-4.13.0.tar.bz2 1229878 SHA256 
7f284c9734f565d8298cac9b67ede252a56c7d67c44531f8c2c07abe5ef0f365 SHA512 
01c6cc31dc179ccb51f9881f64ee9e4e16320ab888381d0b203ca0b2a46097048c30eabe7083aaec869c80e8e358c287896d6a1965a36ed6f2f981c27cfb2dce
 WHIRLPOOL 
80a283c10c8cd047edeb8aef79f83236b4793a2929c48f01bc72be422c6c0bd389f1b9830375247847ec4bda39f126b36e5e6eccbfd8d32dd72fb5a02f4c0c87
-DIST xfwm4-4.13.0git.2b80a066.tar.bz2 1243297 SHA256 
b49769c69c53933ac8185fe6166e358b88dc0313b963af2346d00e5d5977e8b6 SHA512 
6f8e34c0d5d5376e1b689aca19895621cd4e8b6b32efb7e665e7e30b556f218ba4f421aea74509eb4016af35570d1dc9cc79b959388f853c73303fa965d11ff3
 WHIRLPOOL 
d32f6b9ca8cb01609687cf819c36143784a23316010edad7d1820c3217449709e5ed517346ab7f3a0bd8400ff18af8c4492a24c4c350b34376d7d55a5f42a0d3

diff --git a/xfce-base/xfwm4/files/xfwm4-4.13.0-ctrl-f1.patch 
b/xfce-base/xfwm4/files/xfwm4-4.13.0-ctrl-f1.patch
new file mode 100644
index 000..28624ee754c
--- /dev/null
+++ b/xfce-base/xfwm4/files/xfwm4-4.13.0-ctrl-f1.patch
@@ -0,0 +1,37 @@
+From 012bdbfc826466d7ffae0c52387ae949aa17aabe Mon Sep 17 00:00:00 2001
+From: Olivier Fourdan 
+Date: Thu, 23 Mar 2017 11:40:46 +0100
+Subject: [PATCH] Revert "Add PointerMotionHintMask"
+
+Bug: 12534
+
+This reverts commit 0dfb55407a830572f03297b3c118fac1f3c5b80d.
+---
+ src/client.c | 1 -
+ src/moveresize.c | 1 -
+ 2 files changed, 2 deletions(-)
+
+diff --git a/src/client.c b/src/client.c
+index 668c11b0b..6a16971a3 100644
+--- a/src/client.c
 b/src/client.c
+@@ -73,7 +73,6 @@
+ #define FRAME_EVENT_MASK \
+ SubstructureNotifyMask|\
+ SubstructureRedirectMask|\
+-PointerMotionHintMask|\
+ PointerMotionMask|\
+ ButtonMotionMask|\
+ FocusChangeMask|\
+diff --git a/src/moveresize.c b/src/moveresize.c
+index 026cc0d9e..1c07e8ed7 100644
+--- a/src/moveresize.c
 b/src/moveresize.c
+@@ -53,7 +53,6 @@
+ #include "xsync.h"
+ 
+ #define MOVERESIZE_EVENT_MASK \
+-PointerMotionHintMask | \
+ PointerMotionMask | \
+ ButtonMotionMask | \
+ ButtonReleaseMask | \

diff --git a/xfce-base/xfwm4/xfwm4-4.13.0-r1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.13.0-r1.ebuild
new file mode 100644
index 000..93ce8eda772
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.13.0-r1.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils
+
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="https://www.xfce.org/projects/;
+SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl startup-notification +xcomposite xpresent"
+
+RDEPEND="dev-libs/dbus-glib:=
+   >=dev-libs/glib-2.20:=
+   >=x11-libs/gtk+-2.24:2=
+   x11-libs/libX11:=
+   x11-libs/libXext:=
+   x11-libs/libXrandr:=
+   x11-libs/libXrender:=
+   x11-libs/pango:=
+   >=x11-libs/libwnck-2.30:1=
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.11:=
+   >=xfce-base/xfconf-4.10:=
+   opengl? ( media-libs/libepoxy:=[X(+)] )
+   startup-notification? ( x11-libs/startup-notification:= )
+   xpresent? ( x11-libs/libXpresent )
+   xcomposite? (
+   x11-libs/libXcomposite:=
+

[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2017-08-25 Thread Michał Górny
commit: 132efdb8e7ba1e130aa7a1a11f42b7ce827698d8
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Aug 25 12:44:38 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Aug 25 13:01:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=132efdb8

xfce-base/xfwm4: Bump to a snapshot to fix weird Ctrl+F1

Bug: https://bugs.gentoo.org/616644

 xfce-base/xfwm4/Manifest  |  1 +
 xfce-base/xfwm4/xfwm4-4.13.0_p20170825.ebuild | 75 +++
 2 files changed, 76 insertions(+)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index 78ad5e1c1a3..569fd0e9fcd 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,3 +1,4 @@
 DIST xfwm4-4.12.3.tar.bz2 1191929 SHA256 
f4a988fbc4e0df7e8583c781d271559e56fd28696092f94ae052e9e6edb09eac SHA512 
96fcc76fc640027883a7a3373836565987b1d3d4e61fb40aa7e2f990a8140d92cf66171fb4517368faba45c9083a3ad19f589d59b07a55c3417aaaca87e408d7
 WHIRLPOOL 
0fd8e058694cb2f6486bc59443e00d8ed42ebd9dabe39775451d94c14c7e2ea87a520edea26e3bc7033fa1d95aa0ca1a6b2045eca9a1c9d8ecfb67f1ef88b0a8
 DIST xfwm4-4.12.4.tar.bz2 1208874 SHA256 
fa74048a75649a6e92df763a3cfb706d3fed1e1a6adf567f6693325a5a6efb36 SHA512 
a33530b08f094456c45ad7c627ba34d3772eaeacdc9f422a3a54a16194d494cb1d6798122398d917fb8bc970db7e1184d9dc8edefc365dacc86de22be397b43d
 WHIRLPOOL 
fa26fd4bf758b7c57964956809e9036320aaecc43fad2a0aa3fdca2bd83dda7edc1884fa86ed7f1ab12b94066f4bc729d5aa4e001121f813f128ebb4cc3c3018
 DIST xfwm4-4.13.0.tar.bz2 1229878 SHA256 
7f284c9734f565d8298cac9b67ede252a56c7d67c44531f8c2c07abe5ef0f365 SHA512 
01c6cc31dc179ccb51f9881f64ee9e4e16320ab888381d0b203ca0b2a46097048c30eabe7083aaec869c80e8e358c287896d6a1965a36ed6f2f981c27cfb2dce
 WHIRLPOOL 
80a283c10c8cd047edeb8aef79f83236b4793a2929c48f01bc72be422c6c0bd389f1b9830375247847ec4bda39f126b36e5e6eccbfd8d32dd72fb5a02f4c0c87
+DIST xfwm4-4.13.0git.2b80a066.tar.bz2 1243297 SHA256 
b49769c69c53933ac8185fe6166e358b88dc0313b963af2346d00e5d5977e8b6 SHA512 
6f8e34c0d5d5376e1b689aca19895621cd4e8b6b32efb7e665e7e30b556f218ba4f421aea74509eb4016af35570d1dc9cc79b959388f853c73303fa965d11ff3
 WHIRLPOOL 
d32f6b9ca8cb01609687cf819c36143784a23316010edad7d1820c3217449709e5ed517346ab7f3a0bd8400ff18af8c4492a24c4c350b34376d7d55a5f42a0d3

diff --git a/xfce-base/xfwm4/xfwm4-4.13.0_p20170825.ebuild 
b/xfce-base/xfwm4/xfwm4-4.13.0_p20170825.ebuild
new file mode 100644
index 000..0e551af3d59
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.13.0_p20170825.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit gnome2-utils
+
+# note: this is upstream b9f910bd with aee8b25a reverted
+# due to https://bugzilla.xfce.org/show_bug.cgi?id=13823
+MY_P=${P%_p*}git.2b80a066
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="https://www.xfce.org/projects/;
+SRC_URI="https://dev.gentoo.org/~mgorny/dist/${MY_P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl startup-notification +xcomposite xpresent"
+
+RDEPEND="dev-libs/dbus-glib:=
+   >=dev-libs/glib-2.20:=
+   >=x11-libs/gtk+-2.24:2=
+   x11-libs/libX11:=
+   x11-libs/libXext:=
+   x11-libs/libXinerama:=
+   x11-libs/libXrandr:=
+   x11-libs/libXrender:=
+   x11-libs/pango:=
+   >=x11-libs/libwnck-2.30:1=
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.11:=
+   >=xfce-base/xfconf-4.10:=
+   opengl? ( media-libs/libepoxy:=[X(+)] )
+   startup-notification? ( x11-libs/startup-notification:= )
+   xpresent? ( x11-libs/libXpresent )
+   xcomposite? (
+   x11-libs/libXcomposite:=
+   x11-libs/libXdamage:=
+   x11-libs/libXfixes:=
+   )"
+# libICE/libSM: not really used anywhere but checked by configure
+#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   x11-libs/libICE
+   x11-libs/libSM
+   xfce-base/exo
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
+
+S=${WORKDIR}/${MY_P}
+
+src_configure() {
+   local myconf=(
+   $(use_enable opengl epoxy)
+   $(use_enable startup-notification)
+   --enable-xsync
+   --enable-render
+   --enable-randr
+   $(use_enable xpresent)
+   $(use_enable xcomposite compositor)
+   )
+
+   econf "${myconf[@]}"
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2017-08-21 Thread Michał Górny
commit: 397045ca30cd2b111d55c6c2ac9b9e5ca0b7d065
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Aug 21 16:57:54 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Aug 21 17:37:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=397045ca

xfce-base/xfwm4: Add missing icon cache update

 xfce-base/xfwm4/xfwm4-4.13.0.ebuild | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/xfce-base/xfwm4/xfwm4-4.13.0.ebuild 
b/xfce-base/xfwm4/xfwm4-4.13.0.ebuild
index ec35259bf1d..433d1af8fb7 100644
--- a/xfce-base/xfwm4/xfwm4-4.13.0.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.13.0.ebuild
@@ -3,6 +3,8 @@
 
 EAPI=6
 
+inherit gnome2-utils
+
 DESCRIPTION="Window manager for the Xfce desktop environment"
 HOMEPAGE="https://www.xfce.org/projects/;
 SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
@@ -57,3 +59,11 @@ src_configure() {
 
econf "${myconf[@]}"
 }
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2017-06-07 Thread Michał Górny
commit: 51da2becc1f28f73b9ef318b722512c7d2d0ad44
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun  6 10:05:58 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jun  7 20:05:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51da2bec

xfce-base/xfwm4: Drop old

 xfce-base/xfwm4/xfwm4-4.12.3.ebuild | 59 -
 1 file changed, 59 deletions(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.12.3.ebuild 
b/xfce-base/xfwm4/xfwm4-4.12.3.ebuild
deleted file mode 100644
index 3ae30cfb3ed..000
--- a/xfce-base/xfwm4/xfwm4-4.12.3.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit xfconf
-
-DESCRIPTION="Window manager for the Xfce desktop environment"
-HOMEPAGE="https://www.xfce.org/projects/;
-SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="debug dri startup-notification +xcomposite"
-
-RDEPEND="dev-libs/dbus-glib:=
-   >=dev-libs/glib-2.20:=
-   >=x11-libs/gtk+-2.24:2=
-   x11-libs/libX11:=
-   x11-libs/libXext:=
-   x11-libs/libXrandr:=
-   x11-libs/libXrender:=
-   x11-libs/pango:=
-   >=x11-libs/libwnck-2.30:1=
-   >=xfce-base/libxfce4util-4.10:=
-   >=xfce-base/libxfce4ui-4.11:=
-   >=xfce-base/xfconf-4.10:=
-   startup-notification? ( x11-libs/startup-notification:= )
-   xcomposite? (
-   x11-libs/libXcomposite:=
-   x11-libs/libXdamage:=
-   x11-libs/libXfixes:=
-   )"
-# libdrm: only headers are used
-# libICE/liBSM: not really used anywhere but checked by configure
-#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
-DEPEND="${RDEPEND}
-   dev-util/intltool
-   sys-devel/gettext
-   x11-libs/libICE
-   x11-libs/libSM
-   xfce-base/exo
-   virtual/pkgconfig
-   dri? ( >=x11-libs/libdrm-2.4 )"
-
-pkg_setup() {
-   XFCONF=(
-   --docdir="${EPREFIX}"/usr/share/doc/${PF}
-   $(use_enable dri libdrm)
-   $(use_enable startup-notification)
-   --enable-xsync
-   --enable-render
-   --enable-randr
-   $(use_enable xcomposite compositor)
-   $(xfconf_use_debug)
-   )
-
-   DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
-}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2017-05-09 Thread Jason Zaman
commit: 13afdb218b4c62a228272a9150659ee368cdaedc
Author: Jason Zaman  gentoo  org>
AuthorDate: Tue May  9 05:46:53 2017 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Tue May  9 07:23:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13afdb21

xfce-base/xfwm4: enable xpresent extension

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 xfce-base/xfwm4/metadata.xml| 11 +++
 xfce-base/xfwm4/xfwm4-4.13.0.ebuild |  6 +++---
 2 files changed, 10 insertions(+), 7 deletions(-)

diff --git a/xfce-base/xfwm4/metadata.xml b/xfce-base/xfwm4/metadata.xml
index 359901b31db..60c89e524c5 100644
--- a/xfce-base/xfwm4/metadata.xml
+++ b/xfce-base/xfwm4/metadata.xml
@@ -1,8 +1,11 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-x...@gentoo.org
-XFCE Team
-  
+   
+   x...@gentoo.org
+   XFCE Team
+   
+   
+   Enable the XPresent extension for sync to 
vblank
+   
 

diff --git a/xfce-base/xfwm4/xfwm4-4.13.0.ebuild 
b/xfce-base/xfwm4/xfwm4-4.13.0.ebuild
index 89fdca3524a..ec35259bf1d 100644
--- a/xfce-base/xfwm4/xfwm4-4.13.0.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.13.0.ebuild
@@ -10,7 +10,7 @@ SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="opengl startup-notification +xcomposite"
+IUSE="opengl startup-notification +xcomposite xpresent"
 
 RDEPEND="dev-libs/dbus-glib:=
>=dev-libs/glib-2.20:=
@@ -26,6 +26,7 @@ RDEPEND="dev-libs/dbus-glib:=
>=xfce-base/xfconf-4.10:=
opengl? ( media-libs/libepoxy:=[X(+)] )
startup-notification? ( x11-libs/startup-notification:= )
+   xpresent? ( x11-libs/libXpresent )
xcomposite? (
x11-libs/libXcomposite:=
x11-libs/libXdamage:=
@@ -50,8 +51,7 @@ src_configure() {
--enable-xsync
--enable-render
--enable-randr
-   # not packaged atm, bug #549040
-   --disable-xpresent
+   $(use_enable xpresent)
$(use_enable xcomposite compositor)
)
 



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2017-03-16 Thread Michał Górny
commit: d7aa7abb46d5f555ddf707273dc07f6a4da19966
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar 16 14:21:52 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Mar 16 14:23:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7aa7abb

xfce-base/xfwm4: Bump to 4.13.0 testing branch

 xfce-base/xfwm4/Manifest|  1 +
 xfce-base/xfwm4/xfwm4-4.13.0.ebuild | 59 +
 2 files changed, 60 insertions(+)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index 717be075ce7..78ad5e1c1a3 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1,2 +1,3 @@
 DIST xfwm4-4.12.3.tar.bz2 1191929 SHA256 
f4a988fbc4e0df7e8583c781d271559e56fd28696092f94ae052e9e6edb09eac SHA512 
96fcc76fc640027883a7a3373836565987b1d3d4e61fb40aa7e2f990a8140d92cf66171fb4517368faba45c9083a3ad19f589d59b07a55c3417aaaca87e408d7
 WHIRLPOOL 
0fd8e058694cb2f6486bc59443e00d8ed42ebd9dabe39775451d94c14c7e2ea87a520edea26e3bc7033fa1d95aa0ca1a6b2045eca9a1c9d8ecfb67f1ef88b0a8
 DIST xfwm4-4.12.4.tar.bz2 1208874 SHA256 
fa74048a75649a6e92df763a3cfb706d3fed1e1a6adf567f6693325a5a6efb36 SHA512 
a33530b08f094456c45ad7c627ba34d3772eaeacdc9f422a3a54a16194d494cb1d6798122398d917fb8bc970db7e1184d9dc8edefc365dacc86de22be397b43d
 WHIRLPOOL 
fa26fd4bf758b7c57964956809e9036320aaecc43fad2a0aa3fdca2bd83dda7edc1884fa86ed7f1ab12b94066f4bc729d5aa4e001121f813f128ebb4cc3c3018
+DIST xfwm4-4.13.0.tar.bz2 1229878 SHA256 
7f284c9734f565d8298cac9b67ede252a56c7d67c44531f8c2c07abe5ef0f365 SHA512 
01c6cc31dc179ccb51f9881f64ee9e4e16320ab888381d0b203ca0b2a46097048c30eabe7083aaec869c80e8e358c287896d6a1965a36ed6f2f981c27cfb2dce
 WHIRLPOOL 
80a283c10c8cd047edeb8aef79f83236b4793a2929c48f01bc72be422c6c0bd389f1b9830375247847ec4bda39f126b36e5e6eccbfd8d32dd72fb5a02f4c0c87

diff --git a/xfce-base/xfwm4/xfwm4-4.13.0.ebuild 
b/xfce-base/xfwm4/xfwm4-4.13.0.ebuild
new file mode 100644
index 000..2d7df4d0a98
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.13.0.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="http://www.xfce.org/projects/;
+SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="opengl startup-notification +xcomposite"
+
+RDEPEND="dev-libs/dbus-glib:=
+   >=dev-libs/glib-2.20:=
+   >=x11-libs/gtk+-2.24:2=
+   x11-libs/libX11:=
+   x11-libs/libXext:=
+   x11-libs/libXrandr:=
+   x11-libs/libXrender:=
+   x11-libs/pango:=
+   >=x11-libs/libwnck-2.30:1=
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.11:=
+   >=xfce-base/xfconf-4.10:=
+   opengl? ( media-libs/libepoxy:=[X(+)] )
+   startup-notification? ( x11-libs/startup-notification:= )
+   xcomposite? (
+   x11-libs/libXcomposite:=
+   x11-libs/libXdamage:=
+   x11-libs/libXfixes:=
+   )"
+# libICE/libSM: not really used anywhere but checked by configure
+#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   x11-libs/libICE
+   x11-libs/libSM
+   xfce-base/exo
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
+
+src_configure() {
+   local myconf=(
+   $(use_enable opengl epoxy)
+   $(use_enable startup-notification)
+   --enable-xsync
+   --enable-render
+   --enable-randr
+   # not packaged atm, bug #549040
+   --disable-xpresent
+   $(use_enable xcomposite compositor)
+   )
+
+   econf "${myconf[@]}"
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2017-03-16 Thread Michał Górny
commit: e533bb4ac6cbebab6144dad226728dc7d696c946
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar 16 09:26:40 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Mar 16 09:27:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e533bb4a

xfce-base/xfwm4: Bump to 4.12.4

 xfce-base/xfwm4/Manifest|  1 +
 xfce-base/xfwm4/xfwm4-4.12.4.ebuild | 58 +
 2 files changed, 59 insertions(+)

diff --git a/xfce-base/xfwm4/Manifest b/xfce-base/xfwm4/Manifest
index 527f8c3c3c7..717be075ce7 100644
--- a/xfce-base/xfwm4/Manifest
+++ b/xfce-base/xfwm4/Manifest
@@ -1 +1,2 @@
 DIST xfwm4-4.12.3.tar.bz2 1191929 SHA256 
f4a988fbc4e0df7e8583c781d271559e56fd28696092f94ae052e9e6edb09eac SHA512 
96fcc76fc640027883a7a3373836565987b1d3d4e61fb40aa7e2f990a8140d92cf66171fb4517368faba45c9083a3ad19f589d59b07a55c3417aaaca87e408d7
 WHIRLPOOL 
0fd8e058694cb2f6486bc59443e00d8ed42ebd9dabe39775451d94c14c7e2ea87a520edea26e3bc7033fa1d95aa0ca1a6b2045eca9a1c9d8ecfb67f1ef88b0a8
+DIST xfwm4-4.12.4.tar.bz2 1208874 SHA256 
fa74048a75649a6e92df763a3cfb706d3fed1e1a6adf567f6693325a5a6efb36 SHA512 
a33530b08f094456c45ad7c627ba34d3772eaeacdc9f422a3a54a16194d494cb1d6798122398d917fb8bc970db7e1184d9dc8edefc365dacc86de22be397b43d
 WHIRLPOOL 
fa26fd4bf758b7c57964956809e9036320aaecc43fad2a0aa3fdca2bd83dda7edc1884fa86ed7f1ab12b94066f4bc729d5aa4e001121f813f128ebb4cc3c3018

diff --git a/xfce-base/xfwm4/xfwm4-4.12.4.ebuild 
b/xfce-base/xfwm4/xfwm4-4.12.4.ebuild
new file mode 100644
index 000..4e3a1f5a701
--- /dev/null
+++ b/xfce-base/xfwm4/xfwm4-4.12.4.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Window manager for the Xfce desktop environment"
+HOMEPAGE="http://www.xfce.org/projects/;
+SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="dri startup-notification +xcomposite"
+
+RDEPEND="dev-libs/dbus-glib:=
+   >=dev-libs/glib-2.20:=
+   >=x11-libs/gtk+-2.24:2=
+   x11-libs/libX11:=
+   x11-libs/libXext:=
+   x11-libs/libXrandr:=
+   x11-libs/libXrender:=
+   x11-libs/pango:=
+   >=x11-libs/libwnck-2.30:1=
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/libxfce4ui-4.11:=
+   >=xfce-base/xfconf-4.10:=
+   startup-notification? ( x11-libs/startup-notification:= )
+   xcomposite? (
+   x11-libs/libXcomposite:=
+   x11-libs/libXdamage:=
+   x11-libs/libXfixes:=
+   )"
+# libdrm: only headers are used
+# libICE/liBSM: not really used anywhere but checked by configure
+#   https://bugzilla.xfce.org/show_bug.cgi?id=11914
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   x11-libs/libICE
+   x11-libs/libSM
+   xfce-base/exo
+   virtual/pkgconfig
+   dri? ( >=x11-libs/libdrm-2.4 )"
+
+DOCS=( AUTHORS ChangeLog COMPOSITOR NEWS README TODO )
+
+src_configure() {
+   local myconf=(
+   $(use_enable dri libdrm)
+   $(use_enable startup-notification)
+   --enable-xsync
+   --enable-render
+   --enable-randr
+   $(use_enable xcomposite compositor)
+   )
+
+   econf "${myconf[@]}"
+}



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2017-01-29 Thread Fabian Groffen
commit: e84c6be9e8582eaa4d2d403bbe7e6f91cc581697
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sun Jan 29 21:52:57 2017 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Mon Jan 30 07:36:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e84c6be9

xfce-base/xfwm4: dropped ~x86-freebsd ~x86-interix

Package-Manager: portage-2.3.3

 xfce-base/xfwm4/xfwm4-4.12.3-r1.ebuild | 2 +-
 xfce-base/xfwm4/xfwm4-4.12.3.ebuild| 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.12.3-r1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.12.3-r1.ebuild
index 5a0aefd..dcdccd6 100644
--- a/xfce-base/xfwm4/xfwm4-4.12.3-r1.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.12.3-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="debug dri startup-notification +xcomposite"
 
 RDEPEND="dev-libs/dbus-glib:=

diff --git a/xfce-base/xfwm4/xfwm4-4.12.3.ebuild 
b/xfce-base/xfwm4/xfwm4-4.12.3.ebuild
index 7f41036..f348e44 100644
--- a/xfce-base/xfwm4/xfwm4-4.12.3.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.12.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -11,7 +11,7 @@ SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="debug dri startup-notification +xcomposite"
 
 RDEPEND="dev-libs/dbus-glib:=



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfwm4/

2017-01-26 Thread Agostino Sarubbo
commit: 8c792207888ef758743ea65af99700278f2ada0d
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Jan 26 10:20:58 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Jan 26 10:20:58 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c792207

xfce-base/xfwm4: sparc stable wrt bug #586614

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 xfce-base/xfwm4/xfwm4-4.12.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.12.3-r1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.12.3-r1.ebuild
index 299bf43..5a0aefd 100644
--- a/xfce-base/xfwm4/xfwm4-4.12.3-r1.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.12.3-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-solaris"
 IUSE="debug dri startup-notification +xcomposite"
 
 RDEPEND="dev-libs/dbus-glib:=



  1   2   >