community/firejail: upgrade to 0.9.54

https://firejail.wordpress.com/download-2/release-notes/
This commit is contained in:
Stuart Cardall 2018-05-27 18:56:54 +00:00 committed by Francesco Colista
parent 051a53890a
commit ffad66870a
2 changed files with 4 additions and 29 deletions

View File

@ -1,8 +1,8 @@
# Contributor: Stuart Cardall <developer@it-offshore.co.uk>
# Maintainer: Stuart Cardall <developer@it-offshore.co.uk>
pkgname=firejail
pkgver=0.9.52
pkgrel=1
pkgver=0.9.54
pkgrel=0
pkgdesc="Linux namespaces and seccomp-bpf sandbox"
url="https://firejail.wordpress.com/"
arch="all"
@ -12,9 +12,7 @@ makedepends="linux-headers"
checkdepends="expect"
options="suid"
subpackages="$pkgname-doc $pkgname-bash-completion:bashcomp:noarch"
source="$pkgname-$pkgver.tar.gz::https://github.com/netblue30/$pkgname/archive/$pkgver.tar.gz
includes.patch
"
source="$pkgname-$pkgver.tar.gz::https://github.com/netblue30/$pkgname/archive/$pkgver.tar.gz"
builddir="$srcdir/$pkgname-$pkgver"
prepare() {
@ -57,5 +55,4 @@ package() {
make DESTDIR="$pkgdir" install
}
sha512sums="1aca0e210a29ea4c38b82027549b6dcc9c0d50e2bf9f15bd449c6c70b96a4974e1a557ad2ea40a9caefc078ae3f6afafa62d06652fe871b7597d57d24c1705ca firejail-0.9.52.tar.gz
cfc48e8c773fb4ee9b94cbb84c5b86ff0eca69351f37f105b5b314b8404a0c10749c205d5e7ef90e65ae61b81f5c73f87f112ad68a651f745bfdf3048aa327e6 includes.patch"
sha512sums="8b9ae852e1046cb17edb9b2e05af5f0c863f78d8571069f24026c51724cca442bb87c3ee89b54bc36ff131cebb70d9b0b3031244c9bf225ecfc8381ef77d0b40 firejail-0.9.54.tar.gz"

View File

@ -1,22 +0,0 @@
From a25879017434858dba46b617e770ca9330e189d1 Mon Sep 17 00:00:00 2001
From: maxice8 <thinkabit.ukim@gmail.com>
Date: Wed, 13 Dec 2017 01:26:13 -0200
Subject: [PATCH] libtrace/libtrace.c: add missing limits.h include
Fix build on Musl systems, tested on x86_64-musl Void Linux
---
src/libtrace/libtrace.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/libtrace/libtrace.c b/src/libtrace/libtrace.c
index 7bdf6c948..2b0a76938 100644
--- a/src/libtrace/libtrace.c
+++ b/src/libtrace/libtrace.c
@@ -23,6 +23,7 @@
#include <string.h>
#include <dlfcn.h>
#include <sys/types.h>
+#include <limits.h>
#include <unistd.h>
#include <sys/socket.h>
#include <netinet/in.h>