sys-apps/netboot-base: Remove last-rited pkg
authorMichał Górny <mgorny@gentoo.org>
Thu, 10 Oct 2019 12:26:27 +0000 (14:26 +0200)
committerMichał Górny <mgorny@gentoo.org>
Thu, 10 Oct 2019 12:26:27 +0000 (14:26 +0200)
Closes: https://bugs.gentoo.org/693904
Signed-off-by: Michał Górny <mgorny@gentoo.org>
profiles/package.mask
sys-apps/netboot-base/Manifest [deleted file]
sys-apps/netboot-base/metadata.xml [deleted file]
sys-apps/netboot-base/netboot-base-20050110.ebuild [deleted file]

index 5790fc5d061746bf42c02537a0c32f25c0e0fda6..35793a6107a4c7fcdb47e8ab92293b9f8c03bd7a 100644 (file)
@@ -851,11 +851,6 @@ sys-boot/raincoat
 # Removal in 30 days.  Bug #693906.
 sys-auth/icmpdn
 
-# Michał Górny <mgorny@gentoo.org> (2019-09-09)
-# Not touched since 2005.  EAPI 0.  No amd64 keyword.
-# Removal in 30 days.  Bug #693904.
-sys-apps/netboot-base
-
 # Lars Wendler <polynomial-c@gentoo.org> (2019-09-04)
 # Unofficial build. Superseded by official 2.49.5 release.
 # Masked for removal.
diff --git a/sys-apps/netboot-base/Manifest b/sys-apps/netboot-base/Manifest
deleted file mode 100644 (file)
index 82b94d6..0000000
+++ /dev/null
@@ -1 +0,0 @@
-DIST netboot-base-20050110.tar.bz2 4313 BLAKE2B 7c15f052cb0b731a7bdccf8a92b04df00f03448826fe5f8a0738edeee5a933eed9998a2549211288ab8c2fd066972771e545f508959410a6bb07114cd7d50130 SHA512 f40e289b178e75b9463605cc77ff395a08758e6641cd6298a62ef1900f21dd7be2d76e0bbad1a1140f60c8ee1a47496bc67fab7a93d2314cc6abd3ee306b265d
diff --git a/sys-apps/netboot-base/metadata.xml b/sys-apps/netboot-base/metadata.xml
deleted file mode 100644 (file)
index 56c1244..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
-       <email>base-system@gentoo.org</email>
-       <name>Gentoo Base System</name>
-</maintainer>
-</pkgmetadata>
diff --git a/sys-apps/netboot-base/netboot-base-20050110.ebuild b/sys-apps/netboot-base/netboot-base-20050110.ebuild
deleted file mode 100644 (file)
index f0711d3..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit toolchain-funcs
-
-DESCRIPTION="Baselayout for netboot systems"
-HOMEPAGE="https://www.gentoo.org/"
-SRC_URI="https://dev.gentoo.org/~vapier/${P}.tar.bz2
-       mirror://gentoo/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha arm hppa ~mips ppc sh sparc x86"
-IUSE=""
-
-DEPEND=""
-
-S=${WORKDIR}
-
-pkg_setup() {
-       [[ ${ROOT} = "/" ]] && die "refusing to emerge to /"
-}
-
-src_compile() {
-       $(tc-getCC) ${CFLAGS} src/consoletype.c -o sbin/consoletype || die
-       $(tc-getSTRIP) --strip-unneeded sbin/consoletype
-}
-
-src_install() {
-       rm -r src
-       cp -r * "${D}"/ || die
-}
-
-pkg_preinst() {
-       [[ ${ROOT} = "/" ]] && die "refusing to install to /"
-}
-
-pkg_postinst() {
-       cd "${ROOT}"
-       mkdir -p bin dev etc lib mnt proc sbin var
-       mkdir -p var/log
-       mkdir -p mnt/gentoo
-       ln -s . usr
-       ln -s . share
-}