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 78604138334 for ; Thu, 7 Jun 2018 19:22:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A466AE0B61; Thu, 7 Jun 2018 19:22: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 720CAE0B40 for ; Thu, 7 Jun 2018 19:22:50 +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 210BF335CD0 for ; Thu, 7 Jun 2018 19:22:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 24EE72D7 for ; Thu, 7 Jun 2018 19:22:46 +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: <1528399302.c5b74cf344eb1b0c380c565130054d957c2fffd9.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/dnscap/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/dnscap/dnscap-20130814.ebuild X-VCS-Directories: net-dns/dnscap/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: c5b74cf344eb1b0c380c565130054d957c2fffd9 X-VCS-Branch: master Date: Thu, 7 Jun 2018 19:22:46 +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-Archives-Salt: d16056eb-934a-41af-9703-3f14e45f9fce X-Archives-Hash: e06d92ce08669e7c1b6aed16de1e3e7c commit: c5b74cf344eb1b0c380c565130054d957c2fffd9 Author: Michael Mair-Keimberger gmail com> AuthorDate: Sat Jun 2 20:55:20 2018 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Thu Jun 7 19:21:42 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5b74cf3 net-dns/dnscap: EAPI=7, improve ebuild, fix HTTPS Closes: https://github.com/gentoo/gentoo/pull/8697 net-dns/dnscap/dnscap-20130814.ebuild | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/net-dns/dnscap/dnscap-20130814.ebuild b/net-dns/dnscap/dnscap-20130814.ebuild index baed5d54266..229ade9c0a2 100644 --- a/net-dns/dnscap/dnscap-20130814.ebuild +++ b/net-dns/dnscap/dnscap-20130814.ebuild @@ -1,12 +1,10 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 -inherit eutils - -DESCRIPTION="dnscap is a network capture utility designed specifically for DNS traffic" -HOMEPAGE="http://dnscap.dns-oarc.net/" +DESCRIPTION="network capture utility designed specifically for DNS traffic" +HOMEPAGE="https://dnscap.dns-oarc.net/" ## github commit tarball MY_GIT_COMMIT="727ed7d5e46625abc2c8d988689a300589e948b6" @@ -23,7 +21,4 @@ IUSE="" RDEPEND="net-libs/libpcap" DEPEND="${RDEPEND}" -src_prepare() { - ## adds DESTDIR to install target - epatch "${FILESDIR}/${P}.install.patch" -} +PATCHES=( "${FILESDIR}/${P}.install.patch" )