commit: 45f97e255b0fd3ee3ca60ebad4c2a9acb3cc7351 Author: Aric Belsito <lluixhi <AT> gmail <DOT> com> AuthorDate: Thu Feb 23 01:30:02 2017 +0000 Commit: Aric Belsito <lluixhi <AT> gmail <DOT> com> CommitDate: Thu Feb 23 01:30:02 2017 +0000 URL: https://gitweb.gentoo.org/proj/musl.git/commit/?id=45f97e25
sys-libs/libseccomp: remove 2.3.0 and 2.3.1 work. sys-libs/libseccomp/Manifest | 4 --- .../files/libseccomp-2.2.3-musl_compile.patch | 24 ------------- sys-libs/libseccomp/libseccomp-2.2.3.ebuild | 41 ---------------------- sys-libs/libseccomp/metadata.xml | 11 ------ 4 files changed, 80 deletions(-) diff --git a/sys-libs/libseccomp/Manifest b/sys-libs/libseccomp/Manifest deleted file mode 100644 index bcf933d..0000000 --- a/sys-libs/libseccomp/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -AUX libseccomp-2.2.3-musl_compile.patch 684 SHA256 f8de96893d9d7007fba9af8d194ca2b3a25ba47379eb4a926894a9b941c5700c SHA512 726b511eae52d85f6c7aa54953b55b2bd099cde23923b3d61d2316ab709df65291994f3033bc7f04658089624ccfaaf2d99ff071de9675c36f613e4dea8282a4 WHIRLPOOL 0ad85f42d41f05a021c06722cd83f8b2ea8a2c54cee1ab9436727f89b8758e16007e38b45a6b59cde7c344cabd60bcc82f7683a0505161c3be7773b72cecfe49 -DIST libseccomp-2.2.3.tar.gz 522755 SHA256 d9b400b703cab7bb04b84b9b6e52076a630b673819d7541757bcc16467b6d49e SHA512 e7bce0627c7ee107ea4780a6d2d7f24da162fdb5a85fc064c94e629918de2ee7ce7ed5ed98490f17392d9ca7ec1204945db3fea4415fae4370495b71c9edb61e WHIRLPOOL a32105a4cf3b514531e3cd7f1c703305318eceb90ef030317139fe08fe62fd14670b5ddc6f0dc8165cac23da1df89ee6efea3c366cec64102194c12ae53eac4f -EBUILD libseccomp-2.2.3.ebuild 998 SHA256 3e4839cb504bf89c672e3f03465891ce385f665baffa52ae7eef1675aad5b461 SHA512 3343ecb049410dab241fb2ad2bfb21b709a685142f69a9f8e9bfa99065fd696eab3ef40e4ffe24289cdaa6b20b14f10c6a6bf05e4d3ba9529d52ff8807c2641f WHIRLPOOL 96cc75cf432fd5023c4a1f7ada27267fe984c34b7bbf1ced32353a078bb7df81258a212eb36782c5347f7906df1a84a2f100aa2457044146b5d5ce2b966ab293 -MISC metadata.xml 355 SHA256 8087b7a37ab380f3809766fad5e5d72b88795e76a9856ea19b062e54bc8b5447 SHA512 dbf3c5decd7e918af6092ae690a2566c98f9b5386eee17c363dde79c03ca7d3a4103926a9327711aa059cf82916a4cb36360ce3c762093301aa44bc8cfd70f42 WHIRLPOOL 98020ffdc094b2a3a8d0a60d645bd34167feb0fdc280d3f366020a1daf2d540b6bca34a3f8a070c46b439d91104425417d07338c8afb3245260f33f57852b335 diff --git a/sys-libs/libseccomp/files/libseccomp-2.2.3-musl_compile.patch b/sys-libs/libseccomp/files/libseccomp-2.2.3-musl_compile.patch deleted file mode 100644 index ffd27e5..0000000 --- a/sys-libs/libseccomp/files/libseccomp-2.2.3-musl_compile.patch +++ /dev/null @@ -1,24 +0,0 @@ -From eb5382287cd25235e760b5da4939510b11bbf2a1 Mon Sep 17 00:00:00 2001 -From: Kylie McClain <[email protected]> -Date: Fri, 1 Jan 2016 13:12:59 -0500 -Subject: [PATCH] system.h: Remove conflicting kernel header include - -This fixes building on musl libc, since musl does not include kernel -headers. I've tested this as working on both glibc and musl. - -Signed-off-by: Kylie McClain <[email protected]> ---- - src/system.h | 1 - - 1 file changed, 1 deletion(-) - -diff --git a/src/system.h b/src/system.h -index 4660679..e84b0a0 100644 ---- a/src/system.h -+++ b/src/system.h -@@ -23,7 +23,6 @@ - #define _SYSTEM_H - - #include <linux/filter.h> --#include <linux/prctl.h> - - #include "configure.h" diff --git a/sys-libs/libseccomp/libseccomp-2.2.3.ebuild b/sys-libs/libseccomp/libseccomp-2.2.3.ebuild deleted file mode 100644 index 1e7edaa..0000000 --- a/sys-libs/libseccomp/libseccomp-2.2.3.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -# TODO: Add python support. - -EAPI="5" - -inherit eutils multilib-minimal - -DESCRIPTION="high level interface to Linux seccomp filter" -HOMEPAGE="https://github.com/seccomp/libseccomp" -SRC_URI="https://github.com/seccomp/libseccomp/releases/download/v${PV}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="-* ~amd64 ~arm ~arm64 ~mips ~x86" -IUSE="static-libs" - -# We need newer kernel headers; we don't keep strict control of the exact -# version here, just be safe and pull in the latest stable ones. #551248 -DEPEND=">=sys-kernel/linux-headers-3.18" - -src_prepare() { - epatch "${FILESDIR}"/${P}-musl_compile.patch - sed -i \ - -e '/_LDFLAGS/s:-static::' \ - tools/Makefile.in || die -} - -multilib_src_configure() { - ECONF_SOURCE=${S} \ - econf \ - $(use_enable static-libs static) \ - --disable-python -} - -multilib_src_install_all() { - find "${ED}" -name libseccomp.la -delete - einstalldocs -} diff --git a/sys-libs/libseccomp/metadata.xml b/sys-libs/libseccomp/metadata.xml deleted file mode 100644 index 3a6400d..0000000 --- a/sys-libs/libseccomp/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>[email protected]</email> - </maintainer> - <upstream> - <remote-id type="github">seccomp/libseccomp</remote-id> - <remote-id type="sourceforge">libseccomp</remote-id> - </upstream> -</pkgmetadata>
