diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-12-16 23:49:12 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-12-17 00:03:14 +0100 |
commit | 26cb8be263271d6f598df435b9781f928749ae20 (patch) | |
tree | 5d950a57a066c7b81fc4872d8dc79d6531431ed5 /sys-apps | |
parent | dev-python/backports-csv: Remove last-rited pkg (diff) | |
download | gentoo-26cb8be263271d6f598df435b9781f928749ae20.tar.gz gentoo-26cb8be263271d6f598df435b9781f928749ae20.tar.bz2 gentoo-26cb8be263271d6f598df435b9781f928749ae20.zip |
sys-apps/sydbox: Remove last-rited pkg
Closes: https://bugs.gentoo.org/708528
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/sydbox/Manifest | 1 | ||||
-rw-r--r-- | sys-apps/sydbox/metadata.xml | 8 | ||||
-rw-r--r-- | sys-apps/sydbox/sydbox-1.0.7.ebuild | 36 |
3 files changed, 0 insertions, 45 deletions
diff --git a/sys-apps/sydbox/Manifest b/sys-apps/sydbox/Manifest deleted file mode 100644 index f49739f1b240..000000000000 --- a/sys-apps/sydbox/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST sydbox-1.0.7.tar.bz2 480350 BLAKE2B d0e079148c997d6d452017a374d7795a79a8519cdf2c2f5f6f30c9fe4bd3cc8a579881de7bd1611615f18a8fc0bbd88e519cfbabc8e0e05009705a41ab6822f5 SHA512 b14d0cc6929aa705380dc2710e772054e07ca52c2990a71cac42d1111c90baf22253e168e1fe20eaf94ccde4d1ea1a3c1c26e4b9dd292f20a1028dc78a4e80d5 diff --git a/sys-apps/sydbox/metadata.xml b/sys-apps/sydbox/metadata.xml deleted file mode 100644 index 0319eec4c8be..000000000000 --- a/sys-apps/sydbox/metadata.xml +++ /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="person"> - <email>mgorny@gentoo.org</email> - <name>Michał Górny</name> - </maintainer> -</pkgmetadata> diff --git a/sys-apps/sydbox/sydbox-1.0.7.ebuild b/sys-apps/sydbox/sydbox-1.0.7.ebuild deleted file mode 100644 index 20a823ec7181..000000000000 --- a/sys-apps/sydbox/sydbox-1.0.7.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="ptrace-based sandbox" -HOMEPAGE="https://git.exherbo.org/sydbox-1.git" -SRC_URI="http://distfiles.exherbo.org/distfiles/${P}.tar.bz2" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64" -IUSE="debug seccomp test" -RESTRICT="!test? ( test )" - -RDEPEND="sys-libs/pinktrace:= - debug? ( sys-libs/libunwind:= )" -DEPEND="${RDEPEND} - test? ( !<sys-apps/sandbox-2.13 )" - -src_configure() { - local myconf=( - $(use_enable debug) - $(use_enable seccomp) - ) - - econf "${myconf[@]}" -} - -src_test() { - # unload the Gentoo sandbox - local -x SANDBOX_ON=0 - local -x LD_PRELOAD= - - emake check -} |