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 7A0371387FD for ; Tue, 1 Apr 2014 16:38:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6B79DE0AB2; Tue, 1 Apr 2014 16:38:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D9EC6E0AAB for ; Tue, 1 Apr 2014 16:38:53 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C3F6E33FCEA for ; Tue, 1 Apr 2014 16:38:52 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id AE6B818906 for ; Tue, 1 Apr 2014 16:38:49 +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: <1396370190.9402ffb0190bed041670f725d477603c247febad.dywi@gentoo> Subject: [gentoo-commits] proj/R_overlay:master commit in: roverlay/setupscript/ X-VCS-Repository: proj/R_overlay X-VCS-Files: roverlay/setupscript/runtime.py X-VCS-Directories: roverlay/setupscript/ X-VCS-Committer: dywi X-VCS-Committer-Name: André Erdmann X-VCS-Revision: 9402ffb0190bed041670f725d477603c247febad X-VCS-Branch: master Date: Tue, 1 Apr 2014 16:38:49 +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: 34f96cef-ef51-409b-8b25-02cfff532dab X-Archives-Hash: 778d0ccce3f30f5d60758d5540b7c324 commit: 9402ffb0190bed041670f725d477603c247febad Author: André Erdmann mailerd de> AuthorDate: Mon Mar 31 17:15:00 2014 +0000 Commit: André Erdmann mailerd de> CommitDate: Tue Apr 1 16:36:30 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/R_overlay.git;a=commit;h=9402ffb0 setupscript, arg parser: add ROVERLAY_TARGET_TYPE ... to epilog --- roverlay/setupscript/runtime.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/roverlay/setupscript/runtime.py b/roverlay/setupscript/runtime.py index afe9daa..b9b7ed0 100644 --- a/roverlay/setupscript/runtime.py +++ b/roverlay/setupscript/runtime.py @@ -426,8 +426,10 @@ class SetupEnvironment ( roverlay.runtime.IndependentRuntimeEnvironment ): defaults = self.get_parser_defaults(), epilog = ( 'Environment variables:\n' - '* ROVERLAY_PRJROOT - path to roverlay\'s source dir\n' - '* ROVERLAY_INSTALLED - mark roverlay as installed (if set and not empty)\n' + '* ROVERLAY_PRJROOT - path to roverlay\'s source dir\n' + '* ROVERLAY_INSTALLED - mark roverlay as installed\n' + ' (if set and not \'0\', \'no\', \'n\' \'false\')\n' + '* ROVERLAY_TARGET_TYPE - set target environment type\n' ) ) # --- end of create_argparser (...) ---