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 D56F6138359 for ; Thu, 16 Jul 2020 13:07:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 20F7DE083E; Thu, 16 Jul 2020 13:07:03 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 EFB50E083E for ; Thu, 16 Jul 2020 13:07:02 +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 0210634EE1B for ; Thu, 16 Jul 2020 13:07:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 003062DD for ; Thu, 16 Jul 2020 13:06:59 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1594904816.e5769ea2c5d6bc6b2461c79882b126e907f8173b.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libcrafter/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libcrafter/libcrafter-9999.ebuild X-VCS-Directories: net-libs/libcrafter/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: e5769ea2c5d6bc6b2461c79882b126e907f8173b X-VCS-Branch: master Date: Thu, 16 Jul 2020 13:06:59 +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: 7637e6f8-49b9-4d0d-a88b-26ae8fdc361a X-Archives-Hash: 841ac18a78b83cf33f3b633ff3b8cdbd commit: e5769ea2c5d6bc6b2461c79882b126e907f8173b Author: Jeroen Roovers gentoo org> AuthorDate: Thu Jul 16 12:58:55 2020 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Thu Jul 16 13:06:56 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5769ea2 net-libs/libcrafter: Update live ebuild Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Jeroen Roovers gentoo.org> net-libs/libcrafter/libcrafter-9999.ebuild | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/net-libs/libcrafter/libcrafter-9999.ebuild b/net-libs/libcrafter/libcrafter-9999.ebuild index 1aac305c3cc..16291e48909 100644 --- a/net-libs/libcrafter/libcrafter-9999.ebuild +++ b/net-libs/libcrafter/libcrafter-9999.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -inherit autotools eutils git-r3 ltprune +EAPI=7 +inherit autotools git-r3 -DESCRIPTION="a high level library for C++ designed to make easier the creation and decoding of network packets" +DESCRIPTION="A high level C++ network packet sniffing and crafting library" HOMEPAGE="https://github.com/pellegre/libcrafter" EGIT_REPO_URI="https://github.com/pellegre/${PN}" @@ -19,10 +19,13 @@ RDEPEND=" DEPEND=" ${RDEPEND} " - +PATCHES=( + "${FILESDIR}"/${PN}-0.3_p20171019-libpcap.patch +) S=${WORKDIR}/${P}/${PN} src_prepare() { + default eautoreconf } @@ -33,5 +36,7 @@ src_configure() { src_install() { default - prune_libtool_files + dodoc "${WORKDIR}"/${P}/README + + find "${ED}" -name '*.la' -delete || die }