summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Bauman <bman@gentoo.org>2020-07-03 22:22:37 -0400
committerAaron Bauman <bman@gentoo.org>2020-07-03 22:24:06 -0400
commit17ed872c6334185fdebf3d60b2aa219fc1fe7516 (patch)
tree12e8c60e602df8f5c29d00e701eab0a16ede9847 /net-misc
parentmedia-plugins/kodi-pvr-nextpvr: 3.3.21 version bump (diff)
downloadgentoo-17ed872c6334185fdebf3d60b2aa219fc1fe7516.tar.gz
gentoo-17ed872c6334185fdebf3d60b2aa219fc1fe7516.tar.bz2
gentoo-17ed872c6334185fdebf3d60b2aa219fc1fe7516.zip
*/*: drop last-rited py2 packages
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'net-misc')
-rw-r--r--net-misc/switzerland/Manifest1
-rw-r--r--net-misc/switzerland/files/Makefile12
-rw-r--r--net-misc/switzerland/metadata.xml17
-rw-r--r--net-misc/switzerland/switzerland-0.1.0.ebuild44
4 files changed, 0 insertions, 74 deletions
diff --git a/net-misc/switzerland/Manifest b/net-misc/switzerland/Manifest
deleted file mode 100644
index b5c210e04107..000000000000
--- a/net-misc/switzerland/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST switzerland-0.1.0.tgz 592922 BLAKE2B dc0a7557d48bb8004c07468b47d026048662a3b2c743eddc29e37ffe3c839e28d5b12957a6a50d0355be7e5f946556d9827652bf7899cfd40cda0c57db115cc1 SHA512 3a5474c005bf45cddf8eede7c1e2faa5855bf9017f5c732555cfe2c8b7b82381ea25c2ada000a9945a330ff3af19f1e861a11508ff057c81a78eab53de1d0cdb
diff --git a/net-misc/switzerland/files/Makefile b/net-misc/switzerland/files/Makefile
deleted file mode 100644
index c1e582d56dc4..000000000000
--- a/net-misc/switzerland/files/Makefile
+++ /dev/null
@@ -1,12 +0,0 @@
-SRC = FastCollector.c
-OBJ = ${SRC:.c=.o}
-
-LIBS = -lpcap
-
-all: FastCollector
-
-.c.o:
- $(CC) -c $(CFLAGS) $<
-
-FastCollector: $(OBJ)
- $(CC) -o $@ $(CFLAGS) $(LDFLAGS) $(OBJ) $(LIBS)
diff --git a/net-misc/switzerland/metadata.xml b/net-misc/switzerland/metadata.xml
deleted file mode 100644
index e77e27bbace0..000000000000
--- a/net-misc/switzerland/metadata.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>netmon@gentoo.org</email>
- <name>Gentoo network monitoring and analysis project</name>
- </maintainer>
- <longdescription lang="en">
- Switzerland is an open source software tool for testing the integrity of
- data communications over networks, ISPs and firewalls. It will spot IP
- packets which are forged or modified between clients, inform you, and
- give you copies of the modified packets.
- </longdescription>
- <upstream>
- <remote-id type="sourceforge">switzerland</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/net-misc/switzerland/switzerland-0.1.0.ebuild b/net-misc/switzerland/switzerland-0.1.0.ebuild
deleted file mode 100644
index 10925c2dacf4..000000000000
--- a/net-misc/switzerland/switzerland-0.1.0.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 toolchain-funcs
-
-DESCRIPTION="Network Testing Tool"
-HOMEPAGE="http://www.eff.org/testyourisp/switzerland/"
-SRC_URI="mirror://sourceforge/switzerland/${P}.tgz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-DEPEND="net-libs/libpcap"
-RDEPEND=${DEPEND}
-
-src_prepare() {
- cp "${FILESDIR}"/Makefile switzerland/client
-
- sed -i \
- -e "s/= find_binary()/= dest/" \
- setup.py
- distutils-r1_src_prepare
-}
-
-src_compile() {
- cd switzerland/client
- emake CC=$(tc-getCC)
-
- cd "${S}"
- distutils-r1_src_compile
-}
-
-src_install() {
- distutils-r1_src_install
-
- dodoc BUGS.txt CREDITS
-
- keepdir /var/log/switzerland-pcaps
- keepdir /var/log/switzerland
-}