From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 5A4FD13831A for ; Sun, 6 Jan 2013 23:07:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5A9B721C04C; Sun, 6 Jan 2013 23:07:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AF99121C04C for ; Sun, 6 Jan 2013 23:07:47 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B573C33DA9A for ; Sun, 6 Jan 2013 23:07:46 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 559) id 788B02171D; Sun, 6 Jan 2013 23:07:45 +0000 (UTC) From: "Mike Frysinger (vapier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, vapier@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/libseccomp: libseccomp-1.0.1.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: libseccomp-1.0.1.ebuild ChangeLog X-VCS-Directories: sys-libs/libseccomp X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130106230745.788B02171D@flycatcher.gentoo.org> Date: Sun, 6 Jan 2013 23:07:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5c8378f6-6f97-40e9-97a6-7297511c2261 X-Archives-Hash: f33a37bcbc806e763b97b404d6571fa8 vapier 13/01/06 23:07:45 Modified: ChangeLog Added: libseccomp-1.0.1.ebuild Log: Version bump #450642 by Agostino Sarubbo. (Portage version: 2.2.0_alpha144/cvs/Linux x86_64, signed Manifest commit with key FB7C4156) Revision Changes Path 1.5 sys-libs/libseccomp/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libseccomp/ChangeLog?rev=1.5&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libseccomp/ChangeLog?rev=1.5&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libseccomp/ChangeLog?r1=1.4&r2=1.5 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-libs/libseccomp/ChangeLog,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- ChangeLog 12 Nov 2012 21:21:36 -0000 1.4 +++ ChangeLog 6 Jan 2013 23:07:45 -0000 1.5 @@ -1,6 +1,11 @@ # ChangeLog for sys-libs/libseccomp -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libseccomp/ChangeLog,v 1.4 2012/11/12 21:21:36 vapier Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libseccomp/ChangeLog,v 1.5 2013/01/06 23:07:45 vapier Exp $ + +*libseccomp-1.0.1 (06 Jan 2013) + + 06 Jan 2013; Mike Frysinger +libseccomp-1.0.1.ebuild: + Version bump #450642 by Agostino Sarubbo. 12 Nov 2012; Mike Frysinger libseccomp-1.0.0.ebuild: Setup correct AR/CC values #442864 by Alphat-PC. 1.1 sys-libs/libseccomp/libseccomp-1.0.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libseccomp/libseccomp-1.0.1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libseccomp/libseccomp-1.0.1.ebuild?rev=1.1&content-type=text/plain Index: libseccomp-1.0.1.ebuild =================================================================== # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-libs/libseccomp/libseccomp-1.0.1.ebuild,v 1.1 2013/01/06 23:07:45 vapier Exp $ # Note: USE=static-libs isn't great -- only PIC objects are provided. EAPI="4" inherit eutils DESCRIPTION="high level interface to Linux seccomp filter" HOMEPAGE="http://sourceforge.net/projects/libseccomp/" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="LGPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="static-libs tools" src_prepare() { sed -i \ -e "/^SUBDIRS_BUILD/s:=.*:= src $(usex tools tools ''):" \ Makefile || die tc-export AR CC export GCC=${CC} } src_test() { emake SUBDIRS_BUILD='tools tests' cd tests ./regression } src_install() { default use tools && dobin tools/{bpf_{disasm,sim},sys_{inspector,resolver}} use static-libs && dolib.a src/libseccomp.a }