Stable configuration of PetitParser broken for stable PetitGui in Pharo 5

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

Stable configuration of PetitParser broken for stable PetitGui in Pharo 5

Martin McClure-2
Loading PetitGui with this expression:

---
Metacello new
configuration: 'PetitParser';
version: #'stable';
repository:  'http://smalltalkhub.com/mc/Moose/PetitParser/main/';
load: 'PetitGui'.
---

loads, but any attempt to use the PetitParser GUI tool results in
deprecation exceptions like this:

---
The method GLMCompositePresentation>>smalltalkCode has been deprecated.
Use #pharoMethod (if you need to display a method)
     or #pharoScript (if you need to display snippets of code that do
not belong to a method)
---

It looks like this problem may have been fixed in
PetitGui-AndreiChis.156, but the stable configuration loads the earlier
PetitGui-StefanReichhart.150.

Perhaps the stable configuration needs to be updated for Pharo 5? It
looks like the latest version of the configuration is still using the
same version for Pharo 4 and Pharo 5.

Regards,

-Martin


Reply | Threaded
Open this post in threaded view
|

Re: Stable configuration of PetitParser broken for stable PetitGui in Pharo 5

Tudor Girba-2
Hi,

Thanks for the report.

PetitParser was not yet released for Pharo 5. It comes in the following days as part of the Moose release.

Cheers,
Doru


> On Aug 4, 2016, at 7:18 AM, Martin McClure <[hidden email]> wrote:
>
> Loading PetitGui with this expression:
>
> ---
> Metacello new
> configuration: 'PetitParser';
> version: #'stable';
> repository:  'http://smalltalkhub.com/mc/Moose/PetitParser/main/';
> load: 'PetitGui'.
> ---
>
> loads, but any attempt to use the PetitParser GUI tool results in deprecation exceptions like this:
>
> ---
> The method GLMCompositePresentation>>smalltalkCode has been deprecated.
> Use #pharoMethod (if you need to display a method)
>    or #pharoScript (if you need to display snippets of code that do not belong to a method)
> ---
>
> It looks like this problem may have been fixed in PetitGui-AndreiChis.156, but the stable configuration loads the earlier PetitGui-StefanReichhart.150.
>
> Perhaps the stable configuration needs to be updated for Pharo 5? It looks like the latest version of the configuration is still using the same version for Pharo 4 and Pharo 5.
>
> Regards,
>
> -Martin
>
>

--
www.tudorgirba.com
www.feenk.com

"What we can governs what we wish."





Reply | Threaded
Open this post in threaded view
|

Re: Stable configuration of PetitParser broken for stable PetitGui in Pharo 5

Martin McClure-2
On 08/03/2016 11:14 PM, Tudor Girba wrote:
> Hi,
>
> Thanks for the report.
>
> PetitParser was not yet released for Pharo 5. It comes in the following days as part of the Moose release.

Excellent, thanks for the update.

-Martin