From 025b96434fe1dd26018dfa898f2e4bdf73401d09 Mon Sep 17 00:00:00 2001 From: Mohammad Akhlaghi Date: Sun, 7 Apr 2019 02:22:38 +0100 Subject: Corrections in configure script and astroquery, astropy rules The step where we check the possibility of using `sys/cdefs.h' was still using `$$' for shell variables (in Make), not `$' (for the shell). This was corrected. Also, since Astropy needs two citations, the `,' in the citation command would conflict with Make's parsing. So we just used an `echo' command to re-write the version info. In Astroquery, the prerequisite list was just reordered by length to be more clear to the eye. --- .file-metadata | Bin 4250 -> 4690 bytes configure | 28 +++++++++++++++------------- reproduce/src/make/dependencies-python.mk | 15 +++++++++------ 3 files changed, 24 insertions(+), 19 deletions(-) diff --git a/.file-metadata b/.file-metadata index e152551..8762380 100644 Binary files a/.file-metadata and b/.file-metadata differ diff --git a/configure b/configure index 6059c0e..8a28e4c 100755 --- a/configure +++ b/configure @@ -884,33 +884,35 @@ fi # explicitly testing a small C program here to see if the host's C compiler # won't have any problems in building GCC. if [ $host_cc = 0 ]; then - tfile=$bdir/gcc-cdefs-test.c; - echo "#include " > $$tfile; - echo "int main(void){return 0;}" >> $$tfile; - if gcc $$tfile -o $bdir/gcc-cdefs-test &> /dev/null; then - rm $bdir/gcc-cdefs-test*; + tfile=$depdir/gcc-cdefs-test.c; + echo "#include " > $tfile; + echo "int main(void){return 0;}" >> $tfile; + if gcc $tfile -o $depdir/gcc-cdefs-test &> /dev/null; then + rm $depdir/gcc-cdefs-test*; else host_cc=1 fi; - rm $$tfile; + rm -f $tfile; if [ $host_cc = 1 ]; then cat < site.cfg; \ @@ -282,12 +282,12 @@ $(ipydir)/asn1crypto: $(tdir)/asn1crypto-$(asn1crypto-version).tar.gz \ Asn1crypto $(asn1crypto-version)) $(ipydir)/astroquery: $(tdir)/astroquery-$(astroquery-version).tar.gz \ - $(ipydir)/astropy \ $(ipydir)/beautifulsoup4 \ $(ipydir)/html5lib \ + $(ipydir)/requests \ + $(ipydir)/astropy \ $(ipydir)/keyring \ - $(ipydir)/numpy \ - $(ipydir)/requests + $(ipydir)/numpy $(call pybuild, tar xf, $<, astroquery-$(astroquery-version), ,\ Astroquery $(astroquery-version)) @@ -295,8 +295,11 @@ $(ipydir)/astropy: $(tdir)/astropy-$(astropy-version).tar.gz \ $(ipydir)/h5py \ $(ipydir)/numpy \ $(ipydir)/scipy - $(call pybuild, tar xf, $<, astropy-$(astropy-version), ,\ - "Astropy $(astropy-version) \citep{astropy2013,astropy2018}") + # Since we have two citations in Astropy (with the `,' character + # which can be confused in Make), its easier to just re-write the + # full version after the build. + $(call pybuild, tar xf, $<, astropy-$(astropy-version)) \ + && echo "Astropy $(astropy-version) \citep{astropy2013,astropy2018}" > $@ $(ipydir)/beautifulsoup4: $(tdir)/beautifulsoup4-$(beautifulsoup4-version).tar.gz \ $(ipydir)/soupsieve -- cgit v1.2.1