Issue 6493 in pharo: Integrate new version of Fuel and remove obsolete packages

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

Issue 6493 in pharo: Integrate new version of Fuel and remove obsolete packages

pharo
Status: Accepted
Owner: marianopeck
CC: [hidden email]
Labels: Type-Enh Milestone-2.0

New issue 6493 by marianopeck: Integrate new version of Fuel and remove  
obsolete packages
http://code.google.com/p/pharo/issues/detail?id=6493

Hi guys. We should integrate a new version of Fuel. It is not a "stable"  
release of Fuel, but I added and improved a couple of things which make it  
worth it (I will open other issues for that).

So, what you should do is update packages to:
- Fuel-MarianoMartinezPeck.713
- FuelCommandLineHandler-MarianoMartinezPeck.6
- FuelMetalevel-MarianoMartinezPeck.59
- FuelMetalevelTests-MarianoMartinezPeck.46
- FuelTests-MarianoMartinezPeck.275

On the other hand, we have to remove the packages of FuelPackageLoader  
because it was renamed to Tanker, and soon I will create another issue for  
integrating Tanker:

ScriptLoader new deletePackage: 'FuelPackageLoader'.
ScriptLoader new deletePackage: 'FuelPackageLoader-Mappers'.
ScriptLoader new deletePackage: 'FuelPackageLoaderTests'.
RPackageOrganizer  default unregisterPackageNamed: #'FuelPackageLoader'.
RPackageOrganizer  default unregisterPackageNamed:  
#'FuelPackageLoader-Mappers'.
RPackageOrganizer  default unregisterPackageNamed:  
#'FuelPackageLoaderTests'.


Finally, we also have to remove  FuelFileSystem because now the streams of  
FIleSystem were removed. So:

ScriptLoader new deletePackage: 'FuelFileSystem'.
ScriptLoader new deletePackage: 'FuelFileSystemTests'.
RPackageOrganizer  default unregisterPackageNamed: #'FuelFileSystem'.
RPackageOrganizer  default unregisterPackageNamed: #'FuelFileSystemTests'.




_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 6493 in pharo: Integrate new version of Fuel and remove obsolete packages

pharo
Updates:
        Status: FixToInclude

Comment #1 on issue 6493 by marianopeck: Integrate new version of Fuel and  
remove obsolete packages
http://code.google.com/p/pharo/issues/detail?id=6493

(No comment was entered for this change.)


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 6493 in pharo: Integrate new version of Fuel and remove obsolete packages

pharo
Updates:
        Status: Integrated

Comment #2 on issue 6493 by [hidden email]: Integrate new version of  
Fuel and remove obsolete packages
http://code.google.com/p/pharo/issues/detail?id=6493

in in 20238


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 6493 in pharo: Integrate new version of Fuel and remove obsolete packages

pharo

Comment #3 on issue 6493 by marianopeck: Integrate new version of Fuel and  
remove obsolete packages
http://code.google.com/p/pharo/issues/detail?id=6493

Something went wrong in the integration. We have now failures of Date and  
DateAndTime. HOwever, if I reload Fuel-MarianoMartinezPeck.713 (the version  
which was integrated) the tests are green agian...


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 6493 in pharo: Integrate new version of Fuel and remove obsolete packages

pharo
Updates:
        Status: FixToInclude

Comment #4 on issue 6493 by marianopeck: Integrate new version of Fuel and  
remove obsolete packages
http://code.google.com/p/pharo/issues/detail?id=6493

So we need to include once again (from Inbox)

Name: Fuel-MarianoMartinezPeck.714
Author: MarianoMartinezPeck
Time: 1 August 2012, 2:37:22.171 pm
UUID: c55e91fb-74b3-4009-95e7-3f1ec43dde64
Ancestors: Fuel-MarianoMartinezPeck.713

new version so that esteban can integrate


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 6493 in pharo: Integrate new version of Fuel and remove obsolete packages

pharo
Updates:
        Status: WorkNeeded

Comment #5 on issue 6493 by marianopeck: Integrate new version of Fuel and  
remove obsolete packages
http://code.google.com/p/pharo/issues/detail?id=6493

and of course, classes of the removed packages where actually never  
removed....something is really broken


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 6493 in pharo: Integrate new version of Fuel and remove obsolete packages

pharo
Updates:
        Status: FixToInclude
        Cc: [hidden email]

Comment #6 on issue 6493 by marianopeck: Integrate new version of Fuel and  
remove obsolete packages
http://code.google.com/p/pharo/issues/detail?id=6493

Well....I understood how to remove packages (but I will fix that in another  
issue)

To fix THIS issue, please evaluate the following and ignore all the  
debuggers that come up

(MCPackage named: 'FuelPackageLoaderTests') workingCopy unload.
RPackageOrganizer  default unregisterPackageNamed:  
#'FuelPackageLoaderTests'.
(MCPackage named: 'FuelPackageLoader') workingCopy unload.
RPackageOrganizer  default unregisterPackageNamed: #'FuelPackageLoader'.
RPackageOrganizer  default unregisterPackageNamed:  
#'FuelPackageLoader-Mappers'.


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 6493 in pharo: Integrate new version of Fuel and remove obsolete packages

pharo

Comment #7 on issue 6493 by [hidden email]: Integrate new version of  
Fuel and remove obsolete packages
http://code.google.com/p/pharo/issues/detail?id=6493

after the fixes to RPackage, actually the script needed is:


RPackageOrganizer initialize.

(MCPackage named: 'FuelPackageLoaderTests') workingCopy unload.
(MCPackage named: 'FuelPackageLoader') workingCopy unload.




_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 6493 in pharo: Integrate new version of Fuel and remove obsolete packages

pharo
Updates:
        Status: Integrated

Comment #8 on issue 6493 by [hidden email]: Integrate new version of  
Fuel and remove obsolete packages
http://code.google.com/p/pharo/issues/detail?id=6493

in 20242


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 6493 in pharo: Integrate new version of Fuel and remove obsolete packages

pharo

Comment #9 on issue 6493 by marianopeck: Integrate new version of Fuel and  
remove obsolete packages
http://code.google.com/p/pharo/issues/detail?id=6493

Estebam until issue 6512 is fixed, the packages won't be unregister from  
RPackageOrganizer.  In fact, RPacakgeORganizer default packages still  
includes FuelPackageLoader and FuelPackageLoaderTests :(


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 6493 in pharo: Integrate new version of Fuel and remove obsolete packages

pharo
Updates:
        Status: FixToInclude

Comment #10 on issue 6493 by marianopeck: Integrate new version of Fuel and  
remove obsolete packages
http://code.google.com/p/pharo/issues/detail?id=6493

Esteban, I would like if you can do the last piece of the integration:

(MCPackage named: 'FuelFileSystem') workingCopy unload.
RPackageOrganizer  default unregisterPackageNamed: #'FuelFileSystem'.
(MCPackage named: 'FuelFileSystemTests') workingCopy unload.
RPackageOrganizer  default unregisterPackageNamed: #'FuelFileSystemTests'.

RPackageOrganizer  default unregisterPackageNamed: #'FuelPackageLoader'.
RPackageOrganizer  default unregisterPackageNamed:  
#'FuelPackageLoaderTests'.


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 6493 in pharo: Integrate new version of Fuel and remove obsolete packages

pharo
Updates:
        Status: Integrated

Comment #11 on issue 6493 by [hidden email]: Integrate new version of  
Fuel and remove obsolete packages
http://code.google.com/p/pharo/issues/detail?id=6493

in 20247


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker
Reply | Threaded
Open this post in threaded view
|

Re: Issue 6493 in pharo: Integrate new version of Fuel and remove obsolete packages

pharo

Comment #12 on issue 6493 by marianopeck: Integrate new version of Fuel and  
remove obsolete packages
http://code.google.com/p/pharo/issues/detail?id=6493

Estebam are you sure you have integrated this?  I can still browse the  
class FLFileSystemFileStreamStrategy, part of FuelFileSystem.... and if I  
evaluate those 6 lines of code, I cannot browse it anymore...


_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker