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 DCD7015800A for ; Sat, 29 Jul 2023 21:19:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 104F2E075F; Sat, 29 Jul 2023 21:19:24 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 ED3D9E075F for ; Sat, 29 Jul 2023 21:19:23 +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 14D2833E622 for ; Sat, 29 Jul 2023 21:19:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A3FE0DC1 for ; Sat, 29 Jul 2023 21:19:21 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1690665549.d404290a96638575dd6eeb6097afd3f5a6a91c24.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/vm/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/vm/vm-9999.ebuild X-VCS-Directories: app-emacs/vm/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: d404290a96638575dd6eeb6097afd3f5a6a91c24 X-VCS-Branch: master Date: Sat, 29 Jul 2023 21:19:21 +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: dc834621-e28d-46e4-966b-87459b5157c4 X-Archives-Hash: 5eab2b29eb6924339ebd8f923e593ee9 commit: d404290a96638575dd6eeb6097afd3f5a6a91c24 Author: Ulrich Müller gentoo org> AuthorDate: Sat Jul 29 21:18:33 2023 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Jul 29 21:19:09 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d404290a app-emacs/vm: drop 9999 Closes: https://bugs.gentoo.org/911439 Signed-off-by: Ulrich Müller gentoo.org> app-emacs/vm/vm-9999.ebuild | 58 --------------------------------------------- 1 file changed, 58 deletions(-) diff --git a/app-emacs/vm/vm-9999.ebuild b/app-emacs/vm/vm-9999.ebuild deleted file mode 100644 index 7834ef8f589d..000000000000 --- a/app-emacs/vm/vm-9999.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit elisp bzr autotools - -DESCRIPTION="The VM mail reader for Emacs" -HOMEPAGE="http://www.nongnu.org/viewmail/" -EBZR_REPO_URI="lp:vm" - -LICENSE="GPL-2+" -SLOT="0" -IUSE="bbdb ssl" - -BDEPEND="bbdb? ( app-emacs/bbdb )" -RDEPEND="${BDEPEND} - ssl? ( net-misc/stunnel )" -BDEPEND="${BDEPEND} - sys-apps/texinfo" - -SITEFILE="50${PN}-gentoo.el" - -src_prepare() { - eapply "${FILESDIR}"/vm-8.2.0_beta-texinfo-encoding.patch - if ! use bbdb; then - elog "Excluding vm-pcrisis.el since the \"bbdb\" USE flag is not set." - eapply "${FILESDIR}/${PN}-8.0-no-pcrisis.patch" - fi - eapply_user - eautoreconf -} - -src_configure() { - econf \ - --with-emacs="emacs" \ - --with-lispdir="${SITELISP}/${PN}" \ - --with-etcdir="${SITEETC}/${PN}" \ - --with-docdir="/usr/share/doc/${PF}" \ - $(use bbdb && echo "--with-other-dirs=${SITELISP}/bbdb") -} - -src_compile() { - emake -j1 -} - -src_install() { - emake -j1 DESTDIR="${D}" install - elisp-site-file-install "${FILESDIR}/${SITEFILE}" - - # delete duplicate documentation - find "${D}/${SITEETC}/${PN}" -type d -name pixmaps -prune \ - -o -type f -exec rm '{}' '+' || die - - dodoc example.vm - # NEWS is accessed from lisp and must not be compressed - docompress -x /usr/share/doc/${PF}/NEWS -}