community/rust to 1.29.1-1

This commit is contained in:
Kevin Mihelich 2018-10-20 21:45:45 +00:00
parent 103dbf5acf
commit 52d2285d55
2 changed files with 13 additions and 18 deletions
community/rust

View file

@ -14,32 +14,30 @@ highmem=1
pkgname=('rust' 'rust-docs') pkgname=('rust' 'rust-docs')
epoch=1 epoch=1
pkgver=1.29.0 pkgver=1.29.1
pkgrel=2 pkgrel=1
pkgdesc='Systems programming language focused on safety, speed and concurrency' pkgdesc='Systems programming language focused on safety, speed and concurrency'
url='https://www.rust-lang.org/' url='https://www.rust-lang.org/'
arch=('x86_64') arch=('x86_64')
license=('MIT' 'Apache') license=('MIT' 'Apache')
makedepends=('rust' 'libffi' 'perl' 'python2' 'curl' 'cmake' 'ninja') makedepends=('rust' 'llvm' 'libffi' 'perl' 'python2' 'curl' 'cmake')
checkdepends=('procps-ng' 'gdb')
options=('!emptydirs') options=('!emptydirs')
source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc} source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
config.toml config.toml)
https://github.com/rust-lang/rust/commit/1b94b84ad0143ea2039610e3aec9e929a8a20733.patch)
sha256sums=('a4eb34ffd47f76afe2abd813f398512d5a19ef00989d37306217c9c9ec2f61e9' sha256sums=('f1b0728b66ce6bce6d72bbe5ea9e3a24ea22a045665da2ed8fcdfad14f61a349'
'SKIP' 'SKIP'
'ff4890bd733509b0dbb885d69afd578c41fc583af256dcc81e9239339c60b144' 'ce1c2648e70a14362d33d0cbbd3e35846ea9d43a8d0abc36071563fc087b82d5')
'8c8e79b0bac0dd1434c49f665abfa50634ffb0fbb35c9efee511e5b97960b9e2')
validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag and Release Signing Key) <rust-key@rust-lang.org> validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag and Release Signing Key) <rust-key@rust-lang.org>
prepare() { prepare() {
cd "rustc-$pkgver-src" cd "rustc-$pkgver-src"
patch -p1 <"$srcdir"/1b94b84ad0143ea2039610e3aec9e929a8a20733.patch
cp "$srcdir"/config.toml config.toml cp "$srcdir"/config.toml config.toml
if [[ $CARCH == armv7h ]]; then if [[ $CARCH == armv7h ]]; then
@ -55,17 +53,15 @@ prepare() {
build() { build() {
cd "rustc-$pkgver-src" cd "rustc-$pkgver-src"
msg2 "Run build under x.py"
python2 ./x.py build $jobs python2 ./x.py build $jobs
} }
package_rust() { package_rust() {
depends=('gcc-libs' 'curl' 'libssh2') depends=('gcc-libs' 'llvm-libs' 'curl' 'libssh2')
provides=('cargo' 'rustfmt') provides=('cargo' 'rustfmt')
conflicts=('cargo' 'rustfmt') conflicts=('cargo' 'rustfmt')
replaces=('cargo' 'rustfmt') replaces=('cargo' 'rustfmt')
cd "rustc-$pkgver-src" cd "rustc-$pkgver-src"
DESTDIR="$pkgdir" python2 ./x.py install DESTDIR="$pkgdir" python2 ./x.py install
@ -78,15 +74,14 @@ package_rust() {
rm rustlib/{components,manifest-rustc,rust-installer-version} rm rustlib/{components,manifest-rustc,rust-installer-version}
ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so . ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
# move docs out of the way # move docs out of the way for splitting
mv "$pkgdir/usr/share/doc" "$srcdir/" mv "$pkgdir"/usr/share/doc "$srcdir"
install -d "$pkgdir"/usr/share/bash-completion install -d "$pkgdir"/usr/share/bash-completion
mv "$pkgdir"/etc/bash_completion.d/ "$pkgdir"/usr/share/bash-completion/completions/ mv "$pkgdir"/etc/bash_completion.d/ "$pkgdir"/usr/share/bash-completion/completions/
} }
package_rust-docs() { package_rust-docs() {
msg2 "Packaging documentation"
install -d "$pkgdir/usr/share/doc/" install -d "$pkgdir/usr/share/doc/"
mv "$srcdir"/doc/* "$pkgdir"/usr/share/doc/rust/ mv "$srcdir"/doc/* "$pkgdir"/usr/share/doc/rust/

View file

@ -1,5 +1,5 @@
[llvm] [llvm]
ninja = true link-shared = true
[build] [build]
cargo = "/usr/bin/cargo" cargo = "/usr/bin/cargo"
@ -23,5 +23,5 @@ channel = "stable"
rpath = false rpath = false
# Work around https://github.com/rust-lang/rust/issues/51650 [target.x86_64-unknown-linux-gnu]
deny-warnings = false llvm-config = "/usr/bin/llvm-config"