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 91DCD13800E for ; Sat, 11 Aug 2012 11:12:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D58DE0369; Sat, 11 Aug 2012 11:11:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id C98CAE0369 for ; Sat, 11 Aug 2012 11:11:54 +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 0C2CF1B4005 for ; Sat, 11 Aug 2012 11:11:54 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2315) id B5F862004B; Sat, 11 Aug 2012 11:11:52 +0000 (UTC) From: "Benda XU (heroxbd)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, heroxbd@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in sys-process/runit: runit-2.1.1-r1.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: runit-2.1.1-r1.ebuild ChangeLog X-VCS-Directories: sys-process/runit X-VCS-Committer: heroxbd X-VCS-Committer-Name: Benda XU Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20120811111152.B5F862004B@flycatcher.gentoo.org> Date: Sat, 11 Aug 2012 11:11:52 +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: 5956898f-1b14-47e4-8af2-eab51c00d07c X-Archives-Hash: 30a2b3ee9da55845c6256f91e0035dda heroxbd 12/08/11 11:11:52 Modified: runit-2.1.1-r1.ebuild ChangeLog Log: fix relative directory and apply trivial prefix support (Portage version: 2.1.10.65/cvs/Linux x86_64) Revision Changes Path 1.3 sys-process/runit/runit-2.1.1-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/runit/runit-2.1.1-r1.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/runit/runit-2.1.1-r1.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/runit/runit-2.1.1-r1.ebuild?r1=1.2&r2=1.3 Index: runit-2.1.1-r1.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-process/runit/runit-2.1.1-r1.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- runit-2.1.1-r1.ebuild 6 Feb 2012 03:13:33 -0000 1.2 +++ runit-2.1.1-r1.ebuild 11 Aug 2012 11:11:52 -0000 1.3 @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/runit/runit-2.1.1-r1.ebuild,v 1.2 2012/02/06 03:13:33 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/runit/runit-2.1.1-r1.ebuild,v 1.3 2012/08/11 11:11:52 heroxbd Exp $ EAPI="3" @@ -19,7 +19,7 @@ src_prepare() { # we either build everything or nothing static - sed -i -e 's:-static: :' src/Makefile + sed -i -e 's:-static: :' Makefile } src_configure() { @@ -38,7 +38,7 @@ dobin $(<../package/commands) || die "dobin" dodir /sbin - mv "${D}"/usr/bin/{runit-init,runit,utmpset} "${D}"/sbin/ || die "dosbin" + mv "${ED}"/usr/bin/{runit-init,runit,utmpset} "${ED}"/sbin/ || die "dosbin" cd "${S}"/.. dodoc package/{CHANGES,README,THANKS,TODO} 1.35 sys-process/runit/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/runit/ChangeLog?rev=1.35&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/runit/ChangeLog?rev=1.35&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/runit/ChangeLog?r1=1.34&r2=1.35 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-process/runit/ChangeLog,v retrieving revision 1.34 retrieving revision 1.35 diff -u -r1.34 -r1.35 --- ChangeLog 6 Feb 2012 03:13:33 -0000 1.34 +++ ChangeLog 11 Aug 2012 11:11:52 -0000 1.35 @@ -1,6 +1,9 @@ # ChangeLog for sys-process/runit # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/runit/ChangeLog,v 1.34 2012/02/06 03:13:33 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/runit/ChangeLog,v 1.35 2012/08/11 11:11:52 heroxbd Exp $ + + 11 Aug 2012; Benda Xu runit-2.1.1-r1.ebuild: + fix relative directory and apply trivial prefix support 06 Feb 2012; Mike Frysinger runit-2.1.1-r1.ebuild: Don't run env-update in pkg_* funcs -- the PM does that.