Skip to content

Commit

Permalink
Remove old stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeStinckwich committed Apr 16, 2014
1 parent 46a651f commit 507cb69
Showing 1 changed file with 11 additions and 46 deletions.
57 changes: 11 additions & 46 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,65 +5,30 @@ Build statuses:
- Pharo **2**: [![Build Status](https://ci.inria.fr/pharo-contribution/buildStatus/icon?job=SciSmalltalk/PHARO=20,VERSION=bleedingEdge,VM=vm)](https://ci.inria.fr/pharo-contribution/job/SciSmalltalk/PHARO=20,VERSION=bleedingEdge,VM=vm/)
- Pharo **3**: [![Build Status](https://ci.inria.fr/pharo-contribution/buildStatus/icon?job=SciSmalltalk/PHARO=30,VERSION=bleedingEdge,VM=vm)](https://ci.inria.fr/pharo-contribution/job/SciSmalltalk/PHARO=30,VERSION=bleedingEdge,VM=vm/)

##How to install SciSmalltalk in Pharo
##How to install SciSmalltalk in Pharo 2.0/3.0

The simplest way to install in Pharo is via Metacello and Gofer.
* Bootstrap SciSmalltalk
If you want to install the last stable version (0.8):

```Smalltalk
Gofer new
url: 'http://www.smalltalkhub.com/mc/SergeStinckwich/SciSmalltalk/main';
package: 'ConfigurationOfSciSmalltalk';
load.
(Smalltalk at: #ConfigurationOfSciSmalltalk) loadBleedingEdge.
((Smalltalk at: #ConfigurationOfSciSmalltalk) project version: '0.8') load.
```

All packages load into the Math-* package names.


##How to install SciSmalltalk for GitHub

* Download the last dev Pharo 1.4: https://ci.lille.inria.fr/pharo/job/Pharo%201.4/lastSuccessfulBuild/artifact/Pharo-1.4.zip

* Bootstrap FileTree:

```Smalltalk
Gofer new
url: 'http://ss3.gemstone.com/ss/FileTree';
package: 'ConfigurationOfFileTree';
load.
((Smalltalk at: #ConfigurationOfFileTree) project version: '1.0') load.
```

* Clone this repository:

```shell
mkdir SciSmalltalk
cd SciSmalltalk
git clone https://github.com/SergeStinckwich/SciSmalltalk.git
```

* Attach to filetree repository and load latest packages (use correct path to your filetree download/clone):
If you want to install the development version :

```Smalltalk
repo := 'Add you repo path here'.
Gofer new
repository: (MCFileTreeRepository new directory:
(FileDirectory on: repo));
package: 'Math';
load.
url: 'http://www.smalltalkhub.com/mc/SergeStinckwich/SciSmalltalk/main';
package: 'ConfigurationOfSciSmalltalk';
load.
(Smalltalk at: #ConfigurationOfSciSmalltalk) loadDevelopment.
```
The above instructions are incorrect. When loading from FileTree/GitHub clone, you must load each package. Load packages in order Core, Extensions, Test. Core packages are those not labelled tests or extensions. After loading all packages, please ensure that tests pass. If you think you have all the packages loaded and have failing tests, please contact me. In the meantime, though I am using github as a useful code store, I recommend installing from SS3/Metacello.

## How to contribute to SciSmalltalk

We welcome submissions!
All packages load into the Math-* package names.

* A google group exists for this project at http://groups.google.com/group/scismalltalk
## How to contribute to SciSmalltalk

* Fork this repository, then clone your copy (instead of cloning from above). When you have made changes, commit, and make a Pull Request.
```shell
mkdir SciSmalltalk
cd SciSmalltalk
git clone https://github.com/YourUserName/SciSmalltalk.git
```
We welcome submissions! A google group exists for this project at http://groups.google.com/group/scismalltalk

0 comments on commit 507cb69

Please sign in to comment.