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 B3977159C96 for ; Mon, 29 Jul 2024 07:33:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 08027E2A12; Mon, 29 Jul 2024 07:33:57 +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 DE603E2A12 for ; Mon, 29 Jul 2024 07:33:56 +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 0450C33FEF1 for ; Mon, 29 Jul 2024 07:33:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3B38F1E81 for ; Mon, 29 Jul 2024 07:33:53 +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: <1722238429.257a8d60336a8a028e981d53a95b3ede2eed8ef6.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gui-wm/dwl/ X-VCS-Repository: repo/gentoo X-VCS-Files: gui-wm/dwl/dwl-0.5.ebuild X-VCS-Directories: gui-wm/dwl/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 257a8d60336a8a028e981d53a95b3ede2eed8ef6 X-VCS-Branch: master Date: Mon, 29 Jul 2024 07:33:53 +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: 02b363cd-38b6-4d69-a93c-15bc55eb3f56 X-Archives-Hash: e92f0eed31b70413a88abef13601a125 commit: 257a8d60336a8a028e981d53a95b3ede2eed8ef6 Author: Leonardo Hernández Hernández proton me> AuthorDate: Sat Jul 13 22:50:46 2024 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Mon Jul 29 07:33:49 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=257a8d60 gui-wm/dwl: drop 0.5 Signed-off-by: Leonardo Hernández Hernández proton.me> Signed-off-by: Joonas Niilola gentoo.org> gui-wm/dwl/dwl-0.5.ebuild | 76 ----------------------------------------------- 1 file changed, 76 deletions(-) diff --git a/gui-wm/dwl/dwl-0.5.ebuild b/gui-wm/dwl/dwl-0.5.ebuild deleted file mode 100644 index d96014e0f6ec..000000000000 --- a/gui-wm/dwl/dwl-0.5.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 2022-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit savedconfig toolchain-funcs - -MY_P="${PN}-v${PV}" -WLROOTS_SLOT="0/17" -if [[ ${PV} == *9999* ]]; then - EGIT_REPO_URI="https://codeberg.org/dwl/dwl.git" - inherit git-r3 - - # 9999-r0: main (latest stable wlroots release) - # 9999-r1: wlroots-next (wlroots-9999) - case ${PVR} in - 9999) - EGIT_BRANCH=main - ;; - 9999-r1) - EGIT_BRANCH=wlroots-next - WLROOTS_SLOT="0/9999" - ;; - esac -else - SRC_URI="https://codeberg.org/${PN}/${PN}/releases/download/v${PV}/${MY_P}.tar.gz" - S="${WORKDIR}/${MY_P}" - KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" -fi - -DESCRIPTION="dwm for Wayland" -HOMEPAGE="https://codeberg.org/dwl/dwl" - -LICENSE="CC0-1.0 GPL-3+ MIT" -SLOT="0" -IUSE="X" - -RDEPEND=" - dev-libs/libinput:= - dev-libs/wayland - gui-libs/wlroots:${WLROOTS_SLOT}[libinput,session,X?] - x11-libs/libxkbcommon - X? ( - x11-libs/libxcb:= - x11-libs/xcb-util-wm - ) -" - -# uses -DEPEND=" - ${RDEPEND} - sys-kernel/linux-headers -" -BDEPEND=" - >=dev-libs/wayland-protocols-1.32 - dev-util/wayland-scanner - virtual/pkgconfig -" - -src_prepare() { - restore_config config.h - - default -} - -src_compile() { - emake PKG_CONFIG="$(tc-getPKG_CONFIG)" CC="$(tc-getCC)" \ - XWAYLAND="$(usev X -DXWAYLAND)" XLIBS="$(usev X "xcb xcb-icccm")" dwl -} - -src_install() { - emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install - dodoc CHANGELOG.md README.md - - save_config config.h -}