From 761c66b60631b1b2b74ddf44b277ea904a87fd3e Mon Sep 17 00:00:00 2001 From: "James E.H. Turner" Date: Tue, 6 Sep 2016 16:47:56 -0300 Subject: Add a prototype external IRAF package (TABLES) for AstroConda. --- iraf.tables/meta.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 iraf.tables/meta.yaml (limited to 'iraf.tables/meta.yaml') diff --git a/iraf.tables/meta.yaml b/iraf.tables/meta.yaml new file mode 100644 index 0000000..cf775af --- /dev/null +++ b/iraf.tables/meta.yaml @@ -0,0 +1,28 @@ +about: + home: http://www.stsci.edu/institute/software_hardware/stsdas + license: US government notice (and third-party licenses) + summary: STScI TABLES package for IRAF +build: + binary_relocation: False + number: '0' + # These must be copied from astroconda-utils, since conda unhelpfully + # disallows the post-install step from depending on other packages: + always_include_files: + - bin/ac_config_iraf_pkg + - bin/ac_update_extern_pkg +package: + name: iraf.tables + version: 3.17 +source: + fn: stsci_iraf-3.17-local.tar.gz # quirky requirement in addition to url + # Need to figure out a site-agnostic way to specify this (conda-build #567): + url: file:///rtfperm/ur_packages/stsci_iraf-3.17-local.tar.gz + patches: + - ac.iraf.stsci.patch +requirements: + build: + - iraf ==2.16_UR + - astroconda-utils + run: + - iraf ==2.16_UR + -- cgit From 2df08922e281c00a78b76875c6b6005f5a44ccfd Mon Sep 17 00:00:00 2001 From: "James E.H. Turner" Date: Wed, 28 Sep 2016 21:44:32 -0300 Subject: Obtain IRAF package source tarballs from a locally-served URL that can be the same across sites. --- iraf.tables/meta.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'iraf.tables/meta.yaml') diff --git a/iraf.tables/meta.yaml b/iraf.tables/meta.yaml index cf775af..abbe74f 100644 --- a/iraf.tables/meta.yaml +++ b/iraf.tables/meta.yaml @@ -15,8 +15,7 @@ package: version: 3.17 source: fn: stsci_iraf-3.17-local.tar.gz # quirky requirement in addition to url - # Need to figure out a site-agnostic way to specify this (conda-build #567): - url: file:///rtfperm/ur_packages/stsci_iraf-3.17-local.tar.gz + url: https://astroconda-source:4440/stsci_iraf-3.17-local.tar.gz patches: - ac.iraf.stsci.patch requirements: -- cgit From 125a2feb45eaa3202cbda597259b7cdedb287876 Mon Sep 17 00:00:00 2001 From: "James E.H. Turner" Date: Thu, 29 Sep 2016 10:27:53 -0300 Subject: Retrieve local source tarballs for IRAF packages using plain HTTP for now. --- iraf.tables/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'iraf.tables/meta.yaml') diff --git a/iraf.tables/meta.yaml b/iraf.tables/meta.yaml index abbe74f..6273e32 100644 --- a/iraf.tables/meta.yaml +++ b/iraf.tables/meta.yaml @@ -15,7 +15,7 @@ package: version: 3.17 source: fn: stsci_iraf-3.17-local.tar.gz # quirky requirement in addition to url - url: https://astroconda-source:4440/stsci_iraf-3.17-local.tar.gz + url: http://astroconda-source:4440/stsci_iraf-3.17-local.tar.gz patches: - ac.iraf.stsci.patch requirements: -- cgit From 4ee8301df6891df89ede6aa3012f9a984ab5623c Mon Sep 17 00:00:00 2001 From: "James E.H. Turner" Date: Thu, 29 Sep 2016 12:24:49 -0300 Subject: Change IRAF version spec to make conda use our updated IRAF build without being tied to a single version number and to allow for adding a running number more naturally. --- iraf.tables/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'iraf.tables/meta.yaml') diff --git a/iraf.tables/meta.yaml b/iraf.tables/meta.yaml index 6273e32..1e7836f 100644 --- a/iraf.tables/meta.yaml +++ b/iraf.tables/meta.yaml @@ -20,8 +20,8 @@ source: - ac.iraf.stsci.patch requirements: build: - - iraf ==2.16_UR + - iraf !=2.16.1,>=2.16.UR # conda oddly considers 2.16.1 > 2.16.UR/UR_2.16 - astroconda-utils run: - - iraf ==2.16_UR + - iraf !=2.16.1,>=2.16.UR -- cgit 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. --- iraf.tables/meta.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'iraf.tables/meta.yaml') 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 From 708688dfa7293de3f7a93192a19721580fc54c84 Mon Sep 17 00:00:00 2001 From: "James E.H. Turner" Date: Thu, 29 Sep 2016 21:00:15 -0300 Subject: Add STSDAS package. --- iraf.tables/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'iraf.tables/meta.yaml') diff --git a/iraf.tables/meta.yaml b/iraf.tables/meta.yaml index b5bd1c7..6c78f9c 100644 --- a/iraf.tables/meta.yaml +++ b/iraf.tables/meta.yaml @@ -20,8 +20,8 @@ source: - ac.iraf.stsci.patch requirements: build: - - iraf !=2.16.1,>=2.16.UR - astroconda-build-utils + - iraf !=2.16.1,>=2.16.UR run: - iraf !=2.16.1,>=2.16.UR -- cgit From 6e9b90e5c1cc5603de6966c3aab5bbfd59845f56 Mon Sep 17 00:00:00 2001 From: "James E.H. Turner" Date: Tue, 4 Oct 2016 14:22:45 -0300 Subject: Quote version numbers as recommended in the conda build docs. --- iraf.tables/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'iraf.tables/meta.yaml') diff --git a/iraf.tables/meta.yaml b/iraf.tables/meta.yaml index 6c78f9c..283f6e2 100644 --- a/iraf.tables/meta.yaml +++ b/iraf.tables/meta.yaml @@ -12,7 +12,7 @@ build: - bin/ac_update_extern_pkg package: name: iraf.tables - version: 3.17 + version: "3.17" source: fn: stsci_iraf-3.17-local.tar.gz # quirky requirement in addition to url url: http://astroconda-source:4440/stsci_iraf-3.17-local.tar.gz -- cgit From b4046c3cf7e7f8aaa7803d0fbdad89ba9b09b6a1 Mon Sep 17 00:00:00 2001 From: "James E.H. Turner" Date: Wed, 12 Oct 2016 17:25:59 -0300 Subject: Use renamed astroconda-iraf-helpers. --- iraf.tables/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'iraf.tables/meta.yaml') diff --git a/iraf.tables/meta.yaml b/iraf.tables/meta.yaml index 283f6e2..5a5a36b 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-build-utils, since conda unhelpfully + # These must be copied from astroconda-iraf-helpers, since conda unhelpfully # disallows the post-install step from depending on other packages: always_include_files: - bin/ac_config_iraf_pkg @@ -20,7 +20,7 @@ source: - ac.iraf.stsci.patch requirements: build: - - astroconda-build-utils + - astroconda-iraf-helpers - iraf !=2.16.1,>=2.16.UR run: - iraf !=2.16.1,>=2.16.UR -- cgit