Gentoo Archives: gentoo-commits

From: "Paul Varner (fuzzyray)" <fuzzyray@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-portage/gentoolkit/files: 0.3.0.4-euse.patch
Date: Thu, 28 Jul 2011 02:56:05
Message-Id: 20110728025553.A9A1C20054@flycatcher.gentoo.org
1 fuzzyray 11/07/28 02:55:53
2
3 Added: 0.3.0.4-euse.patch
4 Log:
5 Revison bump to fix missing parenthises in euse. Bug 376393
6
7 (Portage version: 2.1.10.7/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 app-portage/gentoolkit/files/0.3.0.4-euse.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/gentoolkit/files/0.3.0.4-euse.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/gentoolkit/files/0.3.0.4-euse.patch?rev=1.1&content-type=text/plain
14
15 Index: 0.3.0.4-euse.patch
16 ===================================================================
17 From: Paul Varner <fuzzyray@g.o>
18 Date: Wed, 27 Jul 2011 19:01:34 +0000 (-0500)
19 Subject: Fix missing parenthises in euse. Bug 376393
20 X-Git-Url: http://git.overlays.gentoo.org/gitweb/?p=proj%2Fgentoolkit.git;a=commitdiff_plain;h=9ad547e5f33fce1dfb378809252d871265a82c58;hp=af81292035e8d3559b11ab16fc54ccd921cb3587
21
22 Fix missing parenthises in euse. Bug 376393
23 ---
24
25 diff --git a/bin/euse b/bin/euse
26 index 65fb119..be47cc9 100755
27 --- a/bin/euse
28 +++ b/bin/euse
29 @@ -508,7 +508,7 @@ get_flagstatus_helper_pkg() {
30 atoms=($(
31 echo "${atoms[@]}" | python -c "
32 from __future__ import print_function;import portage.dep as dep, sys
33 -print(' '.join(dep.match_to_list('$5-$6',sys.stdin.read().split()))"))
34 +print(' '.join(dep.match_to_list('$5-$6',sys.stdin.read().split())))"))
35 fi
36 flags=$(for atom in ${atoms[@]}; do
37 [[ -z $atom ]] && continue