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 E61EF158043 for ; Mon, 15 Apr 2024 07:33:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9DB47E29E0; Mon, 15 Apr 2024 07:33:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 771F7E29D6 for ; Mon, 15 Apr 2024 07:33:41 +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 B262A3433CF for ; Mon, 15 Apr 2024 07:33:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 276B01620 for ; Mon, 15 Apr 2024 07:33:39 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1713166299.ccfffeb2d65f5bb8f6ff275fb54519bce93d4858.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmbio/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/wmbio/wmbio-1.02.ebuild X-VCS-Directories: x11-plugins/wmbio/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: ccfffeb2d65f5bb8f6ff275fb54519bce93d4858 X-VCS-Branch: master Date: Mon, 15 Apr 2024 07:33:39 +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: 54017df5-ec76-479d-9a00-e3bb925a298d X-Archives-Hash: f8361cdf6446f5bab182d28266357cb5 commit: ccfffeb2d65f5bb8f6ff275fb54519bce93d4858 Author: Arthur Zamarin gentoo org> AuthorDate: Mon Apr 15 07:31:39 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Mon Apr 15 07:31:39 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccfffeb2 x11-plugins/wmbio: drop 1.02, EAPI6-- Closes: https://bugs.gentoo.org/929936 Signed-off-by: Arthur Zamarin gentoo.org> x11-plugins/wmbio/wmbio-1.02.ebuild | 41 ------------------------------------- 1 file changed, 41 deletions(-) diff --git a/x11-plugins/wmbio/wmbio-1.02.ebuild b/x11-plugins/wmbio/wmbio-1.02.ebuild deleted file mode 100644 index d6503e0048f2..000000000000 --- a/x11-plugins/wmbio/wmbio-1.02.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit toolchain-funcs - -DESCRIPTION="A Window Maker applet that shows your biorhythm" -HOMEPAGE="https://wmbio.sourceforge.net/" -SRC_URI="mirror://sourceforge/wmbio/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ppc ppc64 sparc x86" -IUSE="" - -RDEPEND="x11-libs/libX11 - x11-libs/libXext - x11-libs/libXpm" -DEPEND="${RDEPEND} - x11-base/xorg-proto" - -PATCHES=( "${FILESDIR}"/${P}-fno-common.patch ) -S=${WORKDIR}/${P}/src - -src_prepare() { - default - # Honour Gentoo CFLAGS, LDFLAGS, CC - sed -i -e "s/-g -O2/\$(CFLAGS)/" \ - -e "s/-o wmbio/\$(LDFLAGS) -o wmbio/" \ - -e "s/cc /\$(CC) /" Makefile || die -} - -src_compile() { - emake CC="$(tc-getCC)" -} - -src_install() { - dobin wmbio - dodoc ../{AUTHORS,Changelog,NEWS,README} -}