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 B4A8A1382C5 for ; Sat, 28 Nov 2020 18:37:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D3759E07D7; Sat, 28 Nov 2020 18:37:26 +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 B670CE077F for ; Sat, 28 Nov 2020 18:37:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 3D66B34157B for ; Sat, 28 Nov 2020 18:37:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B73E7468 for ; Sat, 28 Nov 2020 18:37:23 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1606588633.43c3ae78b3f684a18aa8308319d21fc6cfd83f82.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/peg/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/peg/Manifest dev-util/peg/peg-0.1.15-r1.ebuild X-VCS-Directories: dev-util/peg/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 43c3ae78b3f684a18aa8308319d21fc6cfd83f82 X-VCS-Branch: master Date: Sat, 28 Nov 2020 18:37:23 +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: ff2a2ec2-c45e-4537-8028-93c9b00a412c X-Archives-Hash: 0546395e729c5512a8af5dac57724e97 commit: 43c3ae78b3f684a18aa8308319d21fc6cfd83f82 Author: Aaron Bauman gentoo org> AuthorDate: Sat Nov 28 17:49:51 2020 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Sat Nov 28 18:37:13 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43c3ae78 dev-util/peg: drop old Signed-off-by: Aaron Bauman gentoo.org> dev-util/peg/Manifest | 1 - dev-util/peg/peg-0.1.15-r1.ebuild | 48 --------------------------------------- 2 files changed, 49 deletions(-) diff --git a/dev-util/peg/Manifest b/dev-util/peg/Manifest index 4341fd81883..89cfdb27918 100644 --- a/dev-util/peg/Manifest +++ b/dev-util/peg/Manifest @@ -1,2 +1 @@ -DIST peg-0.1.15.tar.gz 56522 BLAKE2B cfc13761d4f3de3e4906abefc04fb732e7f30e0a1eb70dcab79de6001434866329cb4263fba68a5c8aac9dd895805d0de43dafa5a9e382c4c2e12fe90189676e SHA512 70b67d57c866c24cc9ceaf029e95bacba56def7ccb289233e3816c1f6f1f210dd8a729446df94d0424b5946959dbf9a33f81a5a95f7563a9dca460d6e2320018 DIST peg-0.1.18.tar.gz 57776 BLAKE2B 3266db2009073ee95a7fe65f3969b06001669dca095a8b77cbef3293557f9919872b44b348ff3de53cf8a132fd414c265bf0da3f77f0da0391d6d53cf4ab9217 SHA512 ca2fb9088bf87955adf6f883370ddb7d5f6f3cae3605a871094317205a124cce4f7b9f83cf4662cb470e2c5a6977608b456eb1fad98022d7e40fc384d1fec0f8 diff --git a/dev-util/peg/peg-0.1.15-r1.ebuild b/dev-util/peg/peg-0.1.15-r1.ebuild deleted file mode 100644 index f9bd88d83f9..00000000000 --- a/dev-util/peg/peg-0.1.15-r1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit toolchain-funcs - -DESCRIPTION="Recursive-descent parser generators for C" -HOMEPAGE="http://piumarta.com/software/peg/" -SRC_URI="http://piumarta.com/software/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" - -# FIXME: tests don't respect {C,LD}FLAGS and build stuff in runtime. -RESTRICT="test" - -src_prepare() { - sed -i \ - -e '/strip/d' \ - -e '/^CFLAGS/d' \ - -e 's/$(CC) $(CFLAGS) -o/$(CC) $(CFLAGS) $(LDFLAGS) -o/g' \ - Makefile || die "sed failed" -} - -src_compile() { - emake \ - CC="$(tc-getCC)" \ - CFLAGS="${CFLAGS}" \ - LDFLAGS="${LDFLAGS}" -} - -src_install() { - dodir "/usr/bin" - emake -j1 \ - ROOT="${D}" \ - PREFIX="/usr" \ - install - rm -rf "${D}/usr/man" || die "rm failed" - doman src/${PN}.1 -} - -src_test() { - emake check - emake test -}