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 7C5671382C5 for ; Sun, 10 Jan 2021 14:32:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 984CBE0BC3; Sun, 10 Jan 2021 14:32:50 +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 7F404E0BC3 for ; Sun, 10 Jan 2021 14:32:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 58AE4335DE6 for ; Sun, 10 Jan 2021 14:32:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BA31C309 for ; Sun, 10 Jan 2021 14:32:47 +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: <1610289158.f6c0f26ba4442eede790f543daf166c743d0c891.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/splint/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/splint/splint-3.1.2-r1.ebuild X-VCS-Directories: dev-util/splint/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f6c0f26ba4442eede790f543daf166c743d0c891 X-VCS-Branch: master Date: Sun, 10 Jan 2021 14:32:47 +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: 9f1019fc-606f-408f-a1a8-72a9816e027b X-Archives-Hash: efb0d20dc46b25a149532bba92c098b8 commit: f6c0f26ba4442eede790f543daf166c743d0c891 Author: Sam James gentoo org> AuthorDate: Sun Jan 10 14:32:38 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jan 10 14:32:38 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6c0f26b dev-util/splint: cleanup old Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> dev-util/splint/splint-3.1.2-r1.ebuild | 46 ---------------------------------- 1 file changed, 46 deletions(-) diff --git a/dev-util/splint/splint-3.1.2-r1.ebuild b/dev-util/splint/splint-3.1.2-r1.ebuild deleted file mode 100644 index 8607d4e30a5..00000000000 --- a/dev-util/splint/splint-3.1.2-r1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit autotools - -DESCRIPTION="Check C programs for vulnerabilities and programming mistakes" -HOMEPAGE="http://lclint.cs.virginia.edu/" -SRC_URI="http://www.splint.org/downloads/${P}.src.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 sparc x86" - -DEPEND=" - sys-devel/flex -" - -src_prepare() { - # verbose compiler calls - sed -i -e '/Compiling/d' src/Makefile.am || die - # automake complains about trailing \ - sed -i -e '1600d' test/Makefile.am || die - # do not install these header files twice - sed -i -e '/\$(UnixHeaders)/s|stdio.h stdlib.h||g' lib/Makefile.am || die - - eautoreconf -} - -src_configure() { - # We do not need bison/yacc at all here - # We definitely need libfl - BISON=no LEXLIB=-lfl econf -} - -src_compile() { - local subdir - # skip test/ subdir - for subdir in src lib imports doc; do - emake -j1 -C ${subdir} - done -} - -src_test() { - emake -C test -}