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 D174E158020 for ; Sat, 24 Dec 2022 14:49:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 272F5E0932; 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 E5C31E0932 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 184DE340E5C 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 7ED617F2 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.3403b0d5444420aa47d6c02747dea2b47fa1a9eb.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/splitvt/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/splitvt/splitvt-1.6.6-r3.ebuild X-VCS-Directories: app-misc/splitvt/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 3403b0d5444420aa47d6c02747dea2b47fa1a9eb 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: b8dbf9c7-f3ae-4de3-9092-daa2c59b7de8 X-Archives-Hash: 31331f2aa91841e4eb0ea607870c9b74 commit: 3403b0d5444420aa47d6c02747dea2b47fa1a9eb Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Dec 21 16:03:18 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=3403b0d5 app-misc/splitvt: drop 1.6.6-r3 Closes: https://bugs.gentoo.org/887673 Signed-off-by: Andreas Sturmlechner gentoo.org> app-misc/splitvt/splitvt-1.6.6-r3.ebuild | 51 -------------------------------- 1 file changed, 51 deletions(-) diff --git a/app-misc/splitvt/splitvt-1.6.6-r3.ebuild b/app-misc/splitvt/splitvt-1.6.6-r3.ebuild deleted file mode 100644 index 43359996a8e2..000000000000 --- a/app-misc/splitvt/splitvt-1.6.6-r3.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit toolchain-funcs - -MY_P="${P/-/_}" -DEB_PL="7" - -DESCRIPTION="Splitting terminals into two shells" -HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" -SRC_URI=" - https://slouken.libsdl.org/projects/splitvt/${P}.tar.gz - mirror://debian/pool/main/s/splitvt/${MY_P}-${DEB_PL}.diff.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ia64 ppc sparc x86" - -DEPEND="sys-libs/ncurses:0=" -RDEPEND="${DEPEND}" - -PATCHES=( - "${WORKDIR}"/${MY_P}-${DEB_PL}.diff - "${FILESDIR}"/${PV}-ldflags.patch -) - -DOCS=( ANNOUNCE BLURB CHANGES NOTES README TODO ) - -src_prepare() { - default - sed -i \ - -e "s:/usr/local/bin:${D}/usr/bin:g" \ - -e "s:/usr/local/man/:${D}/usr/share/man/:g" config.c || die -} - -src_configure() { - # upstream has their own weirdo configure script... - ./configure || die "configure failed" - sed -i \ - -e "s:-O2:${CFLAGS}:" \ - -e "s:^CC = gcc:CC = $(tc-getCC):" Makefile || die -} - -src_install() { - dodir /usr/bin /usr/share/man/man1 - default - fperms 755 /usr/bin/xsplitvt - doman splitvt.1 -}