File: README.md

package info (click to toggle)
vistrails 3.0~git%2B9dc22bd-2
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 62,860 kB
  • sloc: python: 314,054; xml: 42,697; sql: 4,113; php: 731; sh: 469; makefile: 253
file content (46 lines) | stat: -rw-r--r-- 1,182 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# What is this

This is the recipe used to build the Conda package for VisTrails.

Note that these are binary packages, and so they have to be built for every
platform (and architecture).

# How to build

The build gets a tarball from PyPI, so a source package should be uploaded
there first. **You do not need the rest of the VisTrails source to build the
package, just the `vistrails` directory alongside this README**.

* Update the version, URL and md5 in meta.yaml
* Run `conda build vistrails`
* Run `binstar upload anaconda/conda-bld/<system>/vistrails-<version>.tar.bz2`

# Full procedure for Linux with Vagrant

```
# Install Anaconda
./Anaconda-2.0.1-*.sh

# Install patchelf (from conda)
conda install patchelf

# Install patchelf (manually)
sudo aptitude install build-essential git autoconf autoreconf
git clone https://github.com/NixOS/patchelf.git
cd patchelf/
./bootstrap.sh
./configure
make
sudo make install
cd

# This will need an X server (or use xvfb?)
export DISPLAY=:0

# Build VisTrails
vi vistrails/meta.yaml # Update version, url, md5
conda build vistrails

# Upload binary
binstar upload anaconda/conda-bld/linux-32/vistrails-2.1.4-np18py27_0.tar.bz2
```