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 D4153138334 for ; Sat, 12 Oct 2019 07:01:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C79C7E08B1; Sat, 12 Oct 2019 07:01:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 B04BEE08BB for ; Sat, 12 Oct 2019 07:01:51 +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 6811434BBF3 for ; Sat, 12 Oct 2019 07:01:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CBE8B83F for ; Sat, 12 Oct 2019 07:01:44 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1570863663.3627f4cb4a55060d8e4dc86f454db7b3cca724f2.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cproto/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/cproto/Manifest dev-util/cproto/cproto-4.7e.ebuild X-VCS-Directories: dev-util/cproto/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3627f4cb4a55060d8e4dc86f454db7b3cca724f2 X-VCS-Branch: master Date: Sat, 12 Oct 2019 07:01:44 +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: 14194253-35d4-4764-91aa-e7e96cddde9f X-Archives-Hash: 74d79b8413917562da635ee19c7697cb commit: 3627f4cb4a55060d8e4dc86f454db7b3cca724f2 Author: Michał Górny gentoo org> AuthorDate: Sat Oct 12 07:01:03 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Oct 12 07:01:03 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3627f4cb dev-util/cproto: Drop old (EAPI 0) Signed-off-by: Michał Górny gentoo.org> dev-util/cproto/Manifest | 1 - dev-util/cproto/cproto-4.7e.ebuild | 25 ------------------------- 2 files changed, 26 deletions(-) diff --git a/dev-util/cproto/Manifest b/dev-util/cproto/Manifest index 887587519c6..c20f2107766 100644 --- a/dev-util/cproto/Manifest +++ b/dev-util/cproto/Manifest @@ -1,2 +1 @@ -DIST cproto-4.7e.tgz 145919 BLAKE2B 97e3b3bf3b282299d177bf2ea8548f91f8dc6432671b93187d91fc00ca02807f5d3a370cc563cbb46fa163f23fe5ff034d9e148e6621eaf87f7e9658e925c6fc SHA512 c9a1da8e19d85600109127e2de079cff5e66e51f0f3220f9a69e72e720ed6d745ef456b3a645bbb4755073c6ce59411d0137d9012da545736e92380f41c83985 DIST cproto-4.7o.tgz 168915 BLAKE2B a79d22014140531c263d0b389c50c263b13bf2e9bd2142da54ec712ec13f122539d92fbc3e40a52d52802e17e5b96a39c73e0ea3dd3c189e0e4563cf7b3feea3 SHA512 9a731be8bfa3f0da9c8a7c04a1c9bcf5ca52897325fa868306c35d818fc54348f83d93e2b2d792a2f682f935fb42d928d2828b1ff7fe3287a1806852e180a9f3 diff --git a/dev-util/cproto/cproto-4.7e.ebuild b/dev-util/cproto/cproto-4.7e.ebuild deleted file mode 100644 index 9c0efe4cced..00000000000 --- a/dev-util/cproto/cproto-4.7e.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -DESCRIPTION="Generate C function prototypes from C source code" -HOMEPAGE="https://invisible-island.net/cproto/" -SRC_URI="ftp://ftp.invisible-island.net/cproto//${P}.tgz" - -LICENSE="public-domain" -SLOT="0" -KEYWORDS="~alpha amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="" - -DEPEND="sys-devel/flex - virtual/yacc" -RDEPEND="" - -S=${WORKDIR}/${P/./_} - -src_install() { - dobin cproto || die - doman cproto.1 - dodoc README CHANGES -}