# Empty file debugsourcefiles.list %global debug_package %{nil} %global majorversion 4.13 %global patchlevel 0 %global upstreamversion %{majorversion}.%{patchlevel} %bcond tests 0 %bcond stage2 0 Name: lean4 # minor point releases provide the same version Version: %{majorversion}.0 Release: 2%{?dist} Summary: Functional programming language and theorem prover License: Apache-2.0 URL: https://lean-lang.org/ Source0: https://github.com/leanprover/lean4/archive/refs/tags/v%{upstreamversion}.tar.gz#/%{name}-%{upstreamversion}.tar.gz # https://github.com/leanprover/lean4/pull/5931 Patch1: lean4-COPY_CADICAL.patch Patch2: cmake-pkg-gmp-uv.patch %if %{defined fedora} BuildRequires: cadical %else BuildRequires: git-core %endif %if %{with stage2} BuildRequires: ccache %endif BuildRequires: cmake BuildRequires: gcc-c++ BuildRequires: gmp-devel BuildRequires: libuv-devel ExcludeArch: s390x %{ix86} Provides: %{name}-static = %{version}-%{release} %description Lean is a functional programming language that makes it easy to write correct and maintainable code. You can also use Lean as an interactive theorem prover. Lean programming primarily involves defining types and functions. This allows your focus to remain on the problem domain and manipulating its data, rather than the details of programming. %prep %autosetup -p1 -n %{name}-%{upstreamversion} %build %cmake \ -DLEAN_BUILD_TYPE="RELEASE" \ -DUSE_GITHASH=OFF \ -DLEAN_INSTALL_PREFIX=%{buildroot} \ -DCOPY_CADICAL=OFF %cmake_build %if %{with stage2} make -C redhat-linux-build stage2 %endif %install # cmake_install does not do anything %if %{with stage2} make -C redhat-linux-build/stage2 install %else make -C redhat-linux-build/stage1 install %endif %define lean lean4 %global leandir %{_libdir}/%{lean} mkdir -p %{buildroot}%{_libdir} rm -f %{buildroot}/lean-%{version}-linux/LICENSE* mv %{buildroot}/lean-%{version}-linux %{buildroot}%{leandir} strip %{buildroot}%{leandir}/bin/{lake,lean,leanc} chmod a+x %{buildroot}%{leandir}/lib/lean/lib*shared.so strip %{buildroot}%{leandir}/lib/lean/lib*shared.so mkdir -p %{buildroot}%{_bindir} ( cd %{buildroot}%{_bindir} ln -s ../%{_lib}/%{lean}/bin/* . ) %check %if %{with tests} %ctest %endif %files %license LICENSE %doc CONTRIBUTING.md README.md RELEASES.md %{_bindir}/lake %{_bindir}/lean %{_bindir}/leanc %{_bindir}/leanmake %dir %{leandir} %{leandir}/bin %dir %{leandir}/include %{leandir}/include/lean %dir %{leandir}/lib %{leandir}/lib/lean %dir %{leandir}/share %{leandir}/share/lean %dir %{leandir}/src %{leandir}/src/lean %changelog * Fri Nov 22 2024 Jens Petersen - 4.13.0-2 - fix libuv ldflags with pkgconf * Sun Nov 3 2024 Jens Petersen - 4.13.0-1 - https://github.com/leanprover/lean4/releases/tag/v4.13.0 * Sun Nov 3 2024 Jens Petersen - 4.12.0-1 - https://github.com/leanprover/lean4/releases/tag/v4.12.0 * Thu Oct 3 2024 Jens Petersen - 4.11.0-1 - https://github.com/leanprover/lean4/releases/tag/v4.11.0 * Thu Aug 1 2024 Jens Petersen - 4.10.0-1 - https://github.com/leanprover/lean4/releases/tag/v4.10.0 - add some macros to handle minor point releases * Fri Jul 12 2024 Jens Petersen - 4.9.0-2 - https://github.com/leanprover/lean4/releases/tag/v4.9.1 * Wed Jul 3 2024 Jens Petersen - 4.9.0-1 - https://lean-lang.org/blog/2024-7-1-lean-490/ - https://github.com/leanprover/lean4/releases/tag/v4.9.0 * Thu Jun 6 2024 Jens Petersen - 4.8.0-1 - https://lean-lang.org/blog/2024-6-1-lean-480/ - https://github.com/leanprover/lean4/releases/tag/v4.8.0 * Fri May 17 2024 Jens Petersen - 4.7.0-4 - link with -lgmp instead of libgmp.so file * Thu May 2 2024 Jens Petersen - 4.7.0-3 - install under libdir/lean4 for now with symlinks to bindir * Tue Apr 30 2024 Jens Petersen - 4.7.0-2 - strip bin and lib*.so files * Mon Apr 29 2024 Jens Petersen - 4.7.0-1 - https://github.com/leanprover/lean4/releases/tag/v4.7.0 - https://lean-lang.org/blog/2024-4-4-lean-470/ * Tue Dec 12 2023 Jens Petersen - 4.3.0.-1 - initial packaging