From: Chris Gianelloni Date: Fri, 8 Feb 2008 01:24:46 +0000 (+0000) Subject: Add a patch from Robin Johnson from bug #207860 to exclude diges... X-Git-Tag: CATALYST_2_0_6_916~206 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=3ddbd977eaf51c54cada75f07ca9c22e35991131;p=catalyst.git Add a patch from Robin Johnson from bug #207860 to exclude digest-* files from the snapshot. git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@1288 d1e1f19c-881f-0410-ab34-b69fee027534 --- diff --git a/ChangeLog b/ChangeLog index 2b259688..557c36ef 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,11 @@ # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 # $Id: $ + 08 Feb 2008; Chris Gianelloni + modules/snapshot_target.py: + Add a patch from Robin Johnson from bug #207860 to + exclude digest-* files from the snapshot. + 08 Feb 2008; Chris Gianelloni arch/amd64.py, arch/x86.py, modules/generic_stage_target.py: Fixing a minor display issue when we write out make.conf, adding HOSTUSE for diff --git a/modules/snapshot_target.py b/modules/snapshot_target.py index 8083286c..a99e9b58 100644 --- a/modules/snapshot_target.py +++ b/modules/snapshot_target.py @@ -44,7 +44,7 @@ class snapshot_target(generic_stage_target): if not os.path.exists(mytmp): os.makedirs(mytmp) - cmd("rsync -a --delete --exclude /packages/ --exclude /distfiles/ --exclude /local/ --exclude CVS/ --exclude .svn "+\ + cmd("rsync -a --delete --exclude /packages/ --exclude /distfiles/ --exclude /local/ --exclude CVS/ --exclude .svn --filter=H_**/files/digest-* "+\ self.settings["portdir"]+"/ "+mytmp+"/portage/","Snapshot failure",env=self.env) print "Compressing Portage snapshot tarball..."