sys-freebsd/ubin-wrappers: Remove last-rited pkg
authorMichał Górny <mgorny@gentoo.org>
Fri, 11 Oct 2019 15:09:45 +0000 (17:09 +0200)
committerMichał Górny <mgorny@gentoo.org>
Fri, 11 Oct 2019 15:16:30 +0000 (17:16 +0200)
Closes: https://bugs.gentoo.org/683284
Signed-off-by: Michał Górny <mgorny@gentoo.org>
profiles/package.mask
sys-freebsd/ubin-wrappers/metadata.xml [deleted file]
sys-freebsd/ubin-wrappers/ubin-wrappers-0.ebuild [deleted file]

index 2b6c0096e17a653006523d1eb3b6248a2aeb566b..b05ac5efb25abd0aa25f371b17147391bf3c18f0 100644 (file)
@@ -762,7 +762,6 @@ sys-freebsd/freebsd-share
 sys-freebsd/freebsd-sources
 sys-freebsd/freebsd-ubin
 sys-freebsd/freebsd-usbin
-sys-freebsd/ubin-wrappers
 
 # Lars Wendler <polynomial-c@gentoo.org> (2019-09-04)
 # Unofficial build. Superseded by official 2.49.5 release.
diff --git a/sys-freebsd/ubin-wrappers/metadata.xml b/sys-freebsd/ubin-wrappers/metadata.xml
deleted file mode 100644 (file)
index 7a38bb9..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-       <!-- maintainer-needed -->
-</pkgmetadata>
diff --git a/sys-freebsd/ubin-wrappers/ubin-wrappers-0.ebuild b/sys-freebsd/ubin-wrappers/ubin-wrappers-0.ebuild
deleted file mode 100644 (file)
index e183e18..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-DESCRIPTION="/usr/bin wrapper scripts for FreeBSD script compatibility"
-HOMEPAGE="https://www.gentoo.org"
-SRC_URI=""
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="~amd64-fbsd ~x86-fbsd"
-IUSE="userland_BSD userland_GNU"
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}"
-
-dowrap() {
-       local x
-       for x do
-               [[ -e ${x} ]] || die "${x} does not exist"
-               newbin - "$(basename "${x}")" <<-EOF
-                       #!/bin/sh
-                       exec ${x} \${1:+"\$@"}
-               EOF
-       done
-}
-
-src_install() {
-       dowrap \
-               "${EPREFIX}"/bin/{bunzip2,bzcat,cpio,egrep,fgrep,grep,gunzip,gzip,zcat}
-       use userland_BSD && dowrap "${EPREFIX}"/bin/sort
-       use userland_GNU && dowrap "${EPREFIX}"/bin/{fuser,sed,uncompress}
-}