diff options
author | James E.H. Turner <jturner@gemini.edu> | 2023-03-30 21:02:53 -0400 |
---|---|---|
committer | James E.H. Turner <jturner@gemini.edu> | 2023-03-30 21:02:53 -0400 |
commit | f7e28868ea942d2c9f97a05880b7241e55fa2dbe (patch) | |
tree | 7883675952662aa7361b24c75211a39aafcbeb7a /gemini_calmgr/build.sh | |
parent | 306d1c1444801a62a3a9e45bd1e3f6ea6a84f437 (diff) | |
download | astroconda-iraf-f7e28868ea942d2c9f97a05880b7241e55fa2dbe.tar.gz |
Update gemini_calmgr recipe for v1.1.22 (in new repo), to go with DRAGONS 3.1.
Add recipe for new gemini_obs_db package (v1.0.27), similar to gemini_calmgr.
Consolidate simple build scripts into meta.yaml & use template for version etc.
Convert packages to noarch since they are pure Python (otherwise we'd need 16 builds).
Use DRAGONS 3.1 version constraints, limiting sqlalchemy to <2.0 until the code can be ported to the new API.
Diffstat (limited to 'gemini_calmgr/build.sh')
-rw-r--r-- | gemini_calmgr/build.sh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/gemini_calmgr/build.sh b/gemini_calmgr/build.sh deleted file mode 100644 index eee4b72..0000000 --- a/gemini_calmgr/build.sh +++ /dev/null @@ -1,13 +0,0 @@ -cd local_calibs - -$PYTHON setup.py install --single-version-externally-managed --record=record.txt || exit 1 - -# # According to conda-forge #528 and the conda-forge docs, this seems to be a -# # newer way of doing the above (also need to add "pip" to build or host deps. -# # in meta.yaml), but it's not actually working for me with conda-build -# # 3.10.5; stick to the way AstroConda does it for now. -# $PYTHON -m pip install --no-deps --ignore-installed -vv . || exit 1 - -mkdir -p ${PREFIX}/share/gemini_calmgr/ -cp -p LICENSE ${PREFIX}/share/gemini_calmgr/ || exit 1 - |