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 945521382C5 for ; Sat, 17 Feb 2018 09:12:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AA6B0E08F2; Sat, 17 Feb 2018 09:12:38 +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 848F1E08F2 for ; Sat, 17 Feb 2018 09:12:38 +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 456E1335C2A for ; Sat, 17 Feb 2018 09:12:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CAE051C5 for ; Sat, 17 Feb 2018 09:12:35 +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: <1518858717.2799ecc02c10b7b314da4343690a2788d8feb9da.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-2.4.0_rc4.ebuild 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: 2799ecc02c10b7b314da4343690a2788d8feb9da X-VCS-Branch: master Date: Sat, 17 Feb 2018 09:12:35 +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: 3daca82d-b44f-4394-9500-ba9c1233d6d8 X-Archives-Hash: 972881edc8fcf004341d1d227d02da87 commit: 2799ecc02c10b7b314da4343690a2788d8feb9da Author: Jeroen Roovers gentoo org> AuthorDate: Sat Feb 17 09:11:57 2018 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Sat Feb 17 09:11:57 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2799ecc0 net-analyzer/scapy: Fix distutils-r1 usage, drop eutils. Package-Manager: Portage-2.3.24, Repoman-2.3.6 net-analyzer/scapy/scapy-2.4.0_rc4.ebuild | 6 +++--- net-analyzer/scapy/scapy-9999.ebuild | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/net-analyzer/scapy/scapy-2.4.0_rc4.ebuild b/net-analyzer/scapy/scapy-2.4.0_rc4.ebuild index 3a3a23c415e..1e5186715f7 100644 --- a/net-analyzer/scapy/scapy-2.4.0_rc4.ebuild +++ b/net-analyzer/scapy/scapy-2.4.0_rc4.ebuild @@ -3,7 +3,7 @@ EAPI=6 PYTHON_COMPAT=( python{2_7,3_{4,5,6}} ) -inherit eutils distutils-r1 readme.gentoo-r1 +inherit distutils-r1 readme.gentoo-r1 DESCRIPTION="A Python interactive packet manipulation program for mastering the network" HOMEPAGE="http://www.secdev.org/projects/scapy/ https://github.com/secdev/scapy" @@ -32,12 +32,12 @@ Scapy has optional support for the following packages: " src_prepare() { - default echo ${PV/_/} > ${PN}/VERSION + distutils-r1_src_prepare } src_install() { - default + distutils-r1_src_install dodoc -r doc/${PN}/* DISABLE_AUTOFORMATTING=plz readme.gentoo_create_doc } diff --git a/net-analyzer/scapy/scapy-9999.ebuild b/net-analyzer/scapy/scapy-9999.ebuild index bb55114b838..ab2b39168b2 100644 --- a/net-analyzer/scapy/scapy-9999.ebuild +++ b/net-analyzer/scapy/scapy-9999.ebuild @@ -3,7 +3,7 @@ EAPI=6 PYTHON_COMPAT=( python{2_7,3_{4,5,6}} ) -inherit eutils distutils-r1 git-r3 readme.gentoo-r1 +inherit 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/ https://github.com/secdev/scapy" @@ -32,12 +32,12 @@ Scapy has optional support for the following packages: " src_prepare() { - default echo ${PV/_/} > ${PN}/VERSION + distutils-r1_src_prepare } src_install() { - default + distutils-r1_src_install dodoc -r doc/${PN}/* DISABLE_AUTOFORMATTING=plz readme.gentoo_create_doc }