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 DB9C5138334 for ; Sat, 23 Nov 2019 18:19:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DBDC1E07FA; Sat, 23 Nov 2019 18:19:05 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 A324DE0801 for ; Sat, 23 Nov 2019 18:19:05 +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 D366834D27B for ; Sat, 23 Nov 2019 18:19:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 61AD58C0 for ; Sat, 23 Nov 2019 18:19:01 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1574533133.62b2df73b1e9d9f70101f00443c84dce79475e40.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tkcon/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-tcltk/tkcon/tkcon-2.5.ebuild X-VCS-Directories: dev-tcltk/tkcon/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 62b2df73b1e9d9f70101f00443c84dce79475e40 X-VCS-Branch: master Date: Sat, 23 Nov 2019 18:19:01 +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: 750bae36-e8a6-4f4d-b6ed-a6253c2090a7 X-Archives-Hash: e3cce723260b8036b61125d3faee967b commit: 62b2df73b1e9d9f70101f00443c84dce79475e40 Author: Michał Górny gentoo org> AuthorDate: Sat Nov 23 18:14:27 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Nov 23 18:18:53 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62b2df73 dev-tcltk/tkcon: Drop EAPI 0 ebuild Signed-off-by: Michał Górny gentoo.org> dev-tcltk/tkcon/tkcon-2.5.ebuild | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/dev-tcltk/tkcon/tkcon-2.5.ebuild b/dev-tcltk/tkcon/tkcon-2.5.ebuild deleted file mode 100644 index dcf14a871f2..00000000000 --- a/dev-tcltk/tkcon/tkcon-2.5.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit eutils multilib - -DESCRIPTION="Tk GUI console" -HOMEPAGE="http://tkcon.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -KEYWORDS="~amd64 ~ppc ~x86" -SLOT="0" -IUSE="doc" - -DEPEND="dev-lang/tk" -RDEPEND="${DEPEND}" - -src_install() { - local tclver="$(echo 'puts $tcl_version' | tclsh)" - local instdir=/usr/$(get_libdir)/tcl${tclver}/${PN}2.5 - dodir ${instdir} - cp -pP pkgIndex.tcl tkcon.tcl "${D}"${instdir} || die - dodir /usr/bin - dosym ${instdir}/tkcon.tcl /usr/bin/tkcon - dodoc README.txt - if use doc; then - dohtml doc/* - fi -}