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 BA9C01382C5 for ; Sat, 17 Feb 2018 08:40:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C452DE0918; Sat, 17 Feb 2018 08:40:02 +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 A256DE0918 for ; Sat, 17 Feb 2018 08:40:02 +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 8BD9B335C2F for ; Sat, 17 Feb 2018 08:40:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1A6881FE for ; Sat, 17 Feb 2018 08:40:00 +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: <1518856798.5fb6919fb2c68d8dd96cf94a5640785edb9365f6.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/scapy/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/scapy/scapy-9999.ebuild X-VCS-Directories: net-analyzer/scapy/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 5fb6919fb2c68d8dd96cf94a5640785edb9365f6 X-VCS-Branch: master Date: Sat, 17 Feb 2018 08:40:00 +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: e0d3021b-fad1-4ff2-a518-14b42c359aa0 X-Archives-Hash: 56d369ca38a9aeee371b78c9a3c075fe commit: 5fb6919fb2c68d8dd96cf94a5640785edb9365f6 Author: Jeroen Roovers gentoo org> AuthorDate: Sat Feb 17 08:39:16 2018 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Sat Feb 17 08:39:58 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fb6919f net-analyzer/scapy: Update live ebuild. Package-Manager: Portage-2.3.24, Repoman-2.3.6 net-analyzer/scapy/scapy-9999.ebuild | 46 +++++++++++++++++++++++------------- 1 file changed, 30 insertions(+), 16 deletions(-) diff --git a/net-analyzer/scapy/scapy-9999.ebuild b/net-analyzer/scapy/scapy-9999.ebuild index 7d971be6c7c..fd432de87da 100644 --- a/net-analyzer/scapy/scapy-9999.ebuild +++ b/net-analyzer/scapy/scapy-9999.ebuild @@ -1,28 +1,42 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 - -PYTHON_COMPAT=( python2_7 ) - -inherit eutils distutils-r1 git-r3 +EAPI=6 +PYTHON_COMPAT=( python{2_7,3_{4,5,6}} ) +inherit eutils distutils-r1 git-r3 readme.gentoo-r1 DESCRIPTION="A Python interactive packet manipulation program for mastering the network" -HOMEPAGE="http://www.secdev.org/projects/scapy/" +HOMEPAGE="http://www.secdev.org/projects/scapy/ https://github.com/secdev/scapy" EGIT_REPO_URI="https://github.com/secdev/${PN}" LICENSE="GPL-2" SLOT="0" KEYWORDS="" -IUSE="gnuplot pyx crypt graphviz imagemagick visual tcpreplay" - RDEPEND=" net-analyzer/tcpdump - gnuplot? ( dev-python/gnuplot-py[${PYTHON_USEDEP}] ) - pyx? ( dev-python/pyx[${PYTHON_USEDEP}] ) - crypt? ( dev-python/pycrypto[${PYTHON_USEDEP}] ) - graphviz? ( media-gfx/graphviz ) - imagemagick? ( virtual/imagemagick-tools ) - visual? ( dev-python/visual ) - tcpreplay? ( net-analyzer/tcpreplay ) " +S=${WORKDIR}/${P/_/} +DOC_CONTENTS=" +Scapy has optional support for the following packages: + + dev-python/cryptography + dev-python/gnuplot-py + dev-python/pyx + dev-python/visual + media-gfx/graphviz + net-analyzer/tcpreplay + virtual/imagemagick-tools + + See also ${EPREFIX}/usr/share/doc/${PF}/installation.rst +" + +src_prepare() { + default + echo ${PV/_/} > ${PN}/VERSION +} + +src_install() { + default + dodoc -r doc/${PN}/* + DISABLE_AUTOFORMATTING=plz readme.gentoo_create_doc +}