Upgrade erlang to version 25.2 to support rabbitmq (#4878)
* Upgrade erlang to version 25.2 * Explicitly list files added to /usr/local/bin and wildcard for /usr/local/bin/erlang Co-authored-by: Pawel Winogrodzki <pawelwi@microsoft.com> * Implement PR feedback for %configure, License name, and bin/lib dirs --------- Co-authored-by: Pawel Winogrodzki <pawelwi@microsoft.com>
This commit is contained in:
Родитель
393178334d
Коммит
e6a874d839
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"Signatures": {
|
||||
"otp-OTP-24.2.tar.gz": "0b9c9ba7d8b40f6c77d529e07561b10f0914d2bfe9023294d7eda85b62936792"
|
||||
"otp-OTP-25.2.tar.gz": "d33a988f39e534aff67799c5b9635612858459c9d8890772546d71ea38de897a"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,16 +1,19 @@
|
|||
%define debug_package %{nil}
|
||||
Name: erlang
|
||||
Summary: erlang
|
||||
Version: 24.2
|
||||
Release: 1%{?dist}
|
||||
Group: Development/Languages
|
||||
Summary: erlang
|
||||
Name: erlang
|
||||
Version: 25.2
|
||||
Release: 1%{?dist}
|
||||
License: Apache-2.0
|
||||
Vendor: Microsoft Corporation
|
||||
Distribution: Mariner
|
||||
License: ASL 2.0
|
||||
URL: https://erlang.org
|
||||
Source0: https://github.com/erlang/otp/archive/OTP-%{version}/otp-OTP-%{version}.tar.gz
|
||||
Group: Development/Languages
|
||||
URL: https://erlang.org
|
||||
Source0: https://github.com/erlang/otp/archive/OTP-%{version}/otp-OTP-%{version}.tar.gz
|
||||
BuildRequires: ncurses-devel
|
||||
BuildRequires: openssl-devel
|
||||
BuildRequires: unixODBC-devel
|
||||
BuildRequires: unzip
|
||||
|
||||
BuildRequires: unzip
|
||||
%description
|
||||
erlang programming language
|
||||
|
||||
|
@ -19,52 +22,59 @@ erlang programming language
|
|||
|
||||
%build
|
||||
export ERL_TOP=`pwd`
|
||||
./otp_build autoconf
|
||||
sh configure --disable-hipe --prefix=%{_prefix}
|
||||
|
||||
%configure
|
||||
make
|
||||
|
||||
%install
|
||||
|
||||
make install DESTDIR=%{buildroot}
|
||||
%make_install
|
||||
|
||||
%post
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%license LICENSE.txt
|
||||
%{_bindir}/*
|
||||
%{_libdir}/*
|
||||
%exclude /usr/src
|
||||
%exclude %{_libdir}/debug
|
||||
%{_bindir}/ct_run
|
||||
%{_bindir}/dialyzer
|
||||
%{_bindir}/epmd
|
||||
%{_bindir}/erl
|
||||
%{_bindir}/erlc
|
||||
%{_bindir}/escript
|
||||
%{_bindir}/run_erl
|
||||
%{_bindir}/to_erl
|
||||
%{_bindir}/typer
|
||||
%{_libdir}/erlang/*
|
||||
|
||||
%changelog
|
||||
* Wed Jan 19 2022 Cameron Baird <cameronbaird@microsoft.com> - 24.2-1
|
||||
- Update to version 24.2
|
||||
* Tue Feb 14 2023 Sam Meluch <sammeluch@microsoft.com> - 25.2-1
|
||||
- Update to version 25.2
|
||||
|
||||
* Sat May 09 2020 Nick Samson <nisamson@microsoft.com> - 22.0.7-2
|
||||
- Added %%license line automatically
|
||||
* Wed Jan 19 2022 Cameron Baird <cameronbaird@microsoft.com> - 24.2-1
|
||||
- Update to version 24.2
|
||||
|
||||
* Thu Mar 19 2020 Henry Beberman <henry.beberman@microsoft.com> 22.0.7-1
|
||||
- Update to 22.0.7. Fix URL. Fix Source0 URL. License verified.
|
||||
* Sat May 09 2020 Nick Samson <nisamson@microsoft.com> - 22.0.7-2
|
||||
- Added %%license line automatically
|
||||
|
||||
* Tue Sep 03 2019 Mateusz Malisz <mamalisz@microsoft.com> 19.3-4
|
||||
- Initial CBL-Mariner import from Photon (license: Apache2).
|
||||
* Thu Mar 19 2020 Henry Beberman <henry.beberman@microsoft.com> 22.0.7-1
|
||||
- Update to 22.0.7. Fix URL. Fix Source0 URL. License verified.
|
||||
|
||||
* Thu Jan 31 2019 Siju Maliakkal <smaliakkal@vmware.com> 19.3-3
|
||||
- Revert to old version to fix rabbitmq-server startup failure
|
||||
* Tue Sep 03 2019 Mateusz Malisz <mamalisz@microsoft.com> 19.3-4
|
||||
- Initial CBL-Mariner import from Photon (license: Apache2).
|
||||
|
||||
* Fri Dec 07 2018 Ashwin H <ashwinh@vmware.com> 21.1.4-1
|
||||
- Update to version 21.1.4
|
||||
* Thu Jan 31 2019 Siju Maliakkal <smaliakkal@vmware.com> 19.3-3
|
||||
- Revert to old version to fix rabbitmq-server startup failure
|
||||
|
||||
* Mon Sep 24 2018 Dweep Advani <dadvani@vmware.com> 21.0-1
|
||||
- Update to version 21.0
|
||||
* Fri Dec 07 2018 Ashwin H <ashwinh@vmware.com> 21.1.4-1
|
||||
- Update to version 21.1.4
|
||||
|
||||
* Fri Oct 13 2017 Alexey Makhalov <amakhalov@vmware.com> 19.3-2
|
||||
- Remove BuildArch
|
||||
* Mon Sep 24 2018 Dweep Advani <dadvani@vmware.com> 21.0-1
|
||||
- Update to version 21.0
|
||||
|
||||
* Thu Apr 06 2017 Chang Lee <changlee@vmware.com> 19.3-1
|
||||
- Updated Version
|
||||
* Fri Oct 13 2017 Alexey Makhalov <amakhalov@vmware.com> 19.3-2
|
||||
- Remove BuildArch
|
||||
|
||||
* Mon Dec 12 2016 Priyesh Padmavilasom <ppadmavilasom@vmware.com> 19.1-1
|
||||
- Initial.
|
||||
* Thu Apr 06 2017 Chang Lee <changlee@vmware.com> 19.3-1
|
||||
- Updated Version
|
||||
|
||||
* Mon Dec 12 2016 Priyesh Padmavilasom <ppadmavilasom@vmware.com> 19.1-1
|
||||
- Initial.
|
||||
|
|
|
@ -3218,8 +3218,8 @@
|
|||
"type": "other",
|
||||
"other": {
|
||||
"name": "erlang",
|
||||
"version": "24.2",
|
||||
"downloadUrl": "https://github.com/erlang/otp/archive/OTP-24.2/otp-OTP-24.2.tar.gz"
|
||||
"version": "25.2",
|
||||
"downloadUrl": "https://github.com/erlang/otp/archive/OTP-25.2/otp-OTP-25.2.tar.gz"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
Загрузка…
Ссылка в новой задаче