Add a patch from Robin Johnson <robbat2@gentoo.org> from bug #207860 to exclude diges...
authorChris Gianelloni <wolf31o2@gentoo.org>
Fri, 8 Feb 2008 01:24:46 +0000 (01:24 +0000)
committerChris Gianelloni <wolf31o2@gentoo.org>
Fri, 8 Feb 2008 01:24:46 +0000 (01:24 +0000)
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@1288 d1e1f19c-881f-0410-ab34-b69fee027534

ChangeLog
modules/snapshot_target.py

index 2b25968854ddcfa297d1b6ca2f6177ee94f7948c..557c36efcdf8bf1cd0b3ba55e75ddf6ed90d443a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,11 @@
 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
 # $Id: $
 
+  08 Feb 2008; Chris Gianelloni <wolf31o2@gentoo.org>
+  modules/snapshot_target.py:
+  Add a patch from Robin Johnson <robbat2@gentoo.org> from bug #207860 to
+  exclude digest-* files from the snapshot.
+
   08 Feb 2008; Chris Gianelloni <wolf31o2@gentoo.org> 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
index 8083286cd64d366c1e2bd185e76d18a4874dfdc0..a99e9b58a94f08727613c4e4b856364543d646f2 100644 (file)
@@ -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..."