[Pkg] Installer: Installer-Core-kph.304.mcz

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Mon Feb 23 05:30:01 UTC 2009


A new version of Installer-Core was added to project Installer:
http://www.squeaksource.com/Installer/Installer-Core-kph.304.mcz

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

Name: Installer-Core-kph.304
Author: kph
Time: 23 February 2009, 5:29:56 am
UUID: 754144c3-7342-4753-ba42-f6f01fe8aa85
Ancestors: Installer-Core-mtf.303

- pulled Installer-Scripts out

=============== Diff against Installer-Core-mtf.303 ===============

Item was changed:
  ----- Method: Installer class>>upgrade (in category 'instanciation') -----
  upgrade
  
+ 	Installer ss project: 'Installer'; 
+ 		installQuietly: 'Installer-Core';
+ 		installQuietly: 'Installer-Scripts'.
+ 		
- 	Installer ss project: 'Installer'; installQuietly: 'Installer-Core'.
- 	
  	^ self!

Item was changed:
  ----- Method: Installer class>>install: (in category 'action report') -----
  install: scriptName
  
  	^ (self scripts install: scriptName) ifNil:[ self web install: scriptName ]
  !

Item was removed:
- ----- Method: InstallerScripts>>scriptLevelPlayingFieldSqueak38 (in category 'as yet unclassified') -----
- scriptLevelPlayingFieldSqueak38
- 
- Installer debug mantis fixBug: '6476 Enable MC File in if before 3.9'.
- 
- Installer install:'LevelPlayingField-Monticello15'.!

Item was removed:
- ----- Method: InstallerScripts>>scriptLPF (in category 'as yet unclassified') -----
- scriptLPF
- 
- Installer install: 'LevelPlayingField-Preamble'.
- Installer install: 'LevelPlayingField'.
- Installer install: 'LevelPlayingField-Postscript'.!

Item was removed:
- ----- Method: InstallerScripts>>scriptOmniBrowser (in category 'as yet unclassified') -----
- scriptOmniBrowser
- 
- Installer mantis fixBug: 7132.
- Installer wiresong project: 'ob';
- install: 'OmniBrowser-mtf.413';
- install: 'OB-Standard';
- install: 'OB-Morphic';
- install: 'OB-SUnitIntegration';
- install: 'OB-Enhancements'.!

Item was removed:
- ----- Method: InstallerScripts>>scriptLevelPlayingFieldSophie (in category 'as yet unclassified') -----
- scriptLevelPlayingFieldSophie
- 
- 	^ self scriptLevelPlayingFieldSqueak38!

Item was removed:
- ----- Method: InstallerScripts>>scriptPackagesPharo (in category 'as yet unclassified') -----
- scriptPackagesPharo
- 
- Installer mantis ensureFix: '7272 BlockContext equality testing missing'.
- Installer squeaksource project: 'Sake'; install: 'Sake-Core'.
- Installer squeaksource project: 'Packages';
- install: 'Sake-Packages';
- install: 'Packages-Library'.!

Item was removed:
- ----- Method: InstallerScripts>>scriptLevelPlayingFieldPreamble (in category 'as yet unclassified') -----
- scriptLevelPlayingFieldPreamble
- 
- Transcript show: 'Preamble found:'.
- Installer mantis ensureFix: 7131.
- Installer mantis ensureFix: 7205.
- Installer mantis ensureFix: 7218.
- Installer mantis ensureFix: 7166.
- Installer mantis ensureFix: 7291.
- Installer mantis ensureFix: 6426.
- !

Item was removed:
- ----- Method: InstallerScripts class>>basicInstall (in category 'as yet unclassified') -----
- basicInstall
- 
- 	| selector |
- 	
- 	self options do: [ :ea | 
- 		selector := ea value asLegalSelector asSymbol.
- 		(self respondsTo: selector) ifTrue: [ ^ self perform: selector ]
- 	].
- 
- 	^ nil!

Item was removed:
- ----- Method: InstallerScripts>>scriptLevelPlayingFieldPharo (in category 'as yet unclassified') -----
- scriptLevelPlayingFieldPharo
- 
- Installer install:'LevelPlayingField-Monticello15'.
- !

Item was removed:
- ----- Method: InstallerScripts>>scriptLevelPlayingFieldSqueak310 (in category 'as yet unclassified') -----
- scriptLevelPlayingFieldSqueak310
- 
- "lets not be beta any more"
- SystemVersion current version: 'Squeak3.10'.
- "fix the millisecond clock"
- Installer mantis ensureFix: 474.
- Installer mantis ensureFix: 6805.
- 
- Installer install:'LevelPlayingField-Monticello15'.!

Item was removed:
- ----- Method: InstallerScripts>>scriptUnloadTraits (in category 'as yet unclassified') -----
- scriptUnloadTraits
- 
- "Phase 1: Disable traits activity and stub out the instance variables that will be removed in Phase 2"
- 
- SystemChangeNotifier uniqueInstance
- noMoreNotificationsFor: ProvidedSelectors current;
- noMoreNotificationsFor: RequiredSelectors current;
- noMoreNotificationsFor: LocalSends current.
- Installer installUrl: 'http://installer.pbwiki.org/f/UnloadTraits-StubOutAcessors.cs'.
- 
- "Phase 2: Recompile the image with classes in the old format, ie, without the traitsComposition and localSends instance variables"
- 
- [
- ClassDescription subclass: #Metaclass
- instanceVariableNames: 'thisClass'
- classVariableNames: ' '
- poolDictionaries: ' '
- category: 'Kernel-Classes'.
- ClassDescription subclass: #Class
- instanceVariableNames: 'subclasses name classPool sharedPools environment category'
- classVariableNames: ' '
- poolDictionaries: ' '
- category: 'Kernel-Classes'.
- ] on: Warning do: [:warning | warning resume].
- 
- "Phase 3: Remove all traits and all references to the Traits classes from the image, including methods that refer to traits functionality"
- 
- "Kill all traits" "variables are nil-ed out to prevent obsolete refs later"
- Smalltalk allTraits do: [:trait | trait removeFromSystem. trait := nil].
- "Recompile all methods that were part of a trait"
- SystemNavigation default allBehaviorsDo: [:class | class selectorsAndMethodsDo: [:sel :method | class ~~ method methodClass ifTrue: [class recompile: sel]. method := nil]. class := nil].
- "Remove references to traits from various places in the code"
- Installer installUrl: 'http://installer.pbwiki.org/f/UnloadTraits-ClearRefs.cs'.
- 
- "Phase 4: Unload the Traits package and install the Traits compatability stubs for Monticello"
- 
- Installer unload: 'Traits'.
- Installer installUrl: 'http://installer.pbwiki.org/f/TraitsStubs.cs'.
- 
- 
- !

Item was removed:
- ----- Method: InstallerScripts>>scriptUniverses (in category 'as yet unclassified') -----
- scriptUniverses
- 
- Installer ss project: 'XMLSupport'; install: 'XML-Parser'.
- Installer ss project: 'universes'; install: 'Universes'.!

Item was removed:
- ----- Method: InstallerScripts>>scriptLevelPlayingFieldCroquet (in category 'as yet unclassified') -----
- scriptLevelPlayingFieldCroquet
- 
- Installer mantis fixBug: '7087 Enable MC File in for Croquet'.
- Installer mantis fixBug: '7088 Parser cannot parse the selector of a method with an underscore assignment'.
- 
- Installer install:'LevelPlayingField-Monticello15'.
- Installer ss project: 'mc'; install: 'TweakMC'.!

Item was removed:
- Installer subclass: #InstallerScripts
- 	instanceVariableNames: 'script isStepping'
- 	classVariableNames: ''
- 	poolDictionaries: ''
- 	category: 'Installer-Core'!
- 
- !InstallerScripts commentStamp: 'kph 2/23/2009 02:27' prior: 0!
- (self new addPackage: 'Example') options collect: [ :ea  | ea value asLegalSelector asSymbol ]  #(#scriptExampleSqueak310forKPH #scriptExampleSqueak310 #scriptExampleSqueak310)!

Item was removed:
- ----- Method: InstallerScripts>>scriptLevelPlayingFieldLauncherLaunch (in category 'as yet unclassified') -----
- scriptLevelPlayingFieldLauncherLaunch
- 
-  Installer mantis fixBug: '6086 Improved Line End Convention Specification'.
-  
-  Installer squeaksource project:'Installer';
-         install:  'Installer-Launcher'.
-  
-  Installer mantis fixBug: '5851 Refactor SmalltalkImage saveAs'.
-  
-  Transcript cr; cr; show:'You now have a level playing field.'.
-  Transcript cr; cr; show:'Launcher now processing additional commandline parameters...'.
-  (Smalltalk at: #Launcher) new
-  		actionSelector: #launchFrom: ;
-  		image: SmalltalkImage current;
-  		commandLineClass: Launcher;
-  		beFirstTime;
-  		begin;
-  		yourself.!

Item was removed:
- ----- Method: InstallerScripts>>scriptLevelPlayingField (in category 'as yet unclassified') -----
- scriptLevelPlayingField
- 	Transcript cr; show: 'Your image version is not explicitly supported by LPF yet. Contact maintainers for details'.
- 	Installer install:'LevelPlayingField-Monticello15'.!

Item was removed:
- ----- Method: InstallerScripts>>scriptLevelPlayingFieldSqueak3102 (in category 'as yet unclassified') -----
- scriptLevelPlayingFieldSqueak3102
- 
- 	^ self scriptLevelPlayingFieldSqueak3101!

Item was removed:
- ----- Method: InstallerScripts>>scriptLevelPlayingFieldSqueak37 (in category 'as yet unclassified') -----
- scriptLevelPlayingFieldSqueak37
- 
- Installer debug mantis fixBug: '6476 Enable MC File in if before 3.9'.
- 
- "add ifNil:ifNotNil"
- Installer installUrl: 'http://installer.pbwiki.com/f/For37.cs'.
- 
- Installer install:'LevelPlayingField-Monticello15'.
- 
- Installer squeaksource project: 'Glorp37Compat'; install: 'Glorp3.7Compatibility'.!

Item was removed:
- ----- Method: InstallerScripts>>scriptLevelPlayingFieldSqueak39 (in category 'as yet unclassified') -----
- scriptLevelPlayingFieldSqueak39
- 
- Installer install:'LevelPlayingField-Monticello15'.
- !

Item was removed:
- ----- Method: InstallerScripts class>>options (in category 'as yet unclassified') -----
- options
- 
- 	^ { 
- 	
- 	['script', self package, Smalltalk version, 'for' ,  Utilities authorInitialsPerSe asUppercase].
- 	['script', self package, Smalltalk version].
- 	['script', self package, SystemVersion current majorMinorVersion].
- 	
- 	}!

Item was removed:
- ----- Method: InstallerScripts>>basicInstall (in category 'as yet unclassified') -----
- basicInstall
- 
- 	| selector |
- 	
- 	self options do: [ :ea | 
- 		selector := ea value asLegalSelector asSymbol.
- 		(self respondsTo: selector) ifTrue: [ self perform: selector. ^ true ]
- 	].
- 
- 	^ nil!

Item was removed:
- ----- Method: InstallerScripts>>product (in category 'as yet unclassified') -----
- product
- 	| vers |
- 	vers := Smalltalk version.
- 	
- 	1 to: vers size do: [ :n | (vers at: n) isDigit ifTrue: [ ^ Smalltalk version first: n-1 ] ]
- 	
- "
- self new product
- "!

Item was removed:
- ----- Method: InstallerScripts>>scriptMonticello16Beta (in category 'as yet unclassified') -----
- scriptMonticello16Beta
- "
- Monticello 1.6 will be all about truly atomic loading, thanks to SystemEditor. The atomic loader comes with every copy of Monticello 1.5, but is disabled by default. So this script just loads up MC 1.5, SystemEditor, and enables the atomic loader.
- 
- Note that this is beta level software, but I think it mostly works
- 
- There is no support for Traits yet, or for Tweak fields, so you won't be able to load Traits or Nile or parts of Omnibrowser with this enabled.
- To use the stable loader, disable the preference monticello > useMonticelloAtomicLoader
- "
- 
- Installer ss project: 'SystemEditor';
- install: 'SystemEditor-Core';
- install: 'SystemEditor-Squeak'.
- Preferences setPreference: #useMonticelloAtomicLoader toValue: true.!

Item was removed:
- ----- Method: InstallerScripts>>options (in category 'as yet unclassified') -----
- options
- 
- 	^ { 
- 	
- 	['script', self package, Smalltalk version, 'for' ,  Utilities authorInitialsPerSe asUppercase].
- 	['script', self package, Smalltalk version].
- 	['script', self package, SystemVersion current majorMinorVersion].
- 	['script', self package, self product ].
- 	['script', self package ].
- 	
- 	}!

Item was removed:
- ----- Method: InstallerScripts>>scriptLevelPlayingFieldetoys (in category 'as yet unclassified') -----
- scriptLevelPlayingFieldetoys
- 
- 	^ self scriptLevelPlayingFieldSqueak38!

Item was removed:
- ----- Method: InstallerScripts>>scriptLevelPlayingFieldPreamblePharo (in category 'as yet unclassified') -----
- scriptLevelPlayingFieldPreamblePharo
- 
- Transcript show: 'All fixes are already in Pharo 10236'.!

Item was removed:
- ----- Method: InstallerScripts>>scriptLevelPlayingFieldPostscript (in category 'as yet unclassified') -----
- scriptLevelPlayingFieldPostscript
- 
- Installer upgrade.
- 
- Smalltalk organization removeSystemCategory: 'Monticello-Tests'.
- (MCPackage named: 'Monticello') workingCopy unregister.
- (MCPackage named: 'PackageInfo') workingCopy unregister.
- (MCPackage named: 'MonticelloConfigurations') workingCopy unregister.
- 
- SystemOrganization removeEmptyCategories.
- 
- MCMethodDefinition freeSomeSpace.
- MCFileBasedRepository freeSomeSpace.
- DataStream initialize.
- 
- Transcript show: 'Postscript: Squeakmap Update '.
- 
- [ Installer sm update ] ifError: [ Transcript show: '(Squeakmap not installed)'.].
- 
- Installer install:'LevelPlayingField-LauncherLaunch'.
- !

Item was removed:
- ----- Method: InstallerScripts>>scriptLogging (in category 'as yet unclassified') -----
- scriptLogging
- 
-  Installer mantis ensureFix: '7219 Improve Streams Usage Readability'.
-  Installer ss project: 'Logging';
-       install: 'ProcessSpecific';
-       install: 'Logging'.!

Item was removed:
- ----- Method: InstallerScripts>>scriptLevelPlayingFieldMonticello15Pharo (in category 'as yet unclassified') -----
- scriptLevelPlayingFieldMonticello15Pharo
- 
- Installer installSilentlyUrl: 'http://installer.pbwiki.com/f/PackageInfo-Base-kph.67.st'.
- Installer installSilentlyUrl: 'http://installer.pbwiki.com/f/Monticello.impl-kph.635.st'.
- 
- Installer ss project:'mc';
- installQuietly: 'Monticello.impl-kph.635';
- installQuietly: 'PackageInfo-Base'.!

Item was removed:
- ----- Method: InstallerScripts>>scriptLPFPreamble (in category 'as yet unclassified') -----
- scriptLPFPreamble!

Item was removed:
- ----- Method: InstallerScripts>>scriptPackages (in category 'as yet unclassified') -----
- scriptPackages
- 
- Installer mantis ensureFix: '7219 Streams Readability'.
- Installer mantis ensureFix: '7166 Speedup allSelectors add allSelectorsBelow'.
- Installer mantis ensureFix: '7272 BlockContext equality testing missing'.
- Installer squeaksource project: 'Sake'; install: 'Sake-Core'.
- Installer squeaksource project: 'Packages';
- install: 'Sake-Packages';
- install: 'Packages-Library'.!

Item was removed:
- ----- Method: InstallerScripts>>scriptLevelPlayingFieldSqueak3101 (in category 'as yet unclassified') -----
- scriptLevelPlayingFieldSqueak3101
- 
- Installer install:'LevelPlayingField-Monticello15'.!

Item was removed:
- ----- Method: InstallerScripts>>scriptLevelPlayingFieldMonticello15 (in category 'as yet unclassified') -----
- scriptLevelPlayingFieldMonticello15
- 
- Installer installSilentlyUrl: 'http://installer.pbwiki.com/f/PackageInfo-Base-mtf.70.st'.
- Installer installSilentlyUrl: 'http://installer.pbwiki.com/f/Monticello.impl-kph.635.st'.
- 
- ((SequenceableCollection organization categoryOfElement: #do:displayingProgress:) beginsWith: '*')
- ifTrue: [SequenceableCollection organization classify: #do:displayingProgress: under: #enumerating].
- 
- Installer ss project:'mc';
- installQuietly: 'Monticello.impl-kph.636';
- installQuietly: 'PackageInfo-Base'.!



More information about the Packages mailing list