[arch-commits] Commit in lib32-rust/repos/multilib-x86_64 (4 files)

2019-08-19 Thread Jan Steffens via arch-commits
Date: Tuesday, August 20, 2019 @ 04:32:31
  Author: heftig
Revision: 500232

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
(from rev 500231, lib32-rust/trunk/PKGBUILD)
  lib32-rust/repos/multilib-x86_64/config.toml
(from rev 500231, lib32-rust/trunk/config.toml)
Deleted:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
  lib32-rust/repos/multilib-x86_64/config.toml

-+
 PKGBUILD|  105 +++---
 config.toml |   57 ---
 2 files changed, 86 insertions(+), 76 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-20 04:32:20 UTC (rev 500231)
+++ PKGBUILD2019-08-20 04:32:31 UTC (rev 500232)
@@ -1,48 +0,0 @@
-# Maintainer: Johannes Löthberg 
-
-pkgname=lib32-rust
-pkgver=1.37.0
-pkgrel=1
-
-pkgdesc='32-bit libraries for rust'
-url='https://www.rust-lang.org/'
-arch=('x86_64')
-license=('MIT' 'Apache')
-
-makedepends=('llvm' 'libffi' 'perl' 'python' 'curl' 'cmake')
-depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
-
-source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
-config.toml)
-
-sha256sums=('120e7020d065499cc6b28759ff04153bfdc2ac9b5adeb252331a4eb87cbe38c3'
-'SKIP'
-'b832b7db40338740e7080a60f515cb8eb86d7b5a0ec3c9ebe6d6c868878c9061')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-
-prepare() {
-  cd "rustc-$pkgver-src"
-
-  cp "$srcdir"/config.toml config.toml
-}
-
-build() {
-  cd "rustc-$pkgver-src"
-
-  python ./x.py build
-}
-
-package() {
-  cd "rustc-$pkgver-src"
-
-  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
-  install -d "$target"
-  cp -r \
-build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
-"$target"
-
-  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lib32-rust/repos/multilib-x86_64/PKGBUILD (from rev 500231, 
lib32-rust/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-20 04:32:31 UTC (rev 500232)
@@ -0,0 +1,57 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=lib32-rust
+pkgver=1.37.0
+pkgrel=2
+
+_llvm_ver=8.0.1
+
+pkgdesc='32-bit libraries for rust'
+url='https://www.rust-lang.org/'
+arch=('x86_64')
+license=('MIT' 'Apache')
+
+makedepends=("llvm=$_llvm_ver" 'libffi' 'perl' 'python' 'curl' 'cmake')
+depends=('lib32-gcc-libs' "rust=1:$pkgver-$pkgrel")
+
+source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
+
"https://github.com/llvm/llvm-project/releases/download/llvmorg-$_llvm_ver/compiler-rt-$_llvm_ver.src.tar.xz"{,.sig}
+config.toml)
+
+sha256sums=('120e7020d065499cc6b28759ff04153bfdc2ac9b5adeb252331a4eb87cbe38c3'
+'SKIP'
+'11828fb4823387d820c6715b25f6b2405e60837d12a7469e7a8882911c721837'
+'SKIP'
+'b7dee253d4e55a34ce07e0f2b9f15197285458565a38eabf9d4d49870f133e68')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE'  # Rust Language (Tag 
and Release Signing Key) 
+  '474E22316ABF4785A88C6E8EA2C794A986419D8A') # Tom Stellard 

+
+prepare() {
+  cd "rustc-$pkgver-src"
+
+  cp "$srcdir"/config.toml config.toml
+}
+
+build() {
+  cd "rustc-$pkgver-src"
+
+  export RUST_BACKTRACE=1
+  export RUST_COMPILER_RT_ROOT="$srcdir/compiler-rt-$_llvm_ver.src"
+
+  python ./x.py build -j"$(nproc)"
+}
+
+package() {
+  cd "rustc-$pkgver-src"
+
+  local target="$pkgdir/$(rustc --print sysroot)/lib/rustlib"
+  install -d "$target"
+  cp -r \
+build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
+"$target"
+
+  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: config.toml
===
--- config.toml 2019-08-20 04:32:20 UTC (rev 500231)
+++ config.toml 2019-08-20 04:32:31 UTC (rev 500232)
@@ -1,28 +0,0 @@
-[llvm]
-link-shared = true
-
-[build]
-target = ["i686-unknown-linux-gnu"] # defaults to just the build triple
-cargo = "/usr/bin/cargo"
-rustc = "/usr/bin/rustc"
-python = "python"
-extended = true
-sanitizers = false
-local-rebuild = true
-
-[install]
-prefix = "/usr"
-
-[rust]
-# 0 or the new default of 16 is faster, but can result in worse performance
-# https://github.com/rust-lang/rust/issues/47745
-codegen-units = 1
-
-debuginfo-level = 2
-
-channel = "stable"
-
-rpath = false
-
-[target.x86_64-unknown-linux-gnu]
-llvm-config = "/usr/bin/llvm-config"

Copied: lib32-rust/repos/multilib-x86_64/config.toml (from rev 500231, 
lib32-rust/trunk/config.toml)

[arch-commits] Commit in lib32-rust/repos/multilib-x86_64 (4 files)

2019-08-19 Thread Johannes Löthberg via arch-commits
Date: Monday, August 19, 2019 @ 19:55:14
  Author: demize
Revision: 500223

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
(from rev 500222, lib32-rust/trunk/PKGBUILD)
  lib32-rust/repos/multilib-x86_64/config.toml
(from rev 500222, lib32-rust/trunk/config.toml)
Deleted:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
  lib32-rust/repos/multilib-x86_64/config.toml

-+
 PKGBUILD|   96 +-
 config.toml |   57 --
 2 files changed, 76 insertions(+), 77 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-19 19:55:07 UTC (rev 500222)
+++ PKGBUILD2019-08-19 19:55:14 UTC (rev 500223)
@@ -1,48 +0,0 @@
-# Maintainer: Johannes Löthberg 
-
-pkgname=lib32-rust
-pkgver=1.36.0
-pkgrel=1
-
-pkgdesc='32-bit libraries for rust'
-url='https://www.rust-lang.org/'
-arch=('x86_64')
-license=('MIT' 'Apache')
-
-makedepends=('llvm' 'libffi' 'perl' 'python' 'curl' 'cmake')
-depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
-
-source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
-config.toml)
-
-sha256sums=('04c4e4d7213d036d6aaed392841496d272146312c0290f728b7400fccd15bb1b'
-'SKIP'
-'eebaab90793d0213fc04be9c6a682715dce7959f180e51d3633ff450ef64310d')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-
-prepare() {
-  cd "rustc-$pkgver-src"
-
-  cp "$srcdir"/config.toml config.toml
-}
-
-build() {
-  cd "rustc-$pkgver-src"
-
-  python ./x.py build
-}
-
-package() {
-  cd "rustc-$pkgver-src"
-
-  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
-  install -d "$target"
-  cp -r \
-build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
-"$target"
-
-  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lib32-rust/repos/multilib-x86_64/PKGBUILD (from rev 500222, 
lib32-rust/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-19 19:55:14 UTC (rev 500223)
@@ -0,0 +1,48 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=lib32-rust
+pkgver=1.37.0
+pkgrel=1
+
+pkgdesc='32-bit libraries for rust'
+url='https://www.rust-lang.org/'
+arch=('x86_64')
+license=('MIT' 'Apache')
+
+makedepends=('llvm' 'libffi' 'perl' 'python' 'curl' 'cmake')
+depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
+
+source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
+config.toml)
+
+sha256sums=('120e7020d065499cc6b28759ff04153bfdc2ac9b5adeb252331a4eb87cbe38c3'
+'SKIP'
+'b832b7db40338740e7080a60f515cb8eb86d7b5a0ec3c9ebe6d6c868878c9061')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+
+prepare() {
+  cd "rustc-$pkgver-src"
+
+  cp "$srcdir"/config.toml config.toml
+}
+
+build() {
+  cd "rustc-$pkgver-src"
+
+  python ./x.py build
+}
+
+package() {
+  cd "rustc-$pkgver-src"
+
+  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
+  install -d "$target"
+  cp -r \
+build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
+"$target"
+
+  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: config.toml
===
--- config.toml 2019-08-19 19:55:07 UTC (rev 500222)
+++ config.toml 2019-08-19 19:55:14 UTC (rev 500223)
@@ -1,29 +0,0 @@
-[llvm]
-link-shared = true
-
-[build]
-target = ["i686-unknown-linux-gnu"] # defaults to just the build triple
-cargo = "/usr/bin/cargo"
-rustc = "/usr/bin/rustc"
-python = "python"
-extended = true
-sanitizers = false
-local-rebuild = true
-
-[install]
-prefix = "/usr"
-
-[rust]
-# 0 or the new default of 16 is faster, but can result in worse performance
-# https://github.com/rust-lang/rust/issues/47745
-codegen-units = 1
-
-debuginfo = true
-debuginfo-lines = true
-
-channel = "stable"
-
-rpath = false
-
-[target.x86_64-unknown-linux-gnu]
-llvm-config = "/usr/bin/llvm-config"

Copied: lib32-rust/repos/multilib-x86_64/config.toml (from rev 500222, 
lib32-rust/trunk/config.toml)
===
--- config.toml (rev 0)
+++ config.toml 2019-08-19 19:55:14 UTC (rev 500223)
@@ -0,0 +1,28 @@
+[llvm]
+link-shared = true
+
+[build]
+target = ["i686-unknown-linux-gnu"] # defaults to just the build triple
+cargo = "/usr/bin/cargo"
+rustc = "/usr/bin/rustc"
+python = "python"
+extended = true
+sanitizers = false
+local-rebuild = true
+
+[install]
+prefix = "/usr"
+
+[rust]
+# 0 or 

[arch-commits] Commit in lib32-rust/repos/multilib-x86_64 (4 files)

2019-07-23 Thread Jan Steffens via arch-commits
Date: Tuesday, July 23, 2019 @ 21:35:01
  Author: heftig
Revision: 492670

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
(from rev 492669, lib32-rust/trunk/PKGBUILD)
  lib32-rust/repos/multilib-x86_64/config.toml
(from rev 492669, lib32-rust/trunk/config.toml)
Deleted:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
  lib32-rust/repos/multilib-x86_64/config.toml

-+
 PKGBUILD|   96 +-
 config.toml |   58 +--
 2 files changed, 77 insertions(+), 77 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-23 21:34:51 UTC (rev 492669)
+++ PKGBUILD2019-07-23 21:35:01 UTC (rev 492670)
@@ -1,48 +0,0 @@
-# Maintainer: Johannes Löthberg 
-
-pkgname=lib32-rust
-pkgver=1.35.0
-pkgrel=1
-
-pkgdesc='32-bit libraries for rust'
-url='https://www.rust-lang.org/'
-arch=('x86_64')
-license=('MIT' 'Apache')
-
-makedepends=('llvm' 'libffi' 'perl' 'python' 'curl' 'cmake')
-depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
-
-source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
-config.toml)
-
-sha256sums=('5a4d637a716bac18d085f44dd87ef48b32195f71b967d872d80280b38cff712d'
-'SKIP'
-'eebaab90793d0213fc04be9c6a682715dce7959f180e51d3633ff450ef64310d')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-
-prepare() {
-  cd "rustc-$pkgver-src"
-
-  cp "$srcdir"/config.toml config.toml
-}
-
-build() {
-  cd "rustc-$pkgver-src"
-
-  python ./x.py build
-}
-
-package() {
-  cd "rustc-$pkgver-src"
-
-  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
-  install -d "$target"
-  cp -r \
-build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
-"$target"
-
-  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lib32-rust/repos/multilib-x86_64/PKGBUILD (from rev 492669, 
lib32-rust/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-07-23 21:35:01 UTC (rev 492670)
@@ -0,0 +1,48 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=lib32-rust
+pkgver=1.36.0
+pkgrel=1
+
+pkgdesc='32-bit libraries for rust'
+url='https://www.rust-lang.org/'
+arch=('x86_64')
+license=('MIT' 'Apache')
+
+makedepends=('llvm' 'libffi' 'perl' 'python' 'curl' 'cmake')
+depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
+
+source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
+config.toml)
+
+sha256sums=('04c4e4d7213d036d6aaed392841496d272146312c0290f728b7400fccd15bb1b'
+'SKIP'
+'eebaab90793d0213fc04be9c6a682715dce7959f180e51d3633ff450ef64310d')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+
+prepare() {
+  cd "rustc-$pkgver-src"
+
+  cp "$srcdir"/config.toml config.toml
+}
+
+build() {
+  cd "rustc-$pkgver-src"
+
+  python ./x.py build
+}
+
+package() {
+  cd "rustc-$pkgver-src"
+
+  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
+  install -d "$target"
+  cp -r \
+build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
+"$target"
+
+  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: config.toml
===
--- config.toml 2019-07-23 21:34:51 UTC (rev 492669)
+++ config.toml 2019-07-23 21:35:01 UTC (rev 492670)
@@ -1,29 +0,0 @@
-[llvm]
-link-shared = true
-
-[build]
-target = ["i686-unknown-linux-gnu"] # defaults to just the build triple
-cargo = "/usr/bin/cargo"
-rustc = "/usr/bin/rustc"
-python = "python"
-extended = true
-sanitizers = false
-local-rebuild = true
-
-[install]
-prefix = "/usr"
-
-[rust]
-# 0 or the new default of 16 is faster, but can result in worse performance
-# https://github.com/rust-lang/rust/issues/47745
-codegen-units = 1
-
-debuginfo = true
-debuginfo-lines = true
-
-channel = "stable"
-
-rpath = false
-
-[target.x86_64-unknown-linux-gnu]
-llvm-config = "/usr/bin/llvm-config"

Copied: lib32-rust/repos/multilib-x86_64/config.toml (from rev 492669, 
lib32-rust/trunk/config.toml)
===
--- config.toml (rev 0)
+++ config.toml 2019-07-23 21:35:01 UTC (rev 492670)
@@ -0,0 +1,29 @@
+[llvm]
+link-shared = true
+
+[build]
+target = ["i686-unknown-linux-gnu"] # defaults to just the build triple
+cargo = "/usr/bin/cargo"
+rustc = "/usr/bin/rustc"
+python = "python"
+extended = true
+sanitizers = false
+local-rebuild = true
+
+[install]
+prefix = "/usr"
+
+[rust]
+# 0 or 

[arch-commits] Commit in lib32-rust/repos/multilib-x86_64 (4 files)

2019-06-11 Thread Sven-Hendrik Haase via arch-commits
Date: Wednesday, June 12, 2019 @ 01:10:49
  Author: svenstaro
Revision: 480572

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
(from rev 480571, lib32-rust/trunk/PKGBUILD)
  lib32-rust/repos/multilib-x86_64/config.toml
(from rev 480571, lib32-rust/trunk/config.toml)
Deleted:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
  lib32-rust/repos/multilib-x86_64/config.toml

-+
 PKGBUILD|   96 +-
 config.toml |   58 +--
 2 files changed, 77 insertions(+), 77 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-06-12 01:10:41 UTC (rev 480571)
+++ PKGBUILD2019-06-12 01:10:49 UTC (rev 480572)
@@ -1,48 +0,0 @@
-# Maintainer: Johannes Löthberg 
-
-pkgname=lib32-rust
-pkgver=1.34.2
-pkgrel=1
-
-pkgdesc='32-bit libraries for rust'
-url='https://www.rust-lang.org/'
-arch=('x86_64')
-license=('MIT' 'Apache')
-
-makedepends=('llvm' 'libffi' 'perl' 'python' 'curl' 'cmake')
-depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
-
-source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
-config.toml)
-
-sha256sums=('c69a4a85a1c464368597df8878cb9e1121aae93e215616d45ad7d23af3052f56'
-'SKIP'
-'eebaab90793d0213fc04be9c6a682715dce7959f180e51d3633ff450ef64310d')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-
-prepare() {
-  cd "rustc-$pkgver-src"
-
-  cp "$srcdir"/config.toml config.toml
-}
-
-build() {
-  cd "rustc-$pkgver-src"
-
-  python ./x.py build
-}
-
-package() {
-  cd "rustc-$pkgver-src"
-
-  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
-  install -d "$target"
-  cp -r \
-build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
-"$target"
-
-  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lib32-rust/repos/multilib-x86_64/PKGBUILD (from rev 480571, 
lib32-rust/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-06-12 01:10:49 UTC (rev 480572)
@@ -0,0 +1,48 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=lib32-rust
+pkgver=1.35.0
+pkgrel=1
+
+pkgdesc='32-bit libraries for rust'
+url='https://www.rust-lang.org/'
+arch=('x86_64')
+license=('MIT' 'Apache')
+
+makedepends=('llvm' 'libffi' 'perl' 'python' 'curl' 'cmake')
+depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
+
+source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
+config.toml)
+
+sha256sums=('5a4d637a716bac18d085f44dd87ef48b32195f71b967d872d80280b38cff712d'
+'SKIP'
+'eebaab90793d0213fc04be9c6a682715dce7959f180e51d3633ff450ef64310d')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+
+prepare() {
+  cd "rustc-$pkgver-src"
+
+  cp "$srcdir"/config.toml config.toml
+}
+
+build() {
+  cd "rustc-$pkgver-src"
+
+  python ./x.py build
+}
+
+package() {
+  cd "rustc-$pkgver-src"
+
+  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
+  install -d "$target"
+  cp -r \
+build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
+"$target"
+
+  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: config.toml
===
--- config.toml 2019-06-12 01:10:41 UTC (rev 480571)
+++ config.toml 2019-06-12 01:10:49 UTC (rev 480572)
@@ -1,29 +0,0 @@
-[llvm]
-link-shared = true
-
-[build]
-target = ["i686-unknown-linux-gnu"] # defaults to just the build triple
-cargo = "/usr/bin/cargo"
-rustc = "/usr/bin/rustc"
-python = "python"
-extended = true
-sanitizers = false
-local-rebuild = true
-
-[install]
-prefix = "/usr"
-
-[rust]
-# 0 or the new default of 16 is faster, but can result in worse performance
-# https://github.com/rust-lang/rust/issues/47745
-codegen-units = 1
-
-debuginfo = true
-debuginfo-lines = true
-
-channel = "stable"
-
-rpath = false
-
-[target.x86_64-unknown-linux-gnu]
-llvm-config = "/usr/bin/llvm-config"

Copied: lib32-rust/repos/multilib-x86_64/config.toml (from rev 480571, 
lib32-rust/trunk/config.toml)
===
--- config.toml (rev 0)
+++ config.toml 2019-06-12 01:10:49 UTC (rev 480572)
@@ -0,0 +1,29 @@
+[llvm]
+link-shared = true
+
+[build]
+target = ["i686-unknown-linux-gnu"] # defaults to just the build triple
+cargo = "/usr/bin/cargo"
+rustc = "/usr/bin/rustc"
+python = "python"
+extended = true
+sanitizers = false
+local-rebuild = true
+
+[install]
+prefix = "/usr"
+
+[rust]
+# 

[arch-commits] Commit in lib32-rust/repos/multilib-x86_64 (4 files)

2019-05-15 Thread Johannes Löthberg via arch-commits
Date: Wednesday, May 15, 2019 @ 22:46:19
  Author: demize
Revision: 467489

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
(from rev 467488, lib32-rust/trunk/PKGBUILD)
  lib32-rust/repos/multilib-x86_64/config.toml
(from rev 467488, lib32-rust/trunk/config.toml)
Deleted:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
  lib32-rust/repos/multilib-x86_64/config.toml

-+
 PKGBUILD|   97 --
 config.toml |   58 +-
 2 files changed, 77 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-05-15 22:46:13 UTC (rev 467488)
+++ PKGBUILD2019-05-15 22:46:19 UTC (rev 467489)
@@ -1,49 +0,0 @@
-# Maintainer: Johannes Löthberg 
-
-pkgname=lib32-rust
-pkgver=1.34.1
-pkgrel=1
-
-pkgdesc='32-bit libraries for rust'
-url='https://www.rust-lang.org/'
-arch=('x86_64')
-license=('MIT' 'Apache')
-
-makedepends=('llvm' 'libffi' 'perl' 'python' 'curl' 'cmake')
-depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
-
-source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
-config.toml)
-
-sha256sums=('b0c785264d17e1dac4598627c248a2d5e07dd39bd1881fcfc8e2cf4c40a7'
-'SKIP'
-'eebaab90793d0213fc04be9c6a682715dce7959f180e51d3633ff450ef64310d')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-
-prepare() {
-  cd "rustc-$pkgver-src"
-
-  cp "$srcdir"/config.toml config.toml
-}
-
-build() {
-  cd "rustc-$pkgver-src"
-
-  msg2 "Run build under x.py"
-  python ./x.py build
-}
-
-package() {
-  cd "rustc-$pkgver-src"
-
-  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
-  install -d "$target"
-  cp -r \
-build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
-"$target"
-
-  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lib32-rust/repos/multilib-x86_64/PKGBUILD (from rev 467488, 
lib32-rust/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-05-15 22:46:19 UTC (rev 467489)
@@ -0,0 +1,48 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=lib32-rust
+pkgver=1.34.2
+pkgrel=1
+
+pkgdesc='32-bit libraries for rust'
+url='https://www.rust-lang.org/'
+arch=('x86_64')
+license=('MIT' 'Apache')
+
+makedepends=('llvm' 'libffi' 'perl' 'python' 'curl' 'cmake')
+depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
+
+source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
+config.toml)
+
+sha256sums=('c69a4a85a1c464368597df8878cb9e1121aae93e215616d45ad7d23af3052f56'
+'SKIP'
+'eebaab90793d0213fc04be9c6a682715dce7959f180e51d3633ff450ef64310d')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+
+prepare() {
+  cd "rustc-$pkgver-src"
+
+  cp "$srcdir"/config.toml config.toml
+}
+
+build() {
+  cd "rustc-$pkgver-src"
+
+  python ./x.py build
+}
+
+package() {
+  cd "rustc-$pkgver-src"
+
+  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
+  install -d "$target"
+  cp -r \
+build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
+"$target"
+
+  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: config.toml
===
--- config.toml 2019-05-15 22:46:13 UTC (rev 467488)
+++ config.toml 2019-05-15 22:46:19 UTC (rev 467489)
@@ -1,29 +0,0 @@
-[llvm]
-link-shared = true
-
-[build]
-target = ["i686-unknown-linux-gnu"] # defaults to just the build triple
-cargo = "/usr/bin/cargo"
-rustc = "/usr/bin/rustc"
-python = "python"
-extended = true
-sanitizers = false
-local-rebuild = true
-
-[install]
-prefix = "/usr"
-
-[rust]
-# 0 or the new default of 16 is faster, but can result in worse performance
-# https://github.com/rust-lang/rust/issues/47745
-codegen-units = 1
-
-debuginfo = true
-debuginfo-lines = true
-
-channel = "stable"
-
-rpath = false
-
-[target.x86_64-unknown-linux-gnu]
-llvm-config = "/usr/bin/llvm-config"

Copied: lib32-rust/repos/multilib-x86_64/config.toml (from rev 467488, 
lib32-rust/trunk/config.toml)
===
--- config.toml (rev 0)
+++ config.toml 2019-05-15 22:46:19 UTC (rev 467489)
@@ -0,0 +1,29 @@
+[llvm]
+link-shared = true
+
+[build]
+target = ["i686-unknown-linux-gnu"] # defaults to just the build triple
+cargo = "/usr/bin/cargo"
+rustc = "/usr/bin/rustc"
+python = "python"
+extended = true
+sanitizers = false
+local-rebuild = true
+
+[install]

[arch-commits] Commit in lib32-rust/repos/multilib-x86_64 (4 files)

2019-04-20 Thread Johannes Löthberg via arch-commits
Date: Sunday, April 21, 2019 @ 00:57:15
  Author: demize
Revision: 452585

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
(from rev 452584, lib32-rust/trunk/PKGBUILD)
  lib32-rust/repos/multilib-x86_64/config.toml
(from rev 452584, lib32-rust/trunk/config.toml)
Deleted:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
  lib32-rust/repos/multilib-x86_64/config.toml

-+
 PKGBUILD|   98 +-
 config.toml |   58 +-
 2 files changed, 78 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-04-20 23:36:39 UTC (rev 452584)
+++ PKGBUILD2019-04-21 00:57:15 UTC (rev 452585)
@@ -1,49 +0,0 @@
-# Maintainer: Johannes Löthberg 
-
-pkgname=lib32-rust
-pkgver=1.33.0
-pkgrel=1
-
-pkgdesc='32-bit libraries for rust'
-url='https://www.rust-lang.org/'
-arch=('x86_64')
-license=('MIT' 'Apache')
-
-makedepends=('llvm' 'libffi' 'perl' 'python2' 'curl' 'cmake')
-depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
-
-source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
-config.toml)
-
-sha256sums=('5a01a8d7e65126f6079042831385e77485fa5c014bf217e9f3e4aff36a485d94'
-'SKIP'
-'36c22ecdacbfeca9ab955726b4a701f687f8ed358a1b8ab2d7cc988408db44cb')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-
-prepare() {
-  cd "rustc-$pkgver-src"
-
-  cp "$srcdir"/config.toml config.toml
-}
-
-build() {
-  cd "rustc-$pkgver-src"
-
-  msg2 "Run build under x.py"
-  python2 ./x.py build
-}
-
-package() {
-  cd "rustc-$pkgver-src"
-
-  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
-  install -d "$target"
-  cp -r \
-build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
-"$target"
-
-  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lib32-rust/repos/multilib-x86_64/PKGBUILD (from rev 452584, 
lib32-rust/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-04-21 00:57:15 UTC (rev 452585)
@@ -0,0 +1,49 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=lib32-rust
+pkgver=1.34.0
+pkgrel=1
+
+pkgdesc='32-bit libraries for rust'
+url='https://www.rust-lang.org/'
+arch=('x86_64')
+license=('MIT' 'Apache')
+
+makedepends=('llvm' 'libffi' 'perl' 'python2' 'curl' 'cmake')
+depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
+
+source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
+config.toml)
+
+sha256sums=('7ac85acffd79dd3a7c44305d9eaabd1f1e7116e2e6e11e770e4bf5f92c0f1f59'
+'SKIP'
+'36c22ecdacbfeca9ab955726b4a701f687f8ed358a1b8ab2d7cc988408db44cb')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+
+prepare() {
+  cd "rustc-$pkgver-src"
+
+  cp "$srcdir"/config.toml config.toml
+}
+
+build() {
+  cd "rustc-$pkgver-src"
+
+  msg2 "Run build under x.py"
+  python2 ./x.py build
+}
+
+package() {
+  cd "rustc-$pkgver-src"
+
+  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
+  install -d "$target"
+  cp -r \
+build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
+"$target"
+
+  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: config.toml
===
--- config.toml 2019-04-20 23:36:39 UTC (rev 452584)
+++ config.toml 2019-04-21 00:57:15 UTC (rev 452585)
@@ -1,29 +0,0 @@
-[llvm]
-link-shared = true
-
-[build]
-target = ["i686-unknown-linux-gnu"] # defaults to just the build triple
-cargo = "/usr/bin/cargo"
-rustc = "/usr/bin/rustc"
-python = "python2.7"
-extended = true
-sanitizers = false
-local-rebuild = true
-
-[install]
-prefix = "/usr"
-
-[rust]
-# 0 or the new default of 16 is faster, but can result in worse performance
-# https://github.com/rust-lang/rust/issues/47745
-codegen-units = 1
-
-debuginfo = true
-debuginfo-lines = true
-
-channel = "stable"
-
-rpath = false
-
-[target.x86_64-unknown-linux-gnu]
-llvm-config = "/usr/bin/llvm-config"

Copied: lib32-rust/repos/multilib-x86_64/config.toml (from rev 452584, 
lib32-rust/trunk/config.toml)
===
--- config.toml (rev 0)
+++ config.toml 2019-04-21 00:57:15 UTC (rev 452585)
@@ -0,0 +1,29 @@
+[llvm]
+link-shared = true
+
+[build]
+target = ["i686-unknown-linux-gnu"] # defaults to just the build triple
+cargo = "/usr/bin/cargo"
+rustc = "/usr/bin/rustc"
+python = "python2.7"
+extended = true
+sanitizers = false

[arch-commits] Commit in lib32-rust/repos/multilib-x86_64 (4 files)

2019-02-18 Thread Johannes Löthberg via arch-commits
Date: Monday, February 18, 2019 @ 22:18:13
  Author: demize
Revision: 434307

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
(from rev 434306, lib32-rust/trunk/PKGBUILD)
  lib32-rust/repos/multilib-x86_64/config.toml
(from rev 434306, lib32-rust/trunk/config.toml)
Deleted:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
  lib32-rust/repos/multilib-x86_64/config.toml

-+
 PKGBUILD|   98 +-
 config.toml |   58 +-
 2 files changed, 78 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-02-18 22:18:11 UTC (rev 434306)
+++ PKGBUILD2019-02-18 22:18:13 UTC (rev 434307)
@@ -1,49 +0,0 @@
-# Maintainer: Johannes Löthberg 
-
-pkgname=lib32-rust
-pkgver=1.32.0
-pkgrel=2
-
-pkgdesc='32-bit libraries for rust'
-url='https://www.rust-lang.org/'
-arch=('x86_64')
-license=('MIT' 'Apache')
-
-makedepends=('llvm' 'libffi' 'perl' 'python2' 'curl' 'cmake')
-depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
-
-source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
-config.toml)
-
-sha256sums=('4c594c7712a0e7e8eae6526c464bf6ea1d82f77b4f61717c3fc28fb27ba2224a'
-'SKIP'
-'36c22ecdacbfeca9ab955726b4a701f687f8ed358a1b8ab2d7cc988408db44cb')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-
-prepare() {
-  cd "rustc-$pkgver-src"
-
-  cp "$srcdir"/config.toml config.toml
-}
-
-build() {
-  cd "rustc-$pkgver-src"
-
-  msg2 "Run build under x.py"
-  python2 ./x.py build
-}
-
-package() {
-  cd "rustc-$pkgver-src"
-
-  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
-  install -d "$target"
-  cp -r \
-build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
-"$target"
-
-  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lib32-rust/repos/multilib-x86_64/PKGBUILD (from rev 434306, 
lib32-rust/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-02-18 22:18:13 UTC (rev 434307)
@@ -0,0 +1,49 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=lib32-rust
+pkgver=1.32.0
+pkgrel=3
+
+pkgdesc='32-bit libraries for rust'
+url='https://www.rust-lang.org/'
+arch=('x86_64')
+license=('MIT' 'Apache')
+
+makedepends=('llvm' 'libffi' 'perl' 'python2' 'curl' 'cmake')
+depends=('lib32-gcc-libs' "rust=1:$pkgver-2")
+
+source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
+config.toml)
+
+sha256sums=('4c594c7712a0e7e8eae6526c464bf6ea1d82f77b4f61717c3fc28fb27ba2224a'
+'SKIP'
+'36c22ecdacbfeca9ab955726b4a701f687f8ed358a1b8ab2d7cc988408db44cb')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+
+prepare() {
+  cd "rustc-$pkgver-src"
+
+  cp "$srcdir"/config.toml config.toml
+}
+
+build() {
+  cd "rustc-$pkgver-src"
+
+  msg2 "Run build under x.py"
+  python2 ./x.py build
+}
+
+package() {
+  cd "rustc-$pkgver-src"
+
+  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
+  install -d "$target"
+  cp -r \
+build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
+"$target"
+
+  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: config.toml
===
--- config.toml 2019-02-18 22:18:11 UTC (rev 434306)
+++ config.toml 2019-02-18 22:18:13 UTC (rev 434307)
@@ -1,29 +0,0 @@
-[llvm]
-link-shared = true
-
-[build]
-target = ["i686-unknown-linux-gnu"] # defaults to just the build triple
-cargo = "/usr/bin/cargo"
-rustc = "/usr/bin/rustc"
-python = "python2.7"
-extended = true
-sanitizers = false
-local-rebuild = true
-
-[install]
-prefix = "/usr"
-
-[rust]
-# 0 or the new default of 16 is faster, but can result in worse performance
-# https://github.com/rust-lang/rust/issues/47745
-codegen-units = 1
-
-debuginfo = true
-debuginfo-lines = true
-
-channel = "stable"
-
-rpath = false
-
-[target.x86_64-unknown-linux-gnu]
-llvm-config = "/usr/bin/llvm-config"

Copied: lib32-rust/repos/multilib-x86_64/config.toml (from rev 434306, 
lib32-rust/trunk/config.toml)
===
--- config.toml (rev 0)
+++ config.toml 2019-02-18 22:18:13 UTC (rev 434307)
@@ -0,0 +1,29 @@
+[llvm]
+link-shared = true
+
+[build]
+target = ["i686-unknown-linux-gnu"] # defaults to just the build triple
+cargo = "/usr/bin/cargo"
+rustc = "/usr/bin/rustc"
+python = "python2.7"
+extended = true
+sanitizers = 

[arch-commits] Commit in lib32-rust/repos/multilib-x86_64 (4 files)

2018-12-21 Thread Johannes Löthberg via arch-commits
Date: Friday, December 21, 2018 @ 11:36:37
  Author: demize
Revision: 417164

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
(from rev 417163, lib32-rust/trunk/PKGBUILD)
  lib32-rust/repos/multilib-x86_64/config.toml
(from rev 417163, lib32-rust/trunk/config.toml)
Deleted:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
  lib32-rust/repos/multilib-x86_64/config.toml

-+
 PKGBUILD|   98 +-
 config.toml |   58 +-
 2 files changed, 78 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 11:36:32 UTC (rev 417163)
+++ PKGBUILD2018-12-21 11:36:37 UTC (rev 417164)
@@ -1,49 +0,0 @@
-# Maintainer: Johannes Löthberg 
-
-pkgname=lib32-rust
-pkgver=1.31.0
-pkgrel=1
-
-pkgdesc='32-bit libraries for rust'
-url='https://www.rust-lang.org/'
-arch=('x86_64')
-license=('MIT' 'Apache')
-
-makedepends=('llvm' 'libffi' 'perl' 'python2' 'curl' 'cmake')
-depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
-
-source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
-config.toml)
-
-sha256sums=('9ad54dc0baf1db5fc6a79d54e71c439c82aff85cd96778978456f2958211ef06'
-'SKIP'
-'36c22ecdacbfeca9ab955726b4a701f687f8ed358a1b8ab2d7cc988408db44cb')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-
-prepare() {
-  cd "rustc-$pkgver-src"
-
-  cp "$srcdir"/config.toml config.toml
-}
-
-build() {
-  cd "rustc-$pkgver-src"
-
-  msg2 "Run build under x.py"
-  python2 ./x.py build
-}
-
-package() {
-  cd "rustc-$pkgver-src"
-
-  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
-  install -d "$target"
-  cp -r \
-build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
-"$target"
-
-  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lib32-rust/repos/multilib-x86_64/PKGBUILD (from rev 417163, 
lib32-rust/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-21 11:36:37 UTC (rev 417164)
@@ -0,0 +1,49 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=lib32-rust
+pkgver=1.31.1
+pkgrel=1
+
+pkgdesc='32-bit libraries for rust'
+url='https://www.rust-lang.org/'
+arch=('x86_64')
+license=('MIT' 'Apache')
+
+makedepends=('llvm' 'libffi' 'perl' 'python2' 'curl' 'cmake')
+depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
+
+source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
+config.toml)
+
+sha256sums=('91d2fc22f08d986adab7a54eb3a6a9b99e490f677d2d092e5b9e4e069c23686a'
+'SKIP'
+'36c22ecdacbfeca9ab955726b4a701f687f8ed358a1b8ab2d7cc988408db44cb')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+
+prepare() {
+  cd "rustc-$pkgver-src"
+
+  cp "$srcdir"/config.toml config.toml
+}
+
+build() {
+  cd "rustc-$pkgver-src"
+
+  msg2 "Run build under x.py"
+  python2 ./x.py build
+}
+
+package() {
+  cd "rustc-$pkgver-src"
+
+  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
+  install -d "$target"
+  cp -r \
+build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
+"$target"
+
+  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: config.toml
===
--- config.toml 2018-12-21 11:36:32 UTC (rev 417163)
+++ config.toml 2018-12-21 11:36:37 UTC (rev 417164)
@@ -1,29 +0,0 @@
-[llvm]
-link-shared = true
-
-[build]
-target = ["i686-unknown-linux-gnu"] # defaults to just the build triple
-cargo = "/usr/bin/cargo"
-rustc = "/usr/bin/rustc"
-python = "python2.7"
-extended = true
-sanitizers = false
-local-rebuild = true
-
-[install]
-prefix = "/usr"
-
-[rust]
-# 0 or the new default of 16 is faster, but can result in worse performance
-# https://github.com/rust-lang/rust/issues/47745
-codegen-units = 1
-
-debuginfo = true
-debuginfo-lines = true
-
-channel = "stable"
-
-rpath = false
-
-[target.x86_64-unknown-linux-gnu]
-llvm-config = "/usr/bin/llvm-config"

Copied: lib32-rust/repos/multilib-x86_64/config.toml (from rev 417163, 
lib32-rust/trunk/config.toml)
===
--- config.toml (rev 0)
+++ config.toml 2018-12-21 11:36:37 UTC (rev 417164)
@@ -0,0 +1,29 @@
+[llvm]
+link-shared = true
+
+[build]
+target = ["i686-unknown-linux-gnu"] # defaults to just the build triple
+cargo = "/usr/bin/cargo"
+rustc = "/usr/bin/rustc"
+python = "python2.7"
+extended = true
+sanitizers = 

[arch-commits] Commit in lib32-rust/repos/multilib-x86_64 (4 files)

2018-12-10 Thread Johannes Löthberg via arch-commits
Date: Monday, December 10, 2018 @ 23:08:28
  Author: demize
Revision: 414517

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
(from rev 414516, lib32-rust/trunk/PKGBUILD)
  lib32-rust/repos/multilib-x86_64/config.toml
(from rev 414516, lib32-rust/trunk/config.toml)
Deleted:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
  lib32-rust/repos/multilib-x86_64/config.toml

-+
 PKGBUILD|   98 +-
 config.toml |   58 +-
 2 files changed, 78 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-10 23:08:18 UTC (rev 414516)
+++ PKGBUILD2018-12-10 23:08:28 UTC (rev 414517)
@@ -1,49 +0,0 @@
-# Maintainer: Johannes Löthberg 
-
-pkgname=lib32-rust
-pkgver=1.30.1
-pkgrel=1
-
-pkgdesc='32-bit libraries for rust'
-url='https://www.rust-lang.org/'
-arch=('x86_64')
-license=('MIT' 'Apache')
-
-makedepends=('llvm' 'libffi' 'perl' 'python2' 'curl' 'cmake')
-depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
-
-source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
-config.toml)
-
-sha256sums=('36a38902dbd9a3e1240d46ab0f2ca40d2fd07c2ab6508ed7970c6c4c036b5b29'
-'SKIP'
-'36c22ecdacbfeca9ab955726b4a701f687f8ed358a1b8ab2d7cc988408db44cb')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-
-prepare() {
-  cd "rustc-$pkgver-src"
-
-  cp "$srcdir"/config.toml config.toml
-}
-
-build() {
-  cd "rustc-$pkgver-src"
-
-  msg2 "Run build under x.py"
-  python2 ./x.py build
-}
-
-package() {
-  cd "rustc-$pkgver-src"
-
-  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
-  install -d "$target"
-  cp -r \
-build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
-"$target"
-
-  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lib32-rust/repos/multilib-x86_64/PKGBUILD (from rev 414516, 
lib32-rust/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-12-10 23:08:28 UTC (rev 414517)
@@ -0,0 +1,49 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=lib32-rust
+pkgver=1.31.0
+pkgrel=1
+
+pkgdesc='32-bit libraries for rust'
+url='https://www.rust-lang.org/'
+arch=('x86_64')
+license=('MIT' 'Apache')
+
+makedepends=('llvm' 'libffi' 'perl' 'python2' 'curl' 'cmake')
+depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
+
+source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
+config.toml)
+
+sha256sums=('9ad54dc0baf1db5fc6a79d54e71c439c82aff85cd96778978456f2958211ef06'
+'SKIP'
+'36c22ecdacbfeca9ab955726b4a701f687f8ed358a1b8ab2d7cc988408db44cb')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+
+prepare() {
+  cd "rustc-$pkgver-src"
+
+  cp "$srcdir"/config.toml config.toml
+}
+
+build() {
+  cd "rustc-$pkgver-src"
+
+  msg2 "Run build under x.py"
+  python2 ./x.py build
+}
+
+package() {
+  cd "rustc-$pkgver-src"
+
+  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
+  install -d "$target"
+  cp -r \
+build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
+"$target"
+
+  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: config.toml
===
--- config.toml 2018-12-10 23:08:18 UTC (rev 414516)
+++ config.toml 2018-12-10 23:08:28 UTC (rev 414517)
@@ -1,29 +0,0 @@
-[llvm]
-link-shared = true
-
-[build]
-target = ["i686-unknown-linux-gnu"] # defaults to just the build triple
-cargo = "/usr/bin/cargo"
-rustc = "/usr/bin/rustc"
-python = "python2.7"
-extended = true
-sanitizers = false
-local-rebuild = true
-
-[install]
-prefix = "/usr"
-
-[rust]
-# 0 or the new default of 16 is faster, but can result in worse performance
-# https://github.com/rust-lang/rust/issues/47745
-codegen-units = 1
-
-debuginfo = true
-debuginfo-lines = true
-
-channel = "stable"
-
-rpath = false
-
-[target.x86_64-unknown-linux-gnu]
-llvm-config = "/usr/bin/llvm-config"

Copied: lib32-rust/repos/multilib-x86_64/config.toml (from rev 414516, 
lib32-rust/trunk/config.toml)
===
--- config.toml (rev 0)
+++ config.toml 2018-12-10 23:08:28 UTC (rev 414517)
@@ -0,0 +1,29 @@
+[llvm]
+link-shared = true
+
+[build]
+target = ["i686-unknown-linux-gnu"] # defaults to just the build triple
+cargo = "/usr/bin/cargo"
+rustc = "/usr/bin/rustc"
+python = "python2.7"
+extended = true
+sanitizers = 

[arch-commits] Commit in lib32-rust/repos/multilib-x86_64 (4 files)

2018-11-09 Thread Johannes Löthberg via arch-commits
Date: Friday, November 9, 2018 @ 18:46:26
  Author: demize
Revision: 404389

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
(from rev 404388, lib32-rust/trunk/PKGBUILD)
  lib32-rust/repos/multilib-x86_64/config.toml
(from rev 404388, lib32-rust/trunk/config.toml)
Deleted:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
  lib32-rust/repos/multilib-x86_64/config.toml

-+
 PKGBUILD|   98 +-
 config.toml |   58 +-
 2 files changed, 78 insertions(+), 78 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-11-09 18:46:22 UTC (rev 404388)
+++ PKGBUILD2018-11-09 18:46:26 UTC (rev 404389)
@@ -1,49 +0,0 @@
-# Maintainer: Johannes Löthberg 
-
-pkgname=lib32-rust
-pkgver=1.30.0
-pkgrel=1
-
-pkgdesc='32-bit libraries for rust'
-url='https://www.rust-lang.org/'
-arch=('x86_64')
-license=('MIT' 'Apache')
-
-makedepends=('llvm' 'libffi' 'perl' 'python2' 'curl' 'cmake')
-depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
-
-source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
-config.toml)
-
-sha256sums=('cd0ba83fcca55b64c0c9f23130fe731dfc1882b73ae21bef96be8f2362c108ee'
-'SKIP'
-'36c22ecdacbfeca9ab955726b4a701f687f8ed358a1b8ab2d7cc988408db44cb')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-
-prepare() {
-  cd "rustc-$pkgver-src"
-
-  cp "$srcdir"/config.toml config.toml
-}
-
-build() {
-  cd "rustc-$pkgver-src"
-
-  msg2 "Run build under x.py"
-  python2 ./x.py build
-}
-
-package() {
-  cd "rustc-$pkgver-src"
-
-  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
-  install -d "$target"
-  cp -r \
-build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
-"$target"
-
-  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lib32-rust/repos/multilib-x86_64/PKGBUILD (from rev 404388, 
lib32-rust/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-11-09 18:46:26 UTC (rev 404389)
@@ -0,0 +1,49 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=lib32-rust
+pkgver=1.30.1
+pkgrel=1
+
+pkgdesc='32-bit libraries for rust'
+url='https://www.rust-lang.org/'
+arch=('x86_64')
+license=('MIT' 'Apache')
+
+makedepends=('llvm' 'libffi' 'perl' 'python2' 'curl' 'cmake')
+depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
+
+source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
+config.toml)
+
+sha256sums=('36a38902dbd9a3e1240d46ab0f2ca40d2fd07c2ab6508ed7970c6c4c036b5b29'
+'SKIP'
+'36c22ecdacbfeca9ab955726b4a701f687f8ed358a1b8ab2d7cc988408db44cb')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+
+prepare() {
+  cd "rustc-$pkgver-src"
+
+  cp "$srcdir"/config.toml config.toml
+}
+
+build() {
+  cd "rustc-$pkgver-src"
+
+  msg2 "Run build under x.py"
+  python2 ./x.py build
+}
+
+package() {
+  cd "rustc-$pkgver-src"
+
+  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
+  install -d "$target"
+  cp -r \
+build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
+"$target"
+
+  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: config.toml
===
--- config.toml 2018-11-09 18:46:22 UTC (rev 404388)
+++ config.toml 2018-11-09 18:46:26 UTC (rev 404389)
@@ -1,29 +0,0 @@
-[llvm]
-link-shared = true
-
-[build]
-target = ["i686-unknown-linux-gnu"] # defaults to just the build triple
-cargo = "/usr/bin/cargo"
-rustc = "/usr/bin/rustc"
-python = "python2.7"
-extended = true
-sanitizers = false
-local-rebuild = true
-
-[install]
-prefix = "/usr"
-
-[rust]
-# 0 or the new default of 16 is faster, but can result in worse performance
-# https://github.com/rust-lang/rust/issues/47745
-codegen-units = 1
-
-debuginfo = true
-debuginfo-lines = true
-
-channel = "stable"
-
-rpath = false
-
-[target.x86_64-unknown-linux-gnu]
-llvm-config = "/usr/bin/llvm-config"

Copied: lib32-rust/repos/multilib-x86_64/config.toml (from rev 404388, 
lib32-rust/trunk/config.toml)
===
--- config.toml (rev 0)
+++ config.toml 2018-11-09 18:46:26 UTC (rev 404389)
@@ -0,0 +1,29 @@
+[llvm]
+link-shared = true
+
+[build]
+target = ["i686-unknown-linux-gnu"] # defaults to just the build triple
+cargo = "/usr/bin/cargo"
+rustc = "/usr/bin/rustc"
+python = "python2.7"
+extended = true
+sanitizers = 

[arch-commits] Commit in lib32-rust/repos/multilib-x86_64 (4 files)

2018-09-22 Thread Johannes Löthberg via arch-commits
Date: Saturday, September 22, 2018 @ 19:28:33
  Author: demize
Revision: 384169

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
(from rev 384168, lib32-rust/trunk/PKGBUILD)
  lib32-rust/repos/multilib-x86_64/config.toml
(from rev 384168, lib32-rust/trunk/config.toml)
Deleted:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
  lib32-rust/repos/multilib-x86_64/config.toml

-+
 PKGBUILD|  104 +++
 config.toml |  838 +-
 2 files changed, 471 insertions(+), 471 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-22 19:28:25 UTC (rev 384168)
+++ PKGBUILD2018-09-22 19:28:33 UTC (rev 384169)
@@ -1,52 +0,0 @@
-# Maintainer: Johannes Löthberg 
-
-pkgname=lib32-rust
-pkgver=1.29.0
-pkgrel=2
-
-pkgdesc='32-bit libraries for rust'
-url='https://www.rust-lang.org/'
-arch=('x86_64')
-license=('MIT' 'Apache')
-
-makedepends=('libffi' 'perl' 'python2' 'curl' 'cmake' 'ninja')
-depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
-
-source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
-config.toml
-
https://github.com/rust-lang/rust/commit/1b94b84ad0143ea2039610e3aec9e929a8a20733.patch)
-
-sha256sums=('a4eb34ffd47f76afe2abd813f398512d5a19ef00989d37306217c9c9ec2f61e9'
-'SKIP'
-'5c1962458f20dd5a542db7ef31e35c20a7b42f9e74dd27ec4e9f0cf2ab1953ce'
-'8c8e79b0bac0dd1434c49f665abfa50634ffb0fbb35c9efee511e5b97960b9e2')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-
-prepare() {
-  cd "rustc-$pkgver-src"
-
-  patch -p1 <"$srcdir"/1b94b84ad0143ea2039610e3aec9e929a8a20733.patch
-  cp "$srcdir"/config.toml config.toml
-}
-
-build() {
-  cd "rustc-$pkgver-src"
-
-  msg2 "Run build under x.py"
-  python2 ./x.py build
-}
-
-package() {
-  cd "rustc-$pkgver-src"
-
-  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
-  install -d "$target"
-  cp -r \
-build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
-"$target"
-
-  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lib32-rust/repos/multilib-x86_64/PKGBUILD (from rev 384168, 
lib32-rust/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-22 19:28:33 UTC (rev 384169)
@@ -0,0 +1,52 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=lib32-rust
+pkgver=1.29.0
+pkgrel=3
+
+pkgdesc='32-bit libraries for rust'
+url='https://www.rust-lang.org/'
+arch=('x86_64')
+license=('MIT' 'Apache')
+
+makedepends=('libffi' 'perl' 'python2' 'curl' 'cmake' 'ninja')
+depends=('lib32-gcc-libs' "rust=1:$pkgver-2")
+
+source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
+config.toml
+
https://github.com/rust-lang/rust/commit/1b94b84ad0143ea2039610e3aec9e929a8a20733.patch)
+
+sha256sums=('a4eb34ffd47f76afe2abd813f398512d5a19ef00989d37306217c9c9ec2f61e9'
+'SKIP'
+'5c1962458f20dd5a542db7ef31e35c20a7b42f9e74dd27ec4e9f0cf2ab1953ce'
+'8c8e79b0bac0dd1434c49f665abfa50634ffb0fbb35c9efee511e5b97960b9e2')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+
+prepare() {
+  cd "rustc-$pkgver-src"
+
+  patch -p1 <"$srcdir"/1b94b84ad0143ea2039610e3aec9e929a8a20733.patch
+  cp "$srcdir"/config.toml config.toml
+}
+
+build() {
+  cd "rustc-$pkgver-src"
+
+  msg2 "Run build under x.py"
+  python2 ./x.py build
+}
+
+package() {
+  cd "rustc-$pkgver-src"
+
+  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
+  install -d "$target"
+  cp -r \
+build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
+"$target"
+
+  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: config.toml
===
--- config.toml 2018-09-22 19:28:25 UTC (rev 384168)
+++ config.toml 2018-09-22 19:28:33 UTC (rev 384169)
@@ -1,419 +0,0 @@
-# Sample TOML configuration file for building Rust.
-#
-# To configure rustbuild, copy this file to the directory from which you will 
be
-# running the build, and name it config.toml.
-#
-# All options are commented out by default in this file, and they're commented
-# out with their default values. The build system by default looks for
-# `config.toml` in the current directory of a build for build configuration, 
but
-# a custom configuration file can also be specified with `--config` to the 
build
-# system.
-
-# =
-# Tweaking how 

[arch-commits] Commit in lib32-rust/repos/multilib-x86_64 (4 files)

2018-09-22 Thread Johannes Löthberg via arch-commits
Date: Saturday, September 22, 2018 @ 13:06:24
  Author: demize
Revision: 384134

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
(from rev 384133, lib32-rust/trunk/PKGBUILD)
  lib32-rust/repos/multilib-x86_64/config.toml
(from rev 384133, lib32-rust/trunk/config.toml)
Deleted:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
  lib32-rust/repos/multilib-x86_64/config.toml

-+
 PKGBUILD|  102 +++
 config.toml |  838 +-
 2 files changed, 471 insertions(+), 469 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-22 13:06:16 UTC (rev 384133)
+++ PKGBUILD2018-09-22 13:06:24 UTC (rev 384134)
@@ -1,50 +0,0 @@
-# Maintainer: Johannes Löthberg 
-
-pkgname=lib32-rust
-pkgver=1.29.0
-pkgrel=1
-
-pkgdesc='32-bit libraries for rust'
-url='https://www.rust-lang.org/'
-arch=('x86_64')
-license=('MIT' 'Apache')
-
-makedepends=('libffi' 'perl' 'python2' 'curl' 'cmake' 'ninja')
-depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
-
-source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
-config.toml)
-
-sha256sums=('a4eb34ffd47f76afe2abd813f398512d5a19ef00989d37306217c9c9ec2f61e9'
-'SKIP'
-'5c1962458f20dd5a542db7ef31e35c20a7b42f9e74dd27ec4e9f0cf2ab1953ce')
-
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-
-prepare() {
-  cd "rustc-$pkgver-src"
-
-  cp "$srcdir"/config.toml config.toml
-}
-
-build() {
-  cd "rustc-$pkgver-src"
-
-  msg2 "Run build under x.py"
-  python2 ./x.py build
-}
-
-package() {
-  cd "rustc-$pkgver-src"
-
-  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
-  install -d "$target"
-  cp -r \
-build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
-"$target"
-
-  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lib32-rust/repos/multilib-x86_64/PKGBUILD (from rev 384133, 
lib32-rust/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-22 13:06:24 UTC (rev 384134)
@@ -0,0 +1,52 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=lib32-rust
+pkgver=1.29.0
+pkgrel=2
+
+pkgdesc='32-bit libraries for rust'
+url='https://www.rust-lang.org/'
+arch=('x86_64')
+license=('MIT' 'Apache')
+
+makedepends=('libffi' 'perl' 'python2' 'curl' 'cmake' 'ninja')
+depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
+
+source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
+config.toml
+
https://github.com/rust-lang/rust/commit/1b94b84ad0143ea2039610e3aec9e929a8a20733.patch)
+
+sha256sums=('a4eb34ffd47f76afe2abd813f398512d5a19ef00989d37306217c9c9ec2f61e9'
+'SKIP'
+'5c1962458f20dd5a542db7ef31e35c20a7b42f9e74dd27ec4e9f0cf2ab1953ce'
+'8c8e79b0bac0dd1434c49f665abfa50634ffb0fbb35c9efee511e5b97960b9e2')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+
+prepare() {
+  cd "rustc-$pkgver-src"
+
+  patch -p1 <"$srcdir"/1b94b84ad0143ea2039610e3aec9e929a8a20733.patch
+  cp "$srcdir"/config.toml config.toml
+}
+
+build() {
+  cd "rustc-$pkgver-src"
+
+  msg2 "Run build under x.py"
+  python2 ./x.py build
+}
+
+package() {
+  cd "rustc-$pkgver-src"
+
+  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
+  install -d "$target"
+  cp -r \
+build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
+"$target"
+
+  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: config.toml
===
--- config.toml 2018-09-22 13:06:16 UTC (rev 384133)
+++ config.toml 2018-09-22 13:06:24 UTC (rev 384134)
@@ -1,419 +0,0 @@
-# Sample TOML configuration file for building Rust.
-#
-# To configure rustbuild, copy this file to the directory from which you will 
be
-# running the build, and name it config.toml.
-#
-# All options are commented out by default in this file, and they're commented
-# out with their default values. The build system by default looks for
-# `config.toml` in the current directory of a build for build configuration, 
but
-# a custom configuration file can also be specified with `--config` to the 
build
-# system.
-
-# =
-# Tweaking how LLVM is compiled
-# =
-[llvm]
-
-# Indicates whether rustc will support compilation with LLVM
-# note: rustc does not compile without LLVM at the moment
-#enabled = true
-

[arch-commits] Commit in lib32-rust/repos/multilib-x86_64 (4 files)

2018-09-14 Thread Johannes Löthberg via arch-commits
Date: Friday, September 14, 2018 @ 17:37:42
  Author: demize
Revision: 380959

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
(from rev 380958, lib32-rust/trunk/PKGBUILD)
  lib32-rust/repos/multilib-x86_64/config.toml
(from rev 380958, lib32-rust/trunk/config.toml)
Deleted:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
  lib32-rust/repos/multilib-x86_64/config.toml

-+
 PKGBUILD|  101 +++---
 config.toml |  838 +-
 2 files changed, 469 insertions(+), 470 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-09-14 17:37:15 UTC (rev 380958)
+++ PKGBUILD2018-09-14 17:37:42 UTC (rev 380959)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Johannes Löthberg 
-
-pkgname=lib32-rust
-pkgver=1.28.0
-pkgrel=1
-
-pkgdesc='32-bit libraries for rust'
-url='https://www.rust-lang.org/'
-arch=('x86_64')
-license=('MIT' 'Apache')
-
-makedepends=('libffi' 'perl' 'python2' 'curl' 'cmake' 'ninja')
-depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
-
-source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
-config.toml)
-
-sha256sums=('1d5a81729c6f23a0a23b584dd249e35abe9c6f7569cee967cc42b1758ecd6486'
-'SKIP'
-'5c1962458f20dd5a542db7ef31e35c20a7b42f9e74dd27ec4e9f0cf2ab1953ce')
-
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-
-prepare() {
-  cd "rustc-$pkgver-src"
-
-  cp "$srcdir"/config.toml config.toml
-}
-
-build() {
-  cd "rustc-$pkgver-src"
-
-  msg2 "Run build under x.py"
-  python2 ./x.py build
-}
-
-package() {
-  cd "rustc-$pkgver-src"
-
-  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
-  install -d "$target"
-  cp -r \
-build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
-"$target"
-
-  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lib32-rust/repos/multilib-x86_64/PKGBUILD (from rev 380958, 
lib32-rust/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-09-14 17:37:42 UTC (rev 380959)
@@ -0,0 +1,50 @@
+# Maintainer: Johannes Löthberg 
+
+pkgname=lib32-rust
+pkgver=1.29.0
+pkgrel=1
+
+pkgdesc='32-bit libraries for rust'
+url='https://www.rust-lang.org/'
+arch=('x86_64')
+license=('MIT' 'Apache')
+
+makedepends=('libffi' 'perl' 'python2' 'curl' 'cmake' 'ninja')
+depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
+
+source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
+config.toml)
+
+sha256sums=('a4eb34ffd47f76afe2abd813f398512d5a19ef00989d37306217c9c9ec2f61e9'
+'SKIP'
+'5c1962458f20dd5a542db7ef31e35c20a7b42f9e74dd27ec4e9f0cf2ab1953ce')
+
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+
+prepare() {
+  cd "rustc-$pkgver-src"
+
+  cp "$srcdir"/config.toml config.toml
+}
+
+build() {
+  cd "rustc-$pkgver-src"
+
+  msg2 "Run build under x.py"
+  python2 ./x.py build
+}
+
+package() {
+  cd "rustc-$pkgver-src"
+
+  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
+  install -d "$target"
+  cp -r \
+build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
+"$target"
+
+  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: config.toml
===
--- config.toml 2018-09-14 17:37:15 UTC (rev 380958)
+++ config.toml 2018-09-14 17:37:42 UTC (rev 380959)
@@ -1,419 +0,0 @@
-# Sample TOML configuration file for building Rust.
-#
-# To configure rustbuild, copy this file to the directory from which you will 
be
-# running the build, and name it config.toml.
-#
-# All options are commented out by default in this file, and they're commented
-# out with their default values. The build system by default looks for
-# `config.toml` in the current directory of a build for build configuration, 
but
-# a custom configuration file can also be specified with `--config` to the 
build
-# system.
-
-# =
-# Tweaking how LLVM is compiled
-# =
-[llvm]
-
-# Indicates whether rustc will support compilation with LLVM
-# note: rustc does not compile without LLVM at the moment
-#enabled = true
-
-# Indicates whether the LLVM build is a Release or Debug build
-#optimize = true
-
-# Indicates whether an LLVM Release build should include debug info
-#release-debuginfo = false
-
-# Indicates whether the LLVM assertions are enabled or not

[arch-commits] Commit in lib32-rust/repos/multilib-x86_64 (4 files)

2018-08-03 Thread Johannes Löthberg via arch-commits
Date: Saturday, August 4, 2018 @ 02:53:37
  Author: demize
Revision: 367745

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
(from rev 367744, lib32-rust/trunk/PKGBUILD)
  lib32-rust/repos/multilib-x86_64/config.toml
(from rev 367744, lib32-rust/trunk/config.toml)
Deleted:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
  lib32-rust/repos/multilib-x86_64/config.toml

-+
 PKGBUILD|  102 +++
 config.toml |  838 +-
 2 files changed, 470 insertions(+), 470 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-04 02:53:33 UTC (rev 367744)
+++ PKGBUILD2018-08-04 02:53:37 UTC (rev 367745)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Johannes Löthberg 
-
-pkgname=lib32-rust
-pkgver=1.27.2
-pkgrel=1
-
-pkgdesc='32-bit libraries for rust'
-url='https://www.rust-lang.org/'
-arch=('x86_64')
-license=('MIT' 'Apache')
-
-makedepends=('libffi' 'perl' 'python2' 'curl' 'cmake' 'ninja')
-depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
-
-source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
-config.toml)
-
-sha256sums=('9a818c50cdb7880abeaa68b3d97792711e6c64c1cdfb6efdc23f75b8ced0e15d'
-'SKIP'
-'5c1962458f20dd5a542db7ef31e35c20a7b42f9e74dd27ec4e9f0cf2ab1953ce')
-
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-
-prepare() {
-  cd "rustc-$pkgver-src"
-
-  cp "$srcdir"/config.toml config.toml
-}
-
-build() {
-  cd "rustc-$pkgver-src"
-
-  msg2 "Run build under x.py"
-  python2 ./x.py build
-}
-
-package() {
-  cd "rustc-$pkgver-src"
-
-  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
-  install -d "$target"
-  cp -r \
-build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
-"$target"
-
-  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lib32-rust/repos/multilib-x86_64/PKGBUILD (from rev 367744, 
lib32-rust/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-04 02:53:37 UTC (rev 367745)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Johannes Löthberg 
+
+pkgname=lib32-rust
+pkgver=1.28.0
+pkgrel=1
+
+pkgdesc='32-bit libraries for rust'
+url='https://www.rust-lang.org/'
+arch=('x86_64')
+license=('MIT' 'Apache')
+
+makedepends=('libffi' 'perl' 'python2' 'curl' 'cmake' 'ninja')
+depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
+
+source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
+config.toml)
+
+sha256sums=('1d5a81729c6f23a0a23b584dd249e35abe9c6f7569cee967cc42b1758ecd6486'
+'SKIP'
+'5c1962458f20dd5a542db7ef31e35c20a7b42f9e74dd27ec4e9f0cf2ab1953ce')
+
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+
+prepare() {
+  cd "rustc-$pkgver-src"
+
+  cp "$srcdir"/config.toml config.toml
+}
+
+build() {
+  cd "rustc-$pkgver-src"
+
+  msg2 "Run build under x.py"
+  python2 ./x.py build
+}
+
+package() {
+  cd "rustc-$pkgver-src"
+
+  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
+  install -d "$target"
+  cp -r \
+build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
+"$target"
+
+  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: config.toml
===
--- config.toml 2018-08-04 02:53:33 UTC (rev 367744)
+++ config.toml 2018-08-04 02:53:37 UTC (rev 367745)
@@ -1,419 +0,0 @@
-# Sample TOML configuration file for building Rust.
-#
-# To configure rustbuild, copy this file to the directory from which you will 
be
-# running the build, and name it config.toml.
-#
-# All options are commented out by default in this file, and they're commented
-# out with their default values. The build system by default looks for
-# `config.toml` in the current directory of a build for build configuration, 
but
-# a custom configuration file can also be specified with `--config` to the 
build
-# system.
-
-# =
-# Tweaking how LLVM is compiled
-# =
-[llvm]
-
-# Indicates whether rustc will support compilation with LLVM
-# note: rustc does not compile without LLVM at the moment
-#enabled = true
-
-# Indicates whether the LLVM build is a Release or Debug build
-#optimize = true
-
-# Indicates whether an LLVM Release build should include debug info
-#release-debuginfo = false
-
-# Indicates whether the LLVM assertions are enabled 

[arch-commits] Commit in lib32-rust/repos/multilib-x86_64 (4 files)

2018-07-21 Thread Johannes Löthberg via arch-commits
Date: Saturday, July 21, 2018 @ 23:34:48
  Author: demize
Revision: 362718

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
(from rev 362717, lib32-rust/trunk/PKGBUILD)
  lib32-rust/repos/multilib-x86_64/config.toml
(from rev 362717, lib32-rust/trunk/config.toml)
Deleted:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
  lib32-rust/repos/multilib-x86_64/config.toml

-+
 PKGBUILD|  102 +++
 config.toml |  838 +-
 2 files changed, 470 insertions(+), 470 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-21 23:34:43 UTC (rev 362717)
+++ PKGBUILD2018-07-21 23:34:48 UTC (rev 362718)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Johannes Löthberg 
-
-pkgname=lib32-rust
-pkgver=1.27.1
-pkgrel=1
-
-pkgdesc='32-bit libraries for rust'
-url='https://www.rust-lang.org/'
-arch=('x86_64')
-license=('MIT' 'Apache')
-
-makedepends=('libffi' 'perl' 'python2' 'curl' 'cmake' 'ninja')
-depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
-
-source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
-config.toml)
-
-sha256sums=('2133beb01ddc3aa09eebc769dd884533c6cfb08ce684f042497e097068d733d1'
-'SKIP'
-'5c1962458f20dd5a542db7ef31e35c20a7b42f9e74dd27ec4e9f0cf2ab1953ce')
-
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-
-prepare() {
-  cd "rustc-$pkgver-src"
-
-  cp "$srcdir"/config.toml config.toml
-}
-
-build() {
-  cd "rustc-$pkgver-src"
-
-  msg2 "Run build under x.py"
-  python2 ./x.py build
-}
-
-package() {
-  cd "rustc-$pkgver-src"
-
-  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
-  install -d "$target"
-  cp -r \
-build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
-"$target"
-
-  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lib32-rust/repos/multilib-x86_64/PKGBUILD (from rev 362717, 
lib32-rust/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-07-21 23:34:48 UTC (rev 362718)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Johannes Löthberg 
+
+pkgname=lib32-rust
+pkgver=1.27.2
+pkgrel=1
+
+pkgdesc='32-bit libraries for rust'
+url='https://www.rust-lang.org/'
+arch=('x86_64')
+license=('MIT' 'Apache')
+
+makedepends=('libffi' 'perl' 'python2' 'curl' 'cmake' 'ninja')
+depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
+
+source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
+config.toml)
+
+sha256sums=('9a818c50cdb7880abeaa68b3d97792711e6c64c1cdfb6efdc23f75b8ced0e15d'
+'SKIP'
+'5c1962458f20dd5a542db7ef31e35c20a7b42f9e74dd27ec4e9f0cf2ab1953ce')
+
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+
+prepare() {
+  cd "rustc-$pkgver-src"
+
+  cp "$srcdir"/config.toml config.toml
+}
+
+build() {
+  cd "rustc-$pkgver-src"
+
+  msg2 "Run build under x.py"
+  python2 ./x.py build
+}
+
+package() {
+  cd "rustc-$pkgver-src"
+
+  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
+  install -d "$target"
+  cp -r \
+build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
+"$target"
+
+  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: config.toml
===
--- config.toml 2018-07-21 23:34:43 UTC (rev 362717)
+++ config.toml 2018-07-21 23:34:48 UTC (rev 362718)
@@ -1,419 +0,0 @@
-# Sample TOML configuration file for building Rust.
-#
-# To configure rustbuild, copy this file to the directory from which you will 
be
-# running the build, and name it config.toml.
-#
-# All options are commented out by default in this file, and they're commented
-# out with their default values. The build system by default looks for
-# `config.toml` in the current directory of a build for build configuration, 
but
-# a custom configuration file can also be specified with `--config` to the 
build
-# system.
-
-# =
-# Tweaking how LLVM is compiled
-# =
-[llvm]
-
-# Indicates whether rustc will support compilation with LLVM
-# note: rustc does not compile without LLVM at the moment
-#enabled = true
-
-# Indicates whether the LLVM build is a Release or Debug build
-#optimize = true
-
-# Indicates whether an LLVM Release build should include debug info
-#release-debuginfo = false
-
-# Indicates whether the LLVM assertions are enabled 

[arch-commits] Commit in lib32-rust/repos/multilib-x86_64 (4 files)

2018-07-10 Thread Johannes Löthberg via arch-commits
Date: Tuesday, July 10, 2018 @ 20:20:26
  Author: demize
Revision: 356427

archrelease: copy trunk to multilib-x86_64

Added:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
(from rev 356426, lib32-rust/trunk/PKGBUILD)
  lib32-rust/repos/multilib-x86_64/config.toml
(from rev 356426, lib32-rust/trunk/config.toml)
Deleted:
  lib32-rust/repos/multilib-x86_64/PKGBUILD
  lib32-rust/repos/multilib-x86_64/config.toml

-+
 PKGBUILD|  102 +++
 config.toml |  838 +-
 2 files changed, 470 insertions(+), 470 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-07-10 20:20:22 UTC (rev 356426)
+++ PKGBUILD2018-07-10 20:20:26 UTC (rev 356427)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Johannes Löthberg 
-
-pkgname=lib32-rust
-pkgver=1.27.0
-pkgrel=1
-
-pkgdesc='32-bit libraries for rust'
-url='https://www.rust-lang.org/'
-arch=('x86_64')
-license=('MIT' 'Apache')
-
-makedepends=('libffi' 'perl' 'python2' 'curl' 'cmake' 'ninja')
-depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
-
-source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
-config.toml)
-
-sha256sums=('2cb9803f690349c9fd429564d909ddd4676c68dc48b670b8ddf797c2613e2d21'
-'SKIP'
-'5c1962458f20dd5a542db7ef31e35c20a7b42f9e74dd27ec4e9f0cf2ab1953ce')
-
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-
-prepare() {
-  cd "rustc-$pkgver-src"
-
-  cp "$srcdir"/config.toml config.toml
-}
-
-build() {
-  cd "rustc-$pkgver-src"
-
-  msg2 "Run build under x.py"
-  python2 ./x.py build
-}
-
-package() {
-  cd "rustc-$pkgver-src"
-
-  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
-  install -d "$target"
-  cp -r \
-build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
-"$target"
-
-  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lib32-rust/repos/multilib-x86_64/PKGBUILD (from rev 356426, 
lib32-rust/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-07-10 20:20:26 UTC (rev 356427)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Johannes Löthberg 
+
+pkgname=lib32-rust
+pkgver=1.27.1
+pkgrel=1
+
+pkgdesc='32-bit libraries for rust'
+url='https://www.rust-lang.org/'
+arch=('x86_64')
+license=('MIT' 'Apache')
+
+makedepends=('libffi' 'perl' 'python2' 'curl' 'cmake' 'ninja')
+depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
+
+source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
+config.toml)
+
+sha256sums=('2133beb01ddc3aa09eebc769dd884533c6cfb08ce684f042497e097068d733d1'
+'SKIP'
+'5c1962458f20dd5a542db7ef31e35c20a7b42f9e74dd27ec4e9f0cf2ab1953ce')
+
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+
+prepare() {
+  cd "rustc-$pkgver-src"
+
+  cp "$srcdir"/config.toml config.toml
+}
+
+build() {
+  cd "rustc-$pkgver-src"
+
+  msg2 "Run build under x.py"
+  python2 ./x.py build
+}
+
+package() {
+  cd "rustc-$pkgver-src"
+
+  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
+  install -d "$target"
+  cp -r \
+build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/i686-unknown-linux-gnu \
+"$target"
+
+  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-$license"; done
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: config.toml
===
--- config.toml 2018-07-10 20:20:22 UTC (rev 356426)
+++ config.toml 2018-07-10 20:20:26 UTC (rev 356427)
@@ -1,419 +0,0 @@
-# Sample TOML configuration file for building Rust.
-#
-# To configure rustbuild, copy this file to the directory from which you will 
be
-# running the build, and name it config.toml.
-#
-# All options are commented out by default in this file, and they're commented
-# out with their default values. The build system by default looks for
-# `config.toml` in the current directory of a build for build configuration, 
but
-# a custom configuration file can also be specified with `--config` to the 
build
-# system.
-
-# =
-# Tweaking how LLVM is compiled
-# =
-[llvm]
-
-# Indicates whether rustc will support compilation with LLVM
-# note: rustc does not compile without LLVM at the moment
-#enabled = true
-
-# Indicates whether the LLVM build is a Release or Debug build
-#optimize = true
-
-# Indicates whether an LLVM Release build should include debug info
-#release-debuginfo = false
-
-# Indicates whether the LLVM assertions are enabled