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 26ADB13835A for ; Mon, 22 Jun 2020 22:40:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 46490E0950; Mon, 22 Jun 2020 22:40:33 +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 2DE17E08B1 for ; Mon, 22 Jun 2020 22:40:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 45C2A34F051 for ; Mon, 22 Jun 2020 22:40:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 09DCE2AE for ; Mon, 22 Jun 2020 22:40:05 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1592865519.590d2be37d95087ab02b47688b0270657696e6e0.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/libtermcap-compat/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/libtermcap-compat/libtermcap-compat-2.0.8-r3.ebuild X-VCS-Directories: sys-libs/libtermcap-compat/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 590d2be37d95087ab02b47688b0270657696e6e0 X-VCS-Branch: master Date: Mon, 22 Jun 2020 22:40:05 +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: fae119b0-b0d0-400e-8c4a-2a162fc774af X-Archives-Hash: 1e5b3e8da659a1f180407abafcf4c94e commit: 590d2be37d95087ab02b47688b0270657696e6e0 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Jun 22 22:38:18 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Jun 22 22:38:39 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=590d2be3 sys-libs/libtermcap-compat: Drop 2.0.8-r3 Closes: https://bugs.gentoo.org/724176 Package-Manager: Portage-2.3.101, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner gentoo.org> .../libtermcap-compat-2.0.8-r3.ebuild | 49 ---------------------- 1 file changed, 49 deletions(-) diff --git a/sys-libs/libtermcap-compat/libtermcap-compat-2.0.8-r3.ebuild b/sys-libs/libtermcap-compat/libtermcap-compat-2.0.8-r3.ebuild deleted file mode 100644 index 950f1a6bc63..00000000000 --- a/sys-libs/libtermcap-compat/libtermcap-compat-2.0.8-r3.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -# we only want this for binary-only packages, so we will only be installing -# the lib used at runtime; no headers and no files to link against - -EAPI="4" - -inherit eutils multilib toolchain-funcs - -PATCHVER="2" - -MY_P="termcap-${PV}" -DESCRIPTION="Compatibility package for old termcap-based programs" -HOMEPAGE="http://www.catb.org/~esr/terminfo/" -SRC_URI="http://www.catb.org/~esr/terminfo/termtypes.tc.gz - mirror://gentoo/${MY_P}.tar.bz2 - mirror://gentoo/${MY_P}-patches-${PATCHVER}.tar.bz2" - -LICENSE="GPL-2 LGPL-2 BSD" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm hppa ppc sparc x86" -IUSE="" - -S=${WORKDIR}/${MY_P} - -src_prepare() { - EPATCH_SOURCE="${WORKDIR}/patch" - EPATCH_SUFFIX="patch" - epatch "${EPATCH_SOURCE}" - - cd "${WORKDIR}" - mv termtypes.tc termcap || die - epatch "${EPATCH_SOURCE}"/tc.file -} - -src_configure() { - tc-export CC -} - -src_install() { - dolib.so libtermcap.so.${PV} - dosym libtermcap.so.${PV} /usr/$(get_libdir)/libtermcap.so.2 - - insinto /etc - doins "${WORKDIR}"/termcap - - dodoc ChangeLog README -}