From a32e82dd68e48216723ab26caeca2d07efc52aa6 Mon Sep 17 00:00:00 2001 From: "James E.H. Turner" Date: Thu, 29 Sep 2016 12:39:27 -0300 Subject: Rename astroconda-utils to astroconda-build-utils. --- astroconda-build-utils/bld.bat | 3 +++ astroconda-build-utils/build.sh | 4 ++++ astroconda-build-utils/meta.yaml | 18 ++++++++++++++++++ astroconda-utils/bld.bat | 3 --- astroconda-utils/build.sh | 4 ---- astroconda-utils/meta.yaml | 18 ------------------ iraf.tables/meta.yaml | 6 +++--- 7 files changed, 28 insertions(+), 28 deletions(-) create mode 100644 astroconda-build-utils/bld.bat create mode 100644 astroconda-build-utils/build.sh create mode 100644 astroconda-build-utils/meta.yaml delete mode 100644 astroconda-utils/bld.bat delete mode 100644 astroconda-utils/build.sh delete mode 100644 astroconda-utils/meta.yaml diff --git a/astroconda-build-utils/bld.bat b/astroconda-build-utils/bld.bat new file mode 100644 index 0000000..fa5316a --- /dev/null +++ b/astroconda-build-utils/bld.bat @@ -0,0 +1,3 @@ + +echo Not supported on Windows +exit 1 \ No newline at end of file diff --git a/astroconda-build-utils/build.sh b/astroconda-build-utils/build.sh new file mode 100644 index 0000000..7abeef0 --- /dev/null +++ b/astroconda-build-utils/build.sh @@ -0,0 +1,4 @@ +# Copy scripts to the installation: +dest="$PREFIX/bin" +mkdir -p "$dest" && cp -p scripts/* "$dest/" + diff --git a/astroconda-build-utils/meta.yaml b/astroconda-build-utils/meta.yaml new file mode 100644 index 0000000..cff4145 --- /dev/null +++ b/astroconda-build-utils/meta.yaml @@ -0,0 +1,18 @@ +about: + home: https://github.com/jehturner/astroconda-build-utils + license: BSD + summary: Utilities to help build and install AstroConda packages +build: + binary_relocation: True + #detect_binary_files_with_prefix: False [osx] + number: '0' +package: + name: astroconda-build-utils + version: "0.1" +source: + git_url: https://github.com/jehturner/astroconda-build-utils.git +requirements: + run: + - iraf !=2.16.1,>=2.16.UR # conda oddly considers 2.16.1 > 2.16.UR/UR_2.16 + - pyraf + diff --git a/astroconda-utils/bld.bat b/astroconda-utils/bld.bat deleted file mode 100644 index fa5316a..0000000 --- a/astroconda-utils/bld.bat +++ /dev/null @@ -1,3 +0,0 @@ - -echo Not supported on Windows -exit 1 \ No newline at end of file diff --git a/astroconda-utils/build.sh b/astroconda-utils/build.sh deleted file mode 100644 index 7abeef0..0000000 --- a/astroconda-utils/build.sh +++ /dev/null @@ -1,4 +0,0 @@ -# Copy scripts to the installation: -dest="$PREFIX/bin" -mkdir -p "$dest" && cp -p scripts/* "$dest/" - diff --git a/astroconda-utils/meta.yaml b/astroconda-utils/meta.yaml deleted file mode 100644 index 9a84ac3..0000000 --- a/astroconda-utils/meta.yaml +++ /dev/null @@ -1,18 +0,0 @@ -about: - home: https://github.com/jehturner/astroconda-utils - license: BSD - summary: Build and run time utilities for AstroConda -build: - binary_relocation: True - #detect_binary_files_with_prefix: False [osx] - number: '0' -package: - name: astroconda-utils - version: "0.1" -source: - git_url: https://github.com/jehturner/astroconda-utils.git -requirements: - run: - - iraf !=2.16.1,>=2.16.UR # conda oddly considers 2.16.1 > 2.16.UR/UR_2.16 - - pyraf - diff --git a/iraf.tables/meta.yaml b/iraf.tables/meta.yaml index 1e7836f..b5bd1c7 100644 --- a/iraf.tables/meta.yaml +++ b/iraf.tables/meta.yaml @@ -5,7 +5,7 @@ about: build: binary_relocation: False number: '0' - # These must be copied from astroconda-utils, since conda unhelpfully + # These must be copied from astroconda-build-utils, since conda unhelpfully # disallows the post-install step from depending on other packages: always_include_files: - bin/ac_config_iraf_pkg @@ -20,8 +20,8 @@ source: - ac.iraf.stsci.patch requirements: build: - - iraf !=2.16.1,>=2.16.UR # conda oddly considers 2.16.1 > 2.16.UR/UR_2.16 - - astroconda-utils + - iraf !=2.16.1,>=2.16.UR + - astroconda-build-utils run: - iraf !=2.16.1,>=2.16.UR -- cgit