summaryrefslogtreecommitdiff
path: root/net-ftp/pybootd
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-04-25 11:37:10 +0100
committerV3n3RiX <venerix@redcorelinux.org>2020-04-25 11:37:10 +0100
commit38423c67c8a23f6a1bc42038193182e2da3116eb (patch)
tree04e2cf4bd43601b77daa79fe654e409187093c5e /net-ftp/pybootd
parent623ee73d661e5ed8475cb264511f683407d87365 (diff)
gentoo resync : 25.04.2020
Diffstat (limited to 'net-ftp/pybootd')
-rw-r--r--net-ftp/pybootd/Manifest4
-rw-r--r--net-ftp/pybootd/files/pybootd-scripts.patch36
-rw-r--r--net-ftp/pybootd/metadata.xml9
-rw-r--r--net-ftp/pybootd/pybootd-1.5.0_pre20110524131526.ebuild27
4 files changed, 0 insertions, 76 deletions
diff --git a/net-ftp/pybootd/Manifest b/net-ftp/pybootd/Manifest
deleted file mode 100644
index c50024fe9eb9..000000000000
--- a/net-ftp/pybootd/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-AUX pybootd-scripts.patch 1055 BLAKE2B f8a5c1e37aef5a939919df5efd2c5728d6b90d55e122dc18991df4278e92b1250420d10695501d081e6076906a29f2122e28f61161722f57e9cafd77d3746786 SHA512 b3727ac420ab322742bfcbba6f59aea4e30d592549c1652ae092d93c4918d2d83ee9252058f4bf35dd0a3a3e20e97f2c032a6a2b014cc132ab7cc9e9a61c8933
-DIST pybootd-1.5.0_pre20110524131526.tar.gz 21855 BLAKE2B 39479c742d73d29998de1dd9cf4c7398dd27f1d5564c18de0ebb5cfce0a439e3dec829f88938a72f932bc0bf486e27dd9b2e239b27cfe99ed25cb87e1354b6ab SHA512 113a2195d33ba5a0196810370fedd582204de5f8323ecec37e6209fc7074cde06ba80cb8113fd83be70685c8ea18c6167d751085ea9bee5c1ab34dab152eea71
-EBUILD pybootd-1.5.0_pre20110524131526.ebuild 597 BLAKE2B 8369a1b9a16307d04453af99db48c5fefcf1a4ac9b049edefed7fe9e0cf52e0253c372d956fcb7e3c0dac35ca75c9b25dc42f48a6f621fea30def850c49b5a60 SHA512 6429cce2e69904a29d373096989d9d035c01cf344c46e22782c056eeaa4f9776335a040f3fc2d2174ef65279b7c7a4222a4f88831b68584d6bcc6a41da4f1816
-MISC metadata.xml 290 BLAKE2B 686b5811ef01fb36f025543898a706adb2310edc4e9f7b482d0b23b8aa0ad807f6e68fc0306e68ae09e9946ac4d00aa711630565bb1c7e70a8e75642d47cb76c SHA512 b0756ada0e59328587d68c99d9ce401c0e2f3f5a402719a5e9b67b7969b56fd55c4930c63e1209e01d58562f09c45cbcedb758204efec65d09f82c4595e39ce5
diff --git a/net-ftp/pybootd/files/pybootd-scripts.patch b/net-ftp/pybootd/files/pybootd-scripts.patch
deleted file mode 100644
index 71a001f44798..000000000000
--- 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 236bb92992dd..000000000000
--- 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>
- <!-- maintainer-needed -->
- <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.ebuild b/net-ftp/pybootd/pybootd-1.5.0_pre20110524131526.ebuild
deleted file mode 100644
index ba6a2718f413..000000000000
--- a/net-ftp/pybootd/pybootd-1.5.0_pre20110524131526.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-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="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=">=dev-python/netifaces-0.5"
-DEPEND=""
-
-S="${WORKDIR}/pybootd-${GIT_HASH}"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-scripts.patch
-)