[arch-commits] Commit in lib32-rust/trunk (PKGBUILD config.toml)

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

1.37.0-2: enable profiling

Modified:
  lib32-rust/trunk/PKGBUILD
  lib32-rust/trunk/config.toml

-+
 PKGBUILD|   23 ---
 config.toml |1 +
 2 files changed, 17 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 23:49:05 UTC (rev 500230)
+++ PKGBUILD2019-08-20 04:32:20 UTC (rev 500231)
@@ -2,23 +2,29 @@
 
 pkgname=lib32-rust
 pkgver=1.37.0
-pkgrel=1
+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' 'libffi' 'perl' 'python' 'curl' 'cmake')
-depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
+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'
-'b832b7db40338740e7080a60f515cb8eb86d7b5a0ec3c9ebe6d6c868878c9061')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+'11828fb4823387d820c6715b25f6b2405e60837d12a7469e7a8882911c721837'
+'SKIP'
+'b7dee253d4e55a34ce07e0f2b9f15197285458565a38eabf9d4d49870f133e68')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE'  # Rust Language (Tag 
and Release Signing Key) 
+  '474E22316ABF4785A88C6E8EA2C794A986419D8A') # Tom Stellard 

 
 prepare() {
   cd "rustc-$pkgver-src"
@@ -29,13 +35,16 @@
 build() {
   cd "rustc-$pkgver-src"
 
-  python ./x.py build
+  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"
 
-  target="$pkgdir"/"$(rustc --print sysroot)"/lib/rustlib
+  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 \

Modified: config.toml
===
--- config.toml 2019-08-19 23:49:05 UTC (rev 500230)
+++ config.toml 2019-08-20 04:32:20 UTC (rev 500231)
@@ -8,6 +8,7 @@
 python = "python"
 extended = true
 sanitizers = false
+profiler = true
 local-rebuild = true
 
 [install]


[arch-commits] Commit in lib32-rust/trunk (PKGBUILD config.toml)

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

upgpkg: lib32-rust 1.37.0-1

Modified:
  lib32-rust/trunk/PKGBUILD
  lib32-rust/trunk/config.toml

-+
 PKGBUILD|6 +++---
 config.toml |3 +--
 2 files changed, 4 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-19 19:32:11 UTC (rev 500221)
+++ PKGBUILD2019-08-19 19:55:07 UTC (rev 500222)
@@ -1,7 +1,7 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=lib32-rust
-pkgver=1.36.0
+pkgver=1.37.0
 pkgrel=1
 
 pkgdesc='32-bit libraries for rust'
@@ -15,9 +15,9 @@
 source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
 config.toml)
 
-sha256sums=('04c4e4d7213d036d6aaed392841496d272146312c0290f728b7400fccd15bb1b'
+sha256sums=('120e7020d065499cc6b28759ff04153bfdc2ac9b5adeb252331a4eb87cbe38c3'
 'SKIP'
-'eebaab90793d0213fc04be9c6a682715dce7959f180e51d3633ff450ef64310d')
+'b832b7db40338740e7080a60f515cb8eb86d7b5a0ec3c9ebe6d6c868878c9061')
 validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
 
 prepare() {

Modified: config.toml
===
--- config.toml 2019-08-19 19:32:11 UTC (rev 500221)
+++ config.toml 2019-08-19 19:55:07 UTC (rev 500222)
@@ -18,8 +18,7 @@
 # https://github.com/rust-lang/rust/issues/47745
 codegen-units = 1
 
-debuginfo = true
-debuginfo-lines = true
+debuginfo-level = 2
 
 channel = "stable"
 


[arch-commits] Commit in lib32-rust/trunk (PKGBUILD)

2019-07-23 Thread Jan Steffens via arch-commits
Date: Tuesday, July 23, 2019 @ 21:34:51
  Author: heftig
Revision: 492669

1.36.0-1

Modified:
  lib32-rust/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-07-23 19:25:35 UTC (rev 492668)
+++ PKGBUILD2019-07-23 21:34:51 UTC (rev 492669)
@@ -1,7 +1,7 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=lib32-rust
-pkgver=1.35.0
+pkgver=1.36.0
 pkgrel=1
 
 pkgdesc='32-bit libraries for rust'
@@ -15,7 +15,7 @@
 source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
 config.toml)
 
-sha256sums=('5a4d637a716bac18d085f44dd87ef48b32195f71b967d872d80280b38cff712d'
+sha256sums=('04c4e4d7213d036d6aaed392841496d272146312c0290f728b7400fccd15bb1b'
 'SKIP'
 'eebaab90793d0213fc04be9c6a682715dce7959f180e51d3633ff450ef64310d')
 validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 


[arch-commits] Commit in lib32-rust/trunk (PKGBUILD)

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

upgpkg: lib32-rust 1.35.0-1

Modified:
  lib32-rust/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-06-12 00:48:26 UTC (rev 480570)
+++ PKGBUILD2019-06-12 01:10:41 UTC (rev 480571)
@@ -1,7 +1,7 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=lib32-rust
-pkgver=1.34.2
+pkgver=1.35.0
 pkgrel=1
 
 pkgdesc='32-bit libraries for rust'
@@ -15,7 +15,7 @@
 source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
 config.toml)
 
-sha256sums=('c69a4a85a1c464368597df8878cb9e1121aae93e215616d45ad7d23af3052f56'
+sha256sums=('5a4d637a716bac18d085f44dd87ef48b32195f71b967d872d80280b38cff712d'
 'SKIP'
 'eebaab90793d0213fc04be9c6a682715dce7959f180e51d3633ff450ef64310d')
 validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 


[arch-commits] Commit in lib32-rust/trunk (PKGBUILD)

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

upgpkg: lib32-rust 1.34.2-1

Modified:
  lib32-rust/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-05-15 21:33:27 UTC (rev 467487)
+++ PKGBUILD2019-05-15 22:46:13 UTC (rev 467488)
@@ -1,7 +1,7 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=lib32-rust
-pkgver=1.34.1
+pkgver=1.34.2
 pkgrel=1
 
 pkgdesc='32-bit libraries for rust'
@@ -15,7 +15,7 @@
 source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
 config.toml)
 
-sha256sums=('b0c785264d17e1dac4598627c248a2d5e07dd39bd1881fcfc8e2cf4c40a7'
+sha256sums=('c69a4a85a1c464368597df8878cb9e1121aae93e215616d45ad7d23af3052f56'
 'SKIP'
 'eebaab90793d0213fc04be9c6a682715dce7959f180e51d3633ff450ef64310d')
 validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 


[arch-commits] Commit in lib32-rust/trunk (PKGBUILD)

2019-04-26 Thread Johannes Löthberg via arch-commits
Date: Friday, April 26, 2019 @ 22:57:57
  Author: demize
Revision: 454457

Remove msg2 usage

Modified:
  lib32-rust/trunk/PKGBUILD

--+
 PKGBUILD |1 -
 1 file changed, 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-26 22:57:52 UTC (rev 454456)
+++ PKGBUILD2019-04-26 22:57:57 UTC (rev 454457)
@@ -29,7 +29,6 @@
 build() {
   cd "rustc-$pkgver-src"
 
-  msg2 "Run build under x.py"
   python ./x.py build
 }
 


[arch-commits] Commit in lib32-rust/trunk (PKGBUILD config.toml)

2019-04-26 Thread Johannes Löthberg via arch-commits
Date: Friday, April 26, 2019 @ 22:56:12
  Author: demize
Revision: 454452

upgpkg: lib32-rust 1.34.1-1

Modified:
  lib32-rust/trunk/PKGBUILD
  lib32-rust/trunk/config.toml

-+
 PKGBUILD|   10 +-
 config.toml |2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-26 22:55:59 UTC (rev 454451)
+++ PKGBUILD2019-04-26 22:56:12 UTC (rev 454452)
@@ -1,7 +1,7 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=lib32-rust
-pkgver=1.34.0
+pkgver=1.34.1
 pkgrel=1
 
 pkgdesc='32-bit libraries for rust'
@@ -9,15 +9,15 @@
 arch=('x86_64')
 license=('MIT' 'Apache')
 
-makedepends=('llvm' 'libffi' 'perl' 'python2' 'curl' 'cmake')
+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=('7ac85acffd79dd3a7c44305d9eaabd1f1e7116e2e6e11e770e4bf5f92c0f1f59'
+sha256sums=('b0c785264d17e1dac4598627c248a2d5e07dd39bd1881fcfc8e2cf4c40a7'
 'SKIP'
-'36c22ecdacbfeca9ab955726b4a701f687f8ed358a1b8ab2d7cc988408db44cb')
+'eebaab90793d0213fc04be9c6a682715dce7959f180e51d3633ff450ef64310d')
 validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
 
 prepare() {
@@ -30,7 +30,7 @@
   cd "rustc-$pkgver-src"
 
   msg2 "Run build under x.py"
-  python2 ./x.py build
+  python ./x.py build
 }
 
 package() {

Modified: config.toml
===
--- config.toml 2019-04-26 22:55:59 UTC (rev 454451)
+++ config.toml 2019-04-26 22:56:12 UTC (rev 454452)
@@ -5,7 +5,7 @@
 target = ["i686-unknown-linux-gnu"] # defaults to just the build triple
 cargo = "/usr/bin/cargo"
 rustc = "/usr/bin/rustc"
-python = "python2.7"
+python = "python"
 extended = true
 sanitizers = false
 local-rebuild = true


[arch-commits] Commit in lib32-rust/trunk (PKGBUILD)

2019-04-12 Thread Johannes Löthberg via arch-commits
Date: Friday, April 12, 2019 @ 21:55:13
  Author: demize
Revision: 451338

upgpkg: lib32-rust 1.34.0-1

Modified:
  lib32-rust/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-12 21:23:09 UTC (rev 451337)
+++ PKGBUILD2019-04-12 21:55:13 UTC (rev 451338)
@@ -1,7 +1,7 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=lib32-rust
-pkgver=1.33.0
+pkgver=1.34.0
 pkgrel=1
 
 pkgdesc='32-bit libraries for rust'
@@ -15,7 +15,7 @@
 source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
 config.toml)
 
-sha256sums=('5a01a8d7e65126f6079042831385e77485fa5c014bf217e9f3e4aff36a485d94'
+sha256sums=('7ac85acffd79dd3a7c44305d9eaabd1f1e7116e2e6e11e770e4bf5f92c0f1f59'
 'SKIP'
 '36c22ecdacbfeca9ab955726b4a701f687f8ed358a1b8ab2d7cc988408db44cb')
 validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 


[arch-commits] Commit in lib32-rust/trunk (PKGBUILD)

2019-03-15 Thread Johannes Löthberg via arch-commits
Date: Friday, March 15, 2019 @ 14:46:47
  Author: demize
Revision: 441863

upgpkg: lib32-rust 1.33.0-1

Modified:
  lib32-rust/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-03-15 14:36:17 UTC (rev 441862)
+++ PKGBUILD2019-03-15 14:46:47 UTC (rev 441863)
@@ -1,8 +1,8 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=lib32-rust
-pkgver=1.32.0
-pkgrel=3
+pkgver=1.33.0
+pkgrel=1
 
 pkgdesc='32-bit libraries for rust'
 url='https://www.rust-lang.org/'
@@ -10,12 +10,12 @@
 license=('MIT' 'Apache')
 
 makedepends=('llvm' 'libffi' 'perl' 'python2' 'curl' 'cmake')
-depends=('lib32-gcc-libs' "rust=1:$pkgver-2")
+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'
+sha256sums=('5a01a8d7e65126f6079042831385e77485fa5c014bf217e9f3e4aff36a485d94'
 'SKIP'
 '36c22ecdacbfeca9ab955726b4a701f687f8ed358a1b8ab2d7cc988408db44cb')
 validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 


[arch-commits] Commit in lib32-rust/trunk (PKGBUILD)

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

upgpkg: lib32-rust 1.32.0-3

Modified:
  lib32-rust/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-18 22:13:06 UTC (rev 434304)
+++ PKGBUILD2019-02-18 22:18:03 UTC (rev 434305)
@@ -2,7 +2,7 @@
 
 pkgname=lib32-rust
 pkgver=1.32.0
-pkgrel=2
+pkgrel=3
 
 pkgdesc='32-bit libraries for rust'
 url='https://www.rust-lang.org/'
@@ -10,7 +10,7 @@
 license=('MIT' 'Apache')
 
 makedepends=('llvm' 'libffi' 'perl' 'python2' 'curl' 'cmake')
-depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
+depends=('lib32-gcc-libs' "rust=1:$pkgver-2")
 
 source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
 config.toml)


[arch-commits] Commit in lib32-rust/trunk (PKGBUILD)

2019-02-17 Thread Johannes Löthberg via arch-commits
Date: Sunday, February 17, 2019 @ 13:13:47
  Author: demize
Revision: 434037

upgpkg: lib32-rust 1.32.0-2

Modified:
  lib32-rust/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-17 13:10:43 UTC (rev 434036)
+++ PKGBUILD2019-02-17 13:13:47 UTC (rev 434037)
@@ -2,7 +2,7 @@
 
 pkgname=lib32-rust
 pkgver=1.32.0
-pkgrel=1
+pkgrel=2
 
 pkgdesc='32-bit libraries for rust'
 url='https://www.rust-lang.org/'


[arch-commits] Commit in lib32-rust/trunk (PKGBUILD)

2019-02-17 Thread Johannes Löthberg via arch-commits
Date: Sunday, February 17, 2019 @ 13:06:32
  Author: demize
Revision: 346421

upgpkg: lib32-rust 1.32.0-2

Modified:
  lib32-rust/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-02-17 13:06:20 UTC (rev 346420)
+++ PKGBUILD2019-02-17 13:06:32 UTC (rev 346421)
@@ -2,7 +2,7 @@
 
 pkgname=lib32-rust
 pkgver=1.32.0
-pkgrel=1
+pkgrel=2
 
 pkgdesc='32-bit libraries for rust'
 url='https://www.rust-lang.org/'


[arch-commits] Commit in lib32-rust/trunk (PKGBUILD)

2019-01-18 Thread Johannes Löthberg via arch-commits
Date: Friday, January 18, 2019 @ 11:52:14
  Author: demize
Revision: 424066

upgpkg: lib32-rust 1.32.0-1

Modified:
  lib32-rust/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-01-18 11:52:07 UTC (rev 424065)
+++ PKGBUILD2019-01-18 11:52:14 UTC (rev 424066)
@@ -1,7 +1,7 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=lib32-rust
-pkgver=1.31.1
+pkgver=1.32.0
 pkgrel=1
 
 pkgdesc='32-bit libraries for rust'
@@ -15,7 +15,7 @@
 source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
 config.toml)
 
-sha256sums=('91d2fc22f08d986adab7a54eb3a6a9b99e490f677d2d092e5b9e4e069c23686a'
+sha256sums=('4c594c7712a0e7e8eae6526c464bf6ea1d82f77b4f61717c3fc28fb27ba2224a'
 'SKIP'
 '36c22ecdacbfeca9ab955726b4a701f687f8ed358a1b8ab2d7cc988408db44cb')
 validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 


[arch-commits] Commit in lib32-rust/trunk (PKGBUILD)

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

upgpkg: lib32-rust 1.31.1-1

Modified:
  lib32-rust/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-21 11:35:12 UTC (rev 417162)
+++ PKGBUILD2018-12-21 11:36:32 UTC (rev 417163)
@@ -1,7 +1,7 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=lib32-rust
-pkgver=1.31.0
+pkgver=1.31.1
 pkgrel=1
 
 pkgdesc='32-bit libraries for rust'
@@ -15,7 +15,7 @@
 source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
 config.toml)
 
-sha256sums=('9ad54dc0baf1db5fc6a79d54e71c439c82aff85cd96778978456f2958211ef06'
+sha256sums=('91d2fc22f08d986adab7a54eb3a6a9b99e490f677d2d092e5b9e4e069c23686a'
 'SKIP'
 '36c22ecdacbfeca9ab955726b4a701f687f8ed358a1b8ab2d7cc988408db44cb')
 validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 


[arch-commits] Commit in lib32-rust/trunk (PKGBUILD)

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

upgpkg: lib32-rust 1.31.0-1

Modified:
  lib32-rust/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-12-10 23:07:09 UTC (rev 414515)
+++ PKGBUILD2018-12-10 23:08:18 UTC (rev 414516)
@@ -1,7 +1,7 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=lib32-rust
-pkgver=1.30.1
+pkgver=1.31.0
 pkgrel=1
 
 pkgdesc='32-bit libraries for rust'
@@ -15,7 +15,7 @@
 source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
 config.toml)
 
-sha256sums=('36a38902dbd9a3e1240d46ab0f2ca40d2fd07c2ab6508ed7970c6c4c036b5b29'
+sha256sums=('9ad54dc0baf1db5fc6a79d54e71c439c82aff85cd96778978456f2958211ef06'
 'SKIP'
 '36c22ecdacbfeca9ab955726b4a701f687f8ed358a1b8ab2d7cc988408db44cb')
 validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 


[arch-commits] Commit in lib32-rust/trunk (PKGBUILD)

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

upgpkg: lib32-rust 1.30.1-1

Modified:
  lib32-rust/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-11-09 18:46:19 UTC (rev 404387)
+++ PKGBUILD2018-11-09 18:46:22 UTC (rev 404388)
@@ -1,7 +1,7 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=lib32-rust
-pkgver=1.30.0
+pkgver=1.30.1
 pkgrel=1
 
 pkgdesc='32-bit libraries for rust'
@@ -15,7 +15,7 @@
 source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
 config.toml)
 
-sha256sums=('cd0ba83fcca55b64c0c9f23130fe731dfc1882b73ae21bef96be8f2362c108ee'
+sha256sums=('36a38902dbd9a3e1240d46ab0f2ca40d2fd07c2ab6508ed7970c6c4c036b5b29'
 'SKIP'
 '36c22ecdacbfeca9ab955726b4a701f687f8ed358a1b8ab2d7cc988408db44cb')
 validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 


[arch-commits] Commit in lib32-rust/trunk (PKGBUILD)

2018-10-26 Thread Johannes Löthberg via arch-commits
Date: Friday, October 26, 2018 @ 21:31:34
  Author: demize
Revision: 399172

upgpkg: lib32-rust 1.30.0-1

Modified:
  lib32-rust/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-10-26 20:47:43 UTC (rev 399171)
+++ PKGBUILD2018-10-26 21:31:34 UTC (rev 399172)
@@ -1,7 +1,7 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=lib32-rust
-pkgver=1.29.2
+pkgver=1.30.0
 pkgrel=1
 
 pkgdesc='32-bit libraries for rust'
@@ -15,7 +15,7 @@
 source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
 config.toml)
 
-sha256sums=('5088e796aa2e47478cdf41e7243fc5443fafab0a7c70a11423e57c80c04167c9'
+sha256sums=('cd0ba83fcca55b64c0c9f23130fe731dfc1882b73ae21bef96be8f2362c108ee'
 'SKIP'
 '36c22ecdacbfeca9ab955726b4a701f687f8ed358a1b8ab2d7cc988408db44cb')
 validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 


[arch-commits] Commit in lib32-rust/trunk (PKGBUILD)

2018-10-25 Thread Johannes Löthberg via arch-commits
Date: Thursday, October 25, 2018 @ 21:24:15
  Author: demize
Revision: 399043

upgpkg: lib32-rust 1.29.2-1

Modified:
  lib32-rust/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-10-25 21:23:42 UTC (rev 399042)
+++ PKGBUILD2018-10-25 21:24:15 UTC (rev 399043)
@@ -1,7 +1,7 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=lib32-rust
-pkgver=1.29.1
+pkgver=1.29.2
 pkgrel=1
 
 pkgdesc='32-bit libraries for rust'
@@ -15,7 +15,7 @@
 source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
 config.toml)
 
-sha256sums=('f1b0728b66ce6bce6d72bbe5ea9e3a24ea22a045665da2ed8fcdfad14f61a349'
+sha256sums=('5088e796aa2e47478cdf41e7243fc5443fafab0a7c70a11423e57c80c04167c9'
 'SKIP'
 '36c22ecdacbfeca9ab955726b4a701f687f8ed358a1b8ab2d7cc988408db44cb')
 validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 


[arch-commits] Commit in lib32-rust/trunk (PKGBUILD config.toml)

2018-10-09 Thread Johannes Löthberg via arch-commits
Date: Tuesday, October 9, 2018 @ 15:36:08
  Author: demize
Revision: 391644

upgpkg: lib32-rust 1.29.1-1

Also build with system LLVM

Modified:
  lib32-rust/trunk/PKGBUILD
  lib32-rust/trunk/config.toml

-+
 PKGBUILD|   17 --
 config.toml |  414 +-
 2 files changed, 19 insertions(+), 412 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-10-09 15:35:22 UTC (rev 391643)
+++ PKGBUILD2018-10-09 15:36:08 UTC (rev 391644)
@@ -1,8 +1,8 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=lib32-rust
-pkgver=1.29.0
-pkgrel=3
+pkgver=1.29.1
+pkgrel=1
 
 pkgdesc='32-bit libraries for rust'
 url='https://www.rust-lang.org/'
@@ -9,23 +9,20 @@
 arch=('x86_64')
 license=('MIT' 'Apache')
 
-makedepends=('libffi' 'perl' 'python2' 'curl' 'cmake' 'ninja')
-depends=('lib32-gcc-libs' "rust=1:$pkgver-2")
+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
-
https://github.com/rust-lang/rust/commit/1b94b84ad0143ea2039610e3aec9e929a8a20733.patch)
+config.toml)
 
-sha256sums=('a4eb34ffd47f76afe2abd813f398512d5a19ef00989d37306217c9c9ec2f61e9'
+sha256sums=('f1b0728b66ce6bce6d72bbe5ea9e3a24ea22a045665da2ed8fcdfad14f61a349'
 'SKIP'
-'5c1962458f20dd5a542db7ef31e35c20a7b42f9e74dd27ec4e9f0cf2ab1953ce'
-'8c8e79b0bac0dd1434c49f665abfa50634ffb0fbb35c9efee511e5b97960b9e2')
+'36c22ecdacbfeca9ab955726b4a701f687f8ed358a1b8ab2d7cc988408db44cb')
 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
 }
 

Modified: config.toml
===
--- config.toml 2018-10-09 15:35:22 UTC (rev 391643)
+++ config.toml 2018-10-09 15:36:08 UTC (rev 391644)
@@ -1,419 +1,29 @@
-# 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]
+link-shared = true
 
-# 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
-#assertions = false
-
-# Indicates whether ccache is used when building LLVM
-#ccache = false
-# or alternatively ...
-#ccache = "/path/to/ccache"
-
-# If an external LLVM root is specified, we automatically check the version by
-# default to make sure it's within the range that we're expecting, but setting
-# this flag will indicate that this version check should not be done.
-#version-check = true
-
-# Link libstdc++ statically into the librustc_llvm instead of relying on a
-# dynamic version to be available.
-#static-libstdcpp = false
-
-# Tell the LLVM build system to use Ninja instead of the platform default for
-# the generated build system. This can sometimes be faster than make, for
-# example.
-ninja = true
-
-# LLVM targets to build support for.
-# Note: this is NOT related to Rust compilation targets. However, as Rust is
-# dependent on LLVM for code generation, turning targets off here WILL lead to
-# the resulting rustc being unable to compile for the disabled architectures.
-# Also worth pointing out is that, in case support for new targets are added to
-# LLVM, enabling them here doesn't mean Rust is automatically gaining said
-# support. You'll need to write a target specification at least, and most
-# likely, teach rustc about the C ABI of the target. Get in touch with the
-# Rust team and file an issue if you need assistance in porting!
-targets = "X86"
-
-# LLVM experimental targets to build support for. These targets are specified 
in
-# the same format as above, but since these targets are experimental, they are
-# not built by default and the experimental Rust compilation targets that 
depend
-# on them will not work unless the user opts in 

[arch-commits] Commit in lib32-rust/trunk (PKGBUILD)

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

Rebulid with correct versioned dependency

Modified:
  lib32-rust/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-09-22 15:39:16 UTC (rev 384167)
+++ PKGBUILD2018-09-22 19:28:25 UTC (rev 384168)
@@ -2,7 +2,7 @@
 
 pkgname=lib32-rust
 pkgver=1.29.0
-pkgrel=2
+pkgrel=3
 
 pkgdesc='32-bit libraries for rust'
 url='https://www.rust-lang.org/'
@@ -10,7 +10,7 @@
 license=('MIT' 'Apache')
 
 makedepends=('libffi' 'perl' 'python2' 'curl' 'cmake' 'ninja')
-depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
+depends=('lib32-gcc-libs' "rust=1:$pkgver-2")
 
 source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
 config.toml


[arch-commits] Commit in lib32-rust/trunk (PKGBUILD)

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

Rebuild for str::repeat OOB write

https://blog.rust-lang.org/2018/09/21/Security-advisory-for-std.html

Modified:
  lib32-rust/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-09-22 13:02:24 UTC (rev 384132)
+++ PKGBUILD2018-09-22 13:06:16 UTC (rev 384133)
@@ -2,7 +2,7 @@
 
 pkgname=lib32-rust
 pkgver=1.29.0
-pkgrel=1
+pkgrel=2
 
 pkgdesc='32-bit libraries for rust'
 url='https://www.rust-lang.org/'


[arch-commits] Commit in lib32-rust/trunk (PKGBUILD)

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

upgpkg: lib32-rust 1.29.0-1

Modified:
  lib32-rust/trunk/PKGBUILD

--+
 PKGBUILD |8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-09-22 06:23:41 UTC (rev 383983)
+++ PKGBUILD2018-09-22 06:24:24 UTC (rev 383984)
@@ -13,17 +13,19 @@
 depends=('lib32-gcc-libs' "rust=1:$pkgver-1")
 
 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'
 'SKIP'
-'5c1962458f20dd5a542db7ef31e35c20a7b42f9e74dd27ec4e9f0cf2ab1953ce')
-
+'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
 }
 


[arch-commits] Commit in lib32-rust/trunk (PKGBUILD)

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

upgpkg: lib32-rust 1.29.0-1

Modified:
  lib32-rust/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-09-14 17:17:03 UTC (rev 380955)
+++ PKGBUILD2018-09-14 17:35:35 UTC (rev 380956)
@@ -1,7 +1,7 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=lib32-rust
-pkgver=1.28.0
+pkgver=1.29.0
 pkgrel=1
 
 pkgdesc='32-bit libraries for rust'
@@ -15,7 +15,7 @@
 source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
 config.toml)
 
-sha256sums=('1d5a81729c6f23a0a23b584dd249e35abe9c6f7569cee967cc42b1758ecd6486'
+sha256sums=('a4eb34ffd47f76afe2abd813f398512d5a19ef00989d37306217c9c9ec2f61e9'
 'SKIP'
 '5c1962458f20dd5a542db7ef31e35c20a7b42f9e74dd27ec4e9f0cf2ab1953ce')
 


[arch-commits] Commit in lib32-rust/trunk (PKGBUILD)

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

upgpkg: lib32-rust 1.28.0-1

Modified:
  lib32-rust/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-08-04 02:53:22 UTC (rev 367743)
+++ PKGBUILD2018-08-04 02:53:33 UTC (rev 367744)
@@ -2,7 +2,7 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=lib32-rust
-pkgver=1.27.2
+pkgver=1.28.0
 pkgrel=1
 
 pkgdesc='32-bit libraries for rust'
@@ -16,7 +16,7 @@
 source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
 config.toml)
 
-sha256sums=('9a818c50cdb7880abeaa68b3d97792711e6c64c1cdfb6efdc23f75b8ced0e15d'
+sha256sums=('1d5a81729c6f23a0a23b584dd249e35abe9c6f7569cee967cc42b1758ecd6486'
 'SKIP'
 '5c1962458f20dd5a542db7ef31e35c20a7b42f9e74dd27ec4e9f0cf2ab1953ce')
 


[arch-commits] Commit in lib32-rust/trunk (PKGBUILD)

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

upgpkg: lib32-rust 1.27.2-1

Modified:
  lib32-rust/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-07-21 23:33:44 UTC (rev 362716)
+++ PKGBUILD2018-07-21 23:34:43 UTC (rev 362717)
@@ -2,7 +2,7 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=lib32-rust
-pkgver=1.27.1
+pkgver=1.27.2
 pkgrel=1
 
 pkgdesc='32-bit libraries for rust'
@@ -16,7 +16,7 @@
 source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
 config.toml)
 
-sha256sums=('2133beb01ddc3aa09eebc769dd884533c6cfb08ce684f042497e097068d733d1'
+sha256sums=('9a818c50cdb7880abeaa68b3d97792711e6c64c1cdfb6efdc23f75b8ced0e15d'
 'SKIP'
 '5c1962458f20dd5a542db7ef31e35c20a7b42f9e74dd27ec4e9f0cf2ab1953ce')
 


[arch-commits] Commit in lib32-rust/trunk (PKGBUILD)

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

upgpkg: lib32-rust 1.27.1-1

Modified:
  lib32-rust/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-07-10 19:43:39 UTC (rev 356425)
+++ PKGBUILD2018-07-10 20:20:22 UTC (rev 356426)
@@ -2,7 +2,7 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=lib32-rust
-pkgver=1.27.0
+pkgver=1.27.1
 pkgrel=1
 
 pkgdesc='32-bit libraries for rust'
@@ -16,7 +16,7 @@
 source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
 config.toml)
 
-sha256sums=('2cb9803f690349c9fd429564d909ddd4676c68dc48b670b8ddf797c2613e2d21'
+sha256sums=('2133beb01ddc3aa09eebc769dd884533c6cfb08ce684f042497e097068d733d1'
 'SKIP'
 '5c1962458f20dd5a542db7ef31e35c20a7b42f9e74dd27ec4e9f0cf2ab1953ce')
 


[arch-commits] Commit in lib32-rust/trunk (PKGBUILD)

2018-06-21 Thread Johannes Löthberg via arch-commits
Date: Friday, June 22, 2018 @ 00:11:13
  Author: demize
Revision: 344344

upgpkg: lib32-rust 1.27.0-1

Modified:
  lib32-rust/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-06-21 23:11:27 UTC (rev 344343)
+++ PKGBUILD2018-06-22 00:11:13 UTC (rev 344344)
@@ -2,7 +2,7 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=lib32-rust
-pkgver=1.26.2
+pkgver=1.27.0
 pkgrel=1
 
 pkgdesc='32-bit libraries for rust'
@@ -16,7 +16,7 @@
 source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
 config.toml)
 
-sha256sums=('fb9ecf304488c9b56600ab20cfd1937482057f7e5db7899fddb86e0774548700'
+sha256sums=('2cb9803f690349c9fd429564d909ddd4676c68dc48b670b8ddf797c2613e2d21'
 'SKIP'
 '5c1962458f20dd5a542db7ef31e35c20a7b42f9e74dd27ec4e9f0cf2ab1953ce')
 


[arch-commits] Commit in lib32-rust/trunk (PKGBUILD)

2018-06-05 Thread Johannes Löthberg via arch-commits
Date: Tuesday, June 5, 2018 @ 22:12:56
  Author: demize
Revision: 340650

upgpkg: lib32-rust 1.26.2-1

Modified:
  lib32-rust/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-06-05 22:07:51 UTC (rev 340649)
+++ PKGBUILD2018-06-05 22:12:56 UTC (rev 340650)
@@ -2,7 +2,7 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=lib32-rust
-pkgver=1.26.1
+pkgver=1.26.2
 pkgrel=1
 
 pkgdesc='32-bit libraries for rust'
@@ -16,7 +16,7 @@
 source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
 config.toml)
 
-sha256sums=('70a7961bd8ec43b2c01e9896e90b0a06804a7fbe0a5c05acc7fd6fed19500df0'
+sha256sums=('fb9ecf304488c9b56600ab20cfd1937482057f7e5db7899fddb86e0774548700'
 'SKIP'
 '5c1962458f20dd5a542db7ef31e35c20a7b42f9e74dd27ec4e9f0cf2ab1953ce')
 


[arch-commits] Commit in lib32-rust/trunk (PKGBUILD)

2018-05-30 Thread Johannes Löthberg via arch-commits
Date: Thursday, May 31, 2018 @ 06:57:55
  Author: demize
Revision: 334244

upgpkg: lib32-rust 1.26.1-1

Modified:
  lib32-rust/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-05-31 06:53:45 UTC (rev 334243)
+++ PKGBUILD2018-05-31 06:57:55 UTC (rev 334244)
@@ -2,7 +2,7 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=lib32-rust
-pkgver=1.26.0
+pkgver=1.26.1
 pkgrel=1
 
 pkgdesc='32-bit libraries for rust'
@@ -16,7 +16,7 @@
 source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
 config.toml)
 
-sha256sums=('4fb09bc4e233b71dcbe08a37a3f38cabc32219745ec6a628b18a55a1232281dd'
+sha256sums=('70a7961bd8ec43b2c01e9896e90b0a06804a7fbe0a5c05acc7fd6fed19500df0'
 'SKIP'
 '5c1962458f20dd5a542db7ef31e35c20a7b42f9e74dd27ec4e9f0cf2ab1953ce')
 


[arch-commits] Commit in lib32-rust/trunk (PKGBUILD)

2018-05-29 Thread Johannes Löthberg via arch-commits
Date: Tuesday, May 29, 2018 @ 14:47:54
  Author: demize
Revision: 333179

upgpkg: lib32-rust 1.26.0-1

Modified:
  lib32-rust/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-05-29 14:42:57 UTC (rev 333178)
+++ PKGBUILD2018-05-29 14:47:54 UTC (rev 333179)
@@ -2,7 +2,7 @@
 # Maintainer: Johannes Löthberg 
 
 pkgname=lib32-rust
-pkgver=1.25.0
+pkgver=1.26.0
 pkgrel=1
 
 pkgdesc='32-bit libraries for rust'
@@ -16,7 +16,7 @@
 source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
 config.toml)
 
-sha256sums=('eef63a0aeea5147930a366aee78cbde248bb6e5c6868801bdf34849152965d2d'
+sha256sums=('4fb09bc4e233b71dcbe08a37a3f38cabc32219745ec6a628b18a55a1232281dd'
 'SKIP'
 '5c1962458f20dd5a542db7ef31e35c20a7b42f9e74dd27ec4e9f0cf2ab1953ce')