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 91C51158083 for ; Tue, 24 Sep 2024 07:02:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7A6AB2BC0AF; Tue, 24 Sep 2024 07:02:34 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 646C02BC0AF for ; Tue, 24 Sep 2024 07:02:34 +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 A3A683434E1 for ; Tue, 24 Sep 2024 07:02:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 01F7D27FB for ; Tue, 24 Sep 2024 07:02:31 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1727161275.d3a9d4ea0f13570d110b71a591b7418918cc24c6.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/wmfs/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-wm/wmfs/wmfs-99999999.ebuild X-VCS-Directories: x11-wm/wmfs/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: d3a9d4ea0f13570d110b71a591b7418918cc24c6 X-VCS-Branch: master Date: Tue, 24 Sep 2024 07:02:31 +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: 42f3e07e-fe2b-45b3-b565-a62c72f89d8e X-Archives-Hash: f6519971eaed8cc095c3a4af507d7ec1 commit: d3a9d4ea0f13570d110b71a591b7418918cc24c6 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Wed Sep 4 18:05:45 2024 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Tue Sep 24 07:01:15 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3a9d4ea x11-wm/wmfs: remove live ebuild Remove live ebuild since upstream wasn't updated for a couple of years. I think it makes no sense to keep these ebuilds, especially when the non-live ebuild is already at HEAD. Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/38439 Signed-off-by: Joonas Niilola gentoo.org> x11-wm/wmfs/wmfs-99999999.ebuild | 56 ---------------------------------------- 1 file changed, 56 deletions(-) diff --git a/x11-wm/wmfs/wmfs-99999999.ebuild b/x11-wm/wmfs/wmfs-99999999.ebuild deleted file mode 100644 index 4d856eab612c..000000000000 --- a/x11-wm/wmfs/wmfs-99999999.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit git-r3 toolchain-funcs - -DESCRIPTION="Window Manager From Scratch, A tiling window manager highly configurable" -HOMEPAGE="https://github.com/xorg62/wmfs" -EGIT_REPO_URI="https://github.com/xorg62/wmfs" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="" -IUSE="+imlib2 +xinerama" - -RDEPEND=" - media-libs/freetype - media-libs/imlib2[X] - x11-libs/libX11 - x11-libs/libXft - x11-libs/libXinerama - x11-libs/libXrandr -" -DEPEND=" - ${RDEPEND} - x11-base/xorg-proto - elibc_musl? ( sys-libs/queue-standalone ) -" -BDEPEND="virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}"/${PN}-99999999-Debian.patch - "${FILESDIR}"/${PN}-99999999-desktop.patch - "${FILESDIR}"/${PN}-99999999-fno-common.patch - "${FILESDIR}"/${PN}-99999999-strncat.patch -) -DOCS=( - README - scripts/keybind_help.sh - scripts/status.sh -) - -src_configure() { - tc-export CC - # not autotools based - local ECHO - for ECHO in echo ''; do - ${ECHO} sh configure \ - $(usex xinerama '' --without-xinerama) \ - $(usex imlib2 '' --without-imlib2) \ - --prefix /usr \ - --man-prefix /usr/share/man \ - --xdg-config-dir /etc/xdg \ - || die - done -}