Where is the installation log? Installing FileMan into Pharo 6.0-60510, which is 6.1.

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|

Where is the installation log? Installing FileMan into Pharo 6.0-60510, which is 6.1.

Hannes Hirzel
Hello

I wanted to install the FileMan package through the catalog into Pharo
6.0-60510 (a.k.a 6.1).

FileMan is library used by Cuis Smalltalk and  also available for
other Smalltalk dialects -  http://wiki.squeak.org/squeak/6333.

There is a FileMan entry in the catalog, but no description and 6.0
compatibility tag. So I tried that installation.

For two seconds then there was a note at the lower left corner of the
screen that there was an installation problem.

I wonder where I do find the installation log? This is necessary  in
such cases in order to spot the problem.


However in this case the solution was to go for the README of

    https://github.com/mumez/FileMan

It has


    Gofer it
          url: 'http://squeaksource.com/MetacelloRepository';
          package: 'ConfigurationOfFileMan';
          load.
    (Smalltalk at: #ConfigurationOfFileMan) perform: #load.


Then 13 out of 16 tests pass.

Regards

Hannes

Reply | Threaded
Open this post in threaded view
|

Re: Where is the installation log? Installing FileMan into Pharo 6.0-60510, which is 6.1.

Herby Vojčík
H. Hirzel wrote:

> Hello
>
> I wanted to install the FileMan package through the catalog into Pharo
> 6.0-60510 (a.k.a 6.1).
>
> FileMan is library used by Cuis Smalltalk and  also available for
> other Smalltalk dialects -  http://wiki.squeak.org/squeak/6333.
>
> There is a FileMan entry in the catalog, but no description and 6.0
> compatibility tag. So I tried that installation.
>
> For two seconds then there was a note at the lower left corner of the
> screen that there was an installation problem.
>
> I wonder where I do find the installation log? This is necessary  in
> such cases in order to spot the problem.

I would look into stdout, stderr (in Windows they are saved to file) and
.changes file.

>
> However in this case the solution was to go for the README of
>
>      https://github.com/mumez/FileMan
>
> It has
>
>
>      Gofer it
>            url: 'http://squeaksource.com/MetacelloRepository';
>            package: 'ConfigurationOfFileMan';
>            load.
>      (Smalltalk at: #ConfigurationOfFileMan) perform: #load.
>
>
> Then 13 out of 16 tests pass.
>
> Regards
>
> Hannes
>


Reply | Threaded
Open this post in threaded view
|

Re: Where is the installation log? Installing FileMan into Pharo 6.0-60510, which is 6.1.

Hannes Hirzel
The terminal window from which I started pharo 6.0-60510/6.1 is open.

No stdout, stderr messages (Ubuntu 14.04) -- Squeak has them.

I was also searching for stdout in the 'Settings browser'.

On 8/21/17, Herby Vojčík <[hidden email]> wrote:

> H. Hirzel wrote:
>> Hello
>>
>> I wanted to install the FileMan package through the catalog into Pharo
>> 6.0-60510 (a.k.a 6.1).
>>
>> FileMan is library used by Cuis Smalltalk and  also available for
>> other Smalltalk dialects -  http://wiki.squeak.org/squeak/6333.
>>
>> There is a FileMan entry in the catalog, but no description and 6.0
>> compatibility tag. So I tried that installation.
>>
>> For two seconds then there was a note at the lower left corner of the
>> screen that there was an installation problem.
>>
>> I wonder where I do find the installation log? This is necessary  in
>> such cases in order to spot the problem.
>
> I would look into stdout, stderr (in Windows they are saved to file) and
> .changes file.
>
>>
>> However in this case the solution was to go for the README of
>>
>>      https://github.com/mumez/FileMan
>>
>> It has
>>
>>
>>      Gofer it
>>            url: 'http://squeaksource.com/MetacelloRepository';
>>            package: 'ConfigurationOfFileMan';
>>            load.
>>      (Smalltalk at: #ConfigurationOfFileMan) perform: #load.
>>
>>
>> Then 13 out of 16 tests pass.
>>
>> Regards
>>
>> Hannes
>>
>
>
>

Reply | Threaded
Open this post in threaded view
|

Re: Where is the installation log? Installing FileMan into Pharo 6.0-60510, which is 6.1.

Hannes Hirzel
'WordMenu -> 'Tools' -> 'Transcript'  :-)

The Transcript window needs to be open.

Then it shows

...RETRY->ConfigurationOfFileMan
...RETRY->ConfigurationOfFileMan
gofer repository error: 'GoferRepositoryError: Could not access
http://www.squeaksource.com/MetacelloRepository/FileMan:
ZnHttpUnsuccessful: 404 Not Found'...ignoring
...FAILED->ConfigurationOfFileManCould not resolve:
ConfigurationOfFileMan [ConfigurationOfFileMan]


I.e. there is no   http://www.squeaksource.com/MetacelloRepository/FileMan


http://www.squeaksource.com/MetacelloRepository

contains several
    ConfigurationOfFileMan
files.

The latest is http://www.squeaksource.com/MetacelloRepository/ConfigurationOfFileMan-mu.9.mcz

A newer version is needed in the repository
      http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo60/main

enriched with the three methods

    #catalogDescription
    #catalogContactInfo
    #catalogKeywords

mentioned in

     http://catalog.pharo.org/catalog/note-for-developers

In addition three tests need to be fixed.

--Hannes

On 8/21/17, H. Hirzel <[hidden email]> wrote:

> The terminal window from which I started pharo 6.0-60510/6.1 is open.
>
> No stdout, stderr messages (Ubuntu 14.04) -- Squeak has them.
>
> I was also searching for stdout in the 'Settings browser'.
>
> On 8/21/17, Herby Vojčík <[hidden email]> wrote:
>> H. Hirzel wrote:
>>> Hello
>>>
>>> I wanted to install the FileMan package through the catalog into Pharo
>>> 6.0-60510 (a.k.a 6.1).
>>>
>>> FileMan is library used by Cuis Smalltalk and  also available for
>>> other Smalltalk dialects -  http://wiki.squeak.org/squeak/6333.
>>>
>>> There is a FileMan entry in the catalog, but no description and 6.0
>>> compatibility tag. So I tried that installation.
>>>
>>> For two seconds then there was a note at the lower left corner of the
>>> screen that there was an installation problem.
>>>
>>> I wonder where I do find the installation log? This is necessary  in
>>> such cases in order to spot the problem.
>>
>> I would look into stdout, stderr (in Windows they are saved to file) and
>> .changes file.
>>
>>>
>>> However in this case the solution was to go for the README of
>>>
>>>      https://github.com/mumez/FileMan
>>>
>>> It has
>>>
>>>
>>>      Gofer it
>>>            url: 'http://squeaksource.com/MetacelloRepository';
>>>            package: 'ConfigurationOfFileMan';
>>>            load.
>>>      (Smalltalk at: #ConfigurationOfFileMan) perform: #load.
>>>
>>>
>>> Then 13 out of 16 tests pass.
>>>
>>> Regards
>>>
>>> Hannes
>>>
>>
>>
>>
>

Reply | Threaded
Open this post in threaded view
|

Re: Where is the installation log? Installing FileMan into Pharo 6.0-60510, which is 6.1.

Stephane Ducasse-3
FileSystem is much better than Fileman. Fileman is a library from the
past from my point of view.


On Mon, Aug 21, 2017 at 3:18 PM, H. Hirzel <[hidden email]> wrote:

> 'WordMenu -> 'Tools' -> 'Transcript'  :-)
>
> The Transcript window needs to be open.
>
> Then it shows
>
> ...RETRY->ConfigurationOfFileMan
> ...RETRY->ConfigurationOfFileMan
> gofer repository error: 'GoferRepositoryError: Could not access
> http://www.squeaksource.com/MetacelloRepository/FileMan:
> ZnHttpUnsuccessful: 404 Not Found'...ignoring
> ...FAILED->ConfigurationOfFileManCould not resolve:
> ConfigurationOfFileMan [ConfigurationOfFileMan]
>
>
> I.e. there is no   http://www.squeaksource.com/MetacelloRepository/FileMan
>
>
> http://www.squeaksource.com/MetacelloRepository
>
> contains several
>     ConfigurationOfFileMan
> files.
>
> The latest is http://www.squeaksource.com/MetacelloRepository/ConfigurationOfFileMan-mu.9.mcz
>
> A newer version is needed in the repository
>       http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo60/main
>
> enriched with the three methods
>
>     #catalogDescription
>     #catalogContactInfo
>     #catalogKeywords
>
> mentioned in
>
>      http://catalog.pharo.org/catalog/note-for-developers
>
> In addition three tests need to be fixed.
>
> --Hannes
>
> On 8/21/17, H. Hirzel <[hidden email]> wrote:
>> The terminal window from which I started pharo 6.0-60510/6.1 is open.
>>
>> No stdout, stderr messages (Ubuntu 14.04) -- Squeak has them.
>>
>> I was also searching for stdout in the 'Settings browser'.
>>
>> On 8/21/17, Herby Vojčík <[hidden email]> wrote:
>>> H. Hirzel wrote:
>>>> Hello
>>>>
>>>> I wanted to install the FileMan package through the catalog into Pharo
>>>> 6.0-60510 (a.k.a 6.1).
>>>>
>>>> FileMan is library used by Cuis Smalltalk and  also available for
>>>> other Smalltalk dialects -  http://wiki.squeak.org/squeak/6333.
>>>>
>>>> There is a FileMan entry in the catalog, but no description and 6.0
>>>> compatibility tag. So I tried that installation.
>>>>
>>>> For two seconds then there was a note at the lower left corner of the
>>>> screen that there was an installation problem.
>>>>
>>>> I wonder where I do find the installation log? This is necessary  in
>>>> such cases in order to spot the problem.
>>>
>>> I would look into stdout, stderr (in Windows they are saved to file) and
>>> .changes file.
>>>
>>>>
>>>> However in this case the solution was to go for the README of
>>>>
>>>>      https://github.com/mumez/FileMan
>>>>
>>>> It has
>>>>
>>>>
>>>>      Gofer it
>>>>            url: 'http://squeaksource.com/MetacelloRepository';
>>>>            package: 'ConfigurationOfFileMan';
>>>>            load.
>>>>      (Smalltalk at: #ConfigurationOfFileMan) perform: #load.
>>>>
>>>>
>>>> Then 13 out of 16 tests pass.
>>>>
>>>> Regards
>>>>
>>>> Hannes
>>>>
>>>
>>>
>>>
>>
>