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 2044F138C9D for ; Fri, 17 Apr 2015 15:07:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4AE42E0921; Fri, 17 Apr 2015 15:07:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E52EFE0921 for ; Fri, 17 Apr 2015 15:07:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E3EEE340D6B for ; Fri, 17 Apr 2015 15:07:30 +0000 (UTC) Received: by oystercatcher.gentoo.org (Postfix, from userid 617) id 732FF16206; Fri, 17 Apr 2015 15:07:25 +0000 (UTC) From: "Sven Vermeulen (swift)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, swift@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in sys-auth/pambase: ChangeLog pambase-20150213.ebuild X-VCS-Repository: gentoo-x86 X-VCS-Files: ChangeLog pambase-20150213.ebuild X-VCS-Directories: sys-auth/pambase X-VCS-Committer: swift X-VCS-Committer-Name: Sven Vermeulen Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20150417150727.732FF16206@oystercatcher.gentoo.org> Date: Fri, 17 Apr 2015 15:07:25 +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: ca73f6ea-3ae5-4733-830a-4483d8aac5d8 X-Archives-Hash: 8b88711e02632634fc304c91403555b3 swift 15/04/17 15:07:25 Modified: ChangeLog pambase-20150213.ebuild Log: Fix bug #540096 - Do not treat # Note as a preprocessor directive (build failure occurs otherwise) (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x2EDD52403B68AF47) Revision Changes Path 1.143 sys-auth/pambase/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pambase/ChangeLog?rev=1.143&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pambase/ChangeLog?rev=1.143&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pambase/ChangeLog?r1=1.142&r2=1.143 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-auth/pambase/ChangeLog,v retrieving revision 1.142 retrieving revision 1.143 diff -u -r1.142 -r1.143 --- ChangeLog 21 Feb 2015 18:51:01 -0000 1.142 +++ ChangeLog 17 Apr 2015 15:07:25 -0000 1.143 @@ -1,6 +1,11 @@ # ChangeLog for sys-auth/pambase # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/pambase/ChangeLog,v 1.142 2015/02/21 18:51:01 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pambase/ChangeLog,v 1.143 2015/04/17 15:07:25 swift Exp $ + + 17 Apr 2015; Sven Vermeulen pambase-20150213.ebuild, + +files/pambase-20150213-selinux-note.patch: + Fix note in system-login so it is not seen as a processor directive (bug + #540096) 21 Feb 2015; Mike Frysinger pambase-20150213.ebuild: Fix typo in SRC_URI after typo fix 1.4 sys-auth/pambase/pambase-20150213.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pambase/pambase-20150213.ebuild?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pambase/pambase-20150213.ebuild?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/pambase/pambase-20150213.ebuild?r1=1.3&r2=1.4 Index: pambase-20150213.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-auth/pambase/pambase-20150213.ebuild,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- pambase-20150213.ebuild 21 Feb 2015 18:51:01 -0000 1.3 +++ pambase-20150213.ebuild 17 Apr 2015 15:07:25 -0000 1.4 @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/pambase/pambase-20150213.ebuild,v 1.3 2015/02/21 18:51:01 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pambase/pambase-20150213.ebuild,v 1.4 2015/04/17 15:07:25 swift Exp $ EAPI=5 inherit eutils @@ -42,6 +42,10 @@ DEPEND="app-portage/portage-utils app-arch/xz-utils" +src_prepare() { + epatch "${FILESDIR}"/${P}-selinux-note.patch #540096 +} + src_compile() { local implementation linux_pam_version if has_version sys-libs/pam; then