From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1PC8H7-0000wu-Su for garchives@archives.gentoo.org; Sat, 30 Oct 2010 10:03:02 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3119AE0781; Sat, 30 Oct 2010 10:02:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id E5944E0781 for ; Sat, 30 Oct 2010 10:02:58 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 34FAB1B4061 for ; Sat, 30 Oct 2010 10:02:58 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2166) id C7B9D2004B; Sat, 30 Oct 2010 10:02:56 +0000 (UTC) From: "Samuli Suominen (ssuominen)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, ssuominen@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in app-editors/vile: vile-9.4d.ebuild vile-9.3h.ebuild X-VCS-Repository: gentoo-x86 X-VCS-Files: vile-9.4d.ebuild vile-9.3h.ebuild X-VCS-Directories: app-editors/vile X-VCS-Committer: ssuominen X-VCS-Committer-Name: Samuli Suominen Content-Type: text/plain; charset=utf8 Message-Id: <20101030100256.C7B9D2004B@flycatcher.gentoo.org> Date: Sat, 30 Oct 2010 10:02:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 9b80508f-13ea-4335-921b-142a565a6ae6 X-Archives-Hash: 7548e021a4781ebc8677abc0d806d8fa ssuominen 10/10/30 10:02:56 Modified: vile-9.4d.ebuild vile-9.3h.ebuild Log: Fix quoting, drop useless die from epatch =20 (Portage version: 2.2.0_alpha1/cvs/Linux x86_64) Revision Changes Path 1.13 app-editors/vile/vile-9.4d.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vile/v= ile-9.4d.ebuild?rev=3D1.13&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vile/v= ile-9.4d.ebuild?rev=3D1.13&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vile/v= ile-9.4d.ebuild?r1=3D1.12&r2=3D1.13 Index: vile-9.4d.ebuild =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/app-editors/vile/vile-9.4d.ebuild,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- vile-9.4d.ebuild 10 Oct 2007 07:26:10 -0000 1.12 +++ vile-9.4d.ebuild 30 Oct 2010 10:02:56 -0000 1.13 @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/vile/vile-9.4d.ebuild,v 1= .12 2007/10/10 07:26:10 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/vile/vile-9.4d.ebuild,v 1= .13 2010/10/30 10:02:56 ssuominen Exp $ =20 inherit eutils =20 @@ -25,11 +25,11 @@ =20 src_unpack() { unpack vile-9.4.tgz - cd ${S} + cd "${S}" =20 local p - for p in ${DISTDIR}/${P%[a-z]}[a-${P##*[0-9]}].patch.gz; do - epatch ${p} || die "epatch failed" + for p in "${DISTDIR}"/${P%[a-z]}[a-${P##*[0-9]}].patch.gz; do + epatch ${p} done } =20 @@ -42,6 +42,6 @@ } =20 src_install() { - make DESTDIR=3D${D} install || die "install failed" + make DESTDIR=3D"${D}" install || die "install failed" dodoc CHANGES* INSTALL README* doc/* } 1.14 app-editors/vile/vile-9.3h.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vile/v= ile-9.3h.ebuild?rev=3D1.14&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vile/v= ile-9.3h.ebuild?rev=3D1.14&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-editors/vile/v= ile-9.3h.ebuild?r1=3D1.13&r2=3D1.14 Index: vile-9.3h.ebuild =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/app-editors/vile/vile-9.3h.ebuild,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- vile-9.3h.ebuild 10 Oct 2007 07:26:10 -0000 1.13 +++ vile-9.3h.ebuild 30 Oct 2010 10:02:56 -0000 1.14 @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/vile/vile-9.3h.ebuild,v 1= .13 2007/10/10 07:26:10 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/vile/vile-9.3h.ebuild,v 1= .14 2010/10/30 10:02:56 ssuominen Exp $ =20 S=3D${WORKDIR}/vile-9.3 DESCRIPTION=3D"VI Like Emacs -- yet another full-featured vi clone" @@ -28,11 +28,11 @@ src_unpack() { unpack vile-9.3.tgz =20 - cd ${S} + cd "${S}" local i for i in a b c d e f g h do - gunzip -c ${DISTDIR}/vile-9.3$i.patch.gz | patch -p1 + gunzip -c "${DISTDIR}"/vile-9.3$i.patch.gz | patch -p1 done } =20 @@ -49,6 +49,6 @@ } =20 src_install () { - make DESTDIR=3D${D} install || die + make DESTDIR=3D"${D}" install || die dodoc CHANGES* MANIFEST INSTALL README* doc/* }