summaryrefslogtreecommitdiff
path: root/scripts
Commit message (Collapse)AuthorAgeFilesLines
* Some remaining name & comment updates for the AstroConda version.James E.H. Turner2016-08-311-8/+7
|
* Add newlines when appending a new entry, now that ";\n\nkeep" gets added ↵James E.H. Turner2016-08-301-1/+1
| | | | without one at the start.
* Add a semicolon before the "keep" line in extern.pkg, to avoid a know CL ↵James E.H. Turner2016-08-291-13/+18
| | | | parsing bug when the last entry ends with a curly bracket.
* Add script to copy IRAF source tree & package config files to the conda ↵James E.H. Turner2016-08-251-0/+73
| | | | build environment and define the package in extern.pkg for the duration of the build.
* Add some more IRAF definition variables & rename them a bit more nicely.James E.H. Turner2016-08-252-4/+16
|
* Move iraf package filename definitions into their own file, for use by ↵James E.H. Turner2016-08-233-7/+12
| | | | multiple sh scripts. Also quote a few path variables properly, in case of spaces.
* Don't require interpreter to end with "python", since .* is greedy anyway ↵James E.H. Turner2016-08-231-1/+1
| | | | and it's conceivable we might want to specify something like "python3" in future.
* A script to undo conda's unwanted interpreter path mangling in ↵James E.H. Turner2016-08-231-0/+48
| | | | update_extern_pkg.
* Always use the OS Python in update_extern_pkg, to avoid conda changing its ↵James E.H. Turner2016-08-231-1/+5
| | | | interpreter path at build time and then running it before relocating the path properly at install time -- and so we know it will continue working after testing on any given OS.
* Improve handling of extra blank lines etc. with respect to the template.jturner2016-08-181-5/+13
|
* Make script to update extern.pkg executable.jturner2016-08-171-0/+0
|
* Add script to check the apparent success/failure of an IRAF package build, ↵jturner2016-08-111-0/+141
| | | | adapted from Ureka's build.iraf_package & check_manifest.
* Add python script to create the IRAF help & apropos databases for a ↵jturner2016-08-101-0/+136
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | specified package (or the IRAF core), copied from Ureka (https://aeon.stsci.edu/ssb/svn/u-rel/trunk/bin/ur-genhelp). Here's a poor-man's copy of the history: ------------------------------------------------------------------------ r3321 | cslocum | 2014-06-20 09:34:36 -0400 (Fri, 20 Jun 2014) | 1 line update print statements in trunk/bin to be compatible with Python 3 ------------------------------------------------------------------------ r1630 | gemini_jturner | 2013-01-17 19:05:22 -0500 (Thu, 17 Jan 2013) | 2 lines Handle building the main help in iraf$lib as a special case ------------------------------------------------------------------------ r1627 | gemini_jturner | 2013-01-17 18:20:56 -0500 (Thu, 17 Jan 2013) | 2 lines Suppress PyRAF X display so it doesn't complain in the non-interactive build ------------------------------------------------------------------------ r1610 | gemini_jturner | 2013-01-16 19:25:54 -0500 (Wed, 16 Jan 2013) | 2 lines Create temporary iraf directory with login.cl if not run from one ------------------------------------------------------------------------ r1601 | gemini_jturner | 2013-01-16 12:24:09 -0500 (Wed, 16 Jan 2013) | 2 lines Updated one specified package at a time (will call from build.iraf_package) ------------------------------------------------------------------------ r1450 | stsci_cslocum | 2012-12-11 11:53:31 -0500 (Tue, 11 Dec 2012) | 1 line renamed bin scripts per ticket 95 ------------------------------------------------------------------------ r469 | gemini_jturner | 2012-03-06 16:22:33 -0500 (Tue, 06 Mar 2012) | 2 lines Don't only build help databases if they already exist; do them anyway. ------------------------------------------------------------------------ r345 | gemini_jturner | 2011-11-16 18:03:18 -0500 (Wed, 16 Nov 2011) | 3 lines Update ur_genhelp for new STScI fileutil location Fix ur_genhelp uparm$ error and left-over pyraf cache in ur-normalize ------------------------------------------------------------------------ r129 | stsci_sienkiew | 2010-09-15 16:22:40 -0400 (Wed, 15 Sep 2010) | 1 line regenerate iraf help files during ur-normalize ------------------------------------------------------------------------
* New script to update an existing extern.pkg from a single IRAF package's ↵jturner2016-08-101-0/+144
ur_extern.pkg template (as part of its installation).