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 0B6C0158020 for ; Sat, 24 Dec 2022 14:49:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 27709E0933; Sat, 24 Dec 2022 14:49:37 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EE8E6E0933 for ; Sat, 24 Dec 2022 14:49:36 +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 1E4E2340E5D for ; Sat, 24 Dec 2022 14:49:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 925727F4 for ; Sat, 24 Dec 2022 14:49:33 +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: <1671893285.511fb61b2b971592bda8f6e92e633ea3d833c927.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-r5.ebuild X-VCS-Directories: app-misc/dvtm/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 511fb61b2b971592bda8f6e92e633ea3d833c927 X-VCS-Branch: master Date: Sat, 24 Dec 2022 14:49:33 +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: 5bc47469-0c14-4846-bd15-aa39bcc3196b X-Archives-Hash: cefd7b0e9860a84f0b4e6536600921bd commit: 511fb61b2b971592bda8f6e92e633ea3d833c927 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Dec 22 08:18:50 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Dec 24 14:48:05 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=511fb61b app-misc/dvtm: drop 0.15-r5 Closes: https://bugs.gentoo.org/887661 Signed-off-by: Andreas Sturmlechner gentoo.org> app-misc/dvtm/dvtm-0.15-r5.ebuild | 62 --------------------------------------- 1 file changed, 62 deletions(-) diff --git a/app-misc/dvtm/dvtm-0.15-r5.ebuild b/app-misc/dvtm/dvtm-0.15-r5.ebuild deleted file mode 100644 index 2f8d0464fa4b..000000000000 --- a/app-misc/dvtm/dvtm-0.15-r5.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2022 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://github.com/martanne/dvtm - https://git.sr.ht/~martanne/dvtm - https://repo.or.cz/dvtm.git - " -else - SRC_URI="https://www.brain-dump.org/projects/${PN}/${P}.tar.gz" - KEYWORDS="amd64 arm ~arm64 ~riscv x86" -fi - -LICENSE="MIT" -SLOT="0" - -RDEPEND=">=sys-libs/ncurses-6.1:=[unicode(+)]" -DEPEND="${RDEPEND} - virtual/pkgconfig -" - -PATCHES=( - "${FILESDIR}"/${PN}-0.15-gentoo.patch - "${FILESDIR}"/${PN}-0.15-stop-installing-terminfo.patch -) - -src_prepare() { - default - - restore_config config.h -} - -src_compile() { - tc-export PKG_CONFIG - 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}" -}