commit: a58eeb06e4096a5f7b01d661e3ab6c965f6c00d9 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Sun Feb 22 03:12:39 2026 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Sun Feb 22 03:32:32 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a58eeb06
xfce-extra/xfce4-whiskermenu-plugin: Bump to 2.10.1 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> xfce-extra/xfce4-whiskermenu-plugin/Manifest | 1 + .../xfce4-whiskermenu-plugin-2.10.1.ebuild | 62 ++++++++++++++++++++++ 2 files changed, 63 insertions(+) diff --git a/xfce-extra/xfce4-whiskermenu-plugin/Manifest b/xfce-extra/xfce4-whiskermenu-plugin/Manifest index f1221ea66177..0f0befeb5e05 100644 --- a/xfce-extra/xfce4-whiskermenu-plugin/Manifest +++ b/xfce-extra/xfce4-whiskermenu-plugin/Manifest @@ -1 +1,2 @@ DIST xfce4-whiskermenu-plugin-2.10.0.tar.xz 188712 BLAKE2B 90bd1731b0edea519c39995988a966d53adba1dbadb48ca9e7c3a5cc816916d4e924f8f075205f6e8eea133bfb98bbae9836b8c45280a2497e658afab9e9aff9 SHA512 3b7e511cb84f0e0715b2a0ae10998d9064f13da72d29cfb0b161edc5ceba65b1e471ca479a3ba9460df27638d53e82e60a5395f1a8942c6bc30cc315ca278a77 +DIST xfce4-whiskermenu-plugin-2.10.1.tar.xz 191380 BLAKE2B 5784f0392842ab695d704117c577b1b644957ad9bed4b49a35f78f134e5f3baaf8db8b7e6870b9c003357c1172604fe8887cb68df79a07588a717bd0b60c9f42 SHA512 d3d6be4554efb0b7af4710d886d99922a668fba9f7a6cb3b92c8dba2f9fdded241050b45f63ab9384fc6c577d04127b2bc26f99d7fd917b1ea2777396bd930fe diff --git a/xfce-extra/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin-2.10.1.ebuild b/xfce-extra/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin-2.10.1.ebuild new file mode 100644 index 000000000000..189439ce09b2 --- /dev/null +++ b/xfce-extra/xfce4-whiskermenu-plugin/xfce4-whiskermenu-plugin-2.10.1.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit meson xdg-utils + +DESCRIPTION="Alternate application launcher for Xfce" +HOMEPAGE="https://gottcode.org/xfce4-whiskermenu-plugin/" +SRC_URI=" + https://archive.xfce.org/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.xz +" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" +IUSE="accountsservice wayland" + +# TODO: remove exo once we dep on libxfce4ui >= 4.21.0 +DEPEND=" + virtual/libintl + >=x11-libs/gtk+-3.22.0:3 + >=xfce-base/exo-4.16.0:= + >=xfce-base/garcon-4.16.0:= + >=xfce-base/libxfce4ui-4.16.0:= + >=xfce-base/libxfce4util-4.16.0:= + >=xfce-base/xfce4-panel-4.16.0:= + >=xfce-base/xfconf-4.16.0:= + accountsservice? ( + >=sys-apps/accountsservice-0.6.45 + ) + wayland? ( + >=gui-libs/gtk-layer-shell-0.7 + ) +" +RDEPEND=" + ${DEPEND} +" +BDEPEND=" + sys-devel/gettext + virtual/pkgconfig +" + +# upstream does fancy stuff in other build types +CMAKE_BUILD_TYPE=Debug + +src_configure() { + local emesonargs=( + $(meson_feature accountsservice) + $(meson_feature wayland gtk-layer-shell) + ) + + meson_src_configure +} + +pkg_postinst() { + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_icon_cache_update +}
