vapier 15/04/09 17:59:44 Modified: ChangeLog Added: libseccomp-2.2.0.ebuild Log: Version bump #546068 by Robert Sebastian Gerus. (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Revision Changes Path 1.16 sys-libs/libseccomp/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libseccomp/ChangeLog?rev=1.16&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libseccomp/ChangeLog?rev=1.16&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libseccomp/ChangeLog?r1=1.15&r2=1.16 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-libs/libseccomp/ChangeLog,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- ChangeLog 14 Jan 2014 13:52:31 -0000 1.15 +++ ChangeLog 9 Apr 2015 17:59:44 -0000 1.16 @@ -1,6 +1,11 @@ # ChangeLog for sys-libs/libseccomp -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libseccomp/ChangeLog,v 1.15 2014/01/14 13:52:31 ago Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libseccomp/ChangeLog,v 1.16 2015/04/09 17:59:44 vapier Exp $ + +*libseccomp-2.2.0 (09 Apr 2015) + + 09 Apr 2015; Mike Frysinger <vap...@gentoo.org> +libseccomp-2.2.0.ebuild: + Version bump #546068 by Robert Sebastian Gerus. 14 Jan 2014; Agostino Sarubbo <a...@gentoo.org> libseccomp-2.1.1.ebuild: Stable for x86, wrt bug #495966 1.1 sys-libs/libseccomp/libseccomp-2.2.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libseccomp/libseccomp-2.2.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libseccomp/libseccomp-2.2.0.ebuild?rev=1.1&content-type=text/plain Index: libseccomp-2.2.0.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-libs/libseccomp/libseccomp-2.2.0.ebuild,v 1.1 2015/04/09 17:59:44 vapier Exp $ # 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" SLOT="0" KEYWORDS="-* ~amd64 ~arm ~arm64 ~mips ~x86" IUSE="static-libs" src_prepare() { 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 }