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 140F213800E for ; Tue, 7 Aug 2012 08:50:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E9DBBE058A; Tue, 7 Aug 2012 08:50:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id B501FE058A for ; Tue, 7 Aug 2012 08:50:27 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1490E1B4046 for ; Tue, 7 Aug 2012 08:50:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id BD829E5439 for ; Tue, 7 Aug 2012 08:50:25 +0000 (UTC) From: "André Erdmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "André Erdmann" Message-ID: <1344325104.9da3deb5d4b5e4b2e850139d6e0f9c9fbf1c0655.dywi@gentoo> Subject: [gentoo-commits] proj/R_overlay:master commit in: roverlay/ebuild/ X-VCS-Repository: proj/R_overlay X-VCS-Files: roverlay/ebuild/evars.py X-VCS-Directories: roverlay/ebuild/ X-VCS-Committer: dywi X-VCS-Committer-Name: André Erdmann X-VCS-Revision: 9da3deb5d4b5e4b2e850139d6e0f9c9fbf1c0655 X-VCS-Branch: master Date: Tue, 7 Aug 2012 08:50: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: 8cf074bb-ac6d-4a15-a6a9-5b87e9370cc2 X-Archives-Hash: 04ed0cb07d3b97d3a872e7169bae7d8a commit: 9da3deb5d4b5e4b2e850139d6e0f9c9fbf1c0655 Author: André Erdmann mailerd de> AuthorDate: Tue Aug 7 07:38:24 2012 +0000 Commit: André Erdmann mailerd de> CommitDate: Tue Aug 7 07:38:24 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/R_overlay.git;a=commit;h=9da3deb5 fix str formatting issue --- roverlay/ebuild/evars.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/roverlay/ebuild/evars.py b/roverlay/ebuild/evars.py index 5ead5c5..d1a228c 100644 --- a/roverlay/ebuild/evars.py +++ b/roverlay/ebuild/evars.py @@ -117,7 +117,7 @@ class RDEPEND ( EbuildVar ): def enable_suggests ( self ): """Adds the optional R_SUGGESTS dependencies to RDEPEND.""" - self.add_value ( '{USE}? ( ${{DEPS}} )'.format ( + self.add_value ( '{USE}? ( ${{{DEPS}}} )'.format ( USE = IUSE_SUGGESTS, DEPS = RSUGGESTS_NAME ) )