diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2017-08-21 15:34:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-21 15:34:01 -0400 |
commit | d90a083991cfa5a59114324ba6c5a101a3188f0a (patch) | |
tree | 1ad5620545eda11f8c4cf7da1d4170ceecdcd20b | |
parent | 9dc4cc085d2075810766b712a8d82a67ad1c80a0 (diff) | |
download | astroconda-dev-d90a083991cfa5a59114324ba6c5a101a3188f0a.tar.gz |
Initial commit of namedlist (#61)
-rw-r--r-- | namedlist/bld.bat | 2 | ||||
-rw-r--r-- | namedlist/build.sh | 1 | ||||
-rw-r--r-- | namedlist/meta.yaml | 33 |
3 files changed, 36 insertions, 0 deletions
diff --git a/namedlist/bld.bat b/namedlist/bld.bat new file mode 100644 index 0000000..85a7bc3 --- /dev/null +++ b/namedlist/bld.bat @@ -0,0 +1,2 @@ +%PYTHON% setup.py install +if errorlevel 1 exit 1 diff --git a/namedlist/build.sh b/namedlist/build.sh new file mode 100644 index 0000000..5a5aeeb --- /dev/null +++ b/namedlist/build.sh @@ -0,0 +1 @@ +$PYTHON setup.py install diff --git a/namedlist/meta.yaml b/namedlist/meta.yaml new file mode 100644 index 0000000..0b52454 --- /dev/null +++ b/namedlist/meta.yaml @@ -0,0 +1,33 @@ +{% set name = 'namedlist' %} +{% set version = '1.7' %} +{% set number = '0' %} +{% set filename = name + '-' + version + '.tar.gz' %} + +about: + home: https://bitbucket.com/ericvsmith/{{ name }} + license: BSD + summary: Release I Control, for git + +build: + number: {{ number }} + +package: + name: {{ name }} + version: {{ version }} + +requirements: + build: + - setuptools + - python + + run: + - python + +source: + fn: {{ filename }} + url: https://pypi.python.org/packages/88/49/f7db251a949311c4f09f583e1b3c5a7e377220d5913607e6ab453446fe7e/{{ filename }} + md5: 91932e6797b13df64bffcec4b5c810a3 + +test: + imports: + - namedlist |