commit: 3a78edbd95871508577371cb0a55bc5367bf83e1 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Fri Oct 11 15:09:45 2019 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Fri Oct 11 15:16:30 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a78edbd
sys-freebsd/ubin-wrappers: Remove last-rited pkg Closes: https://bugs.gentoo.org/683284 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> profiles/package.mask | 1 - sys-freebsd/ubin-wrappers/metadata.xml | 5 ---- sys-freebsd/ubin-wrappers/ubin-wrappers-0.ebuild | 36 ------------------------ 3 files changed, 42 deletions(-) diff --git a/profiles/package.mask b/profiles/package.mask index 2b6c0096e17..b05ac5efb25 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 <[email protected]> (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 7a38bb90096..00000000000 --- 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 e183e180cc9..00000000000 --- 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} -}
