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 4DEAC15808B for ; Sun, 27 Feb 2022 22:45:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7C8AAE07BA; Sun, 27 Feb 2022 22:45:24 +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 380A0E07BA for ; Sun, 27 Feb 2022 22:45:24 +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 829083435A4 for ; Sun, 27 Feb 2022 22:45:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3ECF5287 for ; Sun, 27 Feb 2022 22:45:17 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1646001904.e967f66d4f288bdb573bed79059a0a3cc4f8f333.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/min-cscope/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/min-cscope/min-cscope-16.1.0.ebuild X-VCS-Directories: dev-util/min-cscope/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e967f66d4f288bdb573bed79059a0a3cc4f8f333 X-VCS-Branch: master Date: Sun, 27 Feb 2022 22:45:17 +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: f4d5e4e9-8d87-4106-ac17-213468fea80e X-Archives-Hash: a41ac90c432d6c793397b869c3231e42 commit: e967f66d4f288bdb573bed79059a0a3cc4f8f333 Author: Sam James gentoo org> AuthorDate: Sun Feb 27 22:44:20 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Feb 27 22:45:04 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e967f66d dev-util/min-cscope: drop 16.1.0 Closes: https://bugs.gentoo.org/834131 Signed-off-by: Sam James gentoo.org> dev-util/min-cscope/min-cscope-16.1.0.ebuild | 35 ---------------------------- 1 file changed, 35 deletions(-) diff --git a/dev-util/min-cscope/min-cscope-16.1.0.ebuild b/dev-util/min-cscope/min-cscope-16.1.0.ebuild deleted file mode 100644 index 2648a185f329..000000000000 --- a/dev-util/min-cscope/min-cscope-16.1.0.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils flag-o-matic - -DESCRIPTION="Interactively examine a C program" -HOMEPAGE="https://sourceforge.net/projects/kscope/" -SRC_URI="mirror://sourceforge/kscope/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="debug" - -S=${WORKDIR}/${PN} - -DOCS=( AUTHORS README{,.cscope} TODO ) - -PATCHES=( - "${FILESDIR}/${P}-tinfo.patch" #678886 -) - -src_prepare() { - cmake-utils_src_prepare - - echo 'INSTALL(TARGETS min-cscope RUNTIME DESTINATION bin)' \ - >> src/CMakeLists.txt || die -} - -src_configure() { - append-flags -I"${S}/sort" - cmake-utils_src_configure -}