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

2024-05-22 Thread Michał Górny
commit: 566d64d08eb5fc75d7b67debe24a103dc04c545f
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 22 10:00:08 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 22 10:00:56 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=566d64d0

xfce-base/xfce4-panel: Backport missing include fix

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

 .../files/xfce4-panel-4.19.4-build.patch   | 148 +
 xfce-base/xfce4-panel/xfce4-panel-4.19.4.ebuild|   6 +
 2 files changed, 154 insertions(+)

diff --git a/xfce-base/xfce4-panel/files/xfce4-panel-4.19.4-build.patch 
b/xfce-base/xfce4-panel/files/xfce4-panel-4.19.4-build.patch
new file mode 100644
index ..7813ba1bb363
--- /dev/null
+++ b/xfce-base/xfce4-panel/files/xfce4-panel-4.19.4-build.patch
@@ -0,0 +1,148 @@
+From fcee4201e254a417f8146723b24ce0716840c96b Mon Sep 17 00:00:00 2001
+From: Nicholas Vinson 
+Date: Tue, 21 May 2024 01:10:10 +0200
+Subject: [PATCH] build: Add missing math.h includes
+
+Commit 0f786ce451297f8d26d41dc8492c10db08d8f87f added a math.h include
+statement to libxfce4panel/xfce-panel-image.c to fix issue #833.
+However, libm functions are used in more files than just
+xfce-panel-image.c.
+
+Therefore, add math.h include to other files that use math functions.
+
+Signed-off-by: Nicholas Vinson 
+Fixes: https://bugs.gentoo.org/932303
+---
+ panel/panel-base-window.c| 4 +++-
+ panel/panel-itembar.c| 4 
+ panel/panel-preferences-dialog.c | 4 +++-
+ plugins/clock/clock-analog.c | 4 
+ plugins/clock/clock-binary.c | 4 +++-
+ plugins/clock/clock-lcd.c| 4 
+ plugins/clock/clock.c| 4 
+ plugins/systray/systray-box.c| 4 
+ 8 files changed, 29 insertions(+), 3 deletions(-)
+
+diff --git a/panel/panel-base-window.c b/panel/panel-base-window.c
+index 5e0f3a688..832520be6 100644
+--- a/panel/panel-base-window.c
 b/panel/panel-base-window.c
+@@ -35,7 +35,9 @@
+ #define gtk_layer_is_supported() FALSE
+ #endif
+ 
+-
++#ifdef HAVE_MATH_H
++#include 
++#endif
+ 
+ #define PANEL_BASE_CSS ".xfce4-panel.background { border-style: solid; }" \
+".xfce4-panel.background button { background: 
transparent; padding: 0; }" \
+diff --git a/panel/panel-itembar.c b/panel/panel-itembar.c
+index 4ffcb5ba4..11ccf5d1d 100644
+--- a/panel/panel-itembar.c
 b/panel/panel-itembar.c
+@@ -29,6 +29,10 @@
+ #include "libxfce4panel/libxfce4panel.h"
+ #include "libxfce4panel/xfce-panel-plugin-provider.h"
+ 
++#ifdef HAVE_MATH_H
++#include 
++#endif
++
+ #define IS_HORIZONTAL(itembar) ((itembar)->mode == 
XFCE_PANEL_PLUGIN_MODE_HORIZONTAL)
+ #define HIGHLIGHT_SIZE 2
+ 
+diff --git a/panel/panel-preferences-dialog.c 
b/panel/panel-preferences-dialog.c
+index 9a54e9ab3..dfcc67db3 100644
+--- a/panel/panel-preferences-dialog.c
 b/panel/panel-preferences-dialog.c
+@@ -37,7 +37,9 @@
+ #include 
+ #include 
+ 
+-
++#ifdef HAVE_MATH_H
++#include
++#endif
+ 
+ static void
+ panel_preferences_dialog_finalize (GObject *object);
+diff --git a/plugins/clock/clock-analog.c b/plugins/clock/clock-analog.c
+index ae4ae21f4..50196352d 100644
+--- a/plugins/clock/clock-analog.c
 b/plugins/clock/clock-analog.c
+@@ -27,6 +27,10 @@
+ 
+ #include 
+ 
++#ifdef HAVE_MATH_H
++#include 
++#endif
++
+ #define CLOCK_SCALE 0.08
+ #define TICKS_TO_RADIANS(x) (G_PI - (G_PI / 30.0) * (x))
+ #define HOURS_TO_RADIANS(x, y) (G_PI - (G_PI / 6.0) * (((x) > 12 ? (x) - 12 : 
(x)) + (y) / 60.0))
+diff --git a/plugins/clock/clock-binary.c b/plugins/clock/clock-binary.c
+index 5ac4151af..36fe31c72 100644
+--- a/plugins/clock/clock-binary.c
 b/plugins/clock/clock-binary.c
+@@ -27,7 +27,9 @@
+ 
+ #include 
+ 
+-
++#ifdef HAVE_MATH_H
++#include 
++#endif
+ 
+ static void
+ xfce_clock_binary_set_property (GObject *object,
+diff --git a/plugins/clock/clock-lcd.c b/plugins/clock/clock-lcd.c
+index 97e041d58..8b7454dfd 100644
+--- a/plugins/clock/clock-lcd.c
 b/plugins/clock/clock-lcd.c
+@@ -27,6 +27,10 @@
+ 
+ #include 
+ 
++#ifdef HAVE_MATH_H
++#include 
++#endif
++
+ #define RELATIVE_SPACE (0.10)
+ #define RELATIVE_DIGIT (5 * RELATIVE_SPACE)
+ #define RELATIVE_DOTS (3 * RELATIVE_SPACE)
+diff --git a/plugins/clock/clock.c b/plugins/clock/clock.c
+index 472ff8f17..ee1d4402b 100644
+--- a/plugins/clock/clock.c
 b/plugins/clock/clock.c
+@@ -39,6 +39,10 @@
+ #include 
+ #include 
+ 
++#ifdef HAVE_MATH_H
++#include 
++#endif
++
+ /* TRANSLATORS: adjust this accordingly for your locale format */
+ #define DEFAULT_TOOLTIP_FORMAT NC_ ("Date", "%A %d %B %Y")
+ 
+diff --git a/plugins/systray/systray-box.c b/plugins/systray/systray-box.c
+index 1fc22c925..f808acb97 100644
+--- a/plugins/systray/systray-box.c
 b/plugins/systray/systray-box.c
+@@ -27,6 +27,10 @@
+ #include "common/panel-debug.h"
+ #include "common/panel-private.h"
+ 
++#ifdef HAVE_MATH_H
++#include 
++#endif
++
+ #define SPACING 

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

2024-05-16 Thread Michał Górny
commit: b5cb644024a60c9b93ad28aef5da45dab8f3ed37
Author: Michał Górny  gentoo  org>
AuthorDate: Thu May 16 14:22:49 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu May 16 14:58:45 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5cb6440

xfce-base/xfce4-panel: Bump to 4.19.4

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

 xfce-base/xfce4-panel/Manifest  |  1 +
 xfce-base/xfce4-panel/xfce4-panel-4.19.4.ebuild | 84 +
 2 files changed, 85 insertions(+)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index c9705357cac6..8c7d40985265 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,2 +1,3 @@
 DIST xfce4-panel-4.18.6.tar.bz2 1595352 BLAKE2B 
e4f4eb2f3838cde69a2614021be184ba7281910e595cc868180eba5ce40898fb538cb82ef5317f8316273b6a926553e051730e4918f3d2d339e03729ac8c2a85
 SHA512 
a1c459772d2f3ef90abe0082abe3404e0ea7fa6027e26ca50e31e03645464ce3e0a72f4d927e84c5775a775e3a70f70e25bd3d2e4358da869f9c474e6174
 DIST xfce4-panel-4.19.3.tar.bz2 2187643 BLAKE2B 
d6b597a8abb1d8a079315ccb386797fb98c4bdd332bbafacfcdc5965f528eeb34ff99a08f4c9abaa57be60bc642d164ef11a69b7a847cdeeebfded3ca2ccdedc
 SHA512 
4d7912052bc4dae50fe1d32503987636d8579baa75313f038c647ba3c4662da63c4317ffa9cda3d0188d3e05357df038f739217f2a3f64d7151d8f8c9af261b7
+DIST xfce4-panel-4.19.4.tar.bz2 2237827 BLAKE2B 
2f302a665c875cebf3d1017b13b658654bc9c0f1d498bc55e6d1fde036f2919759a9a77cbd06567796c43f34ce27d198391c10eed3c40907626a275e788e4b19
 SHA512 
c02d20931ec53817676a7c1c48b91075d79fbfd64ca0ecfe8d581d4206e86d7fb4893bcb8c2bd1e1bdf5040da0077e82a51988681928327fc791232af134fc8b

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.19.4.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.19.4.ebuild
new file mode 100644
index ..6329f2e10d87
--- /dev/null
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.19.4.ebuild
@@ -0,0 +1,84 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit vala xdg-utils
+
+DESCRIPTION="Panel for the Xfce desktop environment"
+HOMEPAGE="
+   https://docs.xfce.org/xfce/xfce4-panel/start
+   https://gitlab.xfce.org/xfce/xfce4-panel/
+"
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86"
+IUSE="+dbusmenu introspection vala wayland X"
+REQUIRED_USE="
+   || ( wayland X )
+   vala? ( introspection )
+"
+
+DEPEND="
+   >=dev-libs/glib-2.72.0
+   >=x11-libs/cairo-1.16.0
+   >=x11-libs/gtk+-3.24.0:3[X?,introspection?,wayland?]
+   >=xfce-base/exo-0.11.2:=
+   >=xfce-base/garcon-4.17.0:=
+   >=xfce-base/libxfce4ui-4.17.1:=
+   >=xfce-base/libxfce4util-4.17.2:=[introspection?,vala?]
+   >=xfce-base/libxfce4windowing-4.19.3:=[X?]
+   >=xfce-base/xfconf-4.13.2:=
+   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
+   introspection? ( >=dev-libs/gobject-introspection-1.66:= )
+   wayland? (
+   >=dev-libs/wayland-1.15
+   >=gui-libs/gtk-layer-shell-0.7.0
+   )
+   X? (
+   >=x11-libs/libX11-1.6.7
+   x11-libs/libwnck:3
+   )
+"
+RDEPEND="
+   ${DEPEND}
+"
+BDEPEND="
+   vala? ( $(vala_depend) )
+   dev-lang/perl
+   dev-util/gdbus-codegen
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_configure() {
+   local myconf=(
+   $(use_enable introspection)
+   $(use_enable dbusmenu dbusmenu-gtk3)
+   $(use_enable vala)
+   $(use_enable wayland)
+   $(use_enable wayland gtk-layer-shell)
+   $(use_enable X x11)
+   )
+
+   use vala && vala_setup
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}



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

2024-03-23 Thread Michał Górny
commit: 2133a65b3c4692f75c912872f61e218bbb6c4297
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Mar 23 10:09:23 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Mar 23 10:23:29 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2133a65b

xfce-base/xfce4-panel: Remove old

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

 xfce-base/xfce4-panel/Manifest  |  1 -
 xfce-base/xfce4-panel/xfce4-panel-4.19.2.ebuild | 85 -
 2 files changed, 86 deletions(-)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index 5cfb926e1b0c..c9705357cac6 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,3 +1,2 @@
 DIST xfce4-panel-4.18.6.tar.bz2 1595352 BLAKE2B 
e4f4eb2f3838cde69a2614021be184ba7281910e595cc868180eba5ce40898fb538cb82ef5317f8316273b6a926553e051730e4918f3d2d339e03729ac8c2a85
 SHA512 
a1c459772d2f3ef90abe0082abe3404e0ea7fa6027e26ca50e31e03645464ce3e0a72f4d927e84c5775a775e3a70f70e25bd3d2e4358da869f9c474e6174
-DIST xfce4-panel-4.19.2.tar.bz2 2192543 BLAKE2B 
67fb4732f15160df9f54d1ad84a73ebc280b7e57e518b0032b008586fca521fb686b4fdb02f226e4a4c9ee3c0cdbd0b8ebbe88825bd89ac18ccb6f49f8266759
 SHA512 
c5db0cf3565e471c9099c97e913de23e1a3038a37fc960397bab5a8ff2908e88a424fcea5aa86b5fbcf903403f972b16cbf7d26386c30408ba4a7d0fc45895c0
 DIST xfce4-panel-4.19.3.tar.bz2 2187643 BLAKE2B 
d6b597a8abb1d8a079315ccb386797fb98c4bdd332bbafacfcdc5965f528eeb34ff99a08f4c9abaa57be60bc642d164ef11a69b7a847cdeeebfded3ca2ccdedc
 SHA512 
4d7912052bc4dae50fe1d32503987636d8579baa75313f038c647ba3c4662da63c4317ffa9cda3d0188d3e05357df038f739217f2a3f64d7151d8f8c9af261b7

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.19.2.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.19.2.ebuild
deleted file mode 100644
index df24c52871b4..
--- a/xfce-base/xfce4-panel/xfce4-panel-4.19.2.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit vala xdg-utils
-
-DESCRIPTION="Panel for the Xfce desktop environment"
-HOMEPAGE="
-   https://docs.xfce.org/xfce/xfce4-panel/start
-   https://gitlab.xfce.org/xfce/xfce4-panel/
-"
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+ LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86"
-IUSE="+dbusmenu introspection vala wayland X"
-REQUIRED_USE="
-   || ( wayland X )
-   vala? ( introspection )
-"
-
-DEPEND="
-   >=dev-libs/glib-2.72.0
-   >=x11-libs/cairo-1.16.0
-   >=x11-libs/gtk+-3.24.0:3[X?,introspection?,wayland?]
-   >=xfce-base/exo-0.11.2:=
-   >=xfce-base/garcon-4.17.0:=
-   >=xfce-base/libxfce4ui-4.17.1:=
-   >=xfce-base/libxfce4util-4.17.2:=[introspection?,vala?]
-   >=xfce-base/libxfce4windowing-4.19.1:=
-   >=xfce-base/xfconf-4.13.2:=
-   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
-   introspection? ( >=dev-libs/gobject-introspection-1.66:= )
-   wayland? (
-   >=dev-libs/wayland-1.15
-   >=gui-libs/gtk-layer-shell-0.7.0
-   )
-   X? (
-   >=x11-libs/libX11-1.6.7
-   x11-libs/libwnck:3
-   )
-"
-RDEPEND="
-   ${DEPEND}
-"
-BDEPEND="
-   vala? ( $(vala_depend) )
-   dev-lang/perl
-   dev-util/gdbus-codegen
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-src_configure() {
-   local myconf=(
-   $(use_enable introspection)
-   $(use_enable dbusmenu dbusmenu-gtk3)
-   $(use_enable vala)
-   $(use_enable wayland wayland-client)
-   $(use_enable wayland gtk-layer-shell)
-   $(use_enable X gtk-x11)
-   $(use_enable X libwnck)
-   )
-
-   use vala && vala_setup
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-}



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

2024-03-12 Thread Michał Górny
commit: 1a327bf0849acf2acc849a6662886fbf91cf32e1
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 12 15:54:25 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 12 17:51:30 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a327bf0

xfce-base/xfce4-panel: Remove old

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

 xfce-base/xfce4-panel/Manifest  |  1 -
 xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild | 71 -
 2 files changed, 72 deletions(-)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index 4173d4cd2097..5cfb926e1b0c 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,4 +1,3 @@
-DIST xfce4-panel-4.18.5.tar.bz2 1591758 BLAKE2B 
c0ea27d10d66f6a8abd5beef539063036885cfd627f3a2686d4df0d27e9499a0fc814189aa8df1b51d4ea016ceb48f98805e0492ba288653ed1bea12b4154fd7
 SHA512 
6d3fcf7d56cad2d5f6aa083937c912fe131bd5838a074c4fc9477a01d2c2ceab75fe53edf3681c266f659c6dac7466df38ec2ad3554a1e14267cc62e6c02d818
 DIST xfce4-panel-4.18.6.tar.bz2 1595352 BLAKE2B 
e4f4eb2f3838cde69a2614021be184ba7281910e595cc868180eba5ce40898fb538cb82ef5317f8316273b6a926553e051730e4918f3d2d339e03729ac8c2a85
 SHA512 
a1c459772d2f3ef90abe0082abe3404e0ea7fa6027e26ca50e31e03645464ce3e0a72f4d927e84c5775a775e3a70f70e25bd3d2e4358da869f9c474e6174
 DIST xfce4-panel-4.19.2.tar.bz2 2192543 BLAKE2B 
67fb4732f15160df9f54d1ad84a73ebc280b7e57e518b0032b008586fca521fb686b4fdb02f226e4a4c9ee3c0cdbd0b8ebbe88825bd89ac18ccb6f49f8266759
 SHA512 
c5db0cf3565e471c9099c97e913de23e1a3038a37fc960397bab5a8ff2908e88a424fcea5aa86b5fbcf903403f972b16cbf7d26386c30408ba4a7d0fc45895c0
 DIST xfce4-panel-4.19.3.tar.bz2 2187643 BLAKE2B 
d6b597a8abb1d8a079315ccb386797fb98c4bdd332bbafacfcdc5965f528eeb34ff99a08f4c9abaa57be60bc642d164ef11a69b7a847cdeeebfded3ca2ccdedc
 SHA512 
4d7912052bc4dae50fe1d32503987636d8579baa75313f038c647ba3c4662da63c4317ffa9cda3d0188d3e05357df038f739217f2a3f64d7151d8f8c9af261b7

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild
deleted file mode 100644
index 6556210ea537..
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit vala xdg-utils
-
-DESCRIPTION="Panel for the Xfce desktop environment"
-HOMEPAGE="
-   https://docs.xfce.org/xfce/xfce4-panel/start
-   https://gitlab.xfce.org/xfce/xfce4-panel/
-"
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+ LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~sparc x86 ~amd64-linux ~x86-linux"
-IUSE="+dbusmenu introspection vala"
-REQUIRED_USE="vala? ( introspection )"
-
-DEPEND="
-   >=dev-libs/glib-2.66.0
-   >=x11-libs/cairo-1.16.0
-   >=x11-libs/gtk+-3.24.0:3[introspection?]
-   x11-libs/libX11
-   x11-libs/libwnck:3
-   >=xfce-base/exo-0.11.2:=
-   >=xfce-base/garcon-4.17.0:=
-   >=xfce-base/libxfce4ui-4.17.1:=
-   >=xfce-base/libxfce4util-4.17.2:=[introspection?,vala?]
-   >=xfce-base/xfconf-4.13:=
-   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
-   introspection? ( >=dev-libs/gobject-introspection-1.66:= )
-"
-RDEPEND="
-   ${DEPEND}
-"
-BDEPEND="
-   vala? ( $(vala_depend) )
-   dev-lang/perl
-   dev-util/gdbus-codegen
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-src_configure() {
-   local myconf=(
-   $(use_enable introspection)
-   $(use_enable dbusmenu dbusmenu-gtk3)
-   $(use_enable vala)
-   )
-
-   use vala && vala_setup
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-}



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

2024-03-12 Thread Arthur Zamarin
commit: b1a58104e352a55d078db7d328e271b66a821db6
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Mar 12 14:44:58 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue Mar 12 14:44:58 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1a58104

xfce-base/xfce4-panel: Stabilize 4.18.6 arm64, #926563

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild
index ccbae2f5ee38..6556210ea537 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~sparc x86 ~amd64-linux ~x86-linux"
 IUSE="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2024-03-09 Thread Michał Górny
commit: 6f4ea7bcb3edf5e9e6164daae3eb2719714582e0
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Mar  9 14:11:34 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Mar  9 14:11:34 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f4ea7bc

xfce-base/xfce4-panel: Stabilize 4.18.6 ppc, #926563

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild
index 2dd0139ab3dd..ccbae2f5ee38 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~sparc x86 ~amd64-linux ~x86-linux"
 IUSE="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2024-03-09 Thread Michał Górny
commit: 616c332985eeb3a69fe8c110cbbb902d3ee3fda7
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Mar  9 14:11:33 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Mar  9 14:11:33 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=616c3329

xfce-base/xfce4-panel: Stabilize 4.18.6 arm, #926563

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild
index f80c97bf7388..2dd0139ab3dd 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~sparc x86 ~amd64-linux ~x86-linux"
 IUSE="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2024-03-09 Thread Michał Górny
commit: 416e9af3dd2c184a9f1e9e5639ce5ccd44604232
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Mar  9 14:11:30 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Mar  9 14:11:30 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=416e9af3

xfce-base/xfce4-panel: Stabilize 4.18.6 ppc64, #926563

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild
index 9076c31499d1..2b1a33cf3079 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2024-03-09 Thread Michał Górny
commit: a2354d6dedefec9eb9fd3a0f0d41221664257d70
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Mar  9 14:11:31 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Mar  9 14:11:31 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2354d6d

xfce-base/xfce4-panel: Stabilize 4.18.6 amd64, #926563

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild
index 2b1a33cf3079..ce32392a0077 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2024-03-09 Thread Michał Górny
commit: e18776a11bde4ee48412b29bb259bdf93afe0433
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Mar  9 14:11:32 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Mar  9 14:11:32 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e18776a1

xfce-base/xfce4-panel: Stabilize 4.18.6 x86, #926563

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild
index ce32392a0077..f80c97bf7388 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~sparc x86 ~amd64-linux ~x86-linux"
 IUSE="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2024-02-29 Thread Michał Górny
commit: ed34a01f7593756e4f49ebc97173455dfe84fc1a
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Feb 29 14:41:38 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Feb 29 14:41:38 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed34a01f

xfce-base/xfce4-panel: Bump to 4.19.3

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

 xfce-base/xfce4-panel/Manifest  |  1 +
 xfce-base/xfce4-panel/xfce4-panel-4.19.3.ebuild | 84 +
 2 files changed, 85 insertions(+)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index 414463956ff2..4173d4cd2097 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,3 +1,4 @@
 DIST xfce4-panel-4.18.5.tar.bz2 1591758 BLAKE2B 
c0ea27d10d66f6a8abd5beef539063036885cfd627f3a2686d4df0d27e9499a0fc814189aa8df1b51d4ea016ceb48f98805e0492ba288653ed1bea12b4154fd7
 SHA512 
6d3fcf7d56cad2d5f6aa083937c912fe131bd5838a074c4fc9477a01d2c2ceab75fe53edf3681c266f659c6dac7466df38ec2ad3554a1e14267cc62e6c02d818
 DIST xfce4-panel-4.18.6.tar.bz2 1595352 BLAKE2B 
e4f4eb2f3838cde69a2614021be184ba7281910e595cc868180eba5ce40898fb538cb82ef5317f8316273b6a926553e051730e4918f3d2d339e03729ac8c2a85
 SHA512 
a1c459772d2f3ef90abe0082abe3404e0ea7fa6027e26ca50e31e03645464ce3e0a72f4d927e84c5775a775e3a70f70e25bd3d2e4358da869f9c474e6174
 DIST xfce4-panel-4.19.2.tar.bz2 2192543 BLAKE2B 
67fb4732f15160df9f54d1ad84a73ebc280b7e57e518b0032b008586fca521fb686b4fdb02f226e4a4c9ee3c0cdbd0b8ebbe88825bd89ac18ccb6f49f8266759
 SHA512 
c5db0cf3565e471c9099c97e913de23e1a3038a37fc960397bab5a8ff2908e88a424fcea5aa86b5fbcf903403f972b16cbf7d26386c30408ba4a7d0fc45895c0
+DIST xfce4-panel-4.19.3.tar.bz2 2187643 BLAKE2B 
d6b597a8abb1d8a079315ccb386797fb98c4bdd332bbafacfcdc5965f528eeb34ff99a08f4c9abaa57be60bc642d164ef11a69b7a847cdeeebfded3ca2ccdedc
 SHA512 
4d7912052bc4dae50fe1d32503987636d8579baa75313f038c647ba3c4662da63c4317ffa9cda3d0188d3e05357df038f739217f2a3f64d7151d8f8c9af261b7

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.19.3.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.19.3.ebuild
new file mode 100644
index ..6329f2e10d87
--- /dev/null
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.19.3.ebuild
@@ -0,0 +1,84 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit vala xdg-utils
+
+DESCRIPTION="Panel for the Xfce desktop environment"
+HOMEPAGE="
+   https://docs.xfce.org/xfce/xfce4-panel/start
+   https://gitlab.xfce.org/xfce/xfce4-panel/
+"
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86"
+IUSE="+dbusmenu introspection vala wayland X"
+REQUIRED_USE="
+   || ( wayland X )
+   vala? ( introspection )
+"
+
+DEPEND="
+   >=dev-libs/glib-2.72.0
+   >=x11-libs/cairo-1.16.0
+   >=x11-libs/gtk+-3.24.0:3[X?,introspection?,wayland?]
+   >=xfce-base/exo-0.11.2:=
+   >=xfce-base/garcon-4.17.0:=
+   >=xfce-base/libxfce4ui-4.17.1:=
+   >=xfce-base/libxfce4util-4.17.2:=[introspection?,vala?]
+   >=xfce-base/libxfce4windowing-4.19.3:=[X?]
+   >=xfce-base/xfconf-4.13.2:=
+   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
+   introspection? ( >=dev-libs/gobject-introspection-1.66:= )
+   wayland? (
+   >=dev-libs/wayland-1.15
+   >=gui-libs/gtk-layer-shell-0.7.0
+   )
+   X? (
+   >=x11-libs/libX11-1.6.7
+   x11-libs/libwnck:3
+   )
+"
+RDEPEND="
+   ${DEPEND}
+"
+BDEPEND="
+   vala? ( $(vala_depend) )
+   dev-lang/perl
+   dev-util/gdbus-codegen
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_configure() {
+   local myconf=(
+   $(use_enable introspection)
+   $(use_enable dbusmenu dbusmenu-gtk3)
+   $(use_enable vala)
+   $(use_enable wayland)
+   $(use_enable wayland gtk-layer-shell)
+   $(use_enable X x11)
+   )
+
+   use vala && vala_setup
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}



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

2024-02-29 Thread Michał Górny
commit: 06a113902d7daab52ddfaf0707373afc8c2ac91b
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Feb 29 14:34:18 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Feb 29 14:34:18 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06a11390

xfce-base/xfce4-panel: Bump to 4.18.6

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

 xfce-base/xfce4-panel/Manifest  |  1 +
 xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild | 71 +
 2 files changed, 72 insertions(+)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index a3f7c49bc992..414463956ff2 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,2 +1,3 @@
 DIST xfce4-panel-4.18.5.tar.bz2 1591758 BLAKE2B 
c0ea27d10d66f6a8abd5beef539063036885cfd627f3a2686d4df0d27e9499a0fc814189aa8df1b51d4ea016ceb48f98805e0492ba288653ed1bea12b4154fd7
 SHA512 
6d3fcf7d56cad2d5f6aa083937c912fe131bd5838a074c4fc9477a01d2c2ceab75fe53edf3681c266f659c6dac7466df38ec2ad3554a1e14267cc62e6c02d818
+DIST xfce4-panel-4.18.6.tar.bz2 1595352 BLAKE2B 
e4f4eb2f3838cde69a2614021be184ba7281910e595cc868180eba5ce40898fb538cb82ef5317f8316273b6a926553e051730e4918f3d2d339e03729ac8c2a85
 SHA512 
a1c459772d2f3ef90abe0082abe3404e0ea7fa6027e26ca50e31e03645464ce3e0a72f4d927e84c5775a775e3a70f70e25bd3d2e4358da869f9c474e6174
 DIST xfce4-panel-4.19.2.tar.bz2 2192543 BLAKE2B 
67fb4732f15160df9f54d1ad84a73ebc280b7e57e518b0032b008586fca521fb686b4fdb02f226e4a4c9ee3c0cdbd0b8ebbe88825bd89ac18ccb6f49f8266759
 SHA512 
c5db0cf3565e471c9099c97e913de23e1a3038a37fc960397bab5a8ff2908e88a424fcea5aa86b5fbcf903403f972b16cbf7d26386c30408ba4a7d0fc45895c0

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild
new file mode 100644
index ..9076c31499d1
--- /dev/null
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.6.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit vala xdg-utils
+
+DESCRIPTION="Panel for the Xfce desktop environment"
+HOMEPAGE="
+   https://docs.xfce.org/xfce/xfce4-panel/start
+   https://gitlab.xfce.org/xfce/xfce4-panel/
+"
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="+dbusmenu introspection vala"
+REQUIRED_USE="vala? ( introspection )"
+
+DEPEND="
+   >=dev-libs/glib-2.66.0
+   >=x11-libs/cairo-1.16.0
+   >=x11-libs/gtk+-3.24.0:3[introspection?]
+   x11-libs/libX11
+   x11-libs/libwnck:3
+   >=xfce-base/exo-0.11.2:=
+   >=xfce-base/garcon-4.17.0:=
+   >=xfce-base/libxfce4ui-4.17.1:=
+   >=xfce-base/libxfce4util-4.17.2:=[introspection?,vala?]
+   >=xfce-base/xfconf-4.13:=
+   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
+   introspection? ( >=dev-libs/gobject-introspection-1.66:= )
+"
+RDEPEND="
+   ${DEPEND}
+"
+BDEPEND="
+   vala? ( $(vala_depend) )
+   dev-lang/perl
+   dev-util/gdbus-codegen
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_configure() {
+   local myconf=(
+   $(use_enable introspection)
+   $(use_enable dbusmenu dbusmenu-gtk3)
+   $(use_enable vala)
+   )
+
+   use vala && vala_setup
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}



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

2024-01-15 Thread Michał Górny
commit: eb857ea390272700426d1181599a5e6ae1934550
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jan 15 16:29:26 2024 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jan 15 16:31:38 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb857ea3

xfce-base/xfce4-panel: Remove stale eautoreconf deps

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild | 3 +--
 xfce-base/xfce4-panel/xfce4-panel-4.19.2.ebuild | 3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild
index d08159e6b271..6556210ea537 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -39,7 +39,6 @@ BDEPEND="
vala? ( $(vala_depend) )
dev-lang/perl
dev-util/gdbus-codegen
-   dev-util/gtk-doc-am
dev-util/intltool
sys-devel/gettext
virtual/pkgconfig

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.19.2.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.19.2.ebuild
index 41ee4bfa1ff4..df24c52871b4 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.19.2.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.19.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -49,7 +49,6 @@ BDEPEND="
vala? ( $(vala_depend) )
dev-lang/perl
dev-util/gdbus-codegen
-   dev-util/gtk-doc-am
dev-util/intltool
sys-devel/gettext
virtual/pkgconfig



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

2023-10-06 Thread Sam James
commit: 8c21dcdf015ca26025d3d64fd21e08a09ea6345f
Author: Sam James  gentoo  org>
AuthorDate: Fri Oct  6 15:04:53 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Oct  6 15:04:53 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c21dcdf

xfce-base/xfce4-panel: Stabilize 4.18.5 amd64, #915241

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild
index f4eae44057e8..eddfac63e2c6 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~sparc x86 ~amd64-linux ~x86-linux"
 IUSE="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2023-10-06 Thread Sam James
commit: 5788233bef382260d4096ad83cda9a5955bcbb03
Author: Sam James  gentoo  org>
AuthorDate: Fri Oct  6 14:54:10 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Oct  6 14:54:10 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5788233b

xfce-base/xfce4-panel: Stabilize 4.18.5 ppc64, #915241

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild
index d568aaab1ba7..f4eae44057e8 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~sparc x86 ~amd64-linux ~x86-linux"
 IUSE="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2023-10-06 Thread Sam James
commit: 0ad763916abc886e3e8d0bb19a0f0a2536ee2aef
Author: Sam James  gentoo  org>
AuthorDate: Fri Oct  6 14:30:54 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Oct  6 14:30:54 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ad76391

xfce-base/xfce4-panel: Stabilize 4.18.5 x86, #915241

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild
index 2d23285cc560..d568aaab1ba7 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~sparc x86 ~amd64-linux ~x86-linux"
 IUSE="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2023-10-06 Thread Arthur Zamarin
commit: bb0a573623968a2dabcd72eb7ccda02195c04bc4
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Oct  6 14:29:59 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Oct  6 14:29:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb0a5736

xfce-base/xfce4-panel: Stabilize 4.18.5 arm64, #915241

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild
index 4044c2f04239..2d23285cc560 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2023-10-06 Thread Sam James
commit: a17d4585a40121b54f230ed4bd6a2b9de16d7a0e
Author: Sam James  gentoo  org>
AuthorDate: Fri Oct  6 14:09:31 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Oct  6 14:09:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a17d4585

xfce-base/xfce4-panel: Stabilize 4.18.5 arm, #915241

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild
index c1862efc0ff4..4044c2f04239 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2023-09-27 Thread Michał Górny
commit: 20e69defa585bc376f4f12fc71de279726f964fb
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Sep 27 17:40:30 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Sep 27 17:41:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20e69def

xfce-base/xfce4-panel: Bump to 4.19.2

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

 xfce-base/xfce4-panel/Manifest  |  1 +
 xfce-base/xfce4-panel/xfce4-panel-4.19.2.ebuild | 86 +
 2 files changed, 87 insertions(+)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index 32e246da2359..e0b8a808bbd7 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,3 +1,4 @@
 DIST xfce4-panel-4.18.4.tar.bz2 1624451 BLAKE2B 
73fdfe6bdca57a1f7954620f8cb6243660290ef105e2227274d7c6e3d4d6996aa4f97ec79c1c4e7e322cb0f24d7470bc8a7f2c283a7396ec340c6eb401bcc2ed
 SHA512 
27ab96d9fc22c505763bf0b4ad4e2d0224638dc5b78202769caba2a07e1779a77ad0492341d1fe368fb47e30724fa797f74ff5e65138c819abdd1cd64fd8a1c2
 DIST xfce4-panel-4.18.5.tar.bz2 1591758 BLAKE2B 
c0ea27d10d66f6a8abd5beef539063036885cfd627f3a2686d4df0d27e9499a0fc814189aa8df1b51d4ea016ceb48f98805e0492ba288653ed1bea12b4154fd7
 SHA512 
6d3fcf7d56cad2d5f6aa083937c912fe131bd5838a074c4fc9477a01d2c2ceab75fe53edf3681c266f659c6dac7466df38ec2ad3554a1e14267cc62e6c02d818
 DIST xfce4-panel-4.19.1.tar.bz2 208 BLAKE2B 
9be568832d6bc56fcecaf6eff2a907b64cc2b7f9fa51f18109c18300b9cb9cd7044d64b2b89d28ede409be3d4cd026274c543db7892ea128a1ce52679d62
 SHA512 
f22673e3a8785283a4179bf3a7791f2b14b9d5e87efffdc822ad61b24cca827517a15f0484392255ef04aeac99b5d4722bf347d14981340d4d86d7b47700883d
+DIST xfce4-panel-4.19.2.tar.bz2 2192543 BLAKE2B 
67fb4732f15160df9f54d1ad84a73ebc280b7e57e518b0032b008586fca521fb686b4fdb02f226e4a4c9ee3c0cdbd0b8ebbe88825bd89ac18ccb6f49f8266759
 SHA512 
c5db0cf3565e471c9099c97e913de23e1a3038a37fc960397bab5a8ff2908e88a424fcea5aa86b5fbcf903403f972b16cbf7d26386c30408ba4a7d0fc45895c0

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.19.2.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.19.2.ebuild
new file mode 100644
index ..05e52cc5dd21
--- /dev/null
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.19.2.ebuild
@@ -0,0 +1,86 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit vala xdg-utils
+
+DESCRIPTION="Panel for the Xfce desktop environment"
+HOMEPAGE="
+   https://docs.xfce.org/xfce/xfce4-panel/start
+   https://gitlab.xfce.org/xfce/xfce4-panel/
+"
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~x86"
+IUSE="+dbusmenu introspection vala wayland X"
+REQUIRED_USE="
+   || ( wayland X )
+   vala? ( introspection )
+"
+
+DEPEND="
+   >=dev-libs/glib-2.72.0
+   >=x11-libs/cairo-1.16.0
+   >=x11-libs/gtk+-3.24.0:3[X?,introspection?,wayland?]
+   >=xfce-base/exo-0.11.2:=
+   >=xfce-base/garcon-4.17.0:=
+   >=xfce-base/libxfce4ui-4.17.1:=
+   >=xfce-base/libxfce4util-4.17.2:=[introspection?,vala?]
+   >=xfce-base/libxfce4windowing-4.19.1:=
+   >=xfce-base/xfconf-4.13.2:=
+   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
+   introspection? ( >=dev-libs/gobject-introspection-1.66:= )
+   wayland? (
+   >=dev-libs/wayland-1.15
+   >=gui-libs/gtk-layer-shell-0.7.0
+   )
+   X? (
+   >=x11-libs/libX11-1.6.7
+   x11-libs/libwnck:3
+   )
+"
+RDEPEND="
+   ${DEPEND}
+"
+BDEPEND="
+   vala? ( $(vala_depend) )
+   dev-lang/perl
+   dev-util/gdbus-codegen
+   dev-util/gtk-doc-am
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_configure() {
+   local myconf=(
+   $(use_enable introspection)
+   $(use_enable dbusmenu dbusmenu-gtk3)
+   $(use_enable vala)
+   $(use_enable wayland wayland-client)
+   $(use_enable wayland gtk-layer-shell)
+   $(use_enable X gtk-x11)
+   $(use_enable X libwnck)
+   )
+
+   use vala && vala_setup
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}



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

2023-09-27 Thread Michał Górny
commit: 5c5b8f2314433b927075e9e311799a532f9ee607
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Sep 27 17:39:41 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Sep 27 17:39:41 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c5b8f23

xfce-base/xfce4-panel: Bump to 4.18.5

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

 xfce-base/xfce4-panel/Manifest  |  1 +
 xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild | 72 +
 2 files changed, 73 insertions(+)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index 71d6d589e0d8..32e246da2359 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,2 +1,3 @@
 DIST xfce4-panel-4.18.4.tar.bz2 1624451 BLAKE2B 
73fdfe6bdca57a1f7954620f8cb6243660290ef105e2227274d7c6e3d4d6996aa4f97ec79c1c4e7e322cb0f24d7470bc8a7f2c283a7396ec340c6eb401bcc2ed
 SHA512 
27ab96d9fc22c505763bf0b4ad4e2d0224638dc5b78202769caba2a07e1779a77ad0492341d1fe368fb47e30724fa797f74ff5e65138c819abdd1cd64fd8a1c2
+DIST xfce4-panel-4.18.5.tar.bz2 1591758 BLAKE2B 
c0ea27d10d66f6a8abd5beef539063036885cfd627f3a2686d4df0d27e9499a0fc814189aa8df1b51d4ea016ceb48f98805e0492ba288653ed1bea12b4154fd7
 SHA512 
6d3fcf7d56cad2d5f6aa083937c912fe131bd5838a074c4fc9477a01d2c2ceab75fe53edf3681c266f659c6dac7466df38ec2ad3554a1e14267cc62e6c02d818
 DIST xfce4-panel-4.19.1.tar.bz2 208 BLAKE2B 
9be568832d6bc56fcecaf6eff2a907b64cc2b7f9fa51f18109c18300b9cb9cd7044d64b2b89d28ede409be3d4cd026274c543db7892ea128a1ce52679d62
 SHA512 
f22673e3a8785283a4179bf3a7791f2b14b9d5e87efffdc822ad61b24cca827517a15f0484392255ef04aeac99b5d4722bf347d14981340d4d86d7b47700883d

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild
new file mode 100644
index ..c1862efc0ff4
--- /dev/null
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.5.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit vala xdg-utils
+
+DESCRIPTION="Panel for the Xfce desktop environment"
+HOMEPAGE="
+   https://docs.xfce.org/xfce/xfce4-panel/start
+   https://gitlab.xfce.org/xfce/xfce4-panel/
+"
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="+dbusmenu introspection vala"
+REQUIRED_USE="vala? ( introspection )"
+
+DEPEND="
+   >=dev-libs/glib-2.66.0
+   >=x11-libs/cairo-1.16.0
+   >=x11-libs/gtk+-3.24.0:3[introspection?]
+   x11-libs/libX11
+   x11-libs/libwnck:3
+   >=xfce-base/exo-0.11.2:=
+   >=xfce-base/garcon-4.17.0:=
+   >=xfce-base/libxfce4ui-4.17.1:=
+   >=xfce-base/libxfce4util-4.17.2:=[introspection?,vala?]
+   >=xfce-base/xfconf-4.13:=
+   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
+   introspection? ( >=dev-libs/gobject-introspection-1.66:= )
+"
+RDEPEND="
+   ${DEPEND}
+"
+BDEPEND="
+   vala? ( $(vala_depend) )
+   dev-lang/perl
+   dev-util/gdbus-codegen
+   dev-util/gtk-doc-am
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_configure() {
+   local myconf=(
+   $(use_enable introspection)
+   $(use_enable dbusmenu dbusmenu-gtk3)
+   $(use_enable vala)
+   )
+
+   use vala && vala_setup
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}



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

2023-06-11 Thread Michał Górny
commit: 92b893636e4916e3749810c0976872cbcf95db7b
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jun 11 19:15:41 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jun 11 19:19:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92b89363

xfce-base/xfce4-panel: Remove old

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

 xfce-base/xfce4-panel/Manifest  |  1 -
 xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild | 72 -
 2 files changed, 73 deletions(-)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index 0388857c213e..71d6d589e0d8 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,3 +1,2 @@
-DIST xfce4-panel-4.18.3.tar.bz2 1452647 BLAKE2B 
40545b13fa0b8d7178fc9753cb3b1b00b0729956155a1321ba7570f83d53eecc528ddaf47cb5653a25d9df1da45d9f586311426df75471c7a6c15f5b28dc6367
 SHA512 
d85a7540b11c4e9ed9c99b9660d12a14ae665c6c496dd0674dc4aa048d0f043dc3659a42af862ec9409d2181c3b0ae588750373530b4c9f42d4427e08e91de19
 DIST xfce4-panel-4.18.4.tar.bz2 1624451 BLAKE2B 
73fdfe6bdca57a1f7954620f8cb6243660290ef105e2227274d7c6e3d4d6996aa4f97ec79c1c4e7e322cb0f24d7470bc8a7f2c283a7396ec340c6eb401bcc2ed
 SHA512 
27ab96d9fc22c505763bf0b4ad4e2d0224638dc5b78202769caba2a07e1779a77ad0492341d1fe368fb47e30724fa797f74ff5e65138c819abdd1cd64fd8a1c2
 DIST xfce4-panel-4.19.1.tar.bz2 208 BLAKE2B 
9be568832d6bc56fcecaf6eff2a907b64cc2b7f9fa51f18109c18300b9cb9cd7044d64b2b89d28ede409be3d4cd026274c543db7892ea128a1ce52679d62
 SHA512 
f22673e3a8785283a4179bf3a7791f2b14b9d5e87efffdc822ad61b24cca827517a15f0484392255ef04aeac99b5d4722bf347d14981340d4d86d7b47700883d

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild
deleted file mode 100644
index d08159e6b271..
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit vala xdg-utils
-
-DESCRIPTION="Panel for the Xfce desktop environment"
-HOMEPAGE="
-   https://docs.xfce.org/xfce/xfce4-panel/start
-   https://gitlab.xfce.org/xfce/xfce4-panel/
-"
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+ LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~sparc x86 ~amd64-linux ~x86-linux"
-IUSE="+dbusmenu introspection vala"
-REQUIRED_USE="vala? ( introspection )"
-
-DEPEND="
-   >=dev-libs/glib-2.66.0
-   >=x11-libs/cairo-1.16.0
-   >=x11-libs/gtk+-3.24.0:3[introspection?]
-   x11-libs/libX11
-   x11-libs/libwnck:3
-   >=xfce-base/exo-0.11.2:=
-   >=xfce-base/garcon-4.17.0:=
-   >=xfce-base/libxfce4ui-4.17.1:=
-   >=xfce-base/libxfce4util-4.17.2:=[introspection?,vala?]
-   >=xfce-base/xfconf-4.13:=
-   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
-   introspection? ( >=dev-libs/gobject-introspection-1.66:= )
-"
-RDEPEND="
-   ${DEPEND}
-"
-BDEPEND="
-   vala? ( $(vala_depend) )
-   dev-lang/perl
-   dev-util/gdbus-codegen
-   dev-util/gtk-doc-am
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-src_configure() {
-   local myconf=(
-   $(use_enable introspection)
-   $(use_enable dbusmenu dbusmenu-gtk3)
-   $(use_enable vala)
-   )
-
-   use vala && vala_setup
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-}



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

2023-06-11 Thread Arthur Zamarin
commit: 73e026e3dd66b452acc02087e0cb45e51b4ee645
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Jun 11 18:56:42 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Jun 11 18:56:42 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73e026e3

xfce-base/xfce4-panel: Stabilize 4.18.4 ppc, #908324

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.4.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.4.ebuild
index eddfac63e2c6..d08159e6b271 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.4.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.4.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~sparc x86 ~amd64-linux ~x86-linux"
 IUSE="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2023-06-11 Thread Sam James
commit: b3157e0981977d0e381f44e97995b55569da50b2
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 11 15:36:20 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 11 15:36:20 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3157e09

xfce-base/xfce4-panel: Stabilize 4.18.4 x86, #908324

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.4.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.4.ebuild
index c7d9ff1fdebd..f4eae44057e8 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.4.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.4.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~sparc x86 ~amd64-linux ~x86-linux"
 IUSE="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2023-06-11 Thread Sam James
commit: 8043f316572f4f61f9d0681c65e9fba4a84b13d9
Author: Sam James  gentoo  org>
AuthorDate: Sun Jun 11 13:45:55 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jun 11 13:45:55 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8043f316

xfce-base/xfce4-panel: Stabilize 4.18.4 arm, #908324

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.4.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.4.ebuild
index c0d3ff679de1..c7d9ff1fdebd 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.4.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.4.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2023-05-22 Thread Michał Górny
commit: fe52bc22038855708f1d99d168e3b2eaeb67a11c
Author: Michał Górny  gentoo  org>
AuthorDate: Mon May 22 18:31:55 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon May 22 18:36:30 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe52bc22

xfce-base/xfce4-panel: Bump to 4.18.4

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

 xfce-base/xfce4-panel/Manifest  |  1 +
 xfce-base/xfce4-panel/xfce4-panel-4.18.4.ebuild | 72 +
 2 files changed, 73 insertions(+)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index 822f13448577..0388857c213e 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,2 +1,3 @@
 DIST xfce4-panel-4.18.3.tar.bz2 1452647 BLAKE2B 
40545b13fa0b8d7178fc9753cb3b1b00b0729956155a1321ba7570f83d53eecc528ddaf47cb5653a25d9df1da45d9f586311426df75471c7a6c15f5b28dc6367
 SHA512 
d85a7540b11c4e9ed9c99b9660d12a14ae665c6c496dd0674dc4aa048d0f043dc3659a42af862ec9409d2181c3b0ae588750373530b4c9f42d4427e08e91de19
+DIST xfce4-panel-4.18.4.tar.bz2 1624451 BLAKE2B 
73fdfe6bdca57a1f7954620f8cb6243660290ef105e2227274d7c6e3d4d6996aa4f97ec79c1c4e7e322cb0f24d7470bc8a7f2c283a7396ec340c6eb401bcc2ed
 SHA512 
27ab96d9fc22c505763bf0b4ad4e2d0224638dc5b78202769caba2a07e1779a77ad0492341d1fe368fb47e30724fa797f74ff5e65138c819abdd1cd64fd8a1c2
 DIST xfce4-panel-4.19.1.tar.bz2 208 BLAKE2B 
9be568832d6bc56fcecaf6eff2a907b64cc2b7f9fa51f18109c18300b9cb9cd7044d64b2b89d28ede409be3d4cd026274c543db7892ea128a1ce52679d62
 SHA512 
f22673e3a8785283a4179bf3a7791f2b14b9d5e87efffdc822ad61b24cca827517a15f0484392255ef04aeac99b5d4722bf347d14981340d4d86d7b47700883d

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.4.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.4.ebuild
new file mode 100644
index ..7d772282a7b2
--- /dev/null
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.4.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit vala xdg-utils
+
+DESCRIPTION="Panel for the Xfce desktop environment"
+HOMEPAGE="
+   https://docs.xfce.org/xfce/xfce4-panel/start
+   https://gitlab.xfce.org/xfce/xfce4-panel/
+"
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="+dbusmenu introspection vala"
+REQUIRED_USE="vala? ( introspection )"
+
+DEPEND="
+   >=dev-libs/glib-2.66.0
+   >=x11-libs/cairo-1.16.0
+   >=x11-libs/gtk+-3.24.0:3[introspection?]
+   x11-libs/libX11
+   x11-libs/libwnck:3
+   >=xfce-base/exo-0.11.2:=
+   >=xfce-base/garcon-4.17.0:=
+   >=xfce-base/libxfce4ui-4.17.1:=
+   >=xfce-base/libxfce4util-4.17.2:=[introspection?,vala?]
+   >=xfce-base/xfconf-4.13:=
+   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
+   introspection? ( >=dev-libs/gobject-introspection-1.66:= )
+"
+RDEPEND="
+   ${DEPEND}
+"
+BDEPEND="
+   vala? ( $(vala_depend) )
+   dev-lang/perl
+   dev-util/gdbus-codegen
+   dev-util/gtk-doc-am
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_configure() {
+   local myconf=(
+   $(use_enable introspection)
+   $(use_enable dbusmenu dbusmenu-gtk3)
+   $(use_enable vala)
+   )
+
+   use vala && vala_setup
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}



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

2023-04-29 Thread Michał Górny
commit: 5787bb8859ad7906f4ade88a03e71092d303c1f7
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Apr 29 18:30:44 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Apr 29 18:30:44 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5787bb88

xfce-base/xfce4-panel: Remove old

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

 xfce-base/xfce4-panel/Manifest  |  2 -
 xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild | 72 -
 xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild | 86 -
 3 files changed, 160 deletions(-)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index 28b8c212d11d..822f13448577 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,4 +1,2 @@
-DIST xfce4-panel-4.18.2.tar.bz2 1448776 BLAKE2B 
5c6f0f3eb85348c6181a94d19331a42ba02e36fd32c747c2dd1d8d762b795e5c8f7a21d4c54765fe498f1d0604ef7229c40f625cb3350dff41c7ec32caa49072
 SHA512 
8f8aa29a3dc1133477bc7075a2bbb7e7811ebd26f94e9771e4b6987e4aaa2733295e3260cf5b9052545181195ddac50e93c421e4518cdd1ccf18c39c4c972712
 DIST xfce4-panel-4.18.3.tar.bz2 1452647 BLAKE2B 
40545b13fa0b8d7178fc9753cb3b1b00b0729956155a1321ba7570f83d53eecc528ddaf47cb5653a25d9df1da45d9f586311426df75471c7a6c15f5b28dc6367
 SHA512 
d85a7540b11c4e9ed9c99b9660d12a14ae665c6c496dd0674dc4aa048d0f043dc3659a42af862ec9409d2181c3b0ae588750373530b4c9f42d4427e08e91de19
-DIST xfce4-panel-4.19.0.tar.bz2 1485117 BLAKE2B 
a70654a1d8633f04310a1a9fb8554254de2f272f6fbbfede3c709a9bdc9b7d6138d5ab26ea83ccc75c9152ee0fb9d2ce7e7b174ace6369eb7d60e14db0828cec
 SHA512 
a1c3c5f535581332c1b5e93bfecabae32cbe610d168f4452bed321466b73e4ca9ca09ca2e7c7f54cb82fe45a6102022bb30f77b57841a9bba03809b703bddf91
 DIST xfce4-panel-4.19.1.tar.bz2 208 BLAKE2B 
9be568832d6bc56fcecaf6eff2a907b64cc2b7f9fa51f18109c18300b9cb9cd7044d64b2b89d28ede409be3d4cd026274c543db7892ea128a1ce52679d62
 SHA512 
f22673e3a8785283a4179bf3a7791f2b14b9d5e87efffdc822ad61b24cca827517a15f0484392255ef04aeac99b5d4722bf347d14981340d4d86d7b47700883d

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild
deleted file mode 100644
index 1554ed519788..
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit vala xdg-utils
-
-DESCRIPTION="Panel for the Xfce desktop environment"
-HOMEPAGE="
-   https://docs.xfce.org/xfce/xfce4-panel/start
-   https://gitlab.xfce.org/xfce/xfce4-panel/
-"
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+ LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="+dbusmenu introspection vala"
-REQUIRED_USE="vala? ( introspection )"
-
-DEPEND="
-   >=dev-libs/glib-2.66.0
-   >=x11-libs/cairo-1.16.0
-   >=x11-libs/gtk+-3.24.0:3[introspection?]
-   x11-libs/libX11
-   x11-libs/libwnck:3
-   >=xfce-base/exo-0.11.2:=
-   >=xfce-base/garcon-4.17.0:=
-   >=xfce-base/libxfce4ui-4.17.1:=
-   >=xfce-base/libxfce4util-4.17.2:=[introspection?,vala?]
-   >=xfce-base/xfconf-4.13:=
-   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
-   introspection? ( >=dev-libs/gobject-introspection-1.66:= )
-"
-RDEPEND="
-   ${DEPEND}
-"
-BDEPEND="
-   vala? ( $(vala_depend) )
-   dev-lang/perl
-   dev-util/gdbus-codegen
-   dev-util/gtk-doc-am
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-src_configure() {
-   local myconf=(
-   $(use_enable introspection)
-   $(use_enable dbusmenu dbusmenu-gtk3)
-   $(use_enable vala)
-   )
-
-   use vala && vala_setup
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-}

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild
deleted file mode 100644
index 63e77476edd0..
--- a/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit vala xdg-utils
-
-DESCRIPTION="Panel for the Xfce desktop environment"
-HOMEPAGE="
-   https://docs.xfce.org/xfce/xfce4-panel/start
-   https://gitlab.xfce.org/xfce/xfce4-panel/
-"
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+ LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~loong ~ppc ~riscv ~x86"

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

2023-04-29 Thread Arthur Zamarin
commit: 2d0dd78e4ec360d76773dc46b767a14057654575
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Apr 29 17:42:18 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Apr 29 17:42:18 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d0dd78e

xfce-base/xfce4-panel: Stabilize 4.18.3 ppc, #904021

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild
index 14e0d75b4118..1554ed519788 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2023-04-14 Thread Sam James
commit: 660623434853741835aac860cc7a197285484636
Author: Sam James  gentoo  org>
AuthorDate: Fri Apr 14 20:49:32 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Apr 14 20:49:32 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66062343

xfce-base/xfce4-panel: Keyword 4.19.1-r1 ppc64, #890340

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

 xfce-base/xfce4-panel/xfce4-panel-4.19.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.19.1-r1.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.19.1-r1.ebuild
index 7e43cb21bab0..d32f9bb6ec58 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.19.1-r1.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.19.1-r1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~riscv ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~x86"
 IUSE="+dbusmenu introspection vala wayland X"
 REQUIRED_USE="
|| ( wayland X )



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

2023-04-08 Thread Arthur Zamarin
commit: 4ad4df7001c687ff980d7ce5f0d8bd7f542c1aa2
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Apr  8 17:50:04 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Apr  8 17:50:04 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ad4df70

xfce-base/xfce4-panel: Stabilize 4.18.3 x86, #904021

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild
index 575b36815628..14e0d75b4118 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2023-04-08 Thread Arthur Zamarin
commit: c23cba383893c6f83592153221a9cf034ba7920b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Apr  8 17:47:36 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Apr  8 17:47:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c23cba38

xfce-base/xfce4-panel: Stabilize 4.18.3 amd64, #904021

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild
index ab7cd82e3c01..575b36815628 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2023-04-08 Thread Arthur Zamarin
commit: 049f42429261ee8acd1e9c0b2d61e64524c4b78f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Apr  8 17:45:04 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Apr  8 17:45:04 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=049f4242

xfce-base/xfce4-panel: Stabilize 4.18.3 ppc64, #904021

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild
index 2c9e92390d75..ab7cd82e3c01 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2023-04-08 Thread Arthur Zamarin
commit: 8c2534815c46e49bd37d3416767526051d7e6276
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Apr  8 17:39:46 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Apr  8 17:39:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c253481

xfce-base/xfce4-panel: Stabilize 4.18.3 arm, #904021

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild
index a794523d6716..2c9e92390d75 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2023-04-08 Thread Arthur Zamarin
commit: a41c1fa0c5b18b7db9930b2c87bad07dcae3f695
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Apr  8 16:58:59 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Apr  8 16:58:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a41c1fa0

xfce-base/xfce4-panel: Stabilize 4.18.3 arm64, #904021

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild
index 7d772282a7b2..a794523d6716 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2023-04-06 Thread Michał Górny
commit: d0833eedb22acbf466d0a80e62bf4fdc9bf43fa3
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Apr  6 18:15:19 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Apr  6 19:44:48 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0833eed

xfce-base/xfce4-panel: Fix building with USE=-wayland

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

 .../files/xfce4-panel-4.19.1-no-wayland.patch  | 51 ++
 ...-4.19.1.ebuild => xfce4-panel-4.19.1-r1.ebuild} |  5 +++
 2 files changed, 56 insertions(+)

diff --git a/xfce-base/xfce4-panel/files/xfce4-panel-4.19.1-no-wayland.patch 
b/xfce-base/xfce4-panel/files/xfce4-panel-4.19.1-no-wayland.patch
new file mode 100644
index ..2c7c93e502d4
--- /dev/null
+++ b/xfce-base/xfce4-panel/files/xfce4-panel-4.19.1-no-wayland.patch
@@ -0,0 +1,51 @@
+From 7eea3cadc0140d6e252a9ed8e3fe3a30ca0d0e38 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Ga=C3=ABl=20Bonithon?= 
+Date: Thu, 6 Apr 2023 18:22:59 +0200
+Subject: [PATCH] build: Fix for Wayland backend disabled (Fixes #729)
+
+---
+ panel/panel-application.c | 9 +
+ 1 file changed, 5 insertions(+), 4 deletions(-)
+
+diff --git a/panel/panel-application.c b/panel/panel-application.c
+index 847352b44..0ade54c9c 100644
+--- a/panel/panel-application.c
 b/panel/panel-application.c
+@@ -199,7 +199,6 @@ panel_application_class_init (PanelApplicationClass *klass)
+ static void
+ panel_application_init (PanelApplication *application)
+ {
+-  GdkDisplay *display;
+   GError *error = NULL;
+   gint configver;
+ 
+@@ -237,21 +236,23 @@ panel_application_init (PanelApplication *application)
+   application->autosave_timer_id = g_timeout_add_seconds (AUTOSAVE_INTERVAL,
+   panel_application_autosave_timer, application);
+ 
++#ifdef GDK_WINDOWING_WAYLAND
+   /* warn the user about restricted features on Wayland */
+-  display = gdk_display_get_default ();
+-  if (GDK_IS_WAYLAND_DISPLAY (display))
++  if (GDK_IS_WAYLAND_DISPLAY (gdk_display_get_default ()))
+ {
+   if (! gtk_layer_is_supported ())
+ g_warning ("Wayland detected without layer-shell support (either 
because of your"
+" compositor or because Xfce4-panel was built without this 
support):"
+" Xfce4-panel might not look like a panel and many of its 
features will"
+" not be available");
+-  if (! gdk_wayland_display_query_registry (display, 
"zwlr_foreign_toplevel_manager_v1"))
++  if (! gdk_wayland_display_query_registry (gdk_display_get_default (),
++
"zwlr_foreign_toplevel_manager_v1"))
+ g_warning ("Wayland detected without foreign-toplevel-management 
support (your"
+" compositor does not seem to support it): Some 
Xfce4-panel features will"
+" not work (e.g. intellihide), as well as some plugins 
(e.g. ShowDesktop,"
+" Tasklist, WindowMenu)");
+ }
++#endif
+ }
+ 
+ 
+-- 
+GitLab
+

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.19.1.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.19.1-r1.ebuild
similarity index 94%
rename from xfce-base/xfce4-panel/xfce4-panel-4.19.1.ebuild
rename to xfce-base/xfce4-panel/xfce4-panel-4.19.1-r1.ebuild
index b7665ab7ef89..970ea40fe46d 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.19.1.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.19.1-r1.ebuild
@@ -55,6 +55,11 @@ BDEPEND="
virtual/pkgconfig
 "
 
+PATCHES=(
+   # https://gitlab.xfce.org/xfce/xfce4-panel/-/issues/729
+   "${FILESDIR}"/${P}-no-wayland.patch
+)
+
 src_configure() {
local myconf=(
$(use_enable introspection)



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

2023-03-28 Thread Michał Górny
commit: 503ef751edcf96dc4b24afca30f1b1c42cde946a
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 29 04:55:06 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 29 04:55:06 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=503ef751

xfce-base/xfce4-panel: Bump to 4.19.1

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

 xfce-base/xfce4-panel/Manifest  |  1 +
 xfce-base/xfce4-panel/xfce4-panel-4.19.1.ebuild | 86 +
 2 files changed, 87 insertions(+)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index ee0feeae7705..28b8c212d11d 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,3 +1,4 @@
 DIST xfce4-panel-4.18.2.tar.bz2 1448776 BLAKE2B 
5c6f0f3eb85348c6181a94d19331a42ba02e36fd32c747c2dd1d8d762b795e5c8f7a21d4c54765fe498f1d0604ef7229c40f625cb3350dff41c7ec32caa49072
 SHA512 
8f8aa29a3dc1133477bc7075a2bbb7e7811ebd26f94e9771e4b6987e4aaa2733295e3260cf5b9052545181195ddac50e93c421e4518cdd1ccf18c39c4c972712
 DIST xfce4-panel-4.18.3.tar.bz2 1452647 BLAKE2B 
40545b13fa0b8d7178fc9753cb3b1b00b0729956155a1321ba7570f83d53eecc528ddaf47cb5653a25d9df1da45d9f586311426df75471c7a6c15f5b28dc6367
 SHA512 
d85a7540b11c4e9ed9c99b9660d12a14ae665c6c496dd0674dc4aa048d0f043dc3659a42af862ec9409d2181c3b0ae588750373530b4c9f42d4427e08e91de19
 DIST xfce4-panel-4.19.0.tar.bz2 1485117 BLAKE2B 
a70654a1d8633f04310a1a9fb8554254de2f272f6fbbfede3c709a9bdc9b7d6138d5ab26ea83ccc75c9152ee0fb9d2ce7e7b174ace6369eb7d60e14db0828cec
 SHA512 
a1c3c5f535581332c1b5e93bfecabae32cbe610d168f4452bed321466b73e4ca9ca09ca2e7c7f54cb82fe45a6102022bb30f77b57841a9bba03809b703bddf91
+DIST xfce4-panel-4.19.1.tar.bz2 208 BLAKE2B 
9be568832d6bc56fcecaf6eff2a907b64cc2b7f9fa51f18109c18300b9cb9cd7044d64b2b89d28ede409be3d4cd026274c543db7892ea128a1ce52679d62
 SHA512 
f22673e3a8785283a4179bf3a7791f2b14b9d5e87efffdc822ad61b24cca827517a15f0484392255ef04aeac99b5d4722bf347d14981340d4d86d7b47700883d

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.19.1.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.19.1.ebuild
new file mode 100644
index ..b7665ab7ef89
--- /dev/null
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.19.1.ebuild
@@ -0,0 +1,86 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit vala xdg-utils
+
+DESCRIPTION="Panel for the Xfce desktop environment"
+HOMEPAGE="
+   https://docs.xfce.org/xfce/xfce4-panel/start
+   https://gitlab.xfce.org/xfce/xfce4-panel/
+"
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~loong ~ppc ~riscv ~x86"
+IUSE="+dbusmenu introspection vala wayland X"
+REQUIRED_USE="
+   || ( wayland X )
+   vala? ( introspection )
+"
+
+DEPEND="
+   >=dev-libs/glib-2.72.0
+   >=x11-libs/cairo-1.16.0
+   >=x11-libs/gtk+-3.24.0:3[X?,introspection?,wayland?]
+   >=xfce-base/exo-0.11.2:=
+   >=xfce-base/garcon-4.17.0:=
+   >=xfce-base/libxfce4ui-4.17.1:=
+   >=xfce-base/libxfce4util-4.17.2:=[introspection?,vala?]
+   >=xfce-base/libxfce4windowing-4.19.1:=
+   >=xfce-base/xfconf-4.13.2:=
+   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
+   introspection? ( >=dev-libs/gobject-introspection-1.66:= )
+   wayland? (
+   >=dev-libs/wayland-1.15
+   >=gui-libs/gtk-layer-shell-0.7.0
+   )
+   X? (
+   >=x11-libs/libX11-1.6.7
+   x11-libs/libwnck:3
+   )
+"
+RDEPEND="
+   ${DEPEND}
+"
+BDEPEND="
+   vala? ( $(vala_depend) )
+   dev-lang/perl
+   dev-util/gdbus-codegen
+   dev-util/gtk-doc-am
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_configure() {
+   local myconf=(
+   $(use_enable introspection)
+   $(use_enable dbusmenu dbusmenu-gtk3)
+   $(use_enable vala)
+   $(use_enable wayland wayland-client)
+   $(use_enable wayland gtk-layer-shell)
+   $(use_enable X gtk-x11)
+   $(use_enable X libwnck)
+   )
+
+   use vala && vala_setup
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}



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

2023-03-28 Thread Michał Górny
commit: 9b560a042d5c24b9d73997827b346694b3115462
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Mar 28 19:04:51 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Mar 28 19:07:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b560a04

xfce-base/xfce4-panel: Bump to 4.18.3

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

 xfce-base/xfce4-panel/Manifest  |  1 +
 xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild | 72 +
 2 files changed, 73 insertions(+)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index 4dcbfac87bec..ee0feeae7705 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,2 +1,3 @@
 DIST xfce4-panel-4.18.2.tar.bz2 1448776 BLAKE2B 
5c6f0f3eb85348c6181a94d19331a42ba02e36fd32c747c2dd1d8d762b795e5c8f7a21d4c54765fe498f1d0604ef7229c40f625cb3350dff41c7ec32caa49072
 SHA512 
8f8aa29a3dc1133477bc7075a2bbb7e7811ebd26f94e9771e4b6987e4aaa2733295e3260cf5b9052545181195ddac50e93c421e4518cdd1ccf18c39c4c972712
+DIST xfce4-panel-4.18.3.tar.bz2 1452647 BLAKE2B 
40545b13fa0b8d7178fc9753cb3b1b00b0729956155a1321ba7570f83d53eecc528ddaf47cb5653a25d9df1da45d9f586311426df75471c7a6c15f5b28dc6367
 SHA512 
d85a7540b11c4e9ed9c99b9660d12a14ae665c6c496dd0674dc4aa048d0f043dc3659a42af862ec9409d2181c3b0ae588750373530b4c9f42d4427e08e91de19
 DIST xfce4-panel-4.19.0.tar.bz2 1485117 BLAKE2B 
a70654a1d8633f04310a1a9fb8554254de2f272f6fbbfede3c709a9bdc9b7d6138d5ab26ea83ccc75c9152ee0fb9d2ce7e7b174ace6369eb7d60e14db0828cec
 SHA512 
a1c3c5f535581332c1b5e93bfecabae32cbe610d168f4452bed321466b73e4ca9ca09ca2e7c7f54cb82fe45a6102022bb30f77b57841a9bba03809b703bddf91

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild
new file mode 100644
index ..7d772282a7b2
--- /dev/null
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.3.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit vala xdg-utils
+
+DESCRIPTION="Panel for the Xfce desktop environment"
+HOMEPAGE="
+   https://docs.xfce.org/xfce/xfce4-panel/start
+   https://gitlab.xfce.org/xfce/xfce4-panel/
+"
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="+dbusmenu introspection vala"
+REQUIRED_USE="vala? ( introspection )"
+
+DEPEND="
+   >=dev-libs/glib-2.66.0
+   >=x11-libs/cairo-1.16.0
+   >=x11-libs/gtk+-3.24.0:3[introspection?]
+   x11-libs/libX11
+   x11-libs/libwnck:3
+   >=xfce-base/exo-0.11.2:=
+   >=xfce-base/garcon-4.17.0:=
+   >=xfce-base/libxfce4ui-4.17.1:=
+   >=xfce-base/libxfce4util-4.17.2:=[introspection?,vala?]
+   >=xfce-base/xfconf-4.13:=
+   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
+   introspection? ( >=dev-libs/gobject-introspection-1.66:= )
+"
+RDEPEND="
+   ${DEPEND}
+"
+BDEPEND="
+   vala? ( $(vala_depend) )
+   dev-lang/perl
+   dev-util/gdbus-codegen
+   dev-util/gtk-doc-am
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_configure() {
+   local myconf=(
+   $(use_enable introspection)
+   $(use_enable dbusmenu dbusmenu-gtk3)
+   $(use_enable vala)
+   )
+
+   use vala && vala_setup
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}



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

2023-03-17 Thread Michał Górny
commit: a73b79fde0e580170e144147b3ffda21682955b6
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Mar 17 15:03:34 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar 17 15:03:34 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a73b79fd

xfce-base/xfce4-panel: Remove old

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

 xfce-base/xfce4-panel/Manifest  |  1 -
 xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild | 72 -
 2 files changed, 73 deletions(-)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index f32eeb8e9013..4dcbfac87bec 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,3 +1,2 @@
-DIST xfce4-panel-4.18.1.tar.bz2 1446504 BLAKE2B 
b7b8c0d26d21a543af7bb05b66e4435cbb059043502f34bed27915eaf2684b324e9e9ca8407d666bf2258fb80e559e9b11e87ffea4067c9dc6a42737bc1345a4
 SHA512 
6c79b305676fc6f8088f5579352be1379e87cf88b4207be0c579e6ebc9661a76f8decc434ef9973e29ca363bb7a4caf980c41b1800fae7d55f47c0405dd48075
 DIST xfce4-panel-4.18.2.tar.bz2 1448776 BLAKE2B 
5c6f0f3eb85348c6181a94d19331a42ba02e36fd32c747c2dd1d8d762b795e5c8f7a21d4c54765fe498f1d0604ef7229c40f625cb3350dff41c7ec32caa49072
 SHA512 
8f8aa29a3dc1133477bc7075a2bbb7e7811ebd26f94e9771e4b6987e4aaa2733295e3260cf5b9052545181195ddac50e93c421e4518cdd1ccf18c39c4c972712
 DIST xfce4-panel-4.19.0.tar.bz2 1485117 BLAKE2B 
a70654a1d8633f04310a1a9fb8554254de2f272f6fbbfede3c709a9bdc9b7d6138d5ab26ea83ccc75c9152ee0fb9d2ce7e7b174ace6369eb7d60e14db0828cec
 SHA512 
a1c3c5f535581332c1b5e93bfecabae32cbe610d168f4452bed321466b73e4ca9ca09ca2e7c7f54cb82fe45a6102022bb30f77b57841a9bba03809b703bddf91

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild
deleted file mode 100644
index 1554ed519788..
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit vala xdg-utils
-
-DESCRIPTION="Panel for the Xfce desktop environment"
-HOMEPAGE="
-   https://docs.xfce.org/xfce/xfce4-panel/start
-   https://gitlab.xfce.org/xfce/xfce4-panel/
-"
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+ LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="+dbusmenu introspection vala"
-REQUIRED_USE="vala? ( introspection )"
-
-DEPEND="
-   >=dev-libs/glib-2.66.0
-   >=x11-libs/cairo-1.16.0
-   >=x11-libs/gtk+-3.24.0:3[introspection?]
-   x11-libs/libX11
-   x11-libs/libwnck:3
-   >=xfce-base/exo-0.11.2:=
-   >=xfce-base/garcon-4.17.0:=
-   >=xfce-base/libxfce4ui-4.17.1:=
-   >=xfce-base/libxfce4util-4.17.2:=[introspection?,vala?]
-   >=xfce-base/xfconf-4.13:=
-   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
-   introspection? ( >=dev-libs/gobject-introspection-1.66:= )
-"
-RDEPEND="
-   ${DEPEND}
-"
-BDEPEND="
-   vala? ( $(vala_depend) )
-   dev-lang/perl
-   dev-util/gdbus-codegen
-   dev-util/gtk-doc-am
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-src_configure() {
-   local myconf=(
-   $(use_enable introspection)
-   $(use_enable dbusmenu dbusmenu-gtk3)
-   $(use_enable vala)
-   )
-
-   use vala && vala_setup
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-}



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

2023-03-17 Thread Arthur Zamarin
commit: 3e278eead608afc9824829cd01d294fc3d33e2c9
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Mar 17 14:32:36 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Mar 17 14:32:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e278eea

xfce-base/xfce4-panel: Stabilize 4.18.2 ppc64, #901757

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild
index 1e36f1d0b978..1554ed519788 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2023-03-17 Thread Arthur Zamarin
commit: d77a604f00a42b416e5d972d167922fc70ce3efe
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Mar 17 14:21:38 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Mar 17 14:21:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d77a604f

xfce-base/xfce4-panel: Stabilize 4.18.2 ppc, #901757

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild
index 956b979c7039..1e36f1d0b978 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2023-03-17 Thread Arthur Zamarin
commit: e6fa914f732bf4175f90a24cfd77a68945c9776d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Mar 17 14:20:47 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Mar 17 14:20:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6fa914f

xfce-base/xfce4-panel: Stabilize 4.18.2 arm, #901757

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild
index 49543f3966be..956b979c7039 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2023-03-17 Thread Arthur Zamarin
commit: e7e3272dfe54bb186bb31d2cb15e72980d3e49f6
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Mar 17 14:20:46 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Mar 17 14:20:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7e3272d

xfce-base/xfce4-panel: Stabilize 4.18.2 arm64, #901757

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild
index f4089b924742..49543f3966be 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2023-03-17 Thread Sam James
commit: cd59e36d3c1713b6237d8d0f023db6dced31dd64
Author: Sam James  gentoo  org>
AuthorDate: Fri Mar 17 14:10:42 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Mar 17 14:10:42 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd59e36d

xfce-base/xfce4-panel: Stabilize 4.18.2 amd64, #901757

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild
index 28ebd7287fec..f4089b924742 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2023-03-17 Thread Sam James
commit: 2b66605ebb07997d3794dd8c2d704288b4ac8d6c
Author: Sam James  gentoo  org>
AuthorDate: Fri Mar 17 14:10:41 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Mar 17 14:10:41 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b66605e

xfce-base/xfce4-panel: Stabilize 4.18.2 x86, #901757

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild
index 7d772282a7b2..28ebd7287fec 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2023-03-17 Thread Michał Górny
commit: 5d15273816d9d15dd826a60773ba1a814e339e04
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Mar 17 10:46:43 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar 17 10:50:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d152738

xfce-base/xfce4-panel: Remove old

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

 xfce-base/xfce4-panel/Manifest  |  3 --
 xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild | 69 
 xfce-base/xfce4-panel/xfce4-panel-4.16.6.ebuild | 69 
 xfce-base/xfce4-panel/xfce4-panel-4.18.0.ebuild | 72 -
 4 files changed, 213 deletions(-)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index ddb42d9afa98..f32eeb8e9013 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,6 +1,3 @@
-DIST xfce4-panel-4.16.5.tar.bz2 1386556 BLAKE2B 
e0543e2c2259a03b09ddaef951434127a76f176626b5355497c1f27748c83857cb34ed1ddecf694c36e3422ca9e55fa4e7eae728b0b50e06feb40ca6e867ebdc
 SHA512 
d72220fa2812ae3b420350dab4c9d33e01d26d27ba33e4c16ad848ed1915c3c4aaf41fef24e2e7271e31171536148ad32b55aabc3e1facd4bf8a411990fd27bb
-DIST xfce4-panel-4.16.6.tar.bz2 1390083 BLAKE2B 
8f55f4a24f9130f4ed0cc0b77161218ca1bd6dcd6e23c047e5e38c7dc3ef3a158a6b1538732c8c39143e3886e6994c103e81d26cda0ac2442ecb24872179f513
 SHA512 
7c1236e552de88e6dd831a9f5b567a743ac52b4f62a1c006cece31d162319d9402d7449657f54c70bf4dc09615dbfacf7320ddd22c57c14b54e3623f8903190f
-DIST xfce4-panel-4.18.0.tar.bz2 1451719 BLAKE2B 
9a96c146b5d2764f3e5540979df7eecbe861c9527dfbb924643fc3335bf5f2648d760362024969b7d9d4005eec83805378d104bf5995e85afb9b2498946c47f0
 SHA512 
4269714fb4cd6fb915789f288a0464c7ceb8c0bca73040416f9f10b6c5ed936e0340b11da8bf7e662b5a1453764e360866abf0320a46e30d536603a329d9e727
 DIST xfce4-panel-4.18.1.tar.bz2 1446504 BLAKE2B 
b7b8c0d26d21a543af7bb05b66e4435cbb059043502f34bed27915eaf2684b324e9e9ca8407d666bf2258fb80e559e9b11e87ffea4067c9dc6a42737bc1345a4
 SHA512 
6c79b305676fc6f8088f5579352be1379e87cf88b4207be0c579e6ebc9661a76f8decc434ef9973e29ca363bb7a4caf980c41b1800fae7d55f47c0405dd48075
 DIST xfce4-panel-4.18.2.tar.bz2 1448776 BLAKE2B 
5c6f0f3eb85348c6181a94d19331a42ba02e36fd32c747c2dd1d8d762b795e5c8f7a21d4c54765fe498f1d0604ef7229c40f625cb3350dff41c7ec32caa49072
 SHA512 
8f8aa29a3dc1133477bc7075a2bbb7e7811ebd26f94e9771e4b6987e4aaa2733295e3260cf5b9052545181195ddac50e93c421e4518cdd1ccf18c39c4c972712
 DIST xfce4-panel-4.19.0.tar.bz2 1485117 BLAKE2B 
a70654a1d8633f04310a1a9fb8554254de2f272f6fbbfede3c709a9bdc9b7d6138d5ab26ea83ccc75c9152ee0fb9d2ce7e7b174ace6369eb7d60e14db0828cec
 SHA512 
a1c3c5f535581332c1b5e93bfecabae32cbe610d168f4452bed321466b73e4ca9ca09ca2e7c7f54cb82fe45a6102022bb30f77b57841a9bba03809b703bddf91

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild
deleted file mode 100644
index b73513d14978..
--- a/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit vala xdg-utils
-
-DESCRIPTION="Panel 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+ LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="+dbusmenu introspection vala"
-REQUIRED_USE="vala? ( introspection )"
-
-RDEPEND="
-   >=dev-libs/glib-2.50
-   >=x11-libs/cairo-1
-   >=x11-libs/gtk+-3.22:3[introspection?]
-   x11-libs/libX11
-   x11-libs/libwnck:3
-   >=xfce-base/exo-0.11.2:=
-   >=xfce-base/garcon-0.5:=
-   >=xfce-base/libxfce4ui-4.15.8:=
-   >=xfce-base/libxfce4util-4.15.6:=[introspection?,vala?]
-   >=xfce-base/xfconf-4.13:=
-   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
-   introspection? ( dev-libs/gobject-introspection:= )
-"
-DEPEND="
-   ${RDEPEND}
-"
-BDEPEND="
-   vala? ( $(vala_depend) )
-   dev-lang/perl
-   dev-util/gdbus-codegen
-   dev-util/gtk-doc-am
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-src_configure() {
-   local myconf=(
-   $(use_enable introspection)
-   $(use_enable dbusmenu dbusmenu-gtk3)
-   $(use_enable vala)
-   )
-
-   use vala && vala_setup
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-}

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.6.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.6.ebuild
deleted file mode 100644

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

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

xfce-base/xfce4-panel: Stabilize 4.18.1 x86, #893064

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild
index 44c241826dbb..1554ed519788 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2023-03-15 Thread Michał Górny
commit: 104487c2951416e7d58116e12267171e536bb8e9
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar 15 06:54:02 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar 15 06:54:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=104487c2

xfce-base/xfce4-panel: Stabilize 4.18.1 ppc, #893064

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild
index 575b36815628..44c241826dbb 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2023-02-24 Thread Arthur Zamarin
commit: b3a11c9bb1af3dfcc5cc649547a0d55e8bbb254b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Feb 24 17:11:49 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Feb 24 17:11:49 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3a11c9b

xfce-base/xfce4-panel: Keyword 4.19.0 arm, #890340

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

 xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild
index 09f8fbc5833c..63e77476edd0 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ia64 ~loong ~ppc ~riscv ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~loong ~ppc ~riscv ~x86"
 IUSE="+dbusmenu introspection vala wayland X"
 REQUIRED_USE="
|| ( wayland X )



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

2023-02-09 Thread Michał Górny
commit: 54dd8a3c25a60efc3127197a5635db983991ec2a
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Feb  9 18:09:34 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Feb  9 18:16:21 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54dd8a3c

xfce-base/xfce4-panel: Bump to 4.18.2

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

 xfce-base/xfce4-panel/Manifest  |  1 +
 xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild | 72 +
 2 files changed, 73 insertions(+)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index 659740d1c5b4..ddb42d9afa98 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -2,4 +2,5 @@ DIST xfce4-panel-4.16.5.tar.bz2 1386556 BLAKE2B 
e0543e2c2259a03b09ddaef951434127
 DIST xfce4-panel-4.16.6.tar.bz2 1390083 BLAKE2B 
8f55f4a24f9130f4ed0cc0b77161218ca1bd6dcd6e23c047e5e38c7dc3ef3a158a6b1538732c8c39143e3886e6994c103e81d26cda0ac2442ecb24872179f513
 SHA512 
7c1236e552de88e6dd831a9f5b567a743ac52b4f62a1c006cece31d162319d9402d7449657f54c70bf4dc09615dbfacf7320ddd22c57c14b54e3623f8903190f
 DIST xfce4-panel-4.18.0.tar.bz2 1451719 BLAKE2B 
9a96c146b5d2764f3e5540979df7eecbe861c9527dfbb924643fc3335bf5f2648d760362024969b7d9d4005eec83805378d104bf5995e85afb9b2498946c47f0
 SHA512 
4269714fb4cd6fb915789f288a0464c7ceb8c0bca73040416f9f10b6c5ed936e0340b11da8bf7e662b5a1453764e360866abf0320a46e30d536603a329d9e727
 DIST xfce4-panel-4.18.1.tar.bz2 1446504 BLAKE2B 
b7b8c0d26d21a543af7bb05b66e4435cbb059043502f34bed27915eaf2684b324e9e9ca8407d666bf2258fb80e559e9b11e87ffea4067c9dc6a42737bc1345a4
 SHA512 
6c79b305676fc6f8088f5579352be1379e87cf88b4207be0c579e6ebc9661a76f8decc434ef9973e29ca363bb7a4caf980c41b1800fae7d55f47c0405dd48075
+DIST xfce4-panel-4.18.2.tar.bz2 1448776 BLAKE2B 
5c6f0f3eb85348c6181a94d19331a42ba02e36fd32c747c2dd1d8d762b795e5c8f7a21d4c54765fe498f1d0604ef7229c40f625cb3350dff41c7ec32caa49072
 SHA512 
8f8aa29a3dc1133477bc7075a2bbb7e7811ebd26f94e9771e4b6987e4aaa2733295e3260cf5b9052545181195ddac50e93c421e4518cdd1ccf18c39c4c972712
 DIST xfce4-panel-4.19.0.tar.bz2 1485117 BLAKE2B 
a70654a1d8633f04310a1a9fb8554254de2f272f6fbbfede3c709a9bdc9b7d6138d5ab26ea83ccc75c9152ee0fb9d2ce7e7b174ace6369eb7d60e14db0828cec
 SHA512 
a1c3c5f535581332c1b5e93bfecabae32cbe610d168f4452bed321466b73e4ca9ca09ca2e7c7f54cb82fe45a6102022bb30f77b57841a9bba03809b703bddf91

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild
new file mode 100644
index ..7d772282a7b2
--- /dev/null
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.2.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit vala xdg-utils
+
+DESCRIPTION="Panel for the Xfce desktop environment"
+HOMEPAGE="
+   https://docs.xfce.org/xfce/xfce4-panel/start
+   https://gitlab.xfce.org/xfce/xfce4-panel/
+"
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="+dbusmenu introspection vala"
+REQUIRED_USE="vala? ( introspection )"
+
+DEPEND="
+   >=dev-libs/glib-2.66.0
+   >=x11-libs/cairo-1.16.0
+   >=x11-libs/gtk+-3.24.0:3[introspection?]
+   x11-libs/libX11
+   x11-libs/libwnck:3
+   >=xfce-base/exo-0.11.2:=
+   >=xfce-base/garcon-4.17.0:=
+   >=xfce-base/libxfce4ui-4.17.1:=
+   >=xfce-base/libxfce4util-4.17.2:=[introspection?,vala?]
+   >=xfce-base/xfconf-4.13:=
+   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
+   introspection? ( >=dev-libs/gobject-introspection-1.66:= )
+"
+RDEPEND="
+   ${DEPEND}
+"
+BDEPEND="
+   vala? ( $(vala_depend) )
+   dev-lang/perl
+   dev-util/gdbus-codegen
+   dev-util/gtk-doc-am
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_configure() {
+   local myconf=(
+   $(use_enable introspection)
+   $(use_enable dbusmenu dbusmenu-gtk3)
+   $(use_enable vala)
+   )
+
+   use vala && vala_setup
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}



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

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

xfce-base/xfce4-panel: Stabilize 4.18.1 amd64, #893064

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild
index ab7cd82e3c01..575b36815628 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

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

xfce-base/xfce4-panel: Stabilize 4.18.1 arm64, #893064

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild
index 418f6ec671ba..ab7cd82e3c01 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

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

xfce-base/xfce4-panel: Stabilize 4.18.1 ppc64, #893064

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild
index bf01afd4a614..418f6ec671ba 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

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

xfce-base/xfce4-panel: Stabilize 4.18.1 arm, #893064

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

 xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild
index 7d772282a7b2..bf01afd4a614 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2023-01-25 Thread WANG Xuerui
commit: 6f92e5674eb44276b19bbe3a4ae9fa01e83b9cdc
Author: WANG Xuerui  gentoo  org>
AuthorDate: Wed Jan 25 15:48:02 2023 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Wed Jan 25 15:48:02 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f92e567

xfce-base/xfce4-panel: keyword 4.19.0 for ~loong

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

 xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild
index 7f414a8f8d9f..09f8fbc5833c 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~riscv ~x86"
+KEYWORDS="~amd64 ~hppa ~ia64 ~loong ~ppc ~riscv ~x86"
 IUSE="+dbusmenu introspection vala wayland X"
 REQUIRED_USE="
|| ( wayland X )



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

2023-01-14 Thread Arthur Zamarin
commit: 484d4e143927e8410e1990428a0ab8e628e06d74
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Jan 14 10:00:13 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Jan 14 10:00:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=484d4e14

xfce-base/xfce4-panel: Keyword 4.19.0 hppa, #890340

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

 xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild
index a74d2f43601c..7f414a8f8d9f 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~amd64 ~ia64 ~ppc ~riscv ~x86"
+KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~riscv ~x86"
 IUSE="+dbusmenu introspection vala wayland X"
 REQUIRED_USE="
|| ( wayland X )



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

2023-01-13 Thread Arthur Zamarin
commit: 558b62022093e85aed50ebf4923cd568cce44927
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Jan 13 14:19:50 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Jan 13 14:19:50 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=558b6202

xfce-base/xfce4-panel: Keyword 4.19.0 ppc, #890340

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

 xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild
index 10ac0eef26bf..a74d2f43601c 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~amd64 ~ia64 ~riscv ~x86"
+KEYWORDS="~amd64 ~ia64 ~ppc ~riscv ~x86"
 IUSE="+dbusmenu introspection vala wayland X"
 REQUIRED_USE="
|| ( wayland X )



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

2023-01-13 Thread Arthur Zamarin
commit: 2c4421d5165f77e113bb35d3f16b952d9729d654
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Jan 13 11:51:01 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Jan 13 11:51:01 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c4421d5

xfce-base/xfce4-panel: Keyword 4.19.0 ia64, #890340

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

 xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild
index 0550feb13c05..10ac0eef26bf 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~amd64 ~riscv ~x86"
+KEYWORDS="~amd64 ~ia64 ~riscv ~x86"
 IUSE="+dbusmenu introspection vala wayland X"
 REQUIRED_USE="
|| ( wayland X )



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

2023-01-11 Thread Michał Górny
commit: 7ddd4c7ec131f881b2f690dd16792a7a47846eb8
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jan 11 14:51:13 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Jan 11 14:51:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ddd4c7e

xfce-base/xfce4-panel: Require || ( wayland X )

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

 xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild | 19 +++
 1 file changed, 11 insertions(+), 8 deletions(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild
index d3de0ac68c66..0550feb13c05 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild
@@ -15,8 +15,11 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
 KEYWORDS="~amd64 ~riscv ~x86"
-IUSE="X +dbusmenu introspection vala wayland"
-REQUIRED_USE="vala? ( introspection )"
+IUSE="+dbusmenu introspection vala wayland X"
+REQUIRED_USE="
+   || ( wayland X )
+   vala? ( introspection )
+"
 
 DEPEND="
>=dev-libs/glib-2.72.0
@@ -28,16 +31,16 @@ DEPEND="
>=xfce-base/libxfce4util-4.17.2:=[introspection?,vala?]
>=xfce-base/libxfce4windowing-4.19.1:=
>=xfce-base/xfconf-4.13:=
-   X? (
-   x11-libs/libX11
-   x11-libs/libwnck:3
-   )
dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
introspection? ( >=dev-libs/gobject-introspection-1.66:= )
wayland? (
>=dev-libs/wayland-1.15
>=gui-libs/gtk-layer-shell-0.7.0
)
+   X? (
+   x11-libs/libX11
+   x11-libs/libwnck:3
+   )
 "
 RDEPEND="
${DEPEND}
@@ -57,10 +60,10 @@ src_configure() {
$(use_enable introspection)
$(use_enable dbusmenu dbusmenu-gtk3)
$(use_enable vala)
-   $(use_enable X gtk-x11)
-   $(use_enable X libwnck)
$(use_enable wayland wayland-client)
$(use_enable wayland gtk-layer-shell)
+   $(use_enable X gtk-x11)
+   $(use_enable X libwnck)
)
 
use vala && vala_setup



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

2023-01-11 Thread Joonas Niilola
commit: cb70cfd350902b76fe1f29ebbdf237bae20c1510
Author: Joonas Niilola  gentoo  org>
AuthorDate: Wed Jan 11 08:55:26 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Jan 11 08:55:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb70cfd3

xfce-base/xfce4-panel: Keyword 4.19.0 riscv, #890340

Signed-off-by: Joonas Niilola  gentoo.org>

 xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild
index 65a4d9e2a76e..d3de0ac68c66 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~riscv ~x86"
 IUSE="X +dbusmenu introspection vala wayland"
 REQUIRED_USE="vala? ( introspection )"
 



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

2023-01-10 Thread Joonas Niilola
commit: 9e4f800925ec35f7ef56cb2e21043f1b34271b90
Author: Joonas Niilola  gentoo  org>
AuthorDate: Wed Jan 11 06:27:36 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Wed Jan 11 06:28:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e4f8009

xfce-base/xfce4-panel: Keyword 4.19.0 x86, #890340

Signed-off-by: Joonas Niilola  gentoo.org>

 xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild
index fff8efcd9fa6..65a4d9e2a76e 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 IUSE="X +dbusmenu introspection vala wayland"
 REQUIRED_USE="vala? ( introspection )"
 



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

2023-01-10 Thread Michał Górny
commit: de898508fe39a6bd741c3fc0ba471e52df38ead5
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jan 10 20:37:40 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jan 10 20:37:55 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de898508

xfce-base/xfce4-panel: Remove old

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

 xfce-base/xfce4-panel/Manifest  |  1 -
 xfce-base/xfce4-panel/xfce4-panel-4.17.5.ebuild | 72 -
 2 files changed, 73 deletions(-)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index d0a3eadfdd11..659740d1c5b4 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,6 +1,5 @@
 DIST xfce4-panel-4.16.5.tar.bz2 1386556 BLAKE2B 
e0543e2c2259a03b09ddaef951434127a76f176626b5355497c1f27748c83857cb34ed1ddecf694c36e3422ca9e55fa4e7eae728b0b50e06feb40ca6e867ebdc
 SHA512 
d72220fa2812ae3b420350dab4c9d33e01d26d27ba33e4c16ad848ed1915c3c4aaf41fef24e2e7271e31171536148ad32b55aabc3e1facd4bf8a411990fd27bb
 DIST xfce4-panel-4.16.6.tar.bz2 1390083 BLAKE2B 
8f55f4a24f9130f4ed0cc0b77161218ca1bd6dcd6e23c047e5e38c7dc3ef3a158a6b1538732c8c39143e3886e6994c103e81d26cda0ac2442ecb24872179f513
 SHA512 
7c1236e552de88e6dd831a9f5b567a743ac52b4f62a1c006cece31d162319d9402d7449657f54c70bf4dc09615dbfacf7320ddd22c57c14b54e3623f8903190f
-DIST xfce4-panel-4.17.5.tar.bz2 1450044 BLAKE2B 
5ee351df3ff56d82cd85c9bd4af85dc1fd2f597f4669167421f0af18255bb175ecb80fcc9ddae884d2e32184bb608833e22fe126a59cc48a03e8856520a3672e
 SHA512 
149d41c190d2caf8e5f03ad8c2d53890b3529e21e31d34795673e4951c68ce6d96ca75a32d622ae211657f9ff1449cfffd5daa59cdc54bf4ff1b189f0cd7abfc
 DIST xfce4-panel-4.18.0.tar.bz2 1451719 BLAKE2B 
9a96c146b5d2764f3e5540979df7eecbe861c9527dfbb924643fc3335bf5f2648d760362024969b7d9d4005eec83805378d104bf5995e85afb9b2498946c47f0
 SHA512 
4269714fb4cd6fb915789f288a0464c7ceb8c0bca73040416f9f10b6c5ed936e0340b11da8bf7e662b5a1453764e360866abf0320a46e30d536603a329d9e727
 DIST xfce4-panel-4.18.1.tar.bz2 1446504 BLAKE2B 
b7b8c0d26d21a543af7bb05b66e4435cbb059043502f34bed27915eaf2684b324e9e9ca8407d666bf2258fb80e559e9b11e87ffea4067c9dc6a42737bc1345a4
 SHA512 
6c79b305676fc6f8088f5579352be1379e87cf88b4207be0c579e6ebc9661a76f8decc434ef9973e29ca363bb7a4caf980c41b1800fae7d55f47c0405dd48075
 DIST xfce4-panel-4.19.0.tar.bz2 1485117 BLAKE2B 
a70654a1d8633f04310a1a9fb8554254de2f272f6fbbfede3c709a9bdc9b7d6138d5ab26ea83ccc75c9152ee0fb9d2ce7e7b174ace6369eb7d60e14db0828cec
 SHA512 
a1c3c5f535581332c1b5e93bfecabae32cbe610d168f4452bed321466b73e4ca9ca09ca2e7c7f54cb82fe45a6102022bb30f77b57841a9bba03809b703bddf91

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.17.5.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.17.5.ebuild
deleted file mode 100644
index b9c27f5159e3..
--- a/xfce-base/xfce4-panel/xfce4-panel-4.17.5.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit vala xdg-utils
-
-DESCRIPTION="Panel for the Xfce desktop environment"
-HOMEPAGE="
-   https://docs.xfce.org/xfce/xfce4-panel/start
-   https://gitlab.xfce.org/xfce/xfce4-panel/
-"
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+ LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="+dbusmenu introspection vala"
-REQUIRED_USE="vala? ( introspection )"
-
-RDEPEND="
-   >=dev-libs/glib-2.66
-   >=x11-libs/cairo-1
-   >=x11-libs/gtk+-3.22:3[introspection?]
-   x11-libs/libX11
-   x11-libs/libwnck:3
-   >=xfce-base/exo-0.11.2:=
-   >=xfce-base/garcon-4.17.0:=
-   >=xfce-base/libxfce4ui-4.17.1:=
-   >=xfce-base/libxfce4util-4.17.2:=[introspection?,vala?]
-   >=xfce-base/xfconf-4.13:=
-   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
-   introspection? ( >=dev-libs/gobject-introspection-1.66:= )
-"
-DEPEND="
-   ${RDEPEND}
-"
-BDEPEND="
-   vala? ( $(vala_depend) )
-   dev-lang/perl
-   dev-util/gdbus-codegen
-   dev-util/gtk-doc-am
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-src_configure() {
-   local myconf=(
-   $(use_enable introspection)
-   $(use_enable dbusmenu dbusmenu-gtk3)
-   $(use_enable vala)
-   )
-
-   use vala && vala_setup
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-}



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

2023-01-10 Thread Michał Górny
commit: d962e1087900a2edb4b6727065b3371c0af44a14
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jan 10 20:36:15 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jan 10 20:37:54 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d962e108

xfce-base/xfce4-panel: Bump to 4.16.6

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

 xfce-base/xfce4-panel/Manifest  |  1 +
 xfce-base/xfce4-panel/xfce4-panel-4.16.6.ebuild | 69 +
 2 files changed, 70 insertions(+)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index 217e8614a201..d0a3eadfdd11 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,4 +1,5 @@
 DIST xfce4-panel-4.16.5.tar.bz2 1386556 BLAKE2B 
e0543e2c2259a03b09ddaef951434127a76f176626b5355497c1f27748c83857cb34ed1ddecf694c36e3422ca9e55fa4e7eae728b0b50e06feb40ca6e867ebdc
 SHA512 
d72220fa2812ae3b420350dab4c9d33e01d26d27ba33e4c16ad848ed1915c3c4aaf41fef24e2e7271e31171536148ad32b55aabc3e1facd4bf8a411990fd27bb
+DIST xfce4-panel-4.16.6.tar.bz2 1390083 BLAKE2B 
8f55f4a24f9130f4ed0cc0b77161218ca1bd6dcd6e23c047e5e38c7dc3ef3a158a6b1538732c8c39143e3886e6994c103e81d26cda0ac2442ecb24872179f513
 SHA512 
7c1236e552de88e6dd831a9f5b567a743ac52b4f62a1c006cece31d162319d9402d7449657f54c70bf4dc09615dbfacf7320ddd22c57c14b54e3623f8903190f
 DIST xfce4-panel-4.17.5.tar.bz2 1450044 BLAKE2B 
5ee351df3ff56d82cd85c9bd4af85dc1fd2f597f4669167421f0af18255bb175ecb80fcc9ddae884d2e32184bb608833e22fe126a59cc48a03e8856520a3672e
 SHA512 
149d41c190d2caf8e5f03ad8c2d53890b3529e21e31d34795673e4951c68ce6d96ca75a32d622ae211657f9ff1449cfffd5daa59cdc54bf4ff1b189f0cd7abfc
 DIST xfce4-panel-4.18.0.tar.bz2 1451719 BLAKE2B 
9a96c146b5d2764f3e5540979df7eecbe861c9527dfbb924643fc3335bf5f2648d760362024969b7d9d4005eec83805378d104bf5995e85afb9b2498946c47f0
 SHA512 
4269714fb4cd6fb915789f288a0464c7ceb8c0bca73040416f9f10b6c5ed936e0340b11da8bf7e662b5a1453764e360866abf0320a46e30d536603a329d9e727
 DIST xfce4-panel-4.18.1.tar.bz2 1446504 BLAKE2B 
b7b8c0d26d21a543af7bb05b66e4435cbb059043502f34bed27915eaf2684b324e9e9ca8407d666bf2258fb80e559e9b11e87ffea4067c9dc6a42737bc1345a4
 SHA512 
6c79b305676fc6f8088f5579352be1379e87cf88b4207be0c579e6ebc9661a76f8decc434ef9973e29ca363bb7a4caf980c41b1800fae7d55f47c0405dd48075

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.6.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.6.ebuild
new file mode 100644
index ..954affe6d4ed
--- /dev/null
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.16.6.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit vala xdg-utils
+
+DESCRIPTION="Panel 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+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="+dbusmenu introspection vala"
+REQUIRED_USE="vala? ( introspection )"
+
+RDEPEND="
+   >=dev-libs/glib-2.50
+   >=x11-libs/cairo-1
+   >=x11-libs/gtk+-3.22:3[introspection?]
+   x11-libs/libX11
+   x11-libs/libwnck:3
+   >=xfce-base/exo-0.11.2:=
+   >=xfce-base/garcon-0.5:=
+   >=xfce-base/libxfce4ui-4.15.8:=
+   >=xfce-base/libxfce4util-4.15.6:=[introspection?,vala?]
+   >=xfce-base/xfconf-4.13:=
+   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
+   introspection? ( dev-libs/gobject-introspection:= )
+"
+DEPEND="
+   ${RDEPEND}
+"
+BDEPEND="
+   vala? ( $(vala_depend) )
+   dev-lang/perl
+   dev-util/gdbus-codegen
+   dev-util/gtk-doc-am
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_configure() {
+   local myconf=(
+   $(use_enable introspection)
+   $(use_enable dbusmenu dbusmenu-gtk3)
+   $(use_enable vala)
+   )
+
+   use vala && vala_setup
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}



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

2023-01-10 Thread Michał Górny
commit: f895d0135b8459e8965ab3b907543cca36debb1e
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jan 10 20:35:38 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jan 10 20:37:53 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f895d013

xfce-base/xfce4-panel: Bump to 4.18.1

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

 xfce-base/xfce4-panel/Manifest  |  1 +
 xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild | 72 +
 2 files changed, 73 insertions(+)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index 19e6799bda79..217e8614a201 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,4 +1,5 @@
 DIST xfce4-panel-4.16.5.tar.bz2 1386556 BLAKE2B 
e0543e2c2259a03b09ddaef951434127a76f176626b5355497c1f27748c83857cb34ed1ddecf694c36e3422ca9e55fa4e7eae728b0b50e06feb40ca6e867ebdc
 SHA512 
d72220fa2812ae3b420350dab4c9d33e01d26d27ba33e4c16ad848ed1915c3c4aaf41fef24e2e7271e31171536148ad32b55aabc3e1facd4bf8a411990fd27bb
 DIST xfce4-panel-4.17.5.tar.bz2 1450044 BLAKE2B 
5ee351df3ff56d82cd85c9bd4af85dc1fd2f597f4669167421f0af18255bb175ecb80fcc9ddae884d2e32184bb608833e22fe126a59cc48a03e8856520a3672e
 SHA512 
149d41c190d2caf8e5f03ad8c2d53890b3529e21e31d34795673e4951c68ce6d96ca75a32d622ae211657f9ff1449cfffd5daa59cdc54bf4ff1b189f0cd7abfc
 DIST xfce4-panel-4.18.0.tar.bz2 1451719 BLAKE2B 
9a96c146b5d2764f3e5540979df7eecbe861c9527dfbb924643fc3335bf5f2648d760362024969b7d9d4005eec83805378d104bf5995e85afb9b2498946c47f0
 SHA512 
4269714fb4cd6fb915789f288a0464c7ceb8c0bca73040416f9f10b6c5ed936e0340b11da8bf7e662b5a1453764e360866abf0320a46e30d536603a329d9e727
+DIST xfce4-panel-4.18.1.tar.bz2 1446504 BLAKE2B 
b7b8c0d26d21a543af7bb05b66e4435cbb059043502f34bed27915eaf2684b324e9e9ca8407d666bf2258fb80e559e9b11e87ffea4067c9dc6a42737bc1345a4
 SHA512 
6c79b305676fc6f8088f5579352be1379e87cf88b4207be0c579e6ebc9661a76f8decc434ef9973e29ca363bb7a4caf980c41b1800fae7d55f47c0405dd48075
 DIST xfce4-panel-4.19.0.tar.bz2 1485117 BLAKE2B 
a70654a1d8633f04310a1a9fb8554254de2f272f6fbbfede3c709a9bdc9b7d6138d5ab26ea83ccc75c9152ee0fb9d2ce7e7b174ace6369eb7d60e14db0828cec
 SHA512 
a1c3c5f535581332c1b5e93bfecabae32cbe610d168f4452bed321466b73e4ca9ca09ca2e7c7f54cb82fe45a6102022bb30f77b57841a9bba03809b703bddf91

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild
new file mode 100644
index ..7d772282a7b2
--- /dev/null
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.1.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit vala xdg-utils
+
+DESCRIPTION="Panel for the Xfce desktop environment"
+HOMEPAGE="
+   https://docs.xfce.org/xfce/xfce4-panel/start
+   https://gitlab.xfce.org/xfce/xfce4-panel/
+"
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="+dbusmenu introspection vala"
+REQUIRED_USE="vala? ( introspection )"
+
+DEPEND="
+   >=dev-libs/glib-2.66.0
+   >=x11-libs/cairo-1.16.0
+   >=x11-libs/gtk+-3.24.0:3[introspection?]
+   x11-libs/libX11
+   x11-libs/libwnck:3
+   >=xfce-base/exo-0.11.2:=
+   >=xfce-base/garcon-4.17.0:=
+   >=xfce-base/libxfce4ui-4.17.1:=
+   >=xfce-base/libxfce4util-4.17.2:=[introspection?,vala?]
+   >=xfce-base/xfconf-4.13:=
+   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
+   introspection? ( >=dev-libs/gobject-introspection-1.66:= )
+"
+RDEPEND="
+   ${DEPEND}
+"
+BDEPEND="
+   vala? ( $(vala_depend) )
+   dev-lang/perl
+   dev-util/gdbus-codegen
+   dev-util/gtk-doc-am
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_configure() {
+   local myconf=(
+   $(use_enable introspection)
+   $(use_enable dbusmenu dbusmenu-gtk3)
+   $(use_enable vala)
+   )
+
+   use vala && vala_setup
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}



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

2023-01-10 Thread Michał Górny
commit: d780912a06e0a86daed1b2be3b0ece5b06d43fa3
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jan 10 20:25:33 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jan 10 20:28:00 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d780912a

xfce-base/xfce4-panel: Bump to 4.19.0

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

 xfce-base/xfce4-panel/Manifest  |  1 +
 xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild | 83 +
 2 files changed, 84 insertions(+)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index e27965b53466..19e6799bda79 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,3 +1,4 @@
 DIST xfce4-panel-4.16.5.tar.bz2 1386556 BLAKE2B 
e0543e2c2259a03b09ddaef951434127a76f176626b5355497c1f27748c83857cb34ed1ddecf694c36e3422ca9e55fa4e7eae728b0b50e06feb40ca6e867ebdc
 SHA512 
d72220fa2812ae3b420350dab4c9d33e01d26d27ba33e4c16ad848ed1915c3c4aaf41fef24e2e7271e31171536148ad32b55aabc3e1facd4bf8a411990fd27bb
 DIST xfce4-panel-4.17.5.tar.bz2 1450044 BLAKE2B 
5ee351df3ff56d82cd85c9bd4af85dc1fd2f597f4669167421f0af18255bb175ecb80fcc9ddae884d2e32184bb608833e22fe126a59cc48a03e8856520a3672e
 SHA512 
149d41c190d2caf8e5f03ad8c2d53890b3529e21e31d34795673e4951c68ce6d96ca75a32d622ae211657f9ff1449cfffd5daa59cdc54bf4ff1b189f0cd7abfc
 DIST xfce4-panel-4.18.0.tar.bz2 1451719 BLAKE2B 
9a96c146b5d2764f3e5540979df7eecbe861c9527dfbb924643fc3335bf5f2648d760362024969b7d9d4005eec83805378d104bf5995e85afb9b2498946c47f0
 SHA512 
4269714fb4cd6fb915789f288a0464c7ceb8c0bca73040416f9f10b6c5ed936e0340b11da8bf7e662b5a1453764e360866abf0320a46e30d536603a329d9e727
+DIST xfce4-panel-4.19.0.tar.bz2 1485117 BLAKE2B 
a70654a1d8633f04310a1a9fb8554254de2f272f6fbbfede3c709a9bdc9b7d6138d5ab26ea83ccc75c9152ee0fb9d2ce7e7b174ace6369eb7d60e14db0828cec
 SHA512 
a1c3c5f535581332c1b5e93bfecabae32cbe610d168f4452bed321466b73e4ca9ca09ca2e7c7f54cb82fe45a6102022bb30f77b57841a9bba03809b703bddf91

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild
new file mode 100644
index ..fff8efcd9fa6
--- /dev/null
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.19.0.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit vala xdg-utils
+
+DESCRIPTION="Panel for the Xfce desktop environment"
+HOMEPAGE="
+   https://docs.xfce.org/xfce/xfce4-panel/start
+   https://gitlab.xfce.org/xfce/xfce4-panel/
+"
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="X +dbusmenu introspection vala wayland"
+REQUIRED_USE="vala? ( introspection )"
+
+DEPEND="
+   >=dev-libs/glib-2.72.0
+   >=x11-libs/cairo-1.16.0
+   >=x11-libs/gtk+-3.24.0:3[X?,introspection?,wayland?]
+   >=xfce-base/exo-0.11.2:=
+   >=xfce-base/garcon-4.17.0:=
+   >=xfce-base/libxfce4ui-4.17.1:=
+   >=xfce-base/libxfce4util-4.17.2:=[introspection?,vala?]
+   >=xfce-base/libxfce4windowing-4.19.1:=
+   >=xfce-base/xfconf-4.13:=
+   X? (
+   x11-libs/libX11
+   x11-libs/libwnck:3
+   )
+   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
+   introspection? ( >=dev-libs/gobject-introspection-1.66:= )
+   wayland? (
+   >=dev-libs/wayland-1.15
+   >=gui-libs/gtk-layer-shell-0.7.0
+   )
+"
+RDEPEND="
+   ${DEPEND}
+"
+BDEPEND="
+   vala? ( $(vala_depend) )
+   dev-lang/perl
+   dev-util/gdbus-codegen
+   dev-util/gtk-doc-am
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_configure() {
+   local myconf=(
+   $(use_enable introspection)
+   $(use_enable dbusmenu dbusmenu-gtk3)
+   $(use_enable vala)
+   $(use_enable X gtk-x11)
+   $(use_enable X libwnck)
+   $(use_enable wayland wayland-client)
+   $(use_enable wayland gtk-layer-shell)
+   )
+
+   use vala && vala_setup
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}



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

2022-12-15 Thread Michał Górny
commit: 169559f892f46973a47b2038e4a3d5e32e20b22e
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Dec 15 14:38:02 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Dec 15 15:03:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=169559f8

xfce-base/xfce4-panel: Remove old

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

 xfce-base/xfce4-panel/Manifest  |  2 -
 xfce-base/xfce4-panel/xfce4-panel-4.17.3.ebuild | 69 
 xfce-base/xfce4-panel/xfce4-panel-4.17.4.ebuild | 72 -
 3 files changed, 143 deletions(-)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index b01c6818e9f4..99da506bf7f7 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,4 +1,2 @@
 DIST xfce4-panel-4.16.5.tar.bz2 1386556 BLAKE2B 
e0543e2c2259a03b09ddaef951434127a76f176626b5355497c1f27748c83857cb34ed1ddecf694c36e3422ca9e55fa4e7eae728b0b50e06feb40ca6e867ebdc
 SHA512 
d72220fa2812ae3b420350dab4c9d33e01d26d27ba33e4c16ad848ed1915c3c4aaf41fef24e2e7271e31171536148ad32b55aabc3e1facd4bf8a411990fd27bb
-DIST xfce4-panel-4.17.3.tar.bz2 1428565 BLAKE2B 
a5a1f44eecd53f3ad5419dfe33aa444318d4808e14b68dcc9c986efc75eb7e9e9da613855ca3b1ec6bd02676ad0707b607911c8fccde5f9b843b8e3c8d991601
 SHA512 
43b9f258fa0938007e4583130b7498ae01b44ab6631f453cef05f7c2970d71e9adb34cd13ce35eb095d6b3fc5097c604c07881a1e78a9173ec6e6733cfd58cbd
-DIST xfce4-panel-4.17.4.tar.bz2 1447523 BLAKE2B 
8619bb258b1909ca0eedad828e8e76305cc03e5cacdbe20d7a53e06c228b710659ea1de4c03b69edb37da7d1ecee49a781e2b24a53918775d0ceb0a92156ac2a
 SHA512 
4e506349093a62496a5d4e812ba41e8da5cc75c7aad319f63f077df4e0e11a2e6cce8a110dab51cbf75f73438ac700fab17e7037244097143476c8fcd0053af6
 DIST xfce4-panel-4.17.5.tar.bz2 1450044 BLAKE2B 
5ee351df3ff56d82cd85c9bd4af85dc1fd2f597f4669167421f0af18255bb175ecb80fcc9ddae884d2e32184bb608833e22fe126a59cc48a03e8856520a3672e
 SHA512 
149d41c190d2caf8e5f03ad8c2d53890b3529e21e31d34795673e4951c68ce6d96ca75a32d622ae211657f9ff1449cfffd5daa59cdc54bf4ff1b189f0cd7abfc

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.17.3.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.17.3.ebuild
deleted file mode 100644
index 2f04f70a1120..
--- a/xfce-base/xfce4-panel/xfce4-panel-4.17.3.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit vala xdg-utils
-
-DESCRIPTION="Panel 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+ LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="+dbusmenu introspection vala"
-REQUIRED_USE="vala? ( introspection )"
-
-RDEPEND="
-   >=dev-libs/glib-2.66
-   >=x11-libs/cairo-1
-   >=x11-libs/gtk+-3.22:3[introspection?]
-   x11-libs/libX11
-   x11-libs/libwnck:3
-   >=xfce-base/exo-0.11.2:=
-   >=xfce-base/garcon-4.17.0:=
-   >=xfce-base/libxfce4ui-4.17.1:=
-   >=xfce-base/libxfce4util-4.17.2:=[introspection?,vala?]
-   >=xfce-base/xfconf-4.13:=
-   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
-   introspection? ( dev-libs/gobject-introspection:= )
-"
-DEPEND="
-   ${RDEPEND}
-"
-BDEPEND="
-   vala? ( $(vala_depend) )
-   dev-lang/perl
-   dev-util/gdbus-codegen
-   dev-util/gtk-doc-am
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-src_configure() {
-   local myconf=(
-   $(use_enable introspection)
-   $(use_enable dbusmenu dbusmenu-gtk3)
-   $(use_enable vala)
-   )
-
-   use vala && vala_setup
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-}

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.17.4.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.17.4.ebuild
deleted file mode 100644
index b9c27f5159e3..
--- a/xfce-base/xfce4-panel/xfce4-panel-4.17.4.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit vala xdg-utils
-
-DESCRIPTION="Panel for the Xfce desktop environment"
-HOMEPAGE="
-   https://docs.xfce.org/xfce/xfce4-panel/start
-   https://gitlab.xfce.org/xfce/xfce4-panel/
-"
-SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
-
-LICENSE="GPL-2+ LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="+dbusmenu 

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

2022-12-15 Thread Michał Górny
commit: 6b2305032165979cd62dacda71239001a7555e79
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Dec 15 14:38:45 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Dec 15 15:03:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b230503

xfce-base/xfce4-panel: Bump to 4.18.0

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

 xfce-base/xfce4-panel/Manifest  |  1 +
 xfce-base/xfce4-panel/xfce4-panel-4.18.0.ebuild | 72 +
 2 files changed, 73 insertions(+)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index 99da506bf7f7..e27965b53466 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,2 +1,3 @@
 DIST xfce4-panel-4.16.5.tar.bz2 1386556 BLAKE2B 
e0543e2c2259a03b09ddaef951434127a76f176626b5355497c1f27748c83857cb34ed1ddecf694c36e3422ca9e55fa4e7eae728b0b50e06feb40ca6e867ebdc
 SHA512 
d72220fa2812ae3b420350dab4c9d33e01d26d27ba33e4c16ad848ed1915c3c4aaf41fef24e2e7271e31171536148ad32b55aabc3e1facd4bf8a411990fd27bb
 DIST xfce4-panel-4.17.5.tar.bz2 1450044 BLAKE2B 
5ee351df3ff56d82cd85c9bd4af85dc1fd2f597f4669167421f0af18255bb175ecb80fcc9ddae884d2e32184bb608833e22fe126a59cc48a03e8856520a3672e
 SHA512 
149d41c190d2caf8e5f03ad8c2d53890b3529e21e31d34795673e4951c68ce6d96ca75a32d622ae211657f9ff1449cfffd5daa59cdc54bf4ff1b189f0cd7abfc
+DIST xfce4-panel-4.18.0.tar.bz2 1451719 BLAKE2B 
9a96c146b5d2764f3e5540979df7eecbe861c9527dfbb924643fc3335bf5f2648d760362024969b7d9d4005eec83805378d104bf5995e85afb9b2498946c47f0
 SHA512 
4269714fb4cd6fb915789f288a0464c7ceb8c0bca73040416f9f10b6c5ed936e0340b11da8bf7e662b5a1453764e360866abf0320a46e30d536603a329d9e727

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.18.0.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.18.0.ebuild
new file mode 100644
index ..1d3a0dd766e6
--- /dev/null
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.18.0.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit vala xdg-utils
+
+DESCRIPTION="Panel for the Xfce desktop environment"
+HOMEPAGE="
+   https://docs.xfce.org/xfce/xfce4-panel/start
+   https://gitlab.xfce.org/xfce/xfce4-panel/
+"
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="+dbusmenu introspection vala"
+REQUIRED_USE="vala? ( introspection )"
+
+DEPEND="
+   >=dev-libs/glib-2.66.0
+   >=x11-libs/cairo-1.16.0
+   >=x11-libs/gtk+-3.24.0:3[introspection?]
+   x11-libs/libX11
+   x11-libs/libwnck:3
+   >=xfce-base/exo-0.11.2:=
+   >=xfce-base/garcon-4.17.0:=
+   >=xfce-base/libxfce4ui-4.17.1:=
+   >=xfce-base/libxfce4util-4.17.2:=[introspection?,vala?]
+   >=xfce-base/xfconf-4.13:=
+   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
+   introspection? ( >=dev-libs/gobject-introspection-1.66:= )
+"
+RDEPEND="
+   ${DEPEND}
+"
+BDEPEND="
+   vala? ( $(vala_depend) )
+   dev-lang/perl
+   dev-util/gdbus-codegen
+   dev-util/gtk-doc-am
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_configure() {
+   local myconf=(
+   $(use_enable introspection)
+   $(use_enable dbusmenu dbusmenu-gtk3)
+   $(use_enable vala)
+   )
+
+   use vala && vala_setup
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}



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

2022-11-30 Thread Michał Górny
commit: 3a70b5fd8724598c48906b962029a8f037a31494
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Nov 30 17:20:47 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Nov 30 17:20:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a70b5fd

xfce-base/xfce4-panel: Bump to 4.17.5

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

 xfce-base/xfce4-panel/Manifest  |  1 +
 xfce-base/xfce4-panel/xfce4-panel-4.17.5.ebuild | 72 +
 2 files changed, 73 insertions(+)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index 813d65d83107..b01c6818e9f4 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,3 +1,4 @@
 DIST xfce4-panel-4.16.5.tar.bz2 1386556 BLAKE2B 
e0543e2c2259a03b09ddaef951434127a76f176626b5355497c1f27748c83857cb34ed1ddecf694c36e3422ca9e55fa4e7eae728b0b50e06feb40ca6e867ebdc
 SHA512 
d72220fa2812ae3b420350dab4c9d33e01d26d27ba33e4c16ad848ed1915c3c4aaf41fef24e2e7271e31171536148ad32b55aabc3e1facd4bf8a411990fd27bb
 DIST xfce4-panel-4.17.3.tar.bz2 1428565 BLAKE2B 
a5a1f44eecd53f3ad5419dfe33aa444318d4808e14b68dcc9c986efc75eb7e9e9da613855ca3b1ec6bd02676ad0707b607911c8fccde5f9b843b8e3c8d991601
 SHA512 
43b9f258fa0938007e4583130b7498ae01b44ab6631f453cef05f7c2970d71e9adb34cd13ce35eb095d6b3fc5097c604c07881a1e78a9173ec6e6733cfd58cbd
 DIST xfce4-panel-4.17.4.tar.bz2 1447523 BLAKE2B 
8619bb258b1909ca0eedad828e8e76305cc03e5cacdbe20d7a53e06c228b710659ea1de4c03b69edb37da7d1ecee49a781e2b24a53918775d0ceb0a92156ac2a
 SHA512 
4e506349093a62496a5d4e812ba41e8da5cc75c7aad319f63f077df4e0e11a2e6cce8a110dab51cbf75f73438ac700fab17e7037244097143476c8fcd0053af6
+DIST xfce4-panel-4.17.5.tar.bz2 1450044 BLAKE2B 
5ee351df3ff56d82cd85c9bd4af85dc1fd2f597f4669167421f0af18255bb175ecb80fcc9ddae884d2e32184bb608833e22fe126a59cc48a03e8856520a3672e
 SHA512 
149d41c190d2caf8e5f03ad8c2d53890b3529e21e31d34795673e4951c68ce6d96ca75a32d622ae211657f9ff1449cfffd5daa59cdc54bf4ff1b189f0cd7abfc

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.17.5.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.17.5.ebuild
new file mode 100644
index ..b9c27f5159e3
--- /dev/null
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.17.5.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit vala xdg-utils
+
+DESCRIPTION="Panel for the Xfce desktop environment"
+HOMEPAGE="
+   https://docs.xfce.org/xfce/xfce4-panel/start
+   https://gitlab.xfce.org/xfce/xfce4-panel/
+"
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="+dbusmenu introspection vala"
+REQUIRED_USE="vala? ( introspection )"
+
+RDEPEND="
+   >=dev-libs/glib-2.66
+   >=x11-libs/cairo-1
+   >=x11-libs/gtk+-3.22:3[introspection?]
+   x11-libs/libX11
+   x11-libs/libwnck:3
+   >=xfce-base/exo-0.11.2:=
+   >=xfce-base/garcon-4.17.0:=
+   >=xfce-base/libxfce4ui-4.17.1:=
+   >=xfce-base/libxfce4util-4.17.2:=[introspection?,vala?]
+   >=xfce-base/xfconf-4.13:=
+   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
+   introspection? ( >=dev-libs/gobject-introspection-1.66:= )
+"
+DEPEND="
+   ${RDEPEND}
+"
+BDEPEND="
+   vala? ( $(vala_depend) )
+   dev-lang/perl
+   dev-util/gdbus-codegen
+   dev-util/gtk-doc-am
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_configure() {
+   local myconf=(
+   $(use_enable introspection)
+   $(use_enable dbusmenu dbusmenu-gtk3)
+   $(use_enable vala)
+   )
+
+   use vala && vala_setup
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}



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

2022-10-31 Thread Michał Górny
commit: 5bf73f358f5a9b64ccfd489bb5807ce5f3022d17
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Oct 31 16:13:17 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Oct 31 16:13:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bf73f35

xfce-base/xfce4-panel: Bump to 4.17.4

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

 xfce-base/xfce4-panel/Manifest  |  1 +
 xfce-base/xfce4-panel/xfce4-panel-4.17.4.ebuild | 72 +
 2 files changed, 73 insertions(+)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index 55b218da5770..813d65d83107 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,2 +1,3 @@
 DIST xfce4-panel-4.16.5.tar.bz2 1386556 BLAKE2B 
e0543e2c2259a03b09ddaef951434127a76f176626b5355497c1f27748c83857cb34ed1ddecf694c36e3422ca9e55fa4e7eae728b0b50e06feb40ca6e867ebdc
 SHA512 
d72220fa2812ae3b420350dab4c9d33e01d26d27ba33e4c16ad848ed1915c3c4aaf41fef24e2e7271e31171536148ad32b55aabc3e1facd4bf8a411990fd27bb
 DIST xfce4-panel-4.17.3.tar.bz2 1428565 BLAKE2B 
a5a1f44eecd53f3ad5419dfe33aa444318d4808e14b68dcc9c986efc75eb7e9e9da613855ca3b1ec6bd02676ad0707b607911c8fccde5f9b843b8e3c8d991601
 SHA512 
43b9f258fa0938007e4583130b7498ae01b44ab6631f453cef05f7c2970d71e9adb34cd13ce35eb095d6b3fc5097c604c07881a1e78a9173ec6e6733cfd58cbd
+DIST xfce4-panel-4.17.4.tar.bz2 1447523 BLAKE2B 
8619bb258b1909ca0eedad828e8e76305cc03e5cacdbe20d7a53e06c228b710659ea1de4c03b69edb37da7d1ecee49a781e2b24a53918775d0ceb0a92156ac2a
 SHA512 
4e506349093a62496a5d4e812ba41e8da5cc75c7aad319f63f077df4e0e11a2e6cce8a110dab51cbf75f73438ac700fab17e7037244097143476c8fcd0053af6

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.17.4.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.17.4.ebuild
new file mode 100644
index ..b9c27f5159e3
--- /dev/null
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.17.4.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit vala xdg-utils
+
+DESCRIPTION="Panel for the Xfce desktop environment"
+HOMEPAGE="
+   https://docs.xfce.org/xfce/xfce4-panel/start
+   https://gitlab.xfce.org/xfce/xfce4-panel/
+"
+SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
+
+LICENSE="GPL-2+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="+dbusmenu introspection vala"
+REQUIRED_USE="vala? ( introspection )"
+
+RDEPEND="
+   >=dev-libs/glib-2.66
+   >=x11-libs/cairo-1
+   >=x11-libs/gtk+-3.22:3[introspection?]
+   x11-libs/libX11
+   x11-libs/libwnck:3
+   >=xfce-base/exo-0.11.2:=
+   >=xfce-base/garcon-4.17.0:=
+   >=xfce-base/libxfce4ui-4.17.1:=
+   >=xfce-base/libxfce4util-4.17.2:=[introspection?,vala?]
+   >=xfce-base/xfconf-4.13:=
+   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
+   introspection? ( >=dev-libs/gobject-introspection-1.66:= )
+"
+DEPEND="
+   ${RDEPEND}
+"
+BDEPEND="
+   vala? ( $(vala_depend) )
+   dev-lang/perl
+   dev-util/gdbus-codegen
+   dev-util/gtk-doc-am
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_configure() {
+   local myconf=(
+   $(use_enable introspection)
+   $(use_enable dbusmenu dbusmenu-gtk3)
+   $(use_enable vala)
+   )
+
+   use vala && vala_setup
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}



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

2022-09-04 Thread Michał Górny
commit: 6c3c877ac37db6d6343256c2f489e1916094949a
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Sep  5 05:33:30 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Sep  5 05:33:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c3c877a

xfce-base/xfce4-panel: Remove old

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

 xfce-base/xfce4-panel/Manifest  |  2 -
 xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild | 69 -
 xfce-base/xfce4-panel/xfce4-panel-4.17.2.ebuild | 69 -
 3 files changed, 140 deletions(-)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index 853c00e0ad14..55b218da5770 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,4 +1,2 @@
-DIST xfce4-panel-4.16.4.tar.bz2 1383630 BLAKE2B 
e370fc286f5b035671e059e81a5c890842949c60a8aa1ae4cb06ded7f1e538d90bf633efd7e3e2b7642eb1b490a48eda3cabd1a967930cb63cd423fb5b807e22
 SHA512 
a1ad5a528968c4b1a5d2fb1537f7774aeeb525d7cb2f77e261b187b94e9de22f018bbd47d462ce4ad09b360126548d5848e46643df40549f9f8a3c44a4a14564
 DIST xfce4-panel-4.16.5.tar.bz2 1386556 BLAKE2B 
e0543e2c2259a03b09ddaef951434127a76f176626b5355497c1f27748c83857cb34ed1ddecf694c36e3422ca9e55fa4e7eae728b0b50e06feb40ca6e867ebdc
 SHA512 
d72220fa2812ae3b420350dab4c9d33e01d26d27ba33e4c16ad848ed1915c3c4aaf41fef24e2e7271e31171536148ad32b55aabc3e1facd4bf8a411990fd27bb
-DIST xfce4-panel-4.17.2.tar.bz2 1408821 BLAKE2B 
db607dc1d35e746608ffe1484f2484589ae81d5d58387c8ae8c9fde9d9fdf0747f6746838290dcf1f6c9f6d1bb3efc130ec14445e6d48ac014bc114afe001f71
 SHA512 
a1d34d7ecdb196ba7095e613010e576daa809f0a94d48546a27731dc617a26318e7cc72204a26d9f788e744498ba58bc0f2f374260aca9bd2ad697ceddf36bbd
 DIST xfce4-panel-4.17.3.tar.bz2 1428565 BLAKE2B 
a5a1f44eecd53f3ad5419dfe33aa444318d4808e14b68dcc9c986efc75eb7e9e9da613855ca3b1ec6bd02676ad0707b607911c8fccde5f9b843b8e3c8d991601
 SHA512 
43b9f258fa0938007e4583130b7498ae01b44ab6631f453cef05f7c2970d71e9adb34cd13ce35eb095d6b3fc5097c604c07881a1e78a9173ec6e6733cfd58cbd

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild
deleted file mode 100644
index b73513d14978..
--- a/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit vala xdg-utils
-
-DESCRIPTION="Panel 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+ LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="+dbusmenu introspection vala"
-REQUIRED_USE="vala? ( introspection )"
-
-RDEPEND="
-   >=dev-libs/glib-2.50
-   >=x11-libs/cairo-1
-   >=x11-libs/gtk+-3.22:3[introspection?]
-   x11-libs/libX11
-   x11-libs/libwnck:3
-   >=xfce-base/exo-0.11.2:=
-   >=xfce-base/garcon-0.5:=
-   >=xfce-base/libxfce4ui-4.15.8:=
-   >=xfce-base/libxfce4util-4.15.6:=[introspection?,vala?]
-   >=xfce-base/xfconf-4.13:=
-   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
-   introspection? ( dev-libs/gobject-introspection:= )
-"
-DEPEND="
-   ${RDEPEND}
-"
-BDEPEND="
-   vala? ( $(vala_depend) )
-   dev-lang/perl
-   dev-util/gdbus-codegen
-   dev-util/gtk-doc-am
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-src_configure() {
-   local myconf=(
-   $(use_enable introspection)
-   $(use_enable dbusmenu dbusmenu-gtk3)
-   $(use_enable vala)
-   )
-
-   use vala && vala_setup
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-}

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.17.2.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.17.2.ebuild
deleted file mode 100644
index 1779f20fe84f..
--- a/xfce-base/xfce4-panel/xfce4-panel-4.17.2.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit vala xdg-utils
-
-DESCRIPTION="Panel 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+ LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="+dbusmenu introspection vala"
-REQUIRED_USE="vala? ( introspection )"
-
-RDEPEND="
-   

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

2022-09-04 Thread Sam James
commit: 411548d787143b7fe86d04fbeed0f8c38f04e1c8
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep  5 03:36:59 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep  5 03:36:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=411548d7

xfce-base/xfce4-panel: Stabilize 4.16.5 arm64, #868426

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

 xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild
index f3f98e47de5a..b73513d14978 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2022-09-04 Thread Jakov Smolić
commit: 4941caeaf008e697e212dfb75b7134bd5faa17db
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Sep  4 21:49:11 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Sun Sep  4 21:49:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4941caea

xfce-base/xfce4-panel: Stabilize 4.16.5 amd64, #868426

Signed-off-by: Jakov Smolić  gentoo.org>

 xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild
index d0b6b49e7687..f3f98e47de5a 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2022-09-04 Thread Arthur Zamarin
commit: 71c6eb1187effc8fa3ceb3165accaff3ee7acd8c
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Sep  4 18:52:46 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Sep  4 18:52:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71c6eb11

xfce-base/xfce4-panel: Stabilize 4.16.5 arm, #868426

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

 xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild
index d680625588ea..d0b6b49e7687 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2022-09-04 Thread Arthur Zamarin
commit: 2cd0d40f55a034e3dde1f312c860aae2c4512dde
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Sep  4 18:33:30 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Sep  4 18:33:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cd0d40f

xfce-base/xfce4-panel: Stabilize 4.16.5 ppc64, #868426

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

 xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild
index a7449b65fce1..d680625588ea 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2022-09-04 Thread Arthur Zamarin
commit: 7ce2497372a1069333038ce248630254d011a28d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Sep  4 18:19:00 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Sep  4 18:21:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ce24973

xfce-base/xfce4-panel: Stabilize 4.16.5 ppc, #868426

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

 xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild
index c8f7a4539420..a7449b65fce1 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2022-09-04 Thread Sam James
commit: 99a67e878dbbe2636dc0477d8473c9b7b62b1939
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep  4 17:44:51 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep  4 17:44:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99a67e87

xfce-base/xfce4-panel: Stabilize 4.16.5 x86, #868426

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

 xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild
index 6d625ccdbfcb..c8f7a4539420 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

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

xfce-base/xfce4-panel: keyword 4.17.3 for ~loong

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

 xfce-base/xfce4-panel/xfce4-panel-4.17.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.17.3.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.17.3.ebuild
index 1779f20fe84f..2f04f70a1120 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.17.3.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.17.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2022-08-20 Thread Michał Górny
commit: b42807e75b84a3a373cd49f5f75f42bcfde7a7f4
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Aug 20 17:54:41 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Aug 20 17:54:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b42807e7

xfce-base/xfce4-panel: Bump to 4.17.3

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

 xfce-base/xfce4-panel/Manifest  |  1 +
 xfce-base/xfce4-panel/xfce4-panel-4.17.3.ebuild | 69 +
 2 files changed, 70 insertions(+)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index 48ddf770c5ce..693756cea677 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,2 +1,3 @@
 DIST xfce4-panel-4.16.4.tar.bz2 1383630 BLAKE2B 
e370fc286f5b035671e059e81a5c890842949c60a8aa1ae4cb06ded7f1e538d90bf633efd7e3e2b7642eb1b490a48eda3cabd1a967930cb63cd423fb5b807e22
 SHA512 
a1ad5a528968c4b1a5d2fb1537f7774aeeb525d7cb2f77e261b187b94e9de22f018bbd47d462ce4ad09b360126548d5848e46643df40549f9f8a3c44a4a14564
 DIST xfce4-panel-4.17.2.tar.bz2 1408821 BLAKE2B 
db607dc1d35e746608ffe1484f2484589ae81d5d58387c8ae8c9fde9d9fdf0747f6746838290dcf1f6c9f6d1bb3efc130ec14445e6d48ac014bc114afe001f71
 SHA512 
a1d34d7ecdb196ba7095e613010e576daa809f0a94d48546a27731dc617a26318e7cc72204a26d9f788e744498ba58bc0f2f374260aca9bd2ad697ceddf36bbd
+DIST xfce4-panel-4.17.3.tar.bz2 1428565 BLAKE2B 
a5a1f44eecd53f3ad5419dfe33aa444318d4808e14b68dcc9c986efc75eb7e9e9da613855ca3b1ec6bd02676ad0707b607911c8fccde5f9b843b8e3c8d991601
 SHA512 
43b9f258fa0938007e4583130b7498ae01b44ab6631f453cef05f7c2970d71e9adb34cd13ce35eb095d6b3fc5097c604c07881a1e78a9173ec6e6733cfd58cbd

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.17.3.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.17.3.ebuild
new file mode 100644
index ..1779f20fe84f
--- /dev/null
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.17.3.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit vala xdg-utils
+
+DESCRIPTION="Panel 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+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="+dbusmenu introspection vala"
+REQUIRED_USE="vala? ( introspection )"
+
+RDEPEND="
+   >=dev-libs/glib-2.66
+   >=x11-libs/cairo-1
+   >=x11-libs/gtk+-3.22:3[introspection?]
+   x11-libs/libX11
+   x11-libs/libwnck:3
+   >=xfce-base/exo-0.11.2:=
+   >=xfce-base/garcon-4.17.0:=
+   >=xfce-base/libxfce4ui-4.17.1:=
+   >=xfce-base/libxfce4util-4.17.2:=[introspection?,vala?]
+   >=xfce-base/xfconf-4.13:=
+   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
+   introspection? ( dev-libs/gobject-introspection:= )
+"
+DEPEND="
+   ${RDEPEND}
+"
+BDEPEND="
+   vala? ( $(vala_depend) )
+   dev-lang/perl
+   dev-util/gdbus-codegen
+   dev-util/gtk-doc-am
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_configure() {
+   local myconf=(
+   $(use_enable introspection)
+   $(use_enable dbusmenu dbusmenu-gtk3)
+   $(use_enable vala)
+   )
+
+   use vala && vala_setup
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}



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

2022-08-20 Thread Michał Górny
commit: eb107247b5675de265973184b9a81edb9abfe7e6
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Aug 20 17:55:34 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Aug 20 17:55:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb107247

xfce-base/xfce4-panel: Bump to 4.16.5

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

 xfce-base/xfce4-panel/Manifest  |  1 +
 xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild | 69 +
 2 files changed, 70 insertions(+)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index 693756cea677..853c00e0ad14 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,3 +1,4 @@
 DIST xfce4-panel-4.16.4.tar.bz2 1383630 BLAKE2B 
e370fc286f5b035671e059e81a5c890842949c60a8aa1ae4cb06ded7f1e538d90bf633efd7e3e2b7642eb1b490a48eda3cabd1a967930cb63cd423fb5b807e22
 SHA512 
a1ad5a528968c4b1a5d2fb1537f7774aeeb525d7cb2f77e261b187b94e9de22f018bbd47d462ce4ad09b360126548d5848e46643df40549f9f8a3c44a4a14564
+DIST xfce4-panel-4.16.5.tar.bz2 1386556 BLAKE2B 
e0543e2c2259a03b09ddaef951434127a76f176626b5355497c1f27748c83857cb34ed1ddecf694c36e3422ca9e55fa4e7eae728b0b50e06feb40ca6e867ebdc
 SHA512 
d72220fa2812ae3b420350dab4c9d33e01d26d27ba33e4c16ad848ed1915c3c4aaf41fef24e2e7271e31171536148ad32b55aabc3e1facd4bf8a411990fd27bb
 DIST xfce4-panel-4.17.2.tar.bz2 1408821 BLAKE2B 
db607dc1d35e746608ffe1484f2484589ae81d5d58387c8ae8c9fde9d9fdf0747f6746838290dcf1f6c9f6d1bb3efc130ec14445e6d48ac014bc114afe001f71
 SHA512 
a1d34d7ecdb196ba7095e613010e576daa809f0a94d48546a27731dc617a26318e7cc72204a26d9f788e744498ba58bc0f2f374260aca9bd2ad697ceddf36bbd
 DIST xfce4-panel-4.17.3.tar.bz2 1428565 BLAKE2B 
a5a1f44eecd53f3ad5419dfe33aa444318d4808e14b68dcc9c986efc75eb7e9e9da613855ca3b1ec6bd02676ad0707b607911c8fccde5f9b843b8e3c8d991601
 SHA512 
43b9f258fa0938007e4583130b7498ae01b44ab6631f453cef05f7c2970d71e9adb34cd13ce35eb095d6b3fc5097c604c07881a1e78a9173ec6e6733cfd58cbd

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild
new file mode 100644
index ..6d625ccdbfcb
--- /dev/null
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.16.5.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit vala xdg-utils
+
+DESCRIPTION="Panel 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+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="+dbusmenu introspection vala"
+REQUIRED_USE="vala? ( introspection )"
+
+RDEPEND="
+   >=dev-libs/glib-2.50
+   >=x11-libs/cairo-1
+   >=x11-libs/gtk+-3.22:3[introspection?]
+   x11-libs/libX11
+   x11-libs/libwnck:3
+   >=xfce-base/exo-0.11.2:=
+   >=xfce-base/garcon-0.5:=
+   >=xfce-base/libxfce4ui-4.15.8:=
+   >=xfce-base/libxfce4util-4.15.6:=[introspection?,vala?]
+   >=xfce-base/xfconf-4.13:=
+   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
+   introspection? ( dev-libs/gobject-introspection:= )
+"
+DEPEND="
+   ${RDEPEND}
+"
+BDEPEND="
+   vala? ( $(vala_depend) )
+   dev-lang/perl
+   dev-util/gdbus-codegen
+   dev-util/gtk-doc-am
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_configure() {
+   local myconf=(
+   $(use_enable introspection)
+   $(use_enable dbusmenu dbusmenu-gtk3)
+   $(use_enable vala)
+   )
+
+   use vala && vala_setup
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}



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

2022-07-25 Thread Michał Górny
commit: 28e5beb58c9f86b9111ed36cdddf124390d05691
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jul 25 10:44:38 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jul 25 10:45:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28e5beb5

xfce-base/xfce4-panel: Remove old

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

 xfce-base/xfce4-panel/Manifest  |  1 -
 xfce-base/xfce4-panel/xfce4-panel-4.17.1.ebuild | 69 -
 2 files changed, 70 deletions(-)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index 27921ea54746..48ddf770c5ce 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,3 +1,2 @@
 DIST xfce4-panel-4.16.4.tar.bz2 1383630 BLAKE2B 
e370fc286f5b035671e059e81a5c890842949c60a8aa1ae4cb06ded7f1e538d90bf633efd7e3e2b7642eb1b490a48eda3cabd1a967930cb63cd423fb5b807e22
 SHA512 
a1ad5a528968c4b1a5d2fb1537f7774aeeb525d7cb2f77e261b187b94e9de22f018bbd47d462ce4ad09b360126548d5848e46643df40549f9f8a3c44a4a14564
-DIST xfce4-panel-4.17.1.tar.bz2 1400182 BLAKE2B 
02dc05aa6abf7a294c90aae2bfc9cd65a2ecadc78d99e7d530a96941a671b789d21b68295c34b8395e8215bacc209a3b262b7db1d44d30a1006033c73747d3bb
 SHA512 
0070c5af1cc708ce808edc7a77171254cbf38d2e6d518d62a3eaa28223793a32bb9ad1b098a6a9c6f6f42c321ec007eac6ffd247ec0ca51a5045bf819e1471cc
 DIST xfce4-panel-4.17.2.tar.bz2 1408821 BLAKE2B 
db607dc1d35e746608ffe1484f2484589ae81d5d58387c8ae8c9fde9d9fdf0747f6746838290dcf1f6c9f6d1bb3efc130ec14445e6d48ac014bc114afe001f71
 SHA512 
a1d34d7ecdb196ba7095e613010e576daa809f0a94d48546a27731dc617a26318e7cc72204a26d9f788e744498ba58bc0f2f374260aca9bd2ad697ceddf36bbd

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.17.1.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.17.1.ebuild
deleted file mode 100644
index 35d592e46782..
--- a/xfce-base/xfce4-panel/xfce4-panel-4.17.1.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit vala xdg-utils
-
-DESCRIPTION="Panel 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+ LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="+dbusmenu introspection vala"
-REQUIRED_USE="vala? ( introspection )"
-
-RDEPEND="
-   >=dev-libs/glib-2.56
-   >=x11-libs/cairo-1
-   >=x11-libs/gtk+-3.22:3[introspection?]
-   x11-libs/libX11
-   x11-libs/libwnck:3
-   >=xfce-base/exo-0.11.2:=
-   >=xfce-base/garcon-4.17.0:=
-   >=xfce-base/libxfce4ui-4.17.1:=
-   >=xfce-base/libxfce4util-4.15.6:=[introspection?,vala?]
-   >=xfce-base/xfconf-4.13:=
-   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
-   introspection? ( dev-libs/gobject-introspection:= )
-"
-DEPEND="
-   ${RDEPEND}
-"
-BDEPEND="
-   vala? ( $(vala_depend) )
-   dev-lang/perl
-   dev-util/gdbus-codegen
-   dev-util/gtk-doc-am
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-src_configure() {
-   local myconf=(
-   $(use_enable introspection)
-   $(use_enable dbusmenu dbusmenu-gtk3)
-   $(use_enable vala)
-   )
-
-   use vala && vala_setup
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-   find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-}



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

2022-07-10 Thread Michał Górny
commit: c8b2d00635f26ffa30606e4c1950fb894023d2a2
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jul 10 10:48:59 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jul 10 11:25:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8b2d006

xfce-base/xfce4-panel: Bump to 4.17.2

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

 xfce-base/xfce4-panel/Manifest  |  1 +
 xfce-base/xfce4-panel/xfce4-panel-4.17.2.ebuild | 69 +
 2 files changed, 70 insertions(+)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index 2cf772f60dee..27921ea54746 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,2 +1,3 @@
 DIST xfce4-panel-4.16.4.tar.bz2 1383630 BLAKE2B 
e370fc286f5b035671e059e81a5c890842949c60a8aa1ae4cb06ded7f1e538d90bf633efd7e3e2b7642eb1b490a48eda3cabd1a967930cb63cd423fb5b807e22
 SHA512 
a1ad5a528968c4b1a5d2fb1537f7774aeeb525d7cb2f77e261b187b94e9de22f018bbd47d462ce4ad09b360126548d5848e46643df40549f9f8a3c44a4a14564
 DIST xfce4-panel-4.17.1.tar.bz2 1400182 BLAKE2B 
02dc05aa6abf7a294c90aae2bfc9cd65a2ecadc78d99e7d530a96941a671b789d21b68295c34b8395e8215bacc209a3b262b7db1d44d30a1006033c73747d3bb
 SHA512 
0070c5af1cc708ce808edc7a77171254cbf38d2e6d518d62a3eaa28223793a32bb9ad1b098a6a9c6f6f42c321ec007eac6ffd247ec0ca51a5045bf819e1471cc
+DIST xfce4-panel-4.17.2.tar.bz2 1408821 BLAKE2B 
db607dc1d35e746608ffe1484f2484589ae81d5d58387c8ae8c9fde9d9fdf0747f6746838290dcf1f6c9f6d1bb3efc130ec14445e6d48ac014bc114afe001f71
 SHA512 
a1d34d7ecdb196ba7095e613010e576daa809f0a94d48546a27731dc617a26318e7cc72204a26d9f788e744498ba58bc0f2f374260aca9bd2ad697ceddf36bbd

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.17.2.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.17.2.ebuild
new file mode 100644
index ..1779f20fe84f
--- /dev/null
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.17.2.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit vala xdg-utils
+
+DESCRIPTION="Panel 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+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="+dbusmenu introspection vala"
+REQUIRED_USE="vala? ( introspection )"
+
+RDEPEND="
+   >=dev-libs/glib-2.66
+   >=x11-libs/cairo-1
+   >=x11-libs/gtk+-3.22:3[introspection?]
+   x11-libs/libX11
+   x11-libs/libwnck:3
+   >=xfce-base/exo-0.11.2:=
+   >=xfce-base/garcon-4.17.0:=
+   >=xfce-base/libxfce4ui-4.17.1:=
+   >=xfce-base/libxfce4util-4.17.2:=[introspection?,vala?]
+   >=xfce-base/xfconf-4.13:=
+   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
+   introspection? ( dev-libs/gobject-introspection:= )
+"
+DEPEND="
+   ${RDEPEND}
+"
+BDEPEND="
+   vala? ( $(vala_depend) )
+   dev-lang/perl
+   dev-util/gdbus-codegen
+   dev-util/gtk-doc-am
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_configure() {
+   local myconf=(
+   $(use_enable introspection)
+   $(use_enable dbusmenu dbusmenu-gtk3)
+   $(use_enable vala)
+   )
+
+   use vala && vala_setup
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}



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

2022-06-07 Thread Michał Górny
commit: b1c61ac40318217970314016af2cc47ea08faaa7
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Jun  7 09:54:39 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue Jun  7 09:54:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1c61ac4

xfce-base/xfce4-panel: Remove old

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

 xfce-base/xfce4-panel/Manifest  |  2 -
 xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild | 72 -
 xfce-base/xfce4-panel/xfce4-panel-4.17.0.ebuild | 69 
 3 files changed, 143 deletions(-)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index 07c628696b6a..2cf772f60dee 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,4 +1,2 @@
-DIST xfce4-panel-4.16.3.tar.bz2 1382659 BLAKE2B 
c7c6b189fbe782df716c4e9b494c7a407a41f60106623c9960119c9cc535d337037bbd6fded40761d0ed918fde42366853a6188120adbfa1e25cc61f5eba9e37
 SHA512 
08ac27d59a4e08229e170a1c7ffb7a981ae1d3ab1548850cd815a0de64c47d1c20d69f6585c2ec9890b060483bfd569fc52ebd88db0d1264ebca00c1b0bb38fa
 DIST xfce4-panel-4.16.4.tar.bz2 1383630 BLAKE2B 
e370fc286f5b035671e059e81a5c890842949c60a8aa1ae4cb06ded7f1e538d90bf633efd7e3e2b7642eb1b490a48eda3cabd1a967930cb63cd423fb5b807e22
 SHA512 
a1ad5a528968c4b1a5d2fb1537f7774aeeb525d7cb2f77e261b187b94e9de22f018bbd47d462ce4ad09b360126548d5848e46643df40549f9f8a3c44a4a14564
-DIST xfce4-panel-4.17.0.tar.bz2 1390412 BLAKE2B 
6c3069b2c6e7d8911f11785ab517ecd57f733a72959ffbe5f8ace51f18f4db1edec51d890f57fc875d3413df0ccacfbb702b6df6efb4a647a362f4986bc985b2
 SHA512 
939d1a2ac4f558ac44bd85865d33de14834381d15fe2a205e9338e3c5d5ab5197538e6965447fb9f638142b1cfe34f1234104f99ffc90f0c9d5fe4b3781424d3
 DIST xfce4-panel-4.17.1.tar.bz2 1400182 BLAKE2B 
02dc05aa6abf7a294c90aae2bfc9cd65a2ecadc78d99e7d530a96941a671b789d21b68295c34b8395e8215bacc209a3b262b7db1d44d30a1006033c73747d3bb
 SHA512 
0070c5af1cc708ce808edc7a77171254cbf38d2e6d518d62a3eaa28223793a32bb9ad1b098a6a9c6f6f42c321ec007eac6ffd247ec0ca51a5045bf819e1471cc

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild
deleted file mode 100644
index 77e87b0de2a0..
--- a/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit vala xdg-utils
-
-DESCRIPTION="Panel 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+ LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="+dbusmenu introspection vala"
-REQUIRED_USE="vala? ( introspection )"
-
-RDEPEND=">=dev-libs/glib-2.50
-   >=x11-libs/cairo-1
-   >=x11-libs/gtk+-3.22:3[introspection?]
-   x11-libs/libX11
-   x11-libs/libwnck:3
-   >=xfce-base/exo-0.11.2:=
-   >=xfce-base/garcon-0.5:=
-   >=xfce-base/libxfce4ui-4.15.8:=
-   >=xfce-base/libxfce4util-4.15.6:=[introspection?,vala?]
-   >=xfce-base/xfconf-4.13:=
-   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
-   introspection? ( dev-libs/gobject-introspection:= )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   vala? ( $(vala_depend) )
-   dev-lang/perl
-   dev-util/gdbus-codegen
-   dev-util/gtk-doc-am
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   # stupid vala.eclass...
-   default
-}
-
-src_configure() {
-   local myconf=(
-   $(use_enable introspection)
-   $(use_enable dbusmenu dbusmenu-gtk3)
-   $(use_enable vala)
-   )
-
-   use vala && vala_src_prepare
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-
-   find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-}

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.17.0.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.17.0.ebuild
deleted file mode 100644
index 90878d167240..
--- a/xfce-base/xfce4-panel/xfce4-panel-4.17.0.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit vala xdg-utils
-
-DESCRIPTION="Panel 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+ LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="+dbusmenu introspection vala"
-REQUIRED_USE="vala? ( 

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

2022-06-07 Thread Sam James
commit: c0b002c66d9a09d7e0ca28fe27346a987d3cb58c
Author: Sam James  gentoo  org>
AuthorDate: Tue Jun  7 09:40:22 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jun  7 09:40:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0b002c6

xfce-base/xfce4-panel: Stabilize 4.16.4 ppc64, #850046

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

 xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild
index 5de00c02a586..b73513d14978 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2022-06-07 Thread Sam James
commit: 214ec0685f427d2a390cb5f1eb770e12927555d5
Author: Sam James  gentoo  org>
AuthorDate: Tue Jun  7 07:05:22 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jun  7 07:05:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=214ec068

xfce-base/xfce4-panel: Stabilize 4.16.4 ppc, #850046

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

 xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild
index 45664f76553d..5de00c02a586 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2022-06-06 Thread Jakov Smolić
commit: a02c4062592db1b22581451a03af683dcc3373c2
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Jun  6 10:21:39 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Jun  6 10:21:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a02c4062

xfce-base/xfce4-panel: Stabilize 4.16.4 amd64, #850046

Signed-off-by: Jakov Smolić  gentoo.org>

 xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild
index d8b054f65f3e..45664f76553d 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2022-06-06 Thread Jakov Smolić
commit: 2e92a2a469bfdc4bf5a686ec58a828c3d6e54f18
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Jun  6 10:20:51 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Jun  6 10:20:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e92a2a4

xfce-base/xfce4-panel: Stabilize 4.16.4 x86, #850046

Signed-off-by: Jakov Smolić  gentoo.org>

 xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild
index 17be01d020b6..d8b054f65f3e 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2022-06-06 Thread Jakov Smolić
commit: f9e20a65a2bf42c3528a4523846a64411c1e4220
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Jun  6 10:19:43 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Jun  6 10:19:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9e20a65

xfce-base/xfce4-panel: Stabilize 4.16.4 arm64, #850046

Signed-off-by: Jakov Smolić  gentoo.org>

 xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild
index e40264b8ccc4..17be01d020b6 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2022-06-06 Thread Jakov Smolić
commit: b257dce13cad91895fd2a0b65c67ee279b072fe0
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Jun  6 09:39:04 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Jun  6 09:39:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b257dce1

xfce-base/xfce4-panel: Stabilize 4.16.4 arm, #850046

Signed-off-by: Jakov Smolić  gentoo.org>

 xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild
index 6d625ccdbfcb..e40264b8ccc4 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2022-05-22 Thread Michał Górny
commit: 4fba3280e251bcca673ed82ea52dcf7d061acb31
Author: Michał Górny  gentoo  org>
AuthorDate: Mon May 23 04:57:43 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon May 23 05:20:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fba3280

xfce-base/xfce4-panel: Bump to 4.17.1

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

 xfce-base/xfce4-panel/Manifest  |  1 +
 xfce-base/xfce4-panel/xfce4-panel-4.17.1.ebuild | 69 +
 2 files changed, 70 insertions(+)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index 2c51e7a01d75..07c628696b6a 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,3 +1,4 @@
 DIST xfce4-panel-4.16.3.tar.bz2 1382659 BLAKE2B 
c7c6b189fbe782df716c4e9b494c7a407a41f60106623c9960119c9cc535d337037bbd6fded40761d0ed918fde42366853a6188120adbfa1e25cc61f5eba9e37
 SHA512 
08ac27d59a4e08229e170a1c7ffb7a981ae1d3ab1548850cd815a0de64c47d1c20d69f6585c2ec9890b060483bfd569fc52ebd88db0d1264ebca00c1b0bb38fa
 DIST xfce4-panel-4.16.4.tar.bz2 1383630 BLAKE2B 
e370fc286f5b035671e059e81a5c890842949c60a8aa1ae4cb06ded7f1e538d90bf633efd7e3e2b7642eb1b490a48eda3cabd1a967930cb63cd423fb5b807e22
 SHA512 
a1ad5a528968c4b1a5d2fb1537f7774aeeb525d7cb2f77e261b187b94e9de22f018bbd47d462ce4ad09b360126548d5848e46643df40549f9f8a3c44a4a14564
 DIST xfce4-panel-4.17.0.tar.bz2 1390412 BLAKE2B 
6c3069b2c6e7d8911f11785ab517ecd57f733a72959ffbe5f8ace51f18f4db1edec51d890f57fc875d3413df0ccacfbb702b6df6efb4a647a362f4986bc985b2
 SHA512 
939d1a2ac4f558ac44bd85865d33de14834381d15fe2a205e9338e3c5d5ab5197538e6965447fb9f638142b1cfe34f1234104f99ffc90f0c9d5fe4b3781424d3
+DIST xfce4-panel-4.17.1.tar.bz2 1400182 BLAKE2B 
02dc05aa6abf7a294c90aae2bfc9cd65a2ecadc78d99e7d530a96941a671b789d21b68295c34b8395e8215bacc209a3b262b7db1d44d30a1006033c73747d3bb
 SHA512 
0070c5af1cc708ce808edc7a77171254cbf38d2e6d518d62a3eaa28223793a32bb9ad1b098a6a9c6f6f42c321ec007eac6ffd247ec0ca51a5045bf819e1471cc

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.17.1.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.17.1.ebuild
new file mode 100644
index ..35d592e46782
--- /dev/null
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.17.1.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit vala xdg-utils
+
+DESCRIPTION="Panel 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+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="+dbusmenu introspection vala"
+REQUIRED_USE="vala? ( introspection )"
+
+RDEPEND="
+   >=dev-libs/glib-2.56
+   >=x11-libs/cairo-1
+   >=x11-libs/gtk+-3.22:3[introspection?]
+   x11-libs/libX11
+   x11-libs/libwnck:3
+   >=xfce-base/exo-0.11.2:=
+   >=xfce-base/garcon-4.17.0:=
+   >=xfce-base/libxfce4ui-4.17.1:=
+   >=xfce-base/libxfce4util-4.15.6:=[introspection?,vala?]
+   >=xfce-base/xfconf-4.13:=
+   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
+   introspection? ( dev-libs/gobject-introspection:= )
+"
+DEPEND="
+   ${RDEPEND}
+"
+BDEPEND="
+   vala? ( $(vala_depend) )
+   dev-lang/perl
+   dev-util/gdbus-codegen
+   dev-util/gtk-doc-am
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_configure() {
+   local myconf=(
+   $(use_enable introspection)
+   $(use_enable dbusmenu dbusmenu-gtk3)
+   $(use_enable vala)
+   )
+
+   use vala && vala_setup
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}



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

2022-04-16 Thread Michał Górny
commit: 652dcfdb446bdcbe1866e5ac4c1b023491948abe
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Apr 16 15:29:21 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Apr 16 15:35:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=652dcfdb

xfce-base/xfce4-panel: Bump to 4.17.0

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

 xfce-base/xfce4-panel/Manifest  |  1 +
 xfce-base/xfce4-panel/xfce4-panel-4.17.0.ebuild | 69 +
 2 files changed, 70 insertions(+)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index b46cd3e9607b..2c51e7a01d75 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,2 +1,3 @@
 DIST xfce4-panel-4.16.3.tar.bz2 1382659 BLAKE2B 
c7c6b189fbe782df716c4e9b494c7a407a41f60106623c9960119c9cc535d337037bbd6fded40761d0ed918fde42366853a6188120adbfa1e25cc61f5eba9e37
 SHA512 
08ac27d59a4e08229e170a1c7ffb7a981ae1d3ab1548850cd815a0de64c47d1c20d69f6585c2ec9890b060483bfd569fc52ebd88db0d1264ebca00c1b0bb38fa
 DIST xfce4-panel-4.16.4.tar.bz2 1383630 BLAKE2B 
e370fc286f5b035671e059e81a5c890842949c60a8aa1ae4cb06ded7f1e538d90bf633efd7e3e2b7642eb1b490a48eda3cabd1a967930cb63cd423fb5b807e22
 SHA512 
a1ad5a528968c4b1a5d2fb1537f7774aeeb525d7cb2f77e261b187b94e9de22f018bbd47d462ce4ad09b360126548d5848e46643df40549f9f8a3c44a4a14564
+DIST xfce4-panel-4.17.0.tar.bz2 1390412 BLAKE2B 
6c3069b2c6e7d8911f11785ab517ecd57f733a72959ffbe5f8ace51f18f4db1edec51d890f57fc875d3413df0ccacfbb702b6df6efb4a647a362f4986bc985b2
 SHA512 
939d1a2ac4f558ac44bd85865d33de14834381d15fe2a205e9338e3c5d5ab5197538e6965447fb9f638142b1cfe34f1234104f99ffc90f0c9d5fe4b3781424d3

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.17.0.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.17.0.ebuild
new file mode 100644
index ..90878d167240
--- /dev/null
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.17.0.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit vala xdg-utils
+
+DESCRIPTION="Panel 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+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="+dbusmenu introspection vala"
+REQUIRED_USE="vala? ( introspection )"
+
+RDEPEND="
+   >=dev-libs/glib-2.56
+   >=x11-libs/cairo-1
+   >=x11-libs/gtk+-3.22:3[introspection?]
+   x11-libs/libX11
+   x11-libs/libwnck:3
+   >=xfce-base/exo-0.11.2:=
+   >=xfce-base/garcon-0.8.0:=
+   >=xfce-base/libxfce4ui-4.17.1:=
+   >=xfce-base/libxfce4util-4.15.6:=[introspection?,vala?]
+   >=xfce-base/xfconf-4.13:=
+   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
+   introspection? ( dev-libs/gobject-introspection:= )
+"
+DEPEND="
+   ${RDEPEND}
+"
+BDEPEND="
+   vala? ( $(vala_depend) )
+   dev-lang/perl
+   dev-util/gdbus-codegen
+   dev-util/gtk-doc-am
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_configure() {
+   local myconf=(
+   $(use_enable introspection)
+   $(use_enable dbusmenu dbusmenu-gtk3)
+   $(use_enable vala)
+   )
+
+   use vala && vala_setup
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}



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

2022-04-16 Thread Michał Górny
commit: 7aad556315f25578a998ff9a6ee2f91f8785b0ce
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Apr 16 15:24:50 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Apr 16 15:35:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7aad5563

xfce-base/xfce4-panel: Bump to 4.16.4

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

 xfce-base/xfce4-panel/Manifest  |  1 +
 xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild | 69 +
 2 files changed, 70 insertions(+)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index 15f90a6c69f4..b46cd3e9607b 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1 +1,2 @@
 DIST xfce4-panel-4.16.3.tar.bz2 1382659 BLAKE2B 
c7c6b189fbe782df716c4e9b494c7a407a41f60106623c9960119c9cc535d337037bbd6fded40761d0ed918fde42366853a6188120adbfa1e25cc61f5eba9e37
 SHA512 
08ac27d59a4e08229e170a1c7ffb7a981ae1d3ab1548850cd815a0de64c47d1c20d69f6585c2ec9890b060483bfd569fc52ebd88db0d1264ebca00c1b0bb38fa
+DIST xfce4-panel-4.16.4.tar.bz2 1383630 BLAKE2B 
e370fc286f5b035671e059e81a5c890842949c60a8aa1ae4cb06ded7f1e538d90bf633efd7e3e2b7642eb1b490a48eda3cabd1a967930cb63cd423fb5b807e22
 SHA512 
a1ad5a528968c4b1a5d2fb1537f7774aeeb525d7cb2f77e261b187b94e9de22f018bbd47d462ce4ad09b360126548d5848e46643df40549f9f8a3c44a4a14564

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild
new file mode 100644
index ..6d625ccdbfcb
--- /dev/null
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.16.4.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit vala xdg-utils
+
+DESCRIPTION="Panel 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+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="+dbusmenu introspection vala"
+REQUIRED_USE="vala? ( introspection )"
+
+RDEPEND="
+   >=dev-libs/glib-2.50
+   >=x11-libs/cairo-1
+   >=x11-libs/gtk+-3.22:3[introspection?]
+   x11-libs/libX11
+   x11-libs/libwnck:3
+   >=xfce-base/exo-0.11.2:=
+   >=xfce-base/garcon-0.5:=
+   >=xfce-base/libxfce4ui-4.15.8:=
+   >=xfce-base/libxfce4util-4.15.6:=[introspection?,vala?]
+   >=xfce-base/xfconf-4.13:=
+   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
+   introspection? ( dev-libs/gobject-introspection:= )
+"
+DEPEND="
+   ${RDEPEND}
+"
+BDEPEND="
+   vala? ( $(vala_depend) )
+   dev-lang/perl
+   dev-util/gdbus-codegen
+   dev-util/gtk-doc-am
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_configure() {
+   local myconf=(
+   $(use_enable introspection)
+   $(use_enable dbusmenu dbusmenu-gtk3)
+   $(use_enable vala)
+   )
+
+   use vala && vala_setup
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}



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

2021-07-16 Thread Michał Górny
commit: 4e3370dd0bcad6bf6a2e86ba5eb37558c5005b4b
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jul 16 05:51:48 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jul 16 06:11:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e3370dd

xfce-base/xfce4-panel: Remove old

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

 xfce-base/xfce4-panel/Manifest |  1 -
 xfce-base/xfce4-panel/xfce4-panel-4.16.2-r1.ebuild | 71 --
 2 files changed, 72 deletions(-)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index b8516e28792..15f90a6c69f 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,2 +1 @@
-DIST xfce4-panel-4.16.2.tar.bz2 1381569 BLAKE2B 
d4b8455e31f942d0facfc0d90b14fb050142b3d8b3d0e61d5b687f973769e2888ea7f058c4f6a86f96dbd67329719ef49e72896774ac36591c2793847aa411ba
 SHA512 
25b817a9abc4cea57cd29c4558236a5581a03ccb50796c83f7ca1b292e8aa83c7a39b089619959b6f6fd9c5c8bbdf950d9bba1b5c4fb3d0a95cabad8a9ca763d
 DIST xfce4-panel-4.16.3.tar.bz2 1382659 BLAKE2B 
c7c6b189fbe782df716c4e9b494c7a407a41f60106623c9960119c9cc535d337037bbd6fded40761d0ed918fde42366853a6188120adbfa1e25cc61f5eba9e37
 SHA512 
08ac27d59a4e08229e170a1c7ffb7a981ae1d3ab1548850cd815a0de64c47d1c20d69f6585c2ec9890b060483bfd569fc52ebd88db0d1264ebca00c1b0bb38fa

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.2-r1.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.2-r1.ebuild
deleted file mode 100644
index 8d87e930110..000
--- a/xfce-base/xfce4-panel/xfce4-panel-4.16.2-r1.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit vala xdg-utils
-
-DESCRIPTION="Panel 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+ LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="+dbusmenu introspection vala"
-REQUIRED_USE="vala? ( introspection )"
-
-RDEPEND=">=dev-libs/glib-2.50
-   >=x11-libs/cairo-1
-   >=x11-libs/gtk+-3.22:3[introspection?]
-   x11-libs/libX11
-   x11-libs/libwnck:3
-   >=xfce-base/exo-0.11.2:=
-   >=xfce-base/garcon-0.5:=
-   >=xfce-base/libxfce4ui-4.15.8:=
-   >=xfce-base/libxfce4util-4.15.6:=[introspection?,vala?]
-   >=xfce-base/xfconf-4.13:=
-   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
-   introspection? ( dev-libs/gobject-introspection:= )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   vala? ( $(vala_depend) )
-   dev-lang/perl
-   dev-util/gtk-doc-am
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   # stupid vala.eclass...
-   default
-}
-
-src_configure() {
-   local myconf=(
-   $(use_enable introspection)
-   $(use_enable dbusmenu dbusmenu-gtk3)
-   $(use_enable vala)
-   )
-
-   use vala && vala_src_prepare
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-
-   find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-}



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

2021-07-15 Thread Sergei Trofimovich
commit: 72ab2cddb9c8b96922fae832748b3d5bf6e8460b
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Jul 15 22:17:22 2021 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Jul 15 22:17:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72ab2cdd

xfce-base/xfce4-panel: stable 4.16.3 for ppc

stable wrt bug #799905

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

 xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild
index 5b54300b0c9..77e87b0de2a 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2021-07-08 Thread Sam James
commit: 5ebf69d9985bf7bcb789491bfe0fa84e860a3400
Author: Sam James  gentoo  org>
AuthorDate: Fri Jul  9 01:35:24 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jul  9 01:35:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ebf69d9

xfce-base/xfce4-panel: Stabilize 4.16.3 ppc64, #799905

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

 xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild
index 6613dfce02a..5b54300b0c9 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2021-07-07 Thread Sam James
commit: d9790ac42114989e71d907b3646237bbc93b8892
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul  8 03:52:58 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul  8 03:52:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9790ac4

xfce-base/xfce4-panel: Stabilize 4.16.3 arm64, #799905

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

 xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild
index d4aa70bb090..6613dfce02a 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2021-07-05 Thread Sam James
commit: 86f7b430a4786fb419d50760ba8a646b657b9574
Author: Sam James  gentoo  org>
AuthorDate: Tue Jul  6 01:47:09 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jul  6 01:47:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86f7b430

xfce-base/xfce4-panel: Stabilize 4.16.3 arm, #799905

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

 xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild
index c2cfef2372e..d4aa70bb090 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2021-07-02 Thread Sam James
commit: f53fa18c9a3fc97519fe51b7749460d6084daebc
Author: Sam James  gentoo  org>
AuthorDate: Sat Jul  3 01:30:08 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jul  3 01:30:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f53fa18c

xfce-base/xfce4-panel: Stabilize 4.16.3 amd64, #799905

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

 xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild
index 691d33dfec4..c2cfef2372e 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2021-07-02 Thread Sam James
commit: 2e6de1f3d63e58ae250c146d8fbbe95b7f0a5af4
Author: Sam James  gentoo  org>
AuthorDate: Sat Jul  3 01:27:40 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jul  3 01:27:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e6de1f3

xfce-base/xfce4-panel: Stabilize 4.16.3 x86, #799905

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

 xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild
index 90cffb711f0..691d33dfec4 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2021-05-25 Thread Yixun Lan
commit: 79122b3d5838877e220c3b82afc14dc56b186e7b
Author: Yixun Lan  gentoo  org>
AuthorDate: Tue May 25 13:50:21 2021 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Tue May 25 14:20:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79122b3d

xfce-base/xfce4-panel: add riscv keyword

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

 xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild
index 307872c72ef..90cffb711f0 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



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

2021-05-06 Thread Michał Górny
commit: e401c5883137014561d41df8d66028d4ed1551c2
Author: Michał Górny  gentoo  org>
AuthorDate: Thu May  6 08:38:41 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu May  6 08:49:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e401c588

xfce-base/xfce4-panel: Bump to 4.16.3

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

 xfce-base/xfce4-panel/Manifest  |  1 +
 xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild | 71 +
 2 files changed, 72 insertions(+)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index ccaaf1c82dd..b8516e28792 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1 +1,2 @@
 DIST xfce4-panel-4.16.2.tar.bz2 1381569 BLAKE2B 
d4b8455e31f942d0facfc0d90b14fb050142b3d8b3d0e61d5b687f973769e2888ea7f058c4f6a86f96dbd67329719ef49e72896774ac36591c2793847aa411ba
 SHA512 
25b817a9abc4cea57cd29c4558236a5581a03ccb50796c83f7ca1b292e8aa83c7a39b089619959b6f6fd9c5c8bbdf950d9bba1b5c4fb3d0a95cabad8a9ca763d
+DIST xfce4-panel-4.16.3.tar.bz2 1382659 BLAKE2B 
c7c6b189fbe782df716c4e9b494c7a407a41f60106623c9960119c9cc535d337037bbd6fded40761d0ed918fde42366853a6188120adbfa1e25cc61f5eba9e37
 SHA512 
08ac27d59a4e08229e170a1c7ffb7a981ae1d3ab1548850cd815a0de64c47d1c20d69f6585c2ec9890b060483bfd569fc52ebd88db0d1264ebca00c1b0bb38fa

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild
new file mode 100644
index 000..03c46f80ae5
--- /dev/null
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.16.3.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit vala xdg-utils
+
+DESCRIPTION="Panel 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+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="+dbusmenu introspection vala"
+REQUIRED_USE="vala? ( introspection )"
+
+RDEPEND=">=dev-libs/glib-2.50
+   >=x11-libs/cairo-1
+   >=x11-libs/gtk+-3.22:3[introspection?]
+   x11-libs/libX11
+   x11-libs/libwnck:3
+   >=xfce-base/exo-0.11.2:=
+   >=xfce-base/garcon-0.5:=
+   >=xfce-base/libxfce4ui-4.15.8:=
+   >=xfce-base/libxfce4util-4.15.6:=[introspection?,vala?]
+   >=xfce-base/xfconf-4.13:=
+   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
+   introspection? ( dev-libs/gobject-introspection:= )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   vala? ( $(vala_depend) )
+   dev-lang/perl
+   dev-util/gtk-doc-am
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   # stupid vala.eclass...
+   default
+}
+
+src_configure() {
+   local myconf=(
+   $(use_enable introspection)
+   $(use_enable dbusmenu dbusmenu-gtk3)
+   $(use_enable vala)
+   )
+
+   use vala && vala_src_prepare
+   econf "${myconf[@]}"
+}
+
+src_install() {
+   default
+
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}



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

2021-04-11 Thread Michał Górny
commit: a03f0023bd9f60a94a4875654562cd66188efe59
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Apr 11 15:00:57 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Apr 11 15:00:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a03f0023

xfce-base/xfce4-panel: Remove old

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

 xfce-base/xfce4-panel/Manifest |  1 -
 xfce-base/xfce4-panel/xfce4-panel-4.16.1-r1.ebuild | 71 --
 2 files changed, 72 deletions(-)

diff --git a/xfce-base/xfce4-panel/Manifest b/xfce-base/xfce4-panel/Manifest
index 0f9fa338966..ccaaf1c82dd 100644
--- a/xfce-base/xfce4-panel/Manifest
+++ b/xfce-base/xfce4-panel/Manifest
@@ -1,2 +1 @@
-DIST xfce4-panel-4.16.1.tar.bz2 1381003 BLAKE2B 
103d1b60c13758ad5e3f139d3bc66923e648540195c7a71fb6c39bcdb06b109f620ced42b7eb6c36ccf5a833e97957c373e760feab3f062c5a7ecd3038803366
 SHA512 
ec55a9812d61db755ea56a87ea1b709af2870703fc0e5a45797406f2f4c78e8afecd6e1bc081f3618a81030c9c0595ae8edbb29731d4bef3750e202bbf35e99c
 DIST xfce4-panel-4.16.2.tar.bz2 1381569 BLAKE2B 
d4b8455e31f942d0facfc0d90b14fb050142b3d8b3d0e61d5b687f973769e2888ea7f058c4f6a86f96dbd67329719ef49e72896774ac36591c2793847aa411ba
 SHA512 
25b817a9abc4cea57cd29c4558236a5581a03ccb50796c83f7ca1b292e8aa83c7a39b089619959b6f6fd9c5c8bbdf950d9bba1b5c4fb3d0a95cabad8a9ca763d

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.1-r1.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.1-r1.ebuild
deleted file mode 100644
index 8d87e930110..000
--- a/xfce-base/xfce4-panel/xfce4-panel-4.16.1-r1.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit vala xdg-utils
-
-DESCRIPTION="Panel 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+ LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
-IUSE="+dbusmenu introspection vala"
-REQUIRED_USE="vala? ( introspection )"
-
-RDEPEND=">=dev-libs/glib-2.50
-   >=x11-libs/cairo-1
-   >=x11-libs/gtk+-3.22:3[introspection?]
-   x11-libs/libX11
-   x11-libs/libwnck:3
-   >=xfce-base/exo-0.11.2:=
-   >=xfce-base/garcon-0.5:=
-   >=xfce-base/libxfce4ui-4.15.8:=
-   >=xfce-base/libxfce4util-4.15.6:=[introspection?,vala?]
-   >=xfce-base/xfconf-4.13:=
-   dbusmenu? ( >=dev-libs/libdbusmenu-16.04.0[gtk3] )
-   introspection? ( dev-libs/gobject-introspection:= )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   vala? ( $(vala_depend) )
-   dev-lang/perl
-   dev-util/gtk-doc-am
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   # stupid vala.eclass...
-   default
-}
-
-src_configure() {
-   local myconf=(
-   $(use_enable introspection)
-   $(use_enable dbusmenu dbusmenu-gtk3)
-   $(use_enable vala)
-   )
-
-   use vala && vala_src_prepare
-   econf "${myconf[@]}"
-}
-
-src_install() {
-   default
-
-   find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-   xdg_desktop_database_update
-}



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

2021-04-11 Thread Sam James
commit: 0dca7de56a22d6c64809567604460ef1f9eeb9b5
Author: Sam James  gentoo  org>
AuthorDate: Sun Apr 11 13:12:58 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Apr 11 13:12:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dca7de5

xfce-base/xfce4-panel: Stabilize 4.16.2-r1 ppc, #781731

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

 xfce-base/xfce4-panel/xfce4-panel-4.16.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.16.2-r1.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.16.2-r1.ebuild
index 4ed604d460d..8d87e930110 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.16.2-r1.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.16.2-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2;
 
 LICENSE="GPL-2+ LGPL-2.1+"
 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="+dbusmenu introspection vala"
 REQUIRED_USE="vala? ( introspection )"
 



  1   2   >