From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCH 1/2] Rust: New package. Date: Mon, 02 Sep 2019 14:44:30 +0200 Message-ID: <20190902124431.8237-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6369718147663760148==" List-Id: --===============6369718147663760148== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Stefan Schantl --- rust/rust.nm | 175 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 175 insertions(+) create mode 100644 rust/rust.nm diff --git a/rust/rust.nm b/rust/rust.nm new file mode 100644 index 000000000..96f198f85 --- /dev/null +++ b/rust/rust.nm @@ -0,0 +1,175 @@ +############################################################################= ### +# IPFire.org - An Open Source Firewall Solution = # +# Copyright (C) - IPFire Development Team = # +############################################################################= ### + +name =3D rust +version =3D 1.37.0 +release =3D 1 + +groups =3D Applications/System +url =3D https://www.rust-lang.org/ +license =3D=20 +summary =3D A language empowering everyone to build reliable and efficien= t software. + +description +=09 +end + +source_dl =3D https://static.rust-lang.org/dist/ +sources =3D rustc-%{version}-src.tar.gz + +# For building rustc a bootstrapped rust toolchain has to be downloaded and = used. +if %{DISTRO_ARCH} =3D=3D "armv7hl" + rust_bootstrap =3D armv7-unknown-linux-gnueabihf +elif %{DISTRO_ARCH} =3D=3D "armv5tel" + rust_bootstrap =3D arm-unknown-linux-gnueabi +else + rust_bootstrap =3D %{DISTRO_ARCH}-unknown-linux-gnu +end + +sources +=3D rust-%{version}-%{rust_bootstrap}.tar.gz + +build + requires + /usr/bin/llvm-config + /usr/bin/FileCheck + cmake + libcurl-devel >=3D 7.65.3 + llvm + libffi-devel + libgit2-devel + libssh2-devel + openssl-devel + pakfire >=3D 0.9.27-3 + python3 + xz-devel + zlib-devel + end + + local_rust_root =3D "/opt" + rustlibdir =3D "%{libdir}/rustlib" + + DIR_APP =3D %{DIR_SRC}/rustc-%{version}-src + DIR_BOOTSTRAPPED =3D %{DIR_SRC}/rust-%{version}-%{rust_bootstrap} + + configure_options +=3D\ + --build=3D%{rust_bootstrap} \ + --host=3D%{rust_bootstrap} \ + --target=3D%{rust_bootstrap} \ + --disable-option-checking \ + --local-rust-root=3D%{local_rust_root} \ + --llvm-root=3D%{prefix} \ + --enable-llvm-link-shared \ + --disable-rpath \ + --enable-extended \ + --enable-vendor \ + --release-channel=3D"stable" + + prepare_cmds + # Install precompiled rust toolchain. + cd %{DIR_BOOTSTRAPPED} + + ./install.sh --components=3Dcargo,rustc,rust-std-%{rust_bootstrap} \ + --prefix=3D%{local_rust_root} --disable-ldconfig + + # Test if the bootstrapped tools correctly have been installed.=09 + test -f %{local_rust_root}/bin/cargo + test -f %{local_rust_root}/bin/rustc + end + + build + # Change into main rust source directory. + cd %{DIR_APP} + + # Do not build with shipped llvm and llvm-emscripten. + rm -rf src/llvm-project/ + rm -rf src/llvm-emscripten/ + + # Remove other unused vendored libraries + rm -rf vendor/curl-sys/curl/ + rm -rf vendor/jemalloc-sys/jemalloc/ + rm -rf vendor/libz-sys/src/zlib/ + rm -rf vendor/lzma-sys/xz-*/ + rm -rf vendor/openssl-src/openssl/ + + # Use the distro libgit2 + export LIBGIT2_SYS_USE_PKG_CONFIG=3D1 + rm -rf vendor/libgit2-sys/libgit2/ + + # Use the distro libssh2 + export LIBSSH2_SYS_USE_PKG_CONFIG=3D1 + rm -rf vendor/libssh2-sys/libssh2/ + + # Use the dynamic xz-libs + sed -i.lzma -e '/LZMA_API_STATIC/d' src/bootstrap/tool.rs + + # The configure macro will modify some autoconf-related files, which upsets + # cargo when it tries to verify checksums in those files. If we just trun= cate + # that file list, cargo won't have anything to complain about. + find vendor -name .cargo-checksum.json \ + -exec sed -i.uncheck -e 's/"files":{[^}]*}/"files":{ }/' '{}' '+' + + # Launch configure script + ./configure %{configure_options} + + # Build rust. + %{python3} ./x.py build --exclude src/tools/miri + end + + install + DESTDIR=3D%{BUILDROOT} %{python3} ./x.py install + + # The shared libraries should be executable for debuginfo extraction. + find %{BUILDROOT}%{libdir} -maxdepth 1 -type f -name '*.so' -exec chmod -v= +x '{}' '+' +=09 + # The libdir libraries are identical to those under rustlib/. It's easier= on + # library loading if we keep them in libdir, but we do need them in rustli= b/ + # to support dynamic linking for compiler plugins, so we'll symlink. + ( + cd %{BUILDROOT}%{rustlibdir}/%{rust_bootstrap}/lib + + for i in *.so; do + [ -f %{BUILDROOT}%{rustlibdir}/%{rust_bootstrap}/lib/${i} ] && ln -svf .= ./../../${i} \ + %{BUILDROOT}%{rustlibdir}/%{rust_bootstrap}/lib/${i}; + done + ) +=09 + # Remove installer artifacts (manifests, uninstall scripts, etc.) + find %{BUILDROOT}%{rustlibdir} -maxdepth 1 -type f -exec rm -v '{}' '+' +=09 + # Remove backup files from %%configure munging + find %{BUILDROOT}%{rustlibdir} -type f -name '*.orig' -exec rm -v '{}' '+' + + # Remove documentation files. + rm -rvf %{BUILDROOT}%{docdir}%{name} + + # Remove rust source. + rm -rvf %{BUILDROOT}%{rustlibdir}/src + + # Create the path for crate-devel packages + mkdir -pv %{BUILDROOT}%{datadir}/cargo/registry + + # Remove zsh related files. + rm -rvf %{BUILDROOT}%{datadir}/zsh/ + end + + + # While we don't want to encourage dynamic linking to Rust shared libraries= , as + # there's no stable ABI, we still need the unallocated metadata (.rustc) to + # support custom-derive plugins like #[proc_macro_derive(Foo)]. But eu-str= ip is + # very eager by default, so it has to be limited to keep the rustc sections. + debuginfo_options =3D --keep-section .rustc +end + +packages + package %{name} + provides +=3D \ + bundled(libbacktrace) =3D 8.1.0 \ + bundled(miniz) =3D 2.0.7 + end + + package %{name}-debuginfo + template DEBUGINFO + end +end --=20 2.20.1 --===============6369718147663760148==--