summaryrefslogtreecommitdiff
path: root/sys-apps/sydbox
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-12-18 11:06:49 +0000
committerV3n3RiX <venerix@redcorelinux.org>2020-12-18 11:06:49 +0000
commitab3da91fb6c91a9df52fff8f991570f456fd3c7a (patch)
treee8f3bfa2c6c3d20ec3b9c352c839e23949068b6b /sys-apps/sydbox
parent6abbf81ef2f298e3221ff5e67a1f3c5f23958212 (diff)
gentoo resync : 18.12.2020
Diffstat (limited to 'sys-apps/sydbox')
-rw-r--r--sys-apps/sydbox/Manifest3
-rw-r--r--sys-apps/sydbox/metadata.xml8
-rw-r--r--sys-apps/sydbox/sydbox-1.0.7.ebuild36
3 files changed, 0 insertions, 47 deletions
diff --git a/sys-apps/sydbox/Manifest b/sys-apps/sydbox/Manifest
deleted file mode 100644
index 110b5539f130..000000000000
--- a/sys-apps/sydbox/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST sydbox-1.0.7.tar.bz2 480350 BLAKE2B d0e079148c997d6d452017a374d7795a79a8519cdf2c2f5f6f30c9fe4bd3cc8a579881de7bd1611615f18a8fc0bbd88e519cfbabc8e0e05009705a41ab6822f5 SHA512 b14d0cc6929aa705380dc2710e772054e07ca52c2990a71cac42d1111c90baf22253e168e1fe20eaf94ccde4d1ea1a3c1c26e4b9dd292f20a1028dc78a4e80d5
-EBUILD sydbox-1.0.7.ebuild 686 BLAKE2B c7ea29886a8decd7f5a5189503cdbbe3f81944ca1d121d5fae77a3046a9ace1317008ba07454335a6ef2fa2963657046d9ace575ea9f9311afa4c08d0bc8b69c SHA512 36d41c04dc069566ada300ab6f9398031149f1cee8288c38412750bafa607254cf22b919061c2cd2d9a972a7ef5b6ed19b349b0a00c67dbdb09f3c23b0904fd1
-MISC metadata.xml 247 BLAKE2B 1750cec57189e711ca5eba89a78e1d317f0839fa53564fbd39b4e955c28d98f4ae04caf9069afc20a18536cdc92b30fe7b15eb086767c742bad07d9980cfd24b SHA512 d6e2ea8a9d74791bcbf3d6311a66bafc20b8f4db3a576d9a8d54b86d7afb231122b8d87f71f3f46360980adf8d815c633b6d5041f9a30fc8656e8fb66057a282
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
-}