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 CFD9215800F for ; Tue, 31 Jan 2023 18:43:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8EE42E0CB5; Tue, 31 Jan 2023 18:43:37 +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 757A4E0CB5 for ; Tue, 31 Jan 2023 18:43:37 +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 7BBC2340D67 for ; Tue, 31 Jan 2023 18:43:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3E546889 for ; Tue, 31 Jan 2023 18:43:34 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1675190541.b75e10752c93b1c50903b076151b118e33a9f449.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/xvile/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/xvile/xvile-9.8w-r1.ebuild X-VCS-Directories: app-editors/xvile/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b75e10752c93b1c50903b076151b118e33a9f449 X-VCS-Branch: master Date: Tue, 31 Jan 2023 18:43:34 +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: 37cef9dd-bd95-484f-8176-6824ed84563e X-Archives-Hash: 0c94eebf2c8003055c37232bee35cda5 commit: b75e10752c93b1c50903b076151b118e33a9f449 Author: Sam James gentoo org> AuthorDate: Tue Jan 31 18:39:06 2023 +0000 Commit: Sam James gentoo org> CommitDate: Tue Jan 31 18:42:21 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b75e1075 app-editors/xvile: drop 9.8w-r1 Signed-off-by: Sam James gentoo.org> app-editors/xvile/xvile-9.8w-r1.ebuild | 50 ---------------------------------- 1 file changed, 50 deletions(-) diff --git a/app-editors/xvile/xvile-9.8w-r1.ebuild b/app-editors/xvile/xvile-9.8w-r1.ebuild deleted file mode 100644 index 081a230fd55d..000000000000 --- a/app-editors/xvile/xvile-9.8w-r1.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -# Bump with app-editors/vile - -MY_P="${PN/x/}-${PV}" -DESCRIPTION="VI Like Emacs -- yet another full-featured vi clone" -HOMEPAGE="https://invisible-island.net/vile/" -SRC_URI="https://invisible-island.net/archives/vile/current/${MY_P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 ~ia64 ppc ~riscv sparc x86" -IUSE="perl" - -RDEPEND="~app-editors/vile-${PV} - virtual/libcrypt:= - >=x11-libs/libX11-1.0.0 - >=x11-libs/libXt-1.0.0 - >=x11-libs/libICE-1.0.0 - >=x11-libs/libSM-1.0.0 - >=x11-libs/libXaw-1.0.1 - >=x11-libs/libXpm-3.5.4.2 - perl? ( dev-lang/perl:= )" -DEPEND="${RDEPEND} - x11-base/xorg-proto - sys-devel/flex" -BDEPEND="virtual/pkgconfig" - -PATCHES=( "${FILESDIR}/${P}"-fix-build-for-clang16.patch ) - -S="${WORKDIR}"/${MY_P} - -src_configure() { - econf \ - --disable-stripping \ - --with-ncurses \ - --with-pkg-config \ - --with-x \ - $(use_with perl) -} - -src_install() { - dobin xvile - dodoc CHANGES* README doc/*.doc - docinto html - dodoc doc/*.html -}