Hi: I created the packages GlorpPharoPort and GlorpPharoLoader in SqueakSource.
In GlorpPharoPort we will put all the changes (to the current packages of Glorp in squeaksource) o new stuff that is required for Glorp to work in Pharo but that is Glorp related. Notice this port is based in the Squeak port, not VW directly... So, to load Glorp in Pharo, take a Pharo image and evaluate this: |instClass| instClass := Smalltalk at: #Installer ifAbsent: [ScriptLoader loadLatestPackage: 'Installer-Core' fromSqueaksource: 'Installer'. Smalltalk at: #Installer]. instClass ss project: 'Glorp'; install: 'GlorpPharoLoader'. (Smalltalk at: #GlorpPharoLoader) loadGlorp. This also works with latests images where the Eliot closures are integrated. The important thing here is that Pharo doesn't support underscore in selectors. So, it is installed the workarround that is here: http://code.google.com/p/pharo/issues/detail?id=826 We hope someone really fix this so that no to use the workarround. Cheers, Mariano
_______________________________________________ Pharo-project mailing list [email protected] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
