|
From: Will P. <pa...@us...> - 2006-05-17 10:04:31
|
Update of /cvsroot/ark/ARK/arkbase/ark In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11456 Modified Files: ChangeLog package.py Log Message: change behavior when there is no package manifest file Index: ChangeLog =================================================================== RCS file: /cvsroot/ark/ARK/arkbase/ark/ChangeLog,v retrieving revision 1.49 retrieving revision 1.50 diff -C2 -r1.49 -r1.50 *** ChangeLog 18 Apr 2005 14:08:39 -0000 1.49 --- ChangeLog 17 May 2006 10:03:54 -0000 1.50 *************** *** 1,2 **** --- 1,8 ---- + 2006-05-17 Will Partain <pa...@dc...> + + * package.py (ArkPkg.sidaiManifestThings): Change the way we react + to no manifest file for a package; in particular, a "satellite" deployment + may not have a manifest file to use. + 2005-04-18 Will Partain <pa...@dc...> Index: package.py =================================================================== RCS file: /cvsroot/ark/ARK/arkbase/ark/package.py,v retrieving revision 1.53 retrieving revision 1.54 diff -C2 -r1.53 -r1.54 *** package.py 4 Mar 2005 14:51:21 -0000 1.53 --- package.py 17 May 2006 10:03:54 -0000 1.54 *************** *** 777,781 **** except IOError,e: if e.errno == errno.ENOENT: ! raise ark.error.NoManifestFile,sumfile else: raise IOError,e --- 777,785 ---- except IOError,e: if e.errno == errno.ENOENT: ! # for a "satellite" deployment (e.g.), there may *not* be an md5sums file. ! # In that case, we assume a normal symlink-y deployment (type 1), ! # and carry on ! return (1,[]) ! # old: raise ark.error.NoManifestFile,sumfile else: raise IOError,e |