Skip to content

Commit 879d203

Browse files
committed
README and utility scripts for the conda recipe
1 parent 63ce780 commit 879d203

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

recipe/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# How to build the conda package
2+
3+
To build and upload the conda package, do:
4+
5+
```
6+
conda build .
7+
./upload-conda-package.sh <path_to_build_package.tar.bz2>
8+
```

recipe/upload-conda-package.sh

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
#!/bin/bash
2+
3+
#
4+
# Upload conda package(s) to http://www.astro.washington.edu/users/mjuric/conda
5+
# channel.
6+
#
7+
8+
if [[ -z $1 ]]; then
9+
echo "usage: $0 <package_tarball> [<package_tarball> [...]]"
10+
exit -1
11+
fi
12+
13+
set -e
14+
15+
16+
CONDA="/astro/apps6/opt/anaconda2.4/bin/conda"
17+
DIR_BASE="public_html/html/conda"
18+
19+
# Decide where to upload
20+
if [[ $(uname) == Linux ]]; then
21+
DIR="$DIR_BASE/linux-64/"
22+
elif [[ $(uname) == Darwin ]]; then
23+
DIR="$DIR_BASE/osx-64/"
24+
else
25+
echo "unknown OS $(uname). aborting."
26+
fi
27+
28+
# Upload the packages
29+
scp "$@" "$HOST:$DIR"
30+
31+
# Reindex the channel
32+
ssh "$HOST" "$CONDA" index "$DIR"

0 commit comments

Comments
 (0)