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 08EA515808C for ; Wed, 9 Feb 2022 22:57:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A74ECE0886; Wed, 9 Feb 2022 22:57:38 +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 8DF38E0886 for ; Wed, 9 Feb 2022 22:57:38 +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 749B03430E2 for ; Wed, 9 Feb 2022 22:57:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 044282EA for ; Wed, 9 Feb 2022 22:57:33 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1644447411.bb7033bb004ef69d819aecfed90c4683a1eace44.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/j4-dmenu-desktop/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/j4-dmenu-desktop/j4-dmenu-desktop-2.18.ebuild X-VCS-Directories: x11-misc/j4-dmenu-desktop/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: bb7033bb004ef69d819aecfed90c4683a1eace44 X-VCS-Branch: master Date: Wed, 9 Feb 2022 22:57:33 +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: 30030a80-ff70-4c76-8a55-eea10e3bf660 X-Archives-Hash: aa7ba483765bb8644e8437be404664dd commit: bb7033bb004ef69d819aecfed90c4683a1eace44 Author: Conrad Kostecki gentoo org> AuthorDate: Wed Feb 9 21:44:41 2022 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Wed Feb 9 22:56:51 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb7033bb x11-misc/j4-dmenu-desktop: drop 2.18 Signed-off-by: Conrad Kostecki gentoo.org> .../j4-dmenu-desktop/j4-dmenu-desktop-2.18.ebuild | 56 ---------------------- 1 file changed, 56 deletions(-) diff --git a/x11-misc/j4-dmenu-desktop/j4-dmenu-desktop-2.18.ebuild b/x11-misc/j4-dmenu-desktop/j4-dmenu-desktop-2.18.ebuild deleted file mode 100644 index 8a8d8c7525b9..000000000000 --- a/x11-misc/j4-dmenu-desktop/j4-dmenu-desktop-2.18.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -MY_PV="r${PV}" - -DESCRIPTION="A fast desktop replacement for i3-dmenu-desktop" -HOMEPAGE="https://github.com/enkore/j4-dmenu-desktop" -SRC_URI="https://github.com/enkore/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="+dmenu test" -RESTRICT="!test? ( test )" - -DEPEND="test? ( dev-cpp/catch:1 )" -RDEPEND="dmenu? ( x11-misc/dmenu )" - -S="${WORKDIR}/${PN}-${MY_PV}" - -src_prepare() { - cmake_src_prepare - - # Respect users CFLAGS - sed -i -e "s/-pedantic -O2//" CMakeLists.txt || die -} - -src_configure() { - local mycmakeargs=( - -DWITH_GIT_CATCH="no" - -DWITH_TESTS="$(usex test)" - ) - - cmake_src_configure -} - -src_install() { - cmake_src_install - - doman j4-dmenu-desktop.1 -} - -pkg_postinst() { - if ! use dmenu; then - elog "As you have disabled the 'dmenu' use flag," - elog "x11-misc/dmenu won't be installed by default." - elog "" - elog "Since x11-misc/j4-dmenu-desktop uses x11-misc/dmenu as default," - elog "you must configure your own replacement with --dmenu=," - elog "as otherwise it won't work." - fi -}