# # spec file for package rust # # Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. # Copyright (c) 2017 Luke Jones, luke.nukem.jones@gmail.com # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed # upon. The license for this file, and modifications and additions to the # file, is the same license as for the pristine package itself (unless the # license for the pristine package is not an Open Source License, in which # case the license is the MIT License). An "Open Source License" is a # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. # Please submit bugfixes or comments via http://bugs.opensuse.org/ # %global prev_version 1.14.0 %global abi gnu %ifarch armv7hl %global _arch armv7 %global abi gnueabihf %endif %ifarch ppc64 %global _arch powerpc64 %endif %ifarch ppc64le %global _arch powerpc64le %endif %ifarch x86_64 %global _arch x86_64 %endif %ifarch %{ix86} %global _arch i586 %endif %global rust_triple %{_arch}-unknown-linux-%{abi} #bcond_with bootstrap Name: rust Version: 1.15.1 Release: 0 Summary: A systems programming language License: MIT or Apache-2.0 Group: Development/Languages/Other Url: http://www.rust-lang.org Source0: https://static.rust-lang.org/dist/rustc-%{version}-src.tar.gz Source1: config.toml Source100: %{name}-rpmlintrc # PATCH-FIX-OPENSUSE: Set DT_SONAME when building dylibs Patch1: add-soname.patch BuildRequires: cmake BuildRequires: curl BuildRequires: gcc-c++ BuildRequires: llvm-devel BuildRequires: procps BuildRequires: python Recommends: cargo Recommends: %{name}-doc Recommends: %{name}-std Conflicts: rustc-bootstrap Provides: rustc = %{version} Provides: rustc-stable = %{version} BuildRoot: %{_tmppath}/%{name}-%{version}-build ExclusiveArch: %{ix86} x86_64 %{arm} aarch64 ppc64 ppc64le %if 0%{?suse_version} BuildRequires: fdupes %endif %if %{with bootstrap} BuildRequires: cargo-bootstrap BuildRequires: rustc-bootstrap <= %{version} BuildRequires: rustc-bootstrap >= %{prev_version} %else BuildRequires: cargo BuildRequires: rust <= %{version} BuildRequires: rust >= %{prev_version} %endif %description Rust is a systems programming language focused on three goals: safety, speed, and concurrency. It maintains these goals without having a garbage collector, making it a useful language for a number of use cases other languages are not good at: embedding in other languages, programs with specific space and time requirements, and writing low-level code, like device drivers and operating systems. It improves on current languages targeting this space by having a number of compile-time safety checks that produce no runtime overhead, while eliminating all data races. Rust also aims to achieve "zero-cost abstractions", even though some of these abstractions feel like those of a high-level language. Even then, Rust still allows precise control like a low-level language would. %package std Summary: Standard library for Rust Group: Development/Languages/Other %description std This package includes the standard libraries for building applications written in Rust. %package doc Summary: Rust documentation Group: Development/Languages/Other %description doc Documentation for the Rust language. %package gdb Summary: Gdb integration for rust binaries Group: Development/Languages/Other Supplements: packageand(%{name}:gdb) Provides: rustc:%{_bindir}/rust-gdb %description gdb This subpackage provides pretty printers and a wrapper script for invoking gdb on rust binaries. %prep %setup -q -n rustc-%{version}-src %patch1 -p1 %build export CPPFLAGS="%{optflags}" # eliminate complain from RPMlint %configure --disable-option-checking \ --build=%{rust_triple} \ --host=%{rust_triple} \ --target=%{rust_triple} \ --enable-local-rust \ --local-rust-root=%{_prefix} \ --prefix=%{_prefix} \ --libdir=%{_prefix}/lib \ --docdir=%{_docdir}/%{name} \ --disable-rpath \ --disable-codegen-tests \ --disable-rustbuild \ --enable-vendor \ --release-channel=stable make %{?_smp_mflags} %install %make_install # Remove executable permission from HTML documentation # to prevent RPMLINT errors. chmod -R -x+X %{buildroot}%{_docdir}/%{name}/html # Remove surplus files rm %{buildroot}%{_prefix}/lib/rustlib/components rm %{buildroot}%{_prefix}/lib/rustlib/manifest-rust* rm %{buildroot}%{_prefix}/lib/rustlib/install.log rm %{buildroot}%{_prefix}/lib/rustlib/uninstall.sh rm %{buildroot}%{_prefix}/lib/rustlib/rust-installer-version # Remove lockfile to avoid errors. rm %{buildroot}%{_docdir}/%{name}/html/.lock # The remaining shared libraries should be executable for debuginfo extraction. find %{buildroot}/%{_prefix}/lib/ -type f -name '*.so' -exec chmod -v +x '{}' '+' # extract bundled licenses for packaging - From fedora spec cp src/rt/hoedown/LICENSE src/rt/hoedown/LICENSE-hoedown sed -e '/*\//q' src/libbacktrace/backtrace.h \ >src/libbacktrace/LICENSE-libbacktrace %if 0%{?suse_version} %fdupes %{buildroot}%{_prefix} %endif %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %defattr(-,root,root,-) %license COPYRIGHT LICENSE-APACHE LICENSE-MIT %license src/libbacktrace/LICENSE-libbacktrace %license src/rt/hoedown/LICENSE-hoedown %doc README.md %{_bindir}/rustc %{_bindir}/rustdoc %{_mandir}/man1/rustc.1* %{_mandir}/man1/rustdoc.1* %{_prefix}/lib/lib*.so %exclude %{_docdir}/%{name}/html %files std %defattr(-,root,root) %dir %{_prefix}/lib/rustlib %dir %{_prefix}/lib/rustlib/%{rust_triple} %dir %{_prefix}/lib/rustlib/%{rust_triple}/lib %{_prefix}/lib/rustlib/%{rust_triple}/lib/*.rlib %{_prefix}/lib/rustlib/%{rust_triple}/lib/*.so %files gdb %defattr(-,root,root,-) %{_bindir}/rust-gdb %dir %{_prefix}/lib/rustlib %dir %{_prefix}/lib/rustlib/etc %{_prefix}/lib/rustlib/etc/debugger_pretty_printers_common.py %{_prefix}/lib/rustlib/etc/gdb_load_rust_pretty_printers.py %{_prefix}/lib/rustlib/etc/gdb_rust_pretty_printing.py %files doc %defattr(-,root,root) %license %{_docdir}/%{name}/html/FiraSans-LICENSE.txt %license %{_docdir}/%{name}/html/Heuristica-LICENSE.txt %license %{_docdir}/%{name}/html/LICENSE-APACHE.txt %license %{_docdir}/%{name}/html/LICENSE-MIT.txt %license %{_docdir}/%{name}/html/SourceCodePro-LICENSE.txt %license %{_docdir}/%{name}/html/SourceSerifPro-LICENSE.txt %dir %{_docdir}/%{name} %dir %{_docdir}/%{name}/html %doc %{_docdir}/%{name}/html/alloc %doc %{_docdir}/%{name}/html/book %doc %{_docdir}/%{name}/html/collections %doc %{_docdir}/%{name}/html/core %doc %{_docdir}/%{name}/html/extra %doc %{_docdir}/%{name}/html/implementors %doc %{_docdir}/%{name}/html/libc %doc %{_docdir}/%{name}/html/nomicon %doc %{_docdir}/%{name}/html/src %doc %{_docdir}/%{name}/html/std %doc %{_docdir}/%{name}/html/std_unicode %doc %{_docdir}/%{name}/html/COPYRIGHT.txt %doc %{_docdir}/%{name}/html/*.html %doc %{_docdir}/%{name}/html/*.inc %doc %{_docdir}/%{name}/html/*.woff %doc %{_docdir}/%{name}/html/*.js %doc %{_docdir}/%{name}/html/*.css %changelog