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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5AF82138334 for ; Thu, 5 Sep 2019 10:49:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 830C5E079E; Thu, 5 Sep 2019 10:49:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 675FAE079E for ; Thu, 5 Sep 2019 10:49:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2DD3434AC20 for ; Thu, 5 Sep 2019 10:49:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 04DB7763 for ; Thu, 5 Sep 2019 10:49:20 +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: <1567680539.d3e12893fa4996ead15d22db3dd6794ebe36873f.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/jove/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/jove/jove-4.16.0.73.ebuild X-VCS-Directories: app-editors/jove/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: d3e12893fa4996ead15d22db3dd6794ebe36873f X-VCS-Branch: master Date: Thu, 5 Sep 2019 10:49:20 +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: e079dbee-3454-4fc2-985a-7d18a5782132 X-Archives-Hash: cf6a761baaf9df82567926087931c322 commit: d3e12893fa4996ead15d22db3dd6794ebe36873f Author: Ulrich Müller gentoo org> AuthorDate: Thu Sep 5 10:48:26 2019 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Thu Sep 5 10:48:59 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3e12893 app-editors/jove: Remove old. Package-Manager: Portage-2.3.75, Repoman-2.3.17 Signed-off-by: Ulrich Müller gentoo.org> app-editors/jove/jove-4.16.0.73.ebuild | 51 ---------------------------------- 1 file changed, 51 deletions(-) diff --git a/app-editors/jove/jove-4.16.0.73.ebuild b/app-editors/jove/jove-4.16.0.73.ebuild deleted file mode 100644 index 72d2a677cad..00000000000 --- a/app-editors/jove/jove-4.16.0.73.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit eutils toolchain-funcs - -DESCRIPTION="Jonathan's Own Version of Emacs, a light emacs-like editor without LISP bindings" -HOMEPAGE="ftp://ftp.cs.toronto.edu/cs/ftp/pub/hugh/jove-dev/" -SRC_URI="ftp://ftp.cs.toronto.edu/cs/ftp/pub/hugh/jove-dev/${PN}${PV}.tgz" - -LICENSE="JOVE" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="doc" - -RDEPEND="sys-libs/ncurses" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -S="${WORKDIR}/${PN}${PV}" - -src_prepare() { - epatch "${FILESDIR}/${PN}-4.16.0.70.3.1-getline.patch" - epatch "${FILESDIR}/${P}-build.patch" - epatch "${FILESDIR}/${P}-sendmail.patch" - epatch "${FILESDIR}/${P}-doc.patch" -} - -src_compile() { - tc-export CC - - emake OPTFLAGS="${CFLAGS}" \ - SYSDEFS="-DSYSVR4 -D_XOPEN_SOURCE=500" \ - TERMCAPLIB="$("$(tc-getPKG_CONFIG)" --libs ncurses)" - - if use doc; then - # Full manual (*not* man page) - emake doc/jove.man - fi -} - -src_install() { - emake DESTDIR="${D}" install - keepdir /var/lib/jove/preserve - - dodoc README - if use doc; then - dodoc doc/jove.man - fi -}