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 A525B158087 for ; Sat, 5 Feb 2022 21:02:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F14EE2BC003; Sat, 5 Feb 2022 21:02:30 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8A5DA2BC003 for ; Sat, 5 Feb 2022 21:02:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7A628342E6E for ; Sat, 5 Feb 2022 21:02:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0ED04250 for ; Sat, 5 Feb 2022 21:02:28 +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: <1644094934.f397f1d90b125dcef53e3bd090045be72989d2dd.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/dvtm/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/dvtm/dvtm-0.15-r4.ebuild X-VCS-Directories: app-misc/dvtm/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: f397f1d90b125dcef53e3bd090045be72989d2dd X-VCS-Branch: master Date: Sat, 5 Feb 2022 21:02:28 +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: 0d10d0c1-3212-4838-beab-a9e77df56e1d X-Archives-Hash: 7fdc5ef854994de6bac3c5433e9cf29c commit: f397f1d90b125dcef53e3bd090045be72989d2dd Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jan 9 18:52:06 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Feb 5 21:02:14 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f397f1d9 app-misc/dvtm: Drop 0.15-r4 ~arch version overshadowed by arch version. Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> app-misc/dvtm/dvtm-0.15-r4.ebuild | 62 --------------------------------------- 1 file changed, 62 deletions(-) diff --git a/app-misc/dvtm/dvtm-0.15-r4.ebuild b/app-misc/dvtm/dvtm-0.15-r4.ebuild deleted file mode 100644 index 33e5a76f88a3..000000000000 --- a/app-misc/dvtm/dvtm-0.15-r4.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit savedconfig toolchain-funcs - -DESCRIPTION="Dynamic virtual terminal manager" -HOMEPAGE="https://www.brain-dump.org/projects/dvtm/" - -if [[ ${PV} == *9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://repo.or.cz/dvtm.git" -else - SRC_URI="https://www.brain-dump.org/projects/${PN}/${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~x86" -fi - -LICENSE="MIT" -SLOT="0" - -COMMON_DEPEND="sys-libs/ncurses:=[unicode(+)]" -RDEPEND="${COMMON_DEPEND} - !>=sys-libs/ncurses-6.1 -" -DEPEND="${COMMON_DEPEND} - virtual/pkgconfig -" - -PATCHES=( - "${FILESDIR}"/${PN}-0.15-gentoo.patch -) - -src_prepare() { - default - - restore_config config.h -} - -src_compile() { - tc-export PKG_CONFIG - local msg="" - use savedconfig && msg=", please check the configfile" - emake CC=$(tc-getCC) ${PN} -} - -src_install() { - emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" STRIP=true install - - insinto /usr/share/${PN} - newins config.h ${PF}.config.h - - dodoc README.md - - save_config config.h -} - -pkg_postinst() { - elog "This ebuild has support for user defined configs" - elog "Please read this ebuild for more details and re-emerge as needed" - elog "if you want to add or remove functionality for ${PN}" -}