pybootd: drop unused package

Nothing seems to depend on this anymore, and it's Python 2-only.

BUG=chromium:1007152
TEST=CQ passes

Change-Id: I7846c0489dfe540ee33a6936c611bc19825d25c4
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/overlays/portage-stable/+/2580549
Reviewed-by: Hung-Te Lin <hungte@chromium.org>
Reviewed-by: Stimim Chen <stimim@chromium.org>
Commit-Queue: Mike Frysinger <vapier@chromium.org>
Tested-by: Mike Frysinger <vapier@chromium.org>
diff --git a/net-ftp/pybootd/Manifest b/net-ftp/pybootd/Manifest
deleted file mode 100644
index 37abdb0..0000000
--- a/net-ftp/pybootd/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pybootd-1.5.0_pre20110524131526.tar.gz 21855 SHA256 55c7f74f32ac160a47631d2ef2f2962c2ea6c3321a3a5ef4dc8aac8be252468d SHA512 113a2195d33ba5a0196810370fedd582204de5f8323ecec37e6209fc7074cde06ba80cb8113fd83be70685c8ea18c6167d751085ea9bee5c1ab34dab152eea71 WHIRLPOOL 967322a33ae6a39f137910af9aa11f58ce58c3e0739817678d071356fa9d2a973411ca56bcdc056c2e0be1b95c410d12ee06dbbeffc960a9bc9125ccfdafdec8
diff --git a/net-ftp/pybootd/files/pybootd-scripts.patch b/net-ftp/pybootd/files/pybootd-scripts.patch
deleted file mode 100644
index 71a001f..0000000
--- a/net-ftp/pybootd/files/pybootd-scripts.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-install the pybootd.py helper as pybootd otherwise the import gets confused
-
---- a/setup.py
-+++ b/setup.py
-@@ -18,13 +18,23 @@
- # License along with this library; if not, write to the Free Software
- # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- 
-+import shutil
- from distutils.core import setup
-+import distutils.command.install_scripts
- 
- 
- def _read(fname):
-     import os
-     return open(os.path.join(os.path.dirname(__file__), fname)).read()
- 
-+class script_rename(distutils.command.install_scripts.install_scripts):
-+
-+    def run(self):
-+        distutils.command.install_scripts.install_scripts.run(self)
-+        for script in self.get_outputs():
-+            if script.endswith('.py'):
-+                shutil.move(script, script[:-3])
-+
- setup(
-     name='pybootd',
-     version='1.5.0',
-@@ -56,5 +66,7 @@ setup(
-     package_data = {
-         '': ['etc/*.ini', 'etc/*.cfg'],
-     },
-+    cmdclass = {'install_scripts': script_rename},
-+    scripts = ['pybootd.py'],
-     long_description=_read('README.rst'),
- )
diff --git a/net-ftp/pybootd/metadata.xml b/net-ftp/pybootd/metadata.xml
deleted file mode 100644
index e256526..0000000
--- a/net-ftp/pybootd/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<herd>python</herd>
-	<upstream>
-		<remote-id type="pypi">pybootd</remote-id>
-		<remote-id type="github">eblot/pybootd</remote-id>
-	</upstream>
-</pkgmetadata>
diff --git a/net-ftp/pybootd/pybootd-1.5.0_pre20110524131526-r1.ebuild b/net-ftp/pybootd/pybootd-1.5.0_pre20110524131526-r1.ebuild
deleted file mode 120000
index 982588a..0000000
--- a/net-ftp/pybootd/pybootd-1.5.0_pre20110524131526-r1.ebuild
+++ /dev/null
@@ -1 +0,0 @@
-pybootd-1.5.0_pre20110524131526.ebuild
\ No newline at end of file
diff --git a/net-ftp/pybootd/pybootd-1.5.0_pre20110524131526.ebuild b/net-ftp/pybootd/pybootd-1.5.0_pre20110524131526.ebuild
deleted file mode 100644
index 19bfb7d..0000000
--- a/net-ftp/pybootd/pybootd-1.5.0_pre20110524131526.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/pybootd/pybootd-1.5.0_pre20110524131526.ebuild,v 1.1 2014/09/04 18:58:23 vapier Exp $
-
-EAPI="5"
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-GIT_HASH="7fd7d045fd4b4cdeebf4d07c1c5cd9649c2172b8"
-
-DESCRIPTION="Simplified BOOTP/DHCP/PXE/TFTP server"
-HOMEPAGE="https://github.com/eblot/pybootd"
-SRC_URI="https://github.com/eblot/pybootd/archive/${GIT_HASH:0:6}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-2+"
-SLOT="0"
-KEYWORDS="*"
-IUSE=""
-
-RDEPEND=">=dev-python/netifaces-0.5"
-DEPEND=""
-
-S="${WORKDIR}/pybootd-${GIT_HASH}"
-
-PATCHES=(
-	"${FILESDIR}"/${PN}-scripts.patch
-)