From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4CE05158083 for ; Wed, 11 Sep 2024 17:48:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9F4ACE2A04; Wed, 11 Sep 2024 17:48:22 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 84C6EE2A04 for ; Wed, 11 Sep 2024 17:48:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 93794340836 for ; Wed, 11 Sep 2024 17:48:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F29C51AD0 for ; Wed, 11 Sep 2024 17:48:19 +0000 (UTC) From: "Petr Vaněk" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Petr Vaněk" Message-ID: <1726076847.fe4accd075f0787578eb0af280f10e2f3e970ed4.arkamar@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: lxde-base/lxpanel/ X-VCS-Repository: repo/gentoo X-VCS-Files: lxde-base/lxpanel/lxpanel-0.10.1.ebuild X-VCS-Directories: lxde-base/lxpanel/ X-VCS-Committer: arkamar X-VCS-Committer-Name: Petr Vaněk X-VCS-Revision: fe4accd075f0787578eb0af280f10e2f3e970ed4 X-VCS-Branch: master Date: Wed, 11 Sep 2024 17:48:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c1f7666b-8696-4c1f-a38e-721488c98326 X-Archives-Hash: 11a8dadbb409b2ffbb69609bb8ad7069 commit: fe4accd075f0787578eb0af280f10e2f3e970ed4 Author: Petr Vaněk gentoo org> AuthorDate: Wed Sep 11 17:42:05 2024 +0000 Commit: Petr Vaněk gentoo org> CommitDate: Wed Sep 11 17:47:27 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe4accd0 lxde-base/lxpanel: drop 0.10.1 Signed-off-by: Petr Vaněk gentoo.org> lxde-base/lxpanel/lxpanel-0.10.1.ebuild | 70 --------------------------------- 1 file changed, 70 deletions(-) diff --git a/lxde-base/lxpanel/lxpanel-0.10.1.ebuild b/lxde-base/lxpanel/lxpanel-0.10.1.ebuild deleted file mode 100644 index add44af322ac..000000000000 --- a/lxde-base/lxpanel/lxpanel-0.10.1.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit readme.gentoo-r1 xdg - -DESCRIPTION="Lightweight X11 desktop panel for LXDE" -HOMEPAGE="https://wiki.lxde.org/en/LXPanel" -SRC_URI="https://downloads.sourceforge.net/lxde/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~riscv ~x86 ~amd64-linux ~x86-linux" -IUSE="+alsa wifi" - -RDEPEND=" - dev-libs/keybinder:3 - lxde-base/lxmenu-data - >=lxde-base/menu-cache-1.1.0-r1 - x11-libs/cairo - x11-libs/gdk-pixbuf - x11-libs/gtk+:3 - >=x11-libs/libfm-1.3.2[gtk] - x11-libs/libwnck:3 - x11-libs/libX11 - x11-libs/libXmu - x11-libs/libXpm - alsa? ( media-libs/alsa-lib ) - wifi? ( net-wireless/wireless-tools ) -" -DEPEND="${RDEPEND}" -BDEPEND=" - sys-devel/gettext - virtual/pkgconfig -" - -DOC_CONTENTS="If you have problems with broken icons shown in the main panel, -you will have to configure panel settings via its menu. -This will not be an issue with first time installations." - -PATCHES=( - # https://sourceforge.net/p/lxde/bugs/773/ - "${FILESDIR}/${P}-fix-pager-panel-width.patch" -) - -src_configure() { - local plugins="netstatus,volume,cpu,deskno,batt,kbled,xkb,thermal,cpufreq,monitors" - - use wifi && plugins+=",netstat" - use alsa && plugins+=",volumealsa" - - econf \ - $(use_enable alsa) \ - --enable-gtk3 \ - --with-x \ - --with-plugins="${plugins}" - # the gtk+ dep already pulls in libX11, so we might as well hardcode with-x -} - -src_install() { - default - find "${ED}" -name '*.la' -delete || die - - readme.gentoo_create_doc -} - -pkg_postinst() { - readme.gentoo_print_elog -}