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 8E7DB1381F3 for ; Fri, 11 Oct 2013 23:17:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B3618E0AEC; Fri, 11 Oct 2013 23:17:04 +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 4B04BE0AEC for ; Fri, 11 Oct 2013 23:17:04 +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 6235B33EED5 for ; Fri, 11 Oct 2013 23:17:03 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2325) id 296A02004C; Fri, 11 Oct 2013 23:17:02 +0000 (UTC) From: "Richard Yao (ryao)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, ryao@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/zfs: zfs-9999.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: zfs-9999.ebuild ChangeLog X-VCS-Directories: sys-fs/zfs X-VCS-Committer: ryao X-VCS-Committer-Name: Richard Yao Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20131011231702.296A02004C@flycatcher.gentoo.org> Date: Fri, 11 Oct 2013 23:17:02 +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: 5dac9574-d496-46bd-a4f1-1b95984a8e3c X-Archives-Hash: 898a11bda5fe4c24b06ac8861aad1fa7 ryao 13/10/11 23:17:02 Modified: zfs-9999.ebuild ChangeLog Log: Set --with-blkid to avoid sandbox violation; Move new zfs_core library to / (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0xBEE84C64) Revision Changes Path 1.49 sys-fs/zfs/zfs-9999.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/zfs/zfs-9999.ebuild?rev=1.49&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/zfs/zfs-9999.ebuild?rev=1.49&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/zfs/zfs-9999.ebuild?r1=1.48&r2=1.49 Index: zfs-9999.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-fs/zfs/zfs-9999.ebuild,v retrieving revision 1.48 retrieving revision 1.49 diff -u -r1.48 -r1.49 --- zfs-9999.ebuild 5 Sep 2013 19:44:53 -0000 1.48 +++ zfs-9999.ebuild 11 Oct 2013 23:17:02 -0000 1.49 @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/zfs/zfs-9999.ebuild,v 1.48 2013/09/05 19:44:53 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/zfs/zfs-9999.ebuild,v 1.49 2013/10/11 23:17:02 ryao Exp $ EAPI="5" PYTHON_COMPAT=( python{2_6,2_7} ) @@ -86,6 +86,7 @@ --with-linux="${KV_DIR}" --with-linux-obj="${KV_OUT_DIR}" --with-udevdir="$(udev_get_udevdir)" + --with-blkid $(use_with selinux) ) autotools-utils_src_configure @@ -103,7 +104,7 @@ src_install() { autotools-utils_src_install - gen_usr_ldscript -a uutil nvpair zpool zfs + gen_usr_ldscript -a uutil nvpair zpool zfs zfs_core rm -rf "${ED}usr/lib/dracut" use test-suite || rm -rf "${ED}usr/share/zfs" 1.73 sys-fs/zfs/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/zfs/ChangeLog?rev=1.73&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/zfs/ChangeLog?rev=1.73&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/zfs/ChangeLog?r1=1.72&r2=1.73 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-fs/zfs/ChangeLog,v retrieving revision 1.72 retrieving revision 1.73 diff -u -r1.72 -r1.73 --- ChangeLog 5 Oct 2013 22:08:09 -0000 1.72 +++ ChangeLog 11 Oct 2013 23:17:02 -0000 1.73 @@ -1,6 +1,9 @@ # ChangeLog for sys-fs/zfs # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/zfs/ChangeLog,v 1.72 2013/10/05 22:08:09 ryao Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/zfs/ChangeLog,v 1.73 2013/10/11 23:17:02 ryao Exp $ + + 11 Oct 2013; Richard Yao zfs-9999.ebuild: + Set --with-blkid to avoid sandbox violation; Move new zfs_core library to / *zfs-0.6.2-r1 (05 Oct 2013)