summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2019-10-11 17:09:45 +0200
committerMichał Górny <mgorny@gentoo.org>2019-10-11 17:16:30 +0200
commit3a78edbd95871508577371cb0a55bc5367bf83e1 (patch)
tree27654ee4f075d2a9b520ee6a410dc74e10bc36da
parentnet-p2p/deluge: 2.0.3 version bump (diff)
downloadgentoo-3a78edbd95871508577371cb0a55bc5367bf83e1.tar.gz
gentoo-3a78edbd95871508577371cb0a55bc5367bf83e1.tar.bz2
gentoo-3a78edbd95871508577371cb0a55bc5367bf83e1.zip
sys-freebsd/ubin-wrappers: Remove last-rited pkg
Closes: https://bugs.gentoo.org/683284 Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r--profiles/package.mask1
-rw-r--r--sys-freebsd/ubin-wrappers/metadata.xml5
-rw-r--r--sys-freebsd/ubin-wrappers/ubin-wrappers-0.ebuild36
3 files changed, 0 insertions, 42 deletions
diff --git a/profiles/package.mask b/profiles/package.mask
index 2b6c0096e17a..b05ac5efb25a 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -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
index 7a38bb900964..000000000000
--- a/sys-freebsd/ubin-wrappers/metadata.xml
+++ /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
index e183e180cc94..000000000000
--- a/sys-freebsd/ubin-wrappers/ubin-wrappers-0.ebuild
+++ /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}
-}