From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C798E138334 for ; Tue, 14 Aug 2018 13:58:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E4AC0E08A2; Tue, 14 Aug 2018 13:58:18 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BB76EE08A2 for ; Tue, 14 Aug 2018 13:58:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5D2CD335CA9 for ; Tue, 14 Aug 2018 13:58:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5E4FF37A for ; Tue, 14 Aug 2018 13:58:15 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1534255085.8931043f366547b065da7f3cf4ba614da149f33c.mgorny@gentoo> Subject: [gentoo-commits] proj/gentoo-syntax:master commit in: plugin/ X-VCS-Repository: proj/gentoo-syntax X-VCS-Files: plugin/newebuild.vim X-VCS-Directories: plugin/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 8931043f366547b065da7f3cf4ba614da149f33c X-VCS-Branch: master Date: Tue, 14 Aug 2018 13:58:15 +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: ef2578f9-a283-445c-b9a6-924a6cc954ef X-Archives-Hash: 7283822c74a67be10d0447963d53cdaf commit: 8931043f366547b065da7f3cf4ba614da149f33c Author: Michał Górny gentoo org> AuthorDate: Thu Jan 25 18:28:23 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Aug 14 13:58:05 2018 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=8931043f newebuild: RDEPEND-then-DEPEND is more common Closes: https://github.com/gentoo/gentoo-syntax/pull/17 plugin/newebuild.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/newebuild.vim b/plugin/newebuild.vim index 5020b36..f8dd767 100644 --- a/plugin/newebuild.vim +++ b/plugin/newebuild.vim @@ -164,8 +164,8 @@ fun! MakeNewEbuild() put ='' " {{{ extra deps for some categories - put ='DEPEND=\"\"' - put ='RDEPEND=\"${DEPEND}\"' + put ='RDEPEND=\"\"' + put ='DEPEND=\"${RDEPEND}\"' " }}} endif