When I follow the procedure at https://github.com/pharo-nosql/voyage

to install Voyage in a 4.0 image, it leads to an unfonctonnal Voyage
(timeout on socket when doing a query)

My configure baseline  is just as simple as the one bellow.
All is loaded fine but Voyage.

Any suggestion?

Hilaire


baseline10: spec
<version: '1.0-baseline'>
"This is Work-In-Progress and should be renamed upon stabilization"     
        spec for: #common do: [
                spec blessing: #baseline.
                [..]
                "External PROJECTS dependencies"
                spec project: 'voyage' with: [
                        spec
                                className: 'ConfigurationOfVoyageMongo';
                                repository: 
'github://pharo-nosql/voyage:master/mc';
                                versionString: #stable.
                         ].
                spec project: 'osprocess' with: [
                        spec
                                className: 'ConfigurationOfOSProcess';
                                repository: 
'http://www.squeaksource.com/OSProcess';
                                versionString: #stable].
                spec project: 'mustache' with: [
                        spec
                                className: 'ConfigurationOfMustache';
                                repository: 
'http://www.smalltalkhub.com/mc/NorbertHartl/Mustache/main';
                                versionString: #stable].
                spec project: 'neocsv' with: [
                        spec
                                className: 'ConfigurationOfNeoCSV';
                                repository: 'http://mc.stfx.eu/Neo';
                                versionString: #stable].
                spec project: 'seaside' with: [
                        spec
                                className: 'ConfigurationOfSeaside3';
                                repository:
'http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main';
                                versionString: #stable].
                spec project: 'bootstrap' with: [
                        spec
                                className: 'ConfigurationOfBootstrap';
                                repository:
'http://www.smalltalkhub.com/mc/TorstenBergmann/Bootstrap/main';
                                versionString: #stable].
                spec package: 'mold' with: [
                        spec repository:
'http://www.smalltalkhub.com/mc/philippeback/Mold/main'].
                "Our PACKAGES dependencies"
                spec
                        package: 'Cofigest' with: [
                                spec requires: #('neocsv' 'mustache' 
'osprocess' 'voyage')];
                        package: 'Cofigest-Bank products' with: [
                                spec requires: 'Cofigest'];
                        package: 'Cofigest-Seaside' with: [
                                spec requires: #('Cofigest' 'Cofigest-Bank 
products' 'seaside'
'bootstrap' 'mold')];
                        package: 'Cofigest-Tests' with: [
                                spec requires: #('Cofigest' 'Cofigest-Bank 
products')]
        ]






-- 
Dr. Geo
http://drgeo.eu


Reply via email to