Error using metacello

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

Error using metacello

Arnaud
Hi All,

Am trying to use metacello to install some pakages onmy pharo from
github and smaltalkhub but am having some issue. here is the code am
executing on the playground

Metacello new
    configuration: 'OfNeoCSV';
    repository:'https://github.com/svenvc/NeoCVS/tree/master/repository';
    version: #stable;
    load.

here is the error i obtain.

Could not resolve: ConfigurationOfNeoCSV.

Best Regards.

A Tsombeng

Reply | Threaded
Open this post in threaded view
|

Re: Error using metacello

SergeStinckwich
Arnaud, you can install NeoCSV from the Catalog.

On Sun, May 22, 2016 at 9:32 PM, mathias arnaud nkeumo tsombeng
<[hidden email]> wrote:

> Hi All,
>
> Am trying to use metacello to install some pakages onmy pharo from
> github and smaltalkhub but am having some issue. here is the code am
> executing on the playground
>
> Metacello new
>     configuration: 'OfNeoCSV';
>     repository:'https://github.com/svenvc/NeoCVS/tree/master/repository';
>     version: #stable;
>     load.
>
> here is the error i obtain.
>
> Could not resolve: ConfigurationOfNeoCSV.
>
> Best Regards.
>
> A Tsombeng
>



--
Serge Stinckwich
UCBN & UMI UMMISCO 209 (IRD/UPMC)
Every DSL ends up being Smalltalk
http://www.doesnotunderstand.org/

Reply | Threaded
Open this post in threaded view
|

Re: Error using metacello

CyrilFerlicot
In reply to this post by Arnaud
Le 22/05/2016 22:32, mathias arnaud nkeumo tsombeng a écrit :

> Hi All,
>
> Am trying to use metacello to install some pakages onmy pharo from
> github and smaltalkhub but am having some issue. here is the code am
> executing on the playground
>
> Metacello new
>     configuration: 'OfNeoCSV';
>     repository:'https://github.com/svenvc/NeoCVS/tree/master/repository';
>     version: #stable;
>     load.
>
> here is the error i obtain.
>
Hi,

The configuration should be NeoCVS and not OfNeoCVS.

Metacello new
        githubUser: 'svenvc' project: 'NeoCVS' commitish: 'master' path:
'repository';
        configuration: 'NeoCSV';
        version: #stable;
        load.

> Could not resolve: ConfigurationOfNeoCSV.
>
> Best Regards.
>
> A Tsombeng
>


--
Cyril Ferlicot

http://www.synectique.eu

165 Avenue Bretagne
Lille 59000 France


signature.asc (836 bytes) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: Error using metacello

Dale Henrichs-3
In reply to this post by Arnaud
The following is the cross-platform (Squeak, GemStone and Pharo) way to specify a github repository:

  Metacello new
    configuration: 'OfNeoCSV';
    repository:'github://svenvc/NeoCVS:master/repository';
    version: #stable;
    load.

Here's a reference for the various cross-platfrom urls that can be used with Metacello[1]

Dale
[1] https://github.com/dalehenrich/metacello-work/blob/master/docs/MetacelloScriptingAPI.md#repository-descriptions

On 5/22/16 1:32 PM, mathias arnaud nkeumo tsombeng wrote:
Hi All,

Am trying to use metacello to install some pakages onmy pharo from
github and smaltalkhub but am having some issue. here is the code am
executing on the playground

Metacello new
    configuration: 'OfNeoCSV';
    repository:'https://github.com/svenvc/NeoCVS/tree/master/repository';
    version: #stable;
    load.

here is the error i obtain.

Could not resolve: ConfigurationOfNeoCSV.

Best Regards.

A Tsombeng