GitFileTree and Metacello load from github problem

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

GitFileTree and Metacello load from github problem

Mariano Martinez Peck
Hi... I am totally dumb today or what??

I am trying to load:

Metacello new
baseline: 'OSSubprocess';
  repository: 'github://marianopeck/OSSubprocess:master/repository';
load.

And I am getting this error:

However, I am getting this error:

File Not Found:

'File @ /Users/mariano/Trabajo/PharoConsortium/imagenes/github-cache/marianopeck/OSSubprocess/master/marianopeck-OSSubprocess-18ae52f/repository/OSSubprocess-Tests.package/monticello.meta/version'

And doing a ls i get:

ls -la /Users/mariano/Trabajo/PharoConsortium/imagenes/github-cache/marianopeck/OSSubprocess/master/marianopeck-OSSubprocess-18ae52f/repository/OSSubprocess-Tests.package/monticello.meta/

-rw-r--r--  1 mariano staff  55 Jan 13 14:03 categories.st
-rw-r--r--  1 mariano staff   0 Jan 13 14:03 initializers.st
-rw-r--r--  1 mariano staff  27 Jan 13 14:03 package


There is no 'version' file as this guy is trying to load. 

The package was saved using GitFileTree. 

Thanks in advacne

--
Reply | Threaded
Open this post in threaded view
|

Re: GitFileTree and Metacello load from github problem

Thierry Goubier
Hi Mariano,

yes, this is
https://pharo.fogbugz.com/f/cases/17125/Metadata-less-compatibility-with-FileTree.

It was integrated in Pharo5 (50470) then reverted at one point, so it's
no more in the image. I'm trying to reactivate it, but I don't
understand what the CI error is.

It's the necessary support for FileTree to handle a filetree without
metadata format.

Thierry

Le 13/01/2016 18:13, Mariano Martinez Peck a écrit :

> Hi... I am totally dumb today or what??
>
> I am trying to load:
>
> Metacello new baseline: 'OSSubprocess'; repository:
> 'github://marianopeck/OSSubprocess:master/repository'; load.
>
> And I am getting this error:
>
> However, I am getting this error:
>
> File Not Found:
>
> 'File @
> /Users/mariano/Trabajo/PharoConsortium/imagenes/github-cache/marianopeck/OSSubprocess/master/marianopeck-OSSubprocess-18ae52f/repository/OSSubprocess-Tests.package/monticello.meta/version'
>
>  And doing a ls i get:
>
> ls -la
> /Users/mariano/Trabajo/PharoConsortium/imagenes/github-cache/marianopeck/OSSubprocess/master/marianopeck-OSSubprocess-18ae52f/repository/OSSubprocess-Tests.package/monticello.meta/
>
>  -rw-r--r--  1 mariano staff  55 Jan 13 14:03 categories.st
> <http://categories.st> -rw-r--r--  1 mariano staff   0 Jan 13 14:03
> initializers.st <http://initializers.st> -rw-r--r--  1 mariano staff
> 27 Jan 13 14:03 package
>
>
> There is no 'version' file as this guy is trying to load.
>
> The package was saved using GitFileTree.
>
> Thanks in advacne
>
> -- Mariano http://marianopeck.wordpress.com


Reply | Threaded
Open this post in threaded view
|

Re: GitFileTree and Metacello load from github problem

Mariano Martinez Peck


On Wed, Jan 13, 2016 at 2:24 PM, Thierry Goubier <[hidden email]> wrote:
Hi Mariano,

yes, this is
https://pharo.fogbugz.com/f/cases/17125/Metadata-less-compatibility-with-FileTree.

It was integrated in Pharo5 (50470) then reverted at one point, so it's
no more in the image. I'm trying to reactivate it, but I don't
understand what the CI error is.

It's the necessary support for FileTree to handle a filetree without
metadata format.


OK, indeed, it was that bug. I just manually loaded the slice and it worked perfectly. 
Until integrate it I will handle this in my image building :(

Gofer it
package: 'SLICE-Issue-17125-Metadata-less-compatibility-with-FileTree';
smalltalkhubUser: 'Pharo' project: 'Pharo50Inbox';
load.


 

Thierry

Le 13/01/2016 18:13, Mariano Martinez Peck a écrit :
Hi... I am totally dumb today or what??

I am trying to load:

Metacello new baseline: 'OSSubprocess'; repository:
'github://marianopeck/OSSubprocess:master/repository'; load.

And I am getting this error:

However, I am getting this error:

File Not Found:

'File @
/Users/mariano/Trabajo/PharoConsortium/imagenes/github-cache/marianopeck/OSSubprocess/master/marianopeck-OSSubprocess-18ae52f/repository/OSSubprocess-Tests.package/monticello.meta/version'

 And doing a ls i get:

ls -la
/Users/mariano/Trabajo/PharoConsortium/imagenes/github-cache/marianopeck/OSSubprocess/master/marianopeck-OSSubprocess-18ae52f/repository/OSSubprocess-Tests.package/monticello.meta/

 -rw-r--r--  1 mariano staff  55 Jan 13 14:03 categories.st
<http://categories.st> -rw-r--r--  1 mariano staff   0 Jan 13 14:03
initializers.st <http://initializers.st> -rw-r--r--  1 mariano staff
27 Jan 13 14:03 package


There is no 'version' file as this guy is trying to load.

The package was saved using GitFileTree.

Thanks in advacne

-- Mariano http://marianopeck.wordpress.com





--