[squeak-dev] The Inbox: AlienInstaller-mha.1.mcz

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

[squeak-dev] The Inbox: AlienInstaller-mha.1.mcz

commits-2
A new version of AlienInstaller was added to project The Inbox:
http://source.squeak.org/inbox/AlienInstaller-mha.1.mcz

==================== Summary ====================

Name: AlienInstaller-mha.1
Author: mha
Time: 3 September 2009, 6:22:29 am
UUID: 7bf1bf82-a874-46e5-98a3-5684e0120ab2
Ancestors:

use "AlienInstaller install" to install Alien in the trunk image

==================== Snapshot ====================

SystemOrganization addCategory: #AlienInstaller!

Object subclass: #AlienInstaller
        instanceVariableNames: ''
        classVariableNames: ''
        poolDictionaries: ''
        category: 'AlienInstaller'!

----- Method: AlienInstaller class>>install (in category 'installation') -----
install
        | repository |
        repository := (Installer repository: 'http://www.squeaksource.com/') project: 'Alien'.
        #( 'Alien-Core-First' 'Alien-Core' 'Alien-Examples' 'Alien-LibC' 'Alien-CoreTest' 'Alien-Last-Class-Initialize' )
                do: [ :p | repository install: p ]
                displayingProgress: 'Installing Alien packages ...'.
        (PackageInfo named: 'Alien') methods
                do: [:ea | ea actualClass recompile: ea methodSymbol]
                displayingProgress: 'Recompiling...'!


Reply | Threaded
Open this post in threaded view
|

Re: [squeak-dev] The Inbox: AlienInstaller-mha.1.mcz

CdAB63
Basic doubt:

If I have FFI and applications that use FFI, would Alien interfere with
FFI/applications?

Best regards

Casimiro

Em 03-09-2009 16:22, [hidden email] escreveu:

> A new version of AlienInstaller was added to project The Inbox:
> http://source.squeak.org/inbox/AlienInstaller-mha.1.mcz
>
> ==================== Summary ====================
>
> Name: AlienInstaller-mha.1
> Author: mha
> Time: 3 September 2009, 6:22:29 am
> UUID: 7bf1bf82-a874-46e5-98a3-5684e0120ab2
> Ancestors:
>
> use "AlienInstaller install" to install Alien in the trunk image
>
> ==================== Snapshot ====================
>
> SystemOrganization addCategory: #AlienInstaller!
>
> Object subclass: #AlienInstaller
> instanceVariableNames: ''
> classVariableNames: ''
> poolDictionaries: ''
> category: 'AlienInstaller'!
>
> ----- Method: AlienInstaller class>>install (in category 'installation') -----
> install
> | repository |
> repository := (Installer repository: 'http://www.squeaksource.com/') project: 'Alien'.
> #( 'Alien-Core-First' 'Alien-Core' 'Alien-Examples' 'Alien-LibC' 'Alien-CoreTest' 'Alien-Last-Class-Initialize' )
> do: [ :p | repository install: p ]
> displayingProgress: 'Installing Alien packages ...'.
> (PackageInfo named: 'Alien') methods
> do: [:ea | ea actualClass recompile: ea methodSymbol]
> displayingProgress: 'Recompiling...'!
>
>
>
>  




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

Re: [squeak-dev] The Inbox: AlienInstaller-mha.1.mcz

Eliot Miranda-2


On Thu, Sep 3, 2009 at 1:04 PM, Casimiro de Almeida Barreto <[hidden email]> wrote:
Basic doubt:

If I have FFI and applications that use FFI, would Alien interfere with
FFI/applications?

No.  They don't interfere with each other. 


Best regards

Casimiro

Em 03-09-2009 16:22, [hidden email] escreveu:
> A new version of AlienInstaller was added to project The Inbox:
> http://source.squeak.org/inbox/AlienInstaller-mha.1.mcz
>
> ==================== Summary ====================
>
> Name: AlienInstaller-mha.1
> Author: mha
> Time: 3 September 2009, 6:22:29 am
> UUID: 7bf1bf82-a874-46e5-98a3-5684e0120ab2
> Ancestors:
>
> use "AlienInstaller install" to install Alien in the trunk image
>
> ==================== Snapshot ====================
>
> SystemOrganization addCategory: #AlienInstaller!
>
> Object subclass: #AlienInstaller
>       instanceVariableNames: ''
>       classVariableNames: ''
>       poolDictionaries: ''
>       category: 'AlienInstaller'!
>
> ----- Method: AlienInstaller class>>install (in category 'installation') -----
> install
>       | repository |
>       repository := (Installer repository: 'http://www.squeaksource.com/') project: 'Alien'.
>       #( 'Alien-Core-First' 'Alien-Core' 'Alien-Examples' 'Alien-LibC' 'Alien-CoreTest' 'Alien-Last-Class-Initialize' )
>               do: [ :p | repository install: p ]
>               displayingProgress: 'Installing Alien packages ...'.
>       (PackageInfo named: 'Alien') methods
>               do: [:ea | ea actualClass recompile: ea methodSymbol]
>               displayingProgress: 'Recompiling...'!
>
>
>
>