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 2612A1387FD for ; Tue, 1 Apr 2014 16:39:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7F06BE0AB0; Tue, 1 Apr 2014 16:38:53 +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 046D3E0AAB for ; Tue, 1 Apr 2014 16:38:52 +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 3443433FD0A 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 EFDBB188FE for ; Tue, 1 Apr 2014 16:38:48 +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: <1396280471.0afe47d7ddff30f1e82f942e865afeb1672a7ca5.dywi@gentoo> Subject: [gentoo-commits] proj/R_overlay:master commit in: roverlay/config/ X-VCS-Repository: proj/R_overlay X-VCS-Files: roverlay/config/entrymap.py X-VCS-Directories: roverlay/config/ X-VCS-Committer: dywi X-VCS-Committer-Name: André Erdmann X-VCS-Revision: 0afe47d7ddff30f1e82f942e865afeb1672a7ca5 X-VCS-Branch: master Date: Tue, 1 Apr 2014 16:38:48 +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: 2371f605-5a1e-4b93-80f1-694a2c8c0c74 X-Archives-Hash: 299341cf38e552f98572f2f097a6af7d commit: 0afe47d7ddff30f1e82f942e865afeb1672a7ca5 Author: André Erdmann mailerd de> AuthorDate: Mon Mar 31 15:41:11 2014 +0000 Commit: André Erdmann mailerd de> CommitDate: Mon Mar 31 15:41:11 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/R_overlay.git;a=commit;h=0afe47d7 config entry map: make LICENSES_FILE configurable --- roverlay/config/entrymap.py | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/roverlay/config/entrymap.py b/roverlay/config/entrymap.py index fb285a1..46c2f7f 100644 --- a/roverlay/config/entrymap.py +++ b/roverlay/config/entrymap.py @@ -553,15 +553,13 @@ CONFIG_ENTRY_MAP = dict ( description = 'try to read licenses from PORTDIR/licenses', ), - # hidden option (using CACHEDIR.root + "/licenses" as licenses file) - licenses_file = None, -# licenses_file = dict ( -# path = [ 'LICENSEMAP', 'licenses_file', ], -# value_type = 'fs_file', -# description = ( -# 'licenses file (used as fallback if PORTDIR not available)' -# ), -# ), + licenses_file = dict ( + path = [ 'LICENSEMAP', 'licenses_file', ], + value_type = 'fs_file', + description = ( + 'licenses file (used as fallback if PORTDIR not available)' + ), + ), create_licenses_file = dict ( path = [ 'LICENSEMAP', 'create_licenses_file', ],