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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0EF5215800F for ; Wed, 11 Jan 2023 08:32:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 17C1CE0C0B; Wed, 11 Jan 2023 08:32:17 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F15E6E0C0B for ; Wed, 11 Jan 2023 08:32:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EDADA340E85 for ; Wed, 11 Jan 2023 08:32:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 52FE3824 for ; Wed, 11 Jan 2023 08:32:14 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1673425894.ff574d5eed017309eaa6b5264874967bea9f87d4.sam@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: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ff574d5eed017309eaa6b5264874967bea9f87d4 X-VCS-Branch: master Date: Wed, 11 Jan 2023 08:32:14 +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: 53eb8fde-f2b4-4cf6-aa77-a23629704f91 X-Archives-Hash: 1281d6d64cd5576365dc6a285b2c408c commit: ff574d5eed017309eaa6b5264874967bea9f87d4 Author: Sam James gentoo org> AuthorDate: Wed Jan 11 08:29:43 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jan 11 08:31:34 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff574d5e net-analyzer/scapy: drop 9999 Signed-off-by: Sam James gentoo.org> net-analyzer/scapy/scapy-9999.ebuild | 44 ------------------------------------ 1 file changed, 44 deletions(-) diff --git a/net-analyzer/scapy/scapy-9999.ebuild b/net-analyzer/scapy/scapy-9999.ebuild deleted file mode 100644 index ffcb7962a604..000000000000 --- a/net-analyzer/scapy/scapy-9999.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{8..10} ) -DISTUTILS_USE_SETUPTOOLS=rdepend -inherit distutils-r1 git-r3 readme.gentoo-r1 - -DESCRIPTION="A Python interactive packet manipulation program for mastering the network" -HOMEPAGE="https://scapy.net/ https://github.com/secdev/scapy" -EGIT_REPO_URI="https://github.com/secdev/${PN}" -S="${WORKDIR}"/${P/_/} - -LICENSE="GPL-2" -SLOT="0" - -DOC_CONTENTS=" -Scapy has optional support for the following packages: - - dev-python/cryptography - dev-python/ipython - dev-python/matplotlib - dev-python/pyx - media-gfx/graphviz - net-analyzer/tcpdump - net-analyzer/tcpreplay - net-libs/libpcap - virtual/imagemagick-tools - - See also ""${EPREFIX}/usr/share/doc/${PF}/installation.rst"" -" - -src_prepare() { - echo ${PV/_/} > ${PN}/VERSION || die - - distutils-r1_src_prepare -} - -src_install() { - distutils-r1_src_install - dodoc -r doc/${PN}/* - DISABLE_AUTOFORMATTING=plz readme.gentoo_create_doc -}