rust-vl.spec 31 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018
  1. %bcond_with bootstrap
  2. %bcond_with test
  3. %bcond_with newrpm
  4. %bcond_with miri
  5. %bcond_without clang
  6. %bcond_without bundled_libgit2
  7. %bcond_without bundled_libssh2
  8. # Some sub-packages are versioned independently of the rust compiler and runtime itself.
  9. # Also beware that if any of these are not changed in a version bump, then the release
  10. # number should still increase, not be reset to 1!
  11. %global rustc_version 1.73.0
  12. %global cargo_version %{rustc_version}
  13. %global rustfmt_version %{rustc_version}
  14. %global rls_version %{rustc_version}
  15. %global clippy_version %{rustc_version}
  16. # The channel can be stable, beta, or nightly
  17. %{!?channel: %global channel stable}
  18. # Only x86_64 and i686 are Tier 1 platforms at this time.
  19. # https://forge.rust-lang.org/platform-support.html
  20. %global rust_arches x86_64 i686
  21. # To bootstrap from scratch, set the channel and date from src/stage0.txt
  22. # e.g. 1.10.0 wants rustc: 1.9.0-2016-05-24
  23. # or nightly wants some beta-YYYY-MM-DD
  24. %global bootstrap_rust 1.72.1
  25. %global bootstrap_cargo 1.72.1
  26. %global bootstrap_channel %{bootstrap_rust}
  27. # Only the specified arches will use bootstrap binaries.
  28. %if %{with bootstrap}
  29. %global bootstrap_arches %%{rust_arches}
  30. %endif
  31. # We generally don't want llvm-static present at all, since llvm-config will
  32. # make us link statically. But we can opt in, e.g. to aid LLVM rebases.
  33. # FIXME: LLVM 3.9 prefers shared linking now! Which is good, but next time we
  34. # *want* static we'll have to force it with "llvm-config --link-static".
  35. # See also https://github.com/rust-lang/rust/issues/36854
  36. # The new rustbuild accepts `--enable-llvm-link-shared`, else links static.
  37. %bcond_with llvm_static
  38. # We can also choose to just use Rust's bundled LLVM, in case the system LLVM
  39. # is insufficient. Rust currently requires LLVM 3.7+.
  40. %bcond_with bundled_llvm
  41. # LLDB only works on some architectures
  42. %ifarch %{arm} aarch64 %{ix86} x86_64
  43. # LLDB isn't available everywhere...
  44. %bcond_without lldb
  45. %else
  46. %bcond_with lldb
  47. %endif
  48. Summary: The Rust Programming Language
  49. Name: rust
  50. Version: %{rustc_version}
  51. Release: 1%{?_dist_release}
  52. Group: programming
  53. Vendor: Project Vine
  54. Distribution: Vine Linux
  55. License: (ASL 2.0 or MIT) and (BSD and ISC and MIT)
  56. # ^ written as: (rust itself) and (bundled libraries)
  57. URL: https://www.rust-lang.org
  58. ExclusiveArch: %{rust_arches}
  59. %if "%{channel}" == "stable"
  60. %global rustc_package rustc-%{version}-src
  61. %else
  62. %global rustc_package rustc-%{channel}-src
  63. %endif
  64. Source0: https://static.rust-lang.org/dist/%{rustc_package}.tar.gz
  65. # Get the Rust triple for any arch.
  66. %{lua: function rust_triple(arch)
  67. local abi = "gnu"
  68. if arch == "armv7hl" then
  69. arch = "armv7"
  70. abi = "gnueabihf"
  71. elseif arch == "ppc64" then
  72. arch = "powerpc64"
  73. elseif arch == "ppc64le" then
  74. arch = "powerpc64le"
  75. end
  76. return arch.."-unknown-linux-"..abi
  77. end}
  78. %global rust_triple %{lua: print(rust_triple(rpm.expand("%{_target_cpu}")))}
  79. %if %defined bootstrap_arches
  80. # For each bootstrap arch, add an additional binary Source.
  81. # Also define bootstrap_source just for the current target.
  82. %{lua: do
  83. local bootstrap_arches = {}
  84. for arch in string.gmatch(rpm.expand("%{bootstrap_arches}"), "%S+") do
  85. table.insert(bootstrap_arches, arch)
  86. end
  87. local base = rpm.expand("https://static.rust-lang.org/dist"
  88. .."/rust-%{bootstrap_channel}")
  89. local target_arch = rpm.expand("%{_target_cpu}")
  90. for i, arch in ipairs(bootstrap_arches) do
  91. print(string.format("Source%d: %s-%s.tar.gz\n",
  92. i, base, rust_triple(arch)))
  93. if arch == target_arch then
  94. rpm.define("bootstrap_source "..i)
  95. end
  96. end
  97. end}
  98. %endif
  99. %ifarch %{bootstrap_arches}
  100. %global bootstrap_root rust-%{bootstrap_channel}-%{rust_triple}
  101. %global local_rust_root %{_builddir}/%{bootstrap_root}/usr
  102. Provides: bundled(%{name}-bootstrap) = %{bootstrap_rust}
  103. %else
  104. BuildRequires: cargo >= %{bootstrap_cargo}
  105. BuildRequires: %{name} >= %{bootstrap_rust}
  106. BuildConflicts: %{name} > %{version}
  107. %global local_rust_root %{_prefix}
  108. %endif
  109. BuildRequires: cmake
  110. BuildRequires: make
  111. %if %{with clang}
  112. BuildRequires: clang
  113. BuildRequires: lld
  114. %else
  115. BuildRequires: gcc
  116. BuildRequires: gcc-c++
  117. %endif
  118. %if %{without bundled_libgit2}
  119. BuildRequires: libgit2-devel
  120. %endif
  121. %if %{without bundled_libssh2}
  122. BuildRequires: libssh2-devel
  123. %endif
  124. BuildRequires: ncurses-devel
  125. BuildRequires: openssl-devel
  126. BuildRequires: zlib-devel
  127. BuildRequires: python3
  128. BuildRequires: python3-rpm-macros
  129. BuildRequires: curl
  130. BuildRequires: curl-devel
  131. BuildRequires: xz-devel
  132. %if %{with bundled_llvm}
  133. BuildRequires: cmake
  134. BuildRequires: git
  135. Provides: bundled(llvm) = 6.0
  136. %else
  137. BuildRequires: cmake
  138. %if %defined llvm
  139. %global llvm_root %{_libdir}/%{llvm}
  140. %else
  141. %global llvm llvm
  142. %global llvm_root %{_prefix}
  143. %global llvm_has_filecheck 1
  144. %endif
  145. BuildRequires: %{llvm}-devel >= 11.0.0
  146. %if %{with llvm_static}
  147. BuildRequires: %{llvm}-static
  148. BuildRequires: libffi-devel
  149. %else
  150. BuildConflicts: %{llvm}-static
  151. %endif
  152. %endif
  153. # make check needs "ps" for src/test/run-pass/wait-forked-but-failed-child.rs
  154. BuildRequires: procps
  155. # debuginfo-gdb tests need gdb
  156. BuildRequires: gdb
  157. # TODO: work on unbundling these!
  158. Provides: bundled(jquery) = 2.1.4
  159. Provides: bundled(miniz) = 1.14
  160. # Virtual provides for folks who attempt "dnf install rustc"
  161. Provides: rustc = %{version}-%{release}
  162. Provides: rustc%{?_isa} = %{version}-%{release}
  163. Obsoletes: rust-rls < %{version}-%{release}
  164. Obsoletes: rust-analysis < %{version}-%{release}
  165. %if ! %{with miri}
  166. Obsoletes: rust-miri < %{version}-%{release}
  167. %endif
  168. # Always require our exact standard library
  169. Requires: %{name}-std-static%{?_isa} = %{version}-%{release}
  170. # The C compiler is needed at runtime just for linking. Someday rustc might
  171. # invoke the linker directly, and then we'll only need binutils.
  172. # https://github.com/rust-lang/rust/issues/11937
  173. Requires: /usr/bin/cc
  174. # ALL Rust libraries are private, because they don't keep an ABI.
  175. %global _privatelibs lib(.*-[[:xdigit:]]{16}*|rustc.*)[.]so.*
  176. %global __provides_exclude ^(%{_privatelibs})$
  177. %global __requires_exclude ^(%{_privatelibs})$
  178. %global __provides_exclude_from ^(%{_docdir}|%{rustlibdir}/src)/.*$
  179. %global __requires_exclude_from ^(%{_docdir}|%{rustlibdir}/src)/.*$
  180. %if !%{with newrpm}
  181. # eu-strip is very eager by default, so we have to limit it to -g, only debugging symbols.
  182. %global _find_debuginfo_opts -g
  183. %undefine _include_minidebuginfo
  184. %else
  185. # Newer find-debuginfo.sh supports --keep-section, which is preferable. rhbz1465997
  186. %global _find_debuginfo_opts --keep-section .rustc
  187. %endif
  188. %if !%{with newrpm}
  189. Obsoletes: rust-debuginfo < %{version}-%{release}
  190. %else
  191. %ifnarch x86_64
  192. Obsoletes: rust-debuginfo < %{version}-%{release}
  193. %endif
  194. %endif
  195. # Use hardening ldflags.
  196. %global rustflags -Clink-arg=-Wl,-z,relro,-z,now
  197. %if %{without bundled_llvm} && "%{llvm_root}" != "%{_prefix}"
  198. # https://github.com/rust-lang/rust/issues/40717
  199. %global library_path $(%{llvm_root}/bin/llvm-config --libdir)
  200. %endif
  201. %description
  202. Rust is a systems programming language that runs blazingly fast, prevents
  203. segfaults, and guarantees thread safety.
  204. This package includes the Rust compiler and documentation generator.
  205. %package std-static
  206. Summary: Standard library for Rust
  207. Group: programming
  208. %description std-static
  209. This package includes the standard libraries for building applications
  210. written in Rust.
  211. %package debugger-common
  212. Summary: Common debugger pretty printers for Rust
  213. Group: programming
  214. BuildArch: noarch
  215. %description debugger-common
  216. This package includes the common functionality for %{name}-gdb and %{name}-lldb.
  217. %package gdb
  218. Summary: GDB pretty printers for Rust
  219. Group: programming
  220. BuildArch: noarch
  221. Requires: gdb
  222. Requires: %{name}-debugger-common = %{version}-%{release}
  223. %description gdb
  224. This package includes the rust-gdb script, which allows easier debugging of Rust
  225. programs.
  226. %if %{with lldb}
  227. %package lldb
  228. Summary: LLDB pretty printers for Rust
  229. Group: programming
  230. # It could be noarch, but lldb has limited availability
  231. #BuildArch: noarch
  232. Requires: lldb
  233. Requires: python3-lldb
  234. Requires: %{name}-debugger-common = %{version}-%{release}
  235. %description lldb
  236. This package includes the rust-lldb script, which allows easier debugging of Rust
  237. programs.
  238. %endif
  239. %package doc
  240. Summary: Documentation for Rust
  241. Group: documentation
  242. # NOT BuildArch: noarch
  243. # Note, while docs are mostly noarch, some things do vary by target_arch.
  244. # Koji will fail the build in rpmdiff if two architectures build a noarch
  245. # subpackage differently, so instead we have to keep its arch.
  246. %description doc
  247. This package includes HTML documentation for the Rust programming language and
  248. its standard library.
  249. %package -n cargo
  250. Summary: Rust's package manager and build tool
  251. Version: %{cargo_version}
  252. Group: programming
  253. # For tests:
  254. BuildRequires: git
  255. # Cargo is not much use without Rust
  256. Requires: rust
  257. %description -n cargo
  258. Cargo is a tool that allows Rust projects to declare their various dependencies
  259. and ensure that you'll always get a repeatable build.
  260. %package -n cargo-doc
  261. Summary: Documentation for Cargo
  262. Version: %{cargo_version}
  263. Group: programming
  264. BuildArch: noarch
  265. # Cargo no longer builds its own documentation
  266. # https://github.com/rust-lang/cargo/pull/4904
  267. Requires: rust-doc = %{rustc_version}-%{release}
  268. %description -n cargo-doc
  269. This package includes HTML documentation for Cargo.
  270. %package -n rustfmt
  271. Summary: Tool to find and fix Rust formatting issues
  272. Version: %{rustfmt_version}
  273. Group: programming
  274. Requires: cargo
  275. Obsoletes: rustfmt-preview < 1.0.0
  276. %description -n rustfmt
  277. A tool for formatting Rust code according to style guidelines.
  278. %package -n clippy
  279. Summary: Lints to catch common mistakes and improve your Rust code
  280. Version: %{clippy_version}
  281. Group: programming
  282. License: MPLv2.0
  283. Requires: cargo
  284. # /usr/bin/clippy-driver is dynamically linked against internal rustc libs
  285. Requires: %{name} = %{rustc_version}-%{release}
  286. Obsoletes: clippy-preview < 1.0.0
  287. %description -n clippy
  288. A collection of lints to catch common mistakes and improve your Rust code.
  289. %package src
  290. Summary: Sources for the Rust standard library
  291. Group: programming
  292. BuildArch: noarch
  293. %description src
  294. This package includes source files for the Rust standard library. It may be
  295. useful as a reference for code completion tools in various editors.
  296. %if %{with miri}
  297. %package miri
  298. Summary: An interpreter for Rust's mid-level intermediate representation
  299. Group: programming
  300. Requires: rust = %{rustc_version}-%{release}
  301. %description miri
  302. An experimental interpreter for Rust's mid-level intermediate representation
  303. (MIR). It can run binaries and test suites of cargo projects and detect certain
  304. classes of undefined behavior.
  305. %endif
  306. %package analyzer
  307. Summary: A modular compiler frontend for the Rust language
  308. Group: programming
  309. Requires: rust = %{rustc_version}-%{release}
  310. %description analyzer
  311. rust-analyzer is a modular compiler frontend for the Rust language.
  312. %if %{with newrpm}
  313. # debuginfo is available on x86_64 only
  314. %ifarch x86_64
  315. %debug_package
  316. %else
  317. %global _build_id_links none
  318. %global __debug_install_post %{nil}
  319. %global debug_package %{nil}
  320. %endif
  321. %else
  322. %global _build_id_links none
  323. %global __debug_install_post %{nil}
  324. %global debug_package %{nil}
  325. %endif
  326. %prep
  327. %ifarch %{bootstrap_arches}
  328. %setup -q -n %{bootstrap_root} -T -b %{bootstrap_source}
  329. ./install.sh --components=cargo,rustc,rust-std-%{rust_triple} \
  330. --prefix=%{local_rust_root} --disable-ldconfig
  331. test -f '%{local_rust_root}/bin/cargo'
  332. test -f '%{local_rust_root}/bin/rustc'
  333. %endif
  334. %setup -q -n %{rustc_package}
  335. %autopatch -p1
  336. sed -i.try-py3 -e '/try python2.7/i try python3 "$@"' ./configure
  337. %if %without bundled_llvm
  338. rm -rf src/llvm-project/
  339. mkdir -p src/llvm-project/libunwind/
  340. %endif
  341. # We never enable emscripten.
  342. rm -rf src/llvm-emscripten/
  343. # Remove other unused vendored libraries
  344. rm -rf vendor/curl-sys/curl/
  345. rm -rf vendor/*jemalloc-sys*/jemalloc/
  346. rm -rf vendor/libmimalloc-sys/c_src/mimalloc/
  347. rm -rf vendor/libz-sys/src/zlib/
  348. rm -rf vendor/libz-sys/src/zlib-ng/
  349. rm -rf vendor/lzma-sys/xz-*/
  350. rm -rf vendor/openssl-src/openssl/
  351. %if %{without bundled_libgit2}
  352. rm -rf vendor/libgit2-sys/libgit2/
  353. %endif
  354. %if %{without bundled_libssh2}
  355. rm -rf vendor/libssh2-sys/libssh2/
  356. %endif
  357. # This only affects the transient rust-installer, but let it use our dynamic xz-libs
  358. sed -i.lzma -e '/LZMA_API_STATIC/d' src/bootstrap/tool.rs
  359. # rename bundled license for packaging
  360. if [ -e vendor/backtrace-sys/src/libbacktrace/LICENSE ]; then
  361. cp -a vendor/backtrace-sys/src/libbacktrace/LICENSE{,-libbacktrace}
  362. fi
  363. %if %{with bundled_llvm} && 0%{?epel}
  364. mkdir -p cmake-bin
  365. ln -s /usr/bin/cmake cmake-bin/cmake
  366. %global cmake_path $PWD/cmake-bin
  367. %endif
  368. %if %{without bundled_llvm} && %{with llvm_static}
  369. # Static linking to distro LLVM needs to add -lffi
  370. # https://github.com/rust-lang/rust/issues/34486
  371. sed -i.ffi -e '$a #[link(name = "ffi")] extern {}' \
  372. src/librustc_llvm/lib.rs
  373. %endif
  374. # The configure macro will modify some autoconf-related files, which upsets
  375. # cargo when it tries to verify checksums in those files. If we just truncate
  376. # that file list, cargo won't have anything to complain about.
  377. find vendor -name .cargo-checksum.json \
  378. -exec sed -i.uncheck -e 's/"files":{[^}]*}/"files":{ }/' '{}' '+'
  379. %build
  380. %if %{without bundled_libgit2}
  381. export LIBGIT2_SYS_USE_PKG_CONFIG=1
  382. %endif
  383. %if %{without bundled_libssh2}
  384. export LIBSSH2_SYS_USE_PKG_CONFIG=1
  385. %endif
  386. %{?cmake_path:export PATH=%{cmake_path}:$PATH}
  387. %{?library_path:export LIBRARY_PATH="%{library_path}"}
  388. %{?rustflags:export RUSTFLAGS="%{rustflags}"}
  389. # We're going to override --libdir when configuring to get rustlib into a
  390. # common path, but we'll fix the shared libraries during install.
  391. %global common_libdir %{_prefix}/lib
  392. %global rustlibdir %{common_libdir}/rustlib
  393. %ifarch x86_64
  394. %if %{with newrpm}
  395. %define enable_debuginfo --debuginfo-level=0 --debuginfo-level-std=2
  396. %else
  397. %define enable_debuginfo --debuginfo-level=0
  398. %global debug_package %{nil}
  399. %endif
  400. %else
  401. %define enable_debuginfo --debuginfo-level=0
  402. %global debug_package %{nil}
  403. %endif
  404. # Some builders have relatively little memory for their CPU count.
  405. # At least 2GB per CPU is a good rule of thumb for building rustc.
  406. ncpus=$(/usr/bin/getconf _NPROCESSORS_ONLN)
  407. max_cpus=$(( ($(LANG=C free -g | awk '/^Mem:/{print $2}') + 1) / 2 ))
  408. if [ "$max_cpus" -ge 1 -a "$max_cpus" -lt "$ncpus" ]; then
  409. ncpus="$max_cpus"
  410. fi
  411. %if %{with clang}
  412. export CC=clang
  413. export CXX=clang++
  414. export LDFLAGS="$LDFLAGS -fuse-ld=lld"
  415. export RUSTFLAGS="$RUSTFLAGS -C linker=clang -C link-arg=-fuse-ld=lld"
  416. %endif
  417. # workaround for https://github.com/rust-lang/rust/issues/69953
  418. # --set rust.deny-warnings=false
  419. %configure \
  420. --disable-option-checking \
  421. --libdir=%{common_libdir} \
  422. --build=%{rust_triple} --host=%{rust_triple} --target=%{rust_triple} \
  423. --enable-local-rust --local-rust-root=%{local_rust_root} \
  424. --set build.rustfmt=/bin/true \
  425. %{!?with_bundled_llvm: --llvm-root=%{llvm_root} \
  426. %{!?llvm_has_filecheck: --disable-codegen-tests} \
  427. %{!?with_llvm_static: --enable-llvm-link-shared } } \
  428. --disable-llvm-static-stdcpp \
  429. --disable-rpath \
  430. %{enable_debuginfo} \
  431. --set rust.codegen-units-std=1 \
  432. --enable-extended \
  433. --tools=cargo,clippy,rustfmt,rust-analyzer,src \
  434. --enable-vendor \
  435. --enable-verbose-tests \
  436. --release-channel=%{channel} \
  437. --dist-compression-formats=gz \
  438. --release-description="Vine Linux %{version}-%{release}" \
  439. %{nil}
  440. %{__python3} ./x.py build -j "$ncpus"
  441. %{__python3} ./x.py doc
  442. %install
  443. rm -rf %{buildroot}
  444. %{?cmake_path:export PATH=%{cmake_path}:$PATH}
  445. %{?library_path:export LIBRARY_PATH="%{library_path}"}
  446. %{?rustflags:export RUSTFLAGS="%{rustflags}"}
  447. %if %{with clang}
  448. export CC=clang
  449. export CXX=clang++
  450. export RUSTFLAGS="$RUSTFLAGS -C linker=clang -C link-arg=-fuse-ld=lld"
  451. %endif
  452. DESTDIR=%{buildroot} ./x.py install
  453. #DESTDIR=%{buildroot} ./x.py install src
  454. # Make sure the shared libraries are in the proper libdir
  455. %if "%{_libdir}" != "%{common_libdir}"
  456. mkdir -p %{buildroot}%{_libdir}
  457. find %{buildroot}%{common_libdir} -maxdepth 1 -type f -name '*.so' \
  458. -exec mv -v -t %{buildroot}%{_libdir} '{}' '+'
  459. %endif
  460. # The shared libraries should be executable for debuginfo extraction.
  461. find %{buildroot}%{_libdir} -maxdepth 1 -type f -name '*.so' \
  462. -exec chmod -v +x '{}' '+'
  463. # The libdir libraries are identical to those under rustlib/. It's easier on
  464. # library loading if we keep them in libdir, but we do need them in rustlib/
  465. # to support dynamic linking for compiler plugins, so we'll symlink.
  466. (cd "%{buildroot}%{rustlibdir}/%{rust_triple}/lib" &&
  467. find ../../../../%{_lib} -maxdepth 1 -name '*.so' |
  468. while read lib; do
  469. if [ -f "${lib##*/}" ]; then
  470. # make sure they're actually identical!
  471. cmp "$lib" "${lib##*/}"
  472. ln -v -f -s -t . "$lib"
  473. fi
  474. done)
  475. # Remove installer artifacts (manifests, uninstall scripts, etc.)
  476. find %{buildroot}%{rustlibdir} -maxdepth 1 -type f -exec rm -v '{}' '+'
  477. # Remove backup files from %%configure munging
  478. find %{buildroot}%{rustlibdir} -type f -name '*.orig' -exec rm -v '{}' '+'
  479. # https://fedoraproject.org/wiki/Changes/Make_ambiguous_python_shebangs_error
  480. # We don't actually need to ship any of those python scripts in rust-src anyway.
  481. find %{buildroot}%{rustlibdir}/src -type f -name '*.py' -exec rm -v '{}' '+'
  482. # FIXME: __os_install_post will strip the rlibs
  483. # -- should we find a way to preserve debuginfo?
  484. # Remove unwanted documentation files (we already package them)
  485. # Remove unwanted documentation files (we already package them)
  486. rm -f %{buildroot}%{_docdir}/%{name}/README.md
  487. rm -f %{buildroot}%{_docdir}/%{name}/COPYRIGHT
  488. rm -f %{buildroot}%{_docdir}/%{name}/LICENSE
  489. rm -f %{buildroot}%{_docdir}/%{name}/LICENSE-APACHE
  490. rm -f %{buildroot}%{_docdir}/%{name}/LICENSE-MIT
  491. rm -f %{buildroot}%{_docdir}/%{name}/LICENSE-THIRD-PARTY
  492. rm -f %{buildroot}%{_docdir}/%{name}/*.old
  493. # Sanitize the HTML documentation
  494. find %{buildroot}%{_docdir}/%{name}/html -empty -delete
  495. find %{buildroot}%{_docdir}/%{name}/html -type f -exec chmod -x '{}' '+'
  496. # Create the path for crate-devel packages
  497. mkdir -p %{buildroot}%{_datadir}/cargo/registry
  498. # Cargo no longer builds its own documentation
  499. # https://github.com/rust-lang/cargo/pull/4904
  500. mkdir -p %{buildroot}%{_docdir}/cargo
  501. ln -sT ../rust/html/cargo/ %{buildroot}%{_docdir}/cargo/html
  502. rm -f %{buildroot}%{_bindir}/*.old
  503. %if %{without lldb}
  504. rm -f %{buildroot}%{_bindir}/rust-lldb
  505. rm -f %{buildroot}%{rustlibdir}/etc/lldb_*.py*
  506. rm -f %{buildroot}%{rustlibdir}/etc/lldb_commands
  507. %endif
  508. %if %{with bundled_llvm}
  509. rm -rf %{buildroot}/home
  510. %endif
  511. # We don't want Rust copies of LLVM tools (rust-lld, rust-llvm-dwp)
  512. rm -f %{buildroot}%{rustlibdir}/%{rust_triple}/bin/rust-ll*
  513. %check
  514. %if %{with test}
  515. %{?cmake_path:export PATH=%{cmake_path}:$PATH}
  516. %{?library_path:export LIBRARY_PATH="%{library_path}"}
  517. %{?rustflags:export RUSTFLAGS="%{rustflags}"}
  518. %if %{with clang}
  519. export CC=clang
  520. export CXX=clang++
  521. export LD=ld.lld
  522. export RUSTFLAGS="$RUSTFLAGS -C linker=ld.lld -C link-arg=-fuse-ld=lld"
  523. %endif
  524. # The results are not stable on koji, so mask errors and just log it.
  525. %{__python3} ./x.py test --no-fail-fast || :
  526. %{__python3} ./x.py test --no-fail-fast cargo || :
  527. %{__python3} ./x.py test --no-fail-fast clippy || :
  528. %{__python3} ./x.py test --no-fail-fast rustfmt || :
  529. %endif
  530. %files
  531. %license COPYRIGHT LICENSE-APACHE LICENSE-MIT
  532. #license src/libbacktrace/LICENSE-libbacktrace
  533. %doc README.md
  534. %{_bindir}/rustc
  535. %{_bindir}/rustdoc
  536. %{_libdir}/*.so
  537. %{_mandir}/man1/rustc.1*
  538. %{_mandir}/man1/rustdoc.1*
  539. %dir %{rustlibdir}
  540. %dir %{rustlibdir}/%{rust_triple}
  541. %dir %{rustlibdir}/%{rust_triple}/lib
  542. %{rustlibdir}/%{rust_triple}/lib/*.so
  543. %files std-static
  544. %dir %{rustlibdir}
  545. %dir %{rustlibdir}/%{rust_triple}
  546. %dir %{rustlibdir}/%{rust_triple}/lib
  547. %{rustlibdir}/%{rust_triple}/lib/*.rlib
  548. %files debugger-common
  549. %dir %{rustlibdir}
  550. %dir %{rustlibdir}/etc
  551. %{rustlibdir}/etc/rust_types.py*
  552. %files gdb
  553. %{_bindir}/rust-gdb
  554. %{rustlibdir}/etc/gdb_*.py*
  555. %exclude %{_bindir}/rust-gdbgui
  556. %if %with lldb
  557. %files lldb
  558. %{_bindir}/rust-lldb
  559. %{rustlibdir}/etc/lldb_*.py*
  560. %{rustlibdir}/etc/lldb_commands
  561. %endif
  562. %files doc
  563. %docdir %{_docdir}/%{name}
  564. %dir %{_docdir}/%{name}
  565. %dir %{_docdir}/%{name}/html
  566. %{_docdir}/%{name}/html/*/
  567. %{_docdir}/%{name}/html/*.html
  568. %{_docdir}/%{name}/html/*.css
  569. %{_docdir}/%{name}/html/*.js
  570. %{_docdir}/%{name}/html/robots.txt
  571. %files -n cargo
  572. %license src/tools/cargo/LICENSE-APACHE src/tools/cargo/LICENSE-MIT src/tools/cargo/LICENSE-THIRD-PARTY
  573. %doc src/tools/cargo/README.md
  574. %{_bindir}/cargo
  575. %{_mandir}/man1/cargo*.1*
  576. %dir %{_sysconfdir}/bash_completion.d
  577. %{_sysconfdir}/bash_completion.d/cargo
  578. %dir %{_datadir}/zsh
  579. %dir %{_datadir}/zsh/site-functions
  580. %{_datadir}/zsh/site-functions/_cargo
  581. %dir %{_datadir}/cargo
  582. %dir %{_datadir}/cargo/registry
  583. %files -n cargo-doc
  584. %docdir %{_docdir}/cargo
  585. %dir %{_docdir}/cargo
  586. %{_docdir}/cargo/html
  587. %files -n rustfmt
  588. %{_bindir}/rustfmt
  589. %{_bindir}/cargo-fmt
  590. %doc src/tools/rustfmt/{README,CHANGELOG,Configurations}.md
  591. %license src/tools/rustfmt/LICENSE-{APACHE,MIT}
  592. %files -n clippy
  593. %{_bindir}/cargo-clippy
  594. %{_bindir}/clippy-driver
  595. %doc src/tools/clippy/{README.md,CHANGELOG.md}
  596. %license src/tools/clippy/LICENSE*
  597. %files src
  598. %dir %{rustlibdir}
  599. %{rustlibdir}/src
  600. %files analyzer
  601. %{_bindir}/rust-analyzer
  602. %{_libexecdir}/rust-analyzer-proc-macro-srv
  603. %if %{with miri}
  604. %files miri
  605. %{_bindir}/miri
  606. %{_bindir}/cargo-miri
  607. %endif
  608. %changelog
  609. * Fri Oct 06 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.73.0-1
  610. - new upstream release.
  611. * Sun Oct 01 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.72.1-1
  612. - new upstream release.
  613. * Fri Aug 25 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.72.0-1
  614. - new upstream release.
  615. * Fri Jul 14 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.71.0-1
  616. - new upstream release.
  617. * Sun Jun 04 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.70.0-1
  618. - new upstream release.
  619. * Thu Apr 20 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.69.0-1
  620. - new upstream release.
  621. - dropped rust-analysis.
  622. * Wed Mar 29 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.68.2-1
  623. - new upstream release.
  624. * Tue Mar 28 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.68.1-1
  625. - new upstream release.
  626. * Fri Mar 10 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.68.0-1
  627. - new upstream release.
  628. * Fri Feb 10 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.67.1-1
  629. - new upstream release.
  630. * Fri Jan 27 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.67.0-1
  631. - new upstream release.
  632. * Wed Jan 11 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.66.1-1
  633. - new upstream release.
  634. * Fri Dec 16 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.66.0-1
  635. - new upstream release.
  636. * Fri Nov 04 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.65.0-1
  637. - new upstream release.
  638. * Fri Sep 23 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.64.0-1
  639. - new upstream release.
  640. * Fri Aug 12 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.63.0-1
  641. - new upstream release.
  642. * Wed Jul 20 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.62.1-1
  643. - new upstream release.
  644. * Fri Jul 01 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.62.0-1
  645. - new upstream release.
  646. * Sat May 21 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.61.0-1
  647. - new upstream release.
  648. * Fri Apr 22 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.60.0-1
  649. - new upstream release.
  650. * Fri Feb 25 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.59.0-1
  651. - new upstream release.
  652. * Fri Jan 21 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.58.1-1
  653. - new upstream release.
  654. * Fri Jan 14 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.58.0-1
  655. - new upstream release.
  656. * Fri Dec 03 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.57.0-1
  657. - new upstream release.
  658. * Tue Nov 02 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.56.1-1
  659. - new upstream release.
  660. * Fri Oct 22 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.56.0-1
  661. - new upstream release.
  662. * Wed Sep 15 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.55.0-1
  663. - new upstream release.
  664. * Wed Aug 11 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.54.0-2
  665. - rebuilt with current toolchain.
  666. * Fri Jul 30 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.54.0-1
  667. - new upstream release.
  668. * Mon Jun 21 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.53.0-1
  669. - new upstream release.
  670. - dropped a package: rust-miri.
  671. * Sun Jun 13 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.52.1-1
  672. - new upstream release.
  673. * Mon May 10 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.52.0-1
  674. - new upstream release.
  675. - dropped Patch0 and 1: merged to upstream.
  676. * Sun Apr 18 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.51.0-2
  677. - rebuilt with llvm-12.
  678. * Tue Mar 30 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.51.0-1
  679. - new upstream release.
  680. * Sun Feb 21 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.50.0-1
  681. - new upstream release.
  682. * Wed Jan 27 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.49.0-1
  683. - new upstream release.
  684. * Sat Dec 12 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.48.0-1
  685. - new upstream release.
  686. * Fri Oct 16 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.47.0-1
  687. - new upstream release.
  688. * Thu Sep 24 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.46.0-1
  689. - new upstream release.
  690. * Thu Mar 26 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.42.0-1
  691. - new upstream release.
  692. - separated debuginfo.
  693. * Sun Dec 22 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.40.0-1
  694. - new upstream release.
  695. * Sat Sep 28 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.38.0-1
  696. - new upstream release.
  697. - erased "-preview" from the name of subpackages.
  698. * Wed Dec 05 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.30.1-1
  699. - new upstream release.
  700. - dropped Patch1.
  701. - added subpackages cargo, cargo-doc, rustformat-preview, rls-preview, clippy-preview and rust-analysis.
  702. * Fri Jan 05 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.23.0-1
  703. - Update to 1.23.0 (stable).
  704. * Tue Jan 02 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.23.0-0.beta1
  705. - initial build for Vine Linux.
  706. - Update to 1.23.0-beta.
  707. - built a bootstrap rpm.
  708. * Thu Nov 23 2017 Josh Stone <jistone@redhat.com> - 1.22.1-1
  709. - Update to 1.22.1.
  710. * Thu Oct 12 2017 Josh Stone <jistone@redhat.com> - 1.21.0-1
  711. - Update to 1.21.0.
  712. * Mon Sep 11 2017 Josh Stone <jistone@redhat.com> - 1.20.0-2
  713. - ABI fixes for ppc64 and s390x.
  714. * Thu Aug 31 2017 Josh Stone <jistone@redhat.com> - 1.20.0-1
  715. - Update to 1.20.0.
  716. - Add a rust-src subpackage.
  717. * Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.19.0-4
  718. - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
  719. * Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.19.0-3
  720. - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
  721. * Mon Jul 24 2017 Josh Stone <jistone@redhat.com> - 1.19.0-2
  722. - Use find-debuginfo.sh --keep-section .rustc
  723. * Thu Jul 20 2017 Josh Stone <jistone@redhat.com> - 1.19.0-1
  724. - Update to 1.19.0.
  725. * Thu Jun 08 2017 Josh Stone <jistone@redhat.com> - 1.18.0-1
  726. - Update to 1.18.0.
  727. * Mon May 08 2017 Josh Stone <jistone@redhat.com> - 1.17.0-2
  728. - Move shared libraries back to libdir and symlink in rustlib
  729. * Thu Apr 27 2017 Josh Stone <jistone@redhat.com> - 1.17.0-1
  730. - Update to 1.17.0.
  731. * Mon Mar 20 2017 Josh Stone <jistone@redhat.com> - 1.16.0-3
  732. - Make rust-lldb arch-specific to deal with lldb deps
  733. * Fri Mar 17 2017 Josh Stone <jistone@redhat.com> - 1.16.0-2
  734. - Limit rust-lldb arches
  735. * Thu Mar 16 2017 Josh Stone <jistone@redhat.com> - 1.16.0-1
  736. - Update to 1.16.0.
  737. - Use rustbuild instead of the old makefiles.
  738. - Update bootstrapping to include rust-std and cargo.
  739. - Add a rust-lldb subpackage.
  740. * Thu Feb 09 2017 Josh Stone <jistone@redhat.com> - 1.15.1-1
  741. - Update to 1.15.1.
  742. - Require rust-rpm-macros for new crate packaging.
  743. - Keep shared libraries under rustlib/, only debug-stripped.
  744. - Merge and clean up conditionals for epel7.
  745. * Fri Dec 23 2016 Josh Stone <jistone@redhat.com> - 1.14.0-2
  746. - Rebuild without bootstrap binaries.
  747. * Thu Dec 22 2016 Josh Stone <jistone@redhat.com> - 1.14.0-1
  748. - Update to 1.14.0.
  749. - Rewrite bootstrap logic to target specific arches.
  750. - Bootstrap ppc64, ppc64le, s390x. (thanks to Sinny Kumari for testing!)
  751. * Thu Nov 10 2016 Josh Stone <jistone@redhat.com> - 1.13.0-1
  752. - Update to 1.13.0.
  753. - Use hardening flags for linking.
  754. - Split the standard library into its own package
  755. - Centralize rustlib/ under /usr/lib/ for multilib integration.
  756. * Thu Oct 20 2016 Josh Stone <jistone@redhat.com> - 1.12.1-1
  757. - Update to 1.12.1.
  758. * Fri Oct 14 2016 Josh Stone <jistone@redhat.com> - 1.12.0-7
  759. - Rebuild with LLVM 3.9.
  760. - Add ncurses-devel for llvm-config's -ltinfo.
  761. * Thu Oct 13 2016 Josh Stone <jistone@redhat.com> - 1.12.0-6
  762. - Rebuild with llvm-static, preparing for 3.9
  763. * Fri Oct 07 2016 Josh Stone <jistone@redhat.com> - 1.12.0-5
  764. - Rebuild with fixed eu-strip (rhbz1380961)
  765. * Fri Oct 07 2016 Josh Stone <jistone@redhat.com> - 1.12.0-4
  766. - Rebuild without bootstrap binaries.
  767. * Thu Oct 06 2016 Josh Stone <jistone@redhat.com> - 1.12.0-3
  768. - Bootstrap aarch64.
  769. - Use jemalloc's MALLOC_CONF to work around #36944.
  770. - Apply pr36933 to really disable armv7hl NEON.
  771. * Sat Oct 01 2016 Josh Stone <jistone@redhat.com> - 1.12.0-2
  772. - Protect .rustc from rpm stripping.
  773. * Fri Sep 30 2016 Josh Stone <jistone@redhat.com> - 1.12.0-1
  774. - Update to 1.12.0.
  775. - Always use --local-rust-root, even for bootstrap binaries.
  776. - Remove the rebuild conditional - the build system now figures it out.
  777. - Let minidebuginfo do its thing, since metadata is no longer a note.
  778. - Let rust build its own compiler-rt builtins again.
  779. * Sat Sep 03 2016 Josh Stone <jistone@redhat.com> - 1.11.0-3
  780. - Rebuild without bootstrap binaries.
  781. * Fri Sep 02 2016 Josh Stone <jistone@redhat.com> - 1.11.0-2
  782. - Bootstrap armv7hl, with backported no-neon patch.
  783. * Wed Aug 24 2016 Josh Stone <jistone@redhat.com> - 1.11.0-1
  784. - Update to 1.11.0.
  785. - Drop the backported patches.
  786. - Patch get-stage0.py to trust existing bootstrap binaries.
  787. - Use libclang_rt.builtins from compiler-rt, dodging llvm-static issues.
  788. - Use --local-rust-root to make sure the right bootstrap is used.
  789. * Sat Aug 13 2016 Josh Stone <jistone@redhat.com> 1.10.0-4
  790. - Rebuild without bootstrap binaries.
  791. * Fri Aug 12 2016 Josh Stone <jistone@redhat.com> - 1.10.0-3
  792. - Initial import into Fedora (#1356907), bootstrapped
  793. - Format license text as suggested in review.
  794. - Note how the tests already run in parallel.
  795. - Undefine _include_minidebuginfo, because it duplicates ".note.rustc".
  796. - Don't let checks fail the whole build.
  797. - Note that -doc can't be noarch, as rpmdiff doesn't allow variations.
  798. * Tue Jul 26 2016 Josh Stone <jistone@redhat.com> - 1.10.0-2
  799. - Update -doc directory ownership, and mark its licenses.
  800. - Package and declare licenses for libbacktrace and hoedown.
  801. - Set bootstrap_base as a global.
  802. - Explicitly require python2.
  803. * Thu Jul 14 2016 Josh Stone <jistone@fedoraproject.org> - 1.10.0-1
  804. - Initial package, bootstrapped