[Pkg] Monticello Public: PackageInfo-Base-kph.62.mcz

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Mon Dec 8 18:59:37 UTC 2008


A new version of PackageInfo-Base was added to project Monticello Public:
http://www.squeaksource.com/mc/PackageInfo-Base-kph.62.mcz

==================== Summary ====================

Name: PackageInfo-Base-kph.62
Author: kph
Time: 8 December 2008, 6:59:34 pm
UUID: ec826156-3e26-4124-b389-4c4cd8ded8e2
Ancestors: PackageInfo-Base-kph.61

added an exclusion list

=============== Diff against PackageInfo-Base-kph.61 ===============

Item was changed:
  ----- Method: PackageInfo>>externalFiles (in category 'naming') -----
  externalFiles
  	
+ 	| matches entries excludes |
- 	| matches entries |
  	
  	matches := self externalFilesMatches.
+ 	excludes := self externalFilesExclude.
  	
  	entries := (FileDirectory default entriesAsFDs) select: [ :aFD | matches anySatisfy: [ :match | match match: aFD localName ] ].
+ 	entries := entries reject: [ :aFD | excludes anySatisfy: [ :match | match match: aFD localName ] ].
  
  	entries addAll: (entries gather: [ :aFD | aFD allEntriesAsFDs ]).
  
  	^ entries !

Item was added:
+ ----- Method: PackageInfo>>externalFilesExclude (in category 'naming') -----
+ externalFilesExclude
+ 
+ 	^ #( '*.image' '*.changes' '*.sources' 'prefs' 'sm' 'package-cache' )!



More information about the Packages mailing list