aboutsummaryrefslogtreecommitdiff
path: root/reproduce/software/make/high-level.mk
diff options
context:
space:
mode:
authorBoud Roukema <boud@cosmo.torun.pl>2022-10-14 00:54:29 +0200
committerMohammad Akhlaghi <mohammad@akhlaghi.org>2025-03-16 02:52:31 +0100
commit9e7203bbc4b721a8a2a44c58ac9ad47df4b983cd (patch)
treeeefda61ee748fca70f3f2e6b1ed1de2b01076e34 /reproduce/software/make/high-level.mk
parent17e6becc3c1ad5cf2f9f6001120371a7a557cd6d (diff)
IMPORTANT (for Python users): Python environment updated (34 software)
Summary: this is software update that involves Astropy and its dependencies. In case you are using any of those, it is recommended to reproduce the analysis of your project to make sure that the calls to the various packages have not changed. If you are not using Astropy or its dependencies, this commit will not affect your analysis. Until this commit, Astropy and the whole Python environment of its prerequisites were last updated more than 2 years go. So after the update of the Basic and some high-level (Gnuastro dependencies) software, it was necessary to update Astropy and its dependencies (for those who use it). With this commit, the software listed in the last item below have been updated as well as the following minor technical fixes: - Support bug 110738 (https://savannah.nongnu.org/support/?110738): when the build directory had the same base-name as the source directory (for exapmle '/PATH/proj' and /PATH/proj-build'), Maneage would complain and not continue. - The Python software are now built using the wheels system with 'gpep517' (https://pypi.org/project/gpep517). Python packages that are not required by astropy/matplotlib/scipy have mostly not been updated, but updating their dependencies and adding the build method as 'GPEP517' should be straightforward. - Updated software (dependencies of Astropy). Those with 'N/A' in their previous version string weren't in Maneage prior to this commit. High-level software (not written in Python): boost 1.77.0 1.87.0 ninja build system n/a 1.12.1 openblas 0.3.21 0.3.29 Python packages: python 3.10.6 3.13.2 astropy 5.1 7.0.1 astropy-iers-data n/a 0.2025.2.24.0.34.4 contourpy n/a 1.3.1 cppy n/a 1.3.1 cycler 0.11.0 0.12.1 cython 0.29.24 3.0.12 extension-helpers 0.1 1.2.0 features n/a 0.5.12 flit-core n/a 3.11.0 fonttools n/a 4.56.0 gpep517 n/a 16 kiwisolver 1.0.1 1.4.8 matplotlib 3.3.0 3.10.0 meson n/a 1.7.0 meson-python n/a 0.17.1 numpy 1.21.3 2.2.3 packaging 21.3 24.2 pillow 8.4.0 11.1.0 pybind11 2.5.0 2.13.6 pyerfa-version 2.0.0.1 2.0.1.5 pyproject-metadata n/a 0.9.0 pyparsing 3.0.4 3.2.1 python-dateutil 2.8.0 2.9.0.post0 python-installer n/a 0.7.0 pyyaml 5.1 6.0.2 setuptools 58.3.0 75.8.0 setuptools_scm 3.3.3 8.2.0 scipy 1.7.3 1.15.2 six 1.16.0 1.17.0 wheel 0.37.0 0.45.1
Diffstat (limited to 'reproduce/software/make/high-level.mk')
-rw-r--r--reproduce/software/make/high-level.mk25
1 files changed, 22 insertions, 3 deletions
diff --git a/reproduce/software/make/high-level.mk b/reproduce/software/make/high-level.mk
index 928d0a2..c81f0b9 100644
--- a/reproduce/software/make/high-level.mk
+++ b/reproduce/software/make/high-level.mk
@@ -815,18 +815,37 @@ $(ibidir)/metastore-$(metastore-version): \
echo "" > $@
fi
+# The Ninja build system (https://ninja-build.org) is also known as simply
+# "Ninja". But other package managers (for example Debian) use
+# "ninja-build" (the old "ninja" name has become obsolete there). Also,
+# their own URL is called "ninja-build". So we use the same convention in
+# Maneage.
+$(ibidir)/ninjabuild-$(ninjabuild-version): $(ibidir)/cmake-$(cmake-version)
+ tarball=ninjabuild-$(ninjabuild-version).tar.lz
+ $(call import-source, $(ninjabuild-url), $(ninjabuild-checksum))
+ cd $(ddir)
+ tar -xf $(tdir)/$$tarball
+ cd ninjabuild-$(ninjabuild-version)
+ cmake -Bbuild-cmake
+ cmake --build build-cmake -j$(numthreads)
+ ./build-cmake/ninja_test
+ cp -pv build-cmake/ninja $(ibdir)/
+ cd ..
+ rm -rf ninjabuild-$(ninjabuild-version)
+ echo "Ninja build system $(ninjabuild-version)" > $@
+
$(ibidir)/openblas-$(openblas-version):
- tarball=OpenBLAS-$(openblas-version).tar.lz
+ tarball=openblas-$(openblas-version).tar.lz
$(call import-source, $(openblas-url), $(openblas-checksum))
if [ x$(on_mac_os) = xyes ]; then export CC=clang; fi
cd $(ddir)
tar -xf $(tdir)/$$tarball
- cd OpenBLAS-$(openblas-version)
+ cd openblas-$(openblas-version)
$(shsrcdir)/prep-source.sh $(ibdir)
make -j$(numthreads)
make PREFIX=$(idir) install
cd ..
- rm -rf OpenBLAS-$(openblas-version)
+ rm -rf openblas-$(openblas-version)
echo "OpenBLAS $(openblas-version)" > $@
$(ibidir)/openmpi-$(openmpi-version):