rust-vl.spec 31 KB

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