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 33D7113877A for ; Fri, 15 Aug 2014 23:16:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DD002E09C0; Fri, 15 Aug 2014 23:16:17 +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 89DD0E09C0 for ; Fri, 15 Aug 2014 23:16:17 +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 41B263402B4 for ; Fri, 15 Aug 2014 23:16:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 0305D18816 for ; Fri, 15 Aug 2014 23:16:15 +0000 (UTC) From: "Devan Franchini" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Devan Franchini" Message-ID: <1408144565.98f1e9b388ab7b10d09f9773144a7aa1e6788616.twitch153@gentoo> Subject: [gentoo-commits] proj/layman:master commit in: layman/ X-VCS-Repository: proj/layman X-VCS-Files: layman/config.py X-VCS-Directories: layman/ X-VCS-Committer: twitch153 X-VCS-Committer-Name: Devan Franchini X-VCS-Revision: 98f1e9b388ab7b10d09f9773144a7aa1e6788616 X-VCS-Branch: master Date: Fri, 15 Aug 2014 23:16: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: e8b64eb0-0407-49be-bf32-132945372111 X-Archives-Hash: 2dd30a523c21303f744c8214e6f4a6ca Message-ID: <20140815231615.Om7VOhnvrQrI6fs57-ct-vKDB6ipvsJGaH63MLzHaww@z> commit: 98f1e9b388ab7b10d09f9773144a7aa1e6788616 Author: Devan Franchini gentoo org> AuthorDate: Fri Aug 15 23:16:05 2014 +0000 Commit: Devan Franchini gentoo org> CommitDate: Fri Aug 15 23:16:05 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/layman.git;a=commit;h=98f1e9b3 config.py: Adds squashfs_* config opts --- layman/config.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/layman/config.py b/layman/config.py index 91c179e..adfd2de 100644 --- a/layman/config.py +++ b/layman/config.py @@ -123,6 +123,7 @@ class BareConfig(object): 'g-common_command': path([self.root, EPREFIX,'/usr/bin/g-common']), 'g-sorcery_command': path([self.root, EPREFIX,'/usr/bin/g-sorcery']), 'mercurial_command': path([self.root, EPREFIX,'/usr/bin/hg']), + 'squashfs_command': path([self.root, EPREFIX,'/usr/bin/unsquashfs']), 'rsync_command': path([self.root, EPREFIX,'/usr/bin/rsync']), 'svn_command': path([self.root, EPREFIX,'/usr/bin/svn']), 'tar_command': path([self.root, EPREFIX,'/bin/tar']), @@ -138,6 +139,8 @@ class BareConfig(object): 'mercurial_addopts' : '', 'mercurial_syncopts' : '', 'rsync_syncopts' : '', + 'squashfs_addopts': '', + 'squashfs_syncopts': '', 'svn_addopts' : '', 'svn_syncopts' : '', 'g-common_generateopts' : '', @@ -150,6 +153,7 @@ class BareConfig(object): 'git_postsync' : '', 'mercurial_postsync' : '', 'rsync_postsync' : '', + 'squashfs_postsync': '', 'svn_postsync' : '', 'tar_postsync' : '', 'g-common_postsync' : '',