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 CDDA0138010 for ; Wed, 3 Oct 2012 20:34:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5750321C00E; Wed, 3 Oct 2012 20:34:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 0E95A21C00E for ; Wed, 3 Oct 2012 20:34:15 +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 4081B33C1F2 for ; Wed, 3 Oct 2012 20:34:15 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 559) id 3781021600; Wed, 3 Oct 2012 20:34:13 +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/libsepol: libsepol-2.1.4-r1.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: libsepol-2.1.4-r1.ebuild ChangeLog X-VCS-Directories: sys-libs/libsepol X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20121003203413.3781021600@flycatcher.gentoo.org> Date: Wed, 3 Oct 2012 20:34:13 +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: d40d7e72-40a4-4060-aa2d-e9b72addc9e2 X-Archives-Hash: 51d57b0c95fb82fb3d12e4c98c9e1c3e vapier 12/10/03 20:34:13 Modified: libsepol-2.1.4-r1.ebuild ChangeLog Log: Update to EAPI=4. (Portage version: 2.2.0_alpha131/cvs/Linux x86_64) Revision Changes Path 1.3 sys-libs/libsepol/libsepol-2.1.4-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libsepol/libsepol-2.1.4-r1.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libsepol/libsepol-2.1.4-r1.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libsepol/libsepol-2.1.4-r1.ebuild?r1=1.2&r2=1.3 Index: libsepol-2.1.4-r1.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-libs/libsepol/libsepol-2.1.4-r1.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- libsepol-2.1.4-r1.ebuild 29 Apr 2012 10:07:40 -0000 1.2 +++ libsepol-2.1.4-r1.ebuild 3 Oct 2012 20:34:13 -0000 1.3 @@ -1,8 +1,8 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsepol/libsepol-2.1.4-r1.ebuild,v 1.2 2012/04/29 10:07:40 swift Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsepol/libsepol-2.1.4-r1.ebuild,v 1.3 2012/10/03 20:34:13 vapier Exp $ -EAPI="2" +EAPI="4" inherit multilib toolchain-funcs eutils @@ -15,26 +15,17 @@ KEYWORDS="amd64 x86" IUSE="" -DEPEND="" -RDEPEND="" - # tests are not meant to be run outside of the # full SELinux userland repo RESTRICT="test" src_prepare() { # fix up paths for multilib - sed -i -e "/^LIBDIR/s/lib/$(get_libdir)/" src/Makefile \ - || die "Fix for multilib LIBDIR failed." - sed -i -e "/^SHLIBDIR/s/lib/$(get_libdir)/" src/Makefile \ - || die "Fix for multilib SHLIBDIR failed." + sed -i \ + -e "/^LIBDIR/s/lib/$(get_libdir)/" \ + -e "/^SHLIBDIR/s/lib/$(get_libdir)/" \ + -e 's:\:$(RANLIB):' \ + src/Makefile || die epatch "${FILESDIR}/libsepol-2.1.4-fix_role_fix_callback.patch" -} - -src_compile() { - emake AR="$(tc-getAR)" CC="$(tc-getCC)" || die -} - -src_install() { - emake DESTDIR="${D}" install || die + tc-export AR CC RANLIB } 1.49 sys-libs/libsepol/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libsepol/ChangeLog?rev=1.49&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libsepol/ChangeLog?rev=1.49&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libsepol/ChangeLog?r1=1.48&r2=1.49 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-libs/libsepol/ChangeLog,v retrieving revision 1.48 retrieving revision 1.49 diff -u -r1.48 -r1.49 --- ChangeLog 13 May 2012 12:48:20 -0000 1.48 +++ ChangeLog 3 Oct 2012 20:34:13 -0000 1.49 @@ -1,6 +1,9 @@ # ChangeLog for sys-libs/libsepol # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsepol/ChangeLog,v 1.48 2012/05/13 12:48:20 swift Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libsepol/ChangeLog,v 1.49 2012/10/03 20:34:13 vapier Exp $ + + 03 Oct 2012; Mike Frysinger libsepol-2.1.4-r1.ebuild: + Update to EAPI=4. 13 May 2012; -libsepol-2.1.0.ebuild: Removing obsoleted ebuild @@ -208,4 +211,3 @@ 07 Sep 2004; Chris PeBenito +metadata.xml, +libsepol-1.0.ebuild: Initial commit. -