[arch-commits] Commit in rust/repos (8 files)

2017-11-02 Thread Johannes Löthberg
Date: Thursday, November 2, 2017 @ 15:29:52
  Author: demize
Revision: 265169

archrelease: copy trunk to community-testing-x86_64, community-testing-i686

Added:
  rust/repos/community-testing-i686/
  
rust/repos/community-testing-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch
(from rev 265168, 
rust/trunk/0001-librustc_llvm-build-Force-link-against-libffi.patch)
  rust/repos/community-testing-i686/PKGBUILD
(from rev 265168, rust/trunk/PKGBUILD)
  rust/repos/community-testing-i686/bootstrap-config.toml
(from rev 265168, rust/trunk/bootstrap-config.toml)
  rust/repos/community-testing-x86_64/
  
rust/repos/community-testing-x86_64/0001-librustc_llvm-build-Force-link-against-libffi.patch
(from rev 265168, 
rust/trunk/0001-librustc_llvm-build-Force-link-against-libffi.patch)
  rust/repos/community-testing-x86_64/PKGBUILD
(from rev 265168, rust/trunk/PKGBUILD)
  rust/repos/community-testing-x86_64/bootstrap-config.toml
(from rev 265168, rust/trunk/bootstrap-config.toml)

---+
 
community-testing-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch 
  |   32 
 community-testing-i686/PKGBUILD
   |   75 ++
 community-testing-i686/bootstrap-config.toml   
   |   21 ++
 
community-testing-x86_64/0001-librustc_llvm-build-Force-link-against-libffi.patch
 |   32 
 community-testing-x86_64/PKGBUILD  
   |   75 ++
 community-testing-x86_64/bootstrap-config.toml 
   |   21 ++
 6 files changed, 256 insertions(+)

Copied: 
rust/repos/community-testing-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch
 (from rev 265168, 
rust/trunk/0001-librustc_llvm-build-Force-link-against-libffi.patch)
===
--- 
community-testing-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch 
(rev 0)
+++ 
community-testing-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch 
2017-11-02 15:29:52 UTC (rev 265169)
@@ -0,0 +1,32 @@
+From 5dbc650a60ddb230f59e5a18ffd298b033566945 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Johannes=20L=C3=B6thberg?= 
+Date: Thu, 20 Jul 2017 23:07:01 +0200
+Subject: [PATCH] librustc_llvm/build: Force link against libffi
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+`llvm-config --libs` doesn't output libffi in many cases.  Fixing it
+turned out to take quite a bit of effort, so force libffi linking in
+here for now.
+
+Signed-off-by: Johannes Löthberg 
+---
+ src/librustc_llvm/build.rs | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/librustc_llvm/build.rs b/src/librustc_llvm/build.rs
+index 3f0f536960..7dc0c40c9d 100644
+--- a/src/librustc_llvm/build.rs
 b/src/librustc_llvm/build.rs
+@@ -220,6 +220,7 @@ fn main() {
+ };
+ println!("cargo:rustc-link-lib={}={}", kind, name);
+ }
++println!("cargo:rustc-link-lib=dylib=ffi");
+ 
+ // LLVM ldflags
+ //
+-- 
+2.13.3
+

Copied: rust/repos/community-testing-i686/PKGBUILD (from rev 265168, 
rust/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-11-02 15:29:52 UTC (rev 265169)
@@ -0,0 +1,75 @@
+# $Id$
+# Maintainer: Johannes Löthberg 
+# Contributor: Alexander F Rødseth 
+# Contributor: Daniel Micay 
+# Contributor: userwithuid 
+
+pkgname=('rust' 'rust-docs')
+epoch=1
+pkgver=1.21.0
+pkgrel=2
+
+pkgdesc='Systems programming language focused on safety, speed and concurrency'
+url='https://www.rust-lang.org/'
+arch=('x86_64' 'i686')
+license=('MIT' 'Apache')
+
+makedepends=('rust' 'libffi' 'perl' 'python2' 'curl' 'cmake')
+
+options=('!emptydirs')
+
+source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
+bootstrap-config.toml)
+
+sha256sums=('1707c142244b5bd909993559c6116c81987c1de21d6207c05d3ecbe5bba548fa'
+'SKIP'
+'6c25c451d6286efd19e96a552406c8b299345749577cf924699cf4c3831d9ad0')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+
+prepare() {
+  cd "rustc-$pkgver-src"
+
+  cp "$srcdir"/bootstrap-config.toml config.toml
+}
+
+build() {
+  cd "rustc-$pkgver-src"
+
+  msg2 "Run build under x.py"
+  python2 ./x.py build
+}
+
+package_rust() {
+  depends=('gcc-libs' 'llvm-libs')
+  provides=('cargo')
+  conflicts=('cargo')
+  replaces=('cargo')
+
+
+  cd "rustc-$pkgver-src"
+
+  DESTDIR="$pkgdir" python2 ./x.py install
+
+  for license in 

[arch-commits] Commit in rust/repos (8 files)

2017-10-12 Thread Johannes Löthberg
Date: Thursday, October 12, 2017 @ 21:17:58
  Author: demize
Revision: 262492

archrelease: copy trunk to community-testing-x86_64, community-testing-i686

Added:
  rust/repos/community-testing-i686/
  
rust/repos/community-testing-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch
(from rev 262491, 
rust/trunk/0001-librustc_llvm-build-Force-link-against-libffi.patch)
  rust/repos/community-testing-i686/PKGBUILD
(from rev 262491, rust/trunk/PKGBUILD)
  rust/repos/community-testing-i686/bootstrap-config.toml
(from rev 262491, rust/trunk/bootstrap-config.toml)
  rust/repos/community-testing-x86_64/
  
rust/repos/community-testing-x86_64/0001-librustc_llvm-build-Force-link-against-libffi.patch
(from rev 262491, 
rust/trunk/0001-librustc_llvm-build-Force-link-against-libffi.patch)
  rust/repos/community-testing-x86_64/PKGBUILD
(from rev 262491, rust/trunk/PKGBUILD)
  rust/repos/community-testing-x86_64/bootstrap-config.toml
(from rev 262491, rust/trunk/bootstrap-config.toml)

---+
 
community-testing-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch 
  |   32 
 community-testing-i686/PKGBUILD
   |   78 ++
 community-testing-i686/bootstrap-config.toml   
   |   27 +++
 
community-testing-x86_64/0001-librustc_llvm-build-Force-link-against-libffi.patch
 |   32 
 community-testing-x86_64/PKGBUILD  
   |   78 ++
 community-testing-x86_64/bootstrap-config.toml 
   |   27 +++
 6 files changed, 274 insertions(+)

Copied: 
rust/repos/community-testing-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch
 (from rev 262491, 
rust/trunk/0001-librustc_llvm-build-Force-link-against-libffi.patch)
===
--- 
community-testing-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch 
(rev 0)
+++ 
community-testing-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch 
2017-10-12 21:17:58 UTC (rev 262492)
@@ -0,0 +1,32 @@
+From 5dbc650a60ddb230f59e5a18ffd298b033566945 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Johannes=20L=C3=B6thberg?= 
+Date: Thu, 20 Jul 2017 23:07:01 +0200
+Subject: [PATCH] librustc_llvm/build: Force link against libffi
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+`llvm-config --libs` doesn't output libffi in many cases.  Fixing it
+turned out to take quite a bit of effort, so force libffi linking in
+here for now.
+
+Signed-off-by: Johannes Löthberg 
+---
+ src/librustc_llvm/build.rs | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/librustc_llvm/build.rs b/src/librustc_llvm/build.rs
+index 3f0f536960..7dc0c40c9d 100644
+--- a/src/librustc_llvm/build.rs
 b/src/librustc_llvm/build.rs
+@@ -220,6 +220,7 @@ fn main() {
+ };
+ println!("cargo:rustc-link-lib={}={}", kind, name);
+ }
++println!("cargo:rustc-link-lib=dylib=ffi");
+ 
+ // LLVM ldflags
+ //
+-- 
+2.13.3
+

Copied: rust/repos/community-testing-i686/PKGBUILD (from rev 262491, 
rust/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2017-10-12 21:17:58 UTC (rev 262492)
@@ -0,0 +1,78 @@
+# $Id$
+# Maintainer: Johannes Löthberg 
+# Contributor: Alexander F Rødseth 
+# Contributor: Daniel Micay 
+# Contributor: userwithuid 
+
+pkgname=('rust' 'rust-docs')
+epoch=1
+pkgver=1.21.0
+pkgrel=1
+
+pkgdesc='Systems programming language focused on safety, speed and concurrency'
+url='https://www.rust-lang.org/'
+arch=('x86_64' 'i686')
+license=('MIT' 'Apache')
+
+makedepends=('rust' 'libffi' 'perl' 'python2' 'curl' 'llvm' 'cmake')
+
+options=('!emptydirs')
+
+source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
+0001-librustc_llvm-build-Force-link-against-libffi.patch
+bootstrap-config.toml)
+
+sha256sums=('1707c142244b5bd909993559c6116c81987c1de21d6207c05d3ecbe5bba548fa'
+'SKIP'
+'563529da8e02f575ddde7247d5fc5350d74031daa54743b86d075f3c45ae2713'
+'4252d4873a840216115ee306e4d689819bc791ee05bedd1faa0b00c49ff91c62')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+
+prepare() {
+  cd "rustc-$pkgver-src"
+
+  patch -p1 <"$srcdir"/0001-librustc_llvm-build-Force-link-against-libffi.patch
+  cp "$srcdir"/bootstrap-config.toml config.toml
+}
+
+build() {
+  cd "rustc-$pkgver-src"
+
+  msg2 "Run build under x.py"
+  python2 

[arch-commits] Commit in rust/repos (8 files)

2017-08-01 Thread Johannes Löthberg
Date: Tuesday, August 1, 2017 @ 18:14:40
  Author: demize
Revision: 247369

archrelease: copy trunk to community-x86_64, community-i686

Added:
  
rust/repos/community-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch
(from rev 247368, 
rust/trunk/0001-librustc_llvm-build-Force-link-against-libffi.patch)
  rust/repos/community-i686/PKGBUILD
(from rev 247368, rust/trunk/PKGBUILD)
  rust/repos/community-i686/bootstrap-config.toml
(from rev 247368, rust/trunk/bootstrap-config.toml)
  
rust/repos/community-x86_64/0001-librustc_llvm-build-Force-link-against-libffi.patch
(from rev 247368, 
rust/trunk/0001-librustc_llvm-build-Force-link-against-libffi.patch)
  rust/repos/community-x86_64/PKGBUILD
(from rev 247368, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/bootstrap-config.toml
(from rev 247368, rust/trunk/bootstrap-config.toml)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  
156 ++
 community-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch   |   
32 ++
 community-i686/PKGBUILD   |   
78 -
 community-i686/bootstrap-config.toml  |   
27 +
 community-x86_64/0001-librustc_llvm-build-Force-link-against-libffi.patch |   
32 ++
 community-x86_64/PKGBUILD |   
78 -
 community-x86_64/bootstrap-config.toml|   
27 +
 7 files changed, 274 insertions(+), 156 deletions(-)

Copied: 
rust/repos/community-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch
 (from rev 247368, 
rust/trunk/0001-librustc_llvm-build-Force-link-against-libffi.patch)
===
--- community-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch 
(rev 0)
+++ community-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch 
2017-08-01 18:14:40 UTC (rev 247369)
@@ -0,0 +1,32 @@
+From 5dbc650a60ddb230f59e5a18ffd298b033566945 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Johannes=20L=C3=B6thberg?= 
+Date: Thu, 20 Jul 2017 23:07:01 +0200
+Subject: [PATCH] librustc_llvm/build: Force link against libffi
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+`llvm-config --libs` doesn't output libffi in many cases.  Fixing it
+turned out to take quite a bit of effort, so force libffi linking in
+here for now.
+
+Signed-off-by: Johannes Löthberg 
+---
+ src/librustc_llvm/build.rs | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/librustc_llvm/build.rs b/src/librustc_llvm/build.rs
+index 3f0f536960..7dc0c40c9d 100644
+--- a/src/librustc_llvm/build.rs
 b/src/librustc_llvm/build.rs
+@@ -220,6 +220,7 @@ fn main() {
+ };
+ println!("cargo:rustc-link-lib={}={}", kind, name);
+ }
++println!("cargo:rustc-link-lib=dylib=ffi");
+ 
+ // LLVM ldflags
+ //
+-- 
+2.13.3
+

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-08-01 18:13:17 UTC (rev 247368)
+++ community-i686/PKGBUILD 2017-08-01 18:14:40 UTC (rev 247369)
@@ -1,78 +0,0 @@
-# $Id$
-# Maintainer: Johannes Löthberg 
-# Contributor: Alexander F Rødseth 
-# Contributor: Daniel Micay 
-# Contributor: userwithuid 
-
-pkgname=('rust' 'rust-docs')
-epoch=1
-pkgver=1.19.0
-pkgrel=2
-
-pkgdesc='Systems programming language focused on safety, speed and concurrency'
-url='https://www.rust-lang.org/'
-arch=('x86_64' 'i686')
-license=('MIT' 'Apache')
-
-makedepends=('rust' 'cargo' 'libffi' 'perl' 'python2' 'curl' 'llvm' 'cmake')
-
-options=('!emptydirs')
-
-provides=('cargo')
-conflicts=('cargo')
-replaces=('cargo')
-
-source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc}
-0001-librustc_llvm-build-Force-link-against-libffi.patch
-bootstrap-config.toml)
-
-sha256sums=('15231f5053fb72ad82be91f5abfd6aa60cb7898c5089e4f1ac5910a731090c51'
-'SKIP'
-'563529da8e02f575ddde7247d5fc5350d74031daa54743b86d075f3c45ae2713'
-'4252d4873a840216115ee306e4d689819bc791ee05bedd1faa0b00c49ff91c62')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-
-prepare() {
-  cd "rustc-$pkgver-src"
-
-  patch -p1 <"$srcdir"/0001-librustc_llvm-build-Force-link-against-libffi.patch
-  cp "$srcdir"/bootstrap-config.toml config.toml
-}
-
-build() {
-  cd "rustc-$pkgver-src"
-
-  msg2 "Run build under x.py"
-  python2 ./x.py build
-}
-
-package_rust() {
-  

[arch-commits] Commit in rust/repos (8 files)

2017-07-21 Thread Johannes Löthberg
Date: Friday, July 21, 2017 @ 11:40:33
  Author: demize
Revision: 245925

archrelease: copy trunk to community-x86_64, community-i686

Added:
  
rust/repos/community-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch
(from rev 245924, 
rust/trunk/0001-librustc_llvm-build-Force-link-against-libffi.patch)
  rust/repos/community-i686/PKGBUILD
(from rev 245924, rust/trunk/PKGBUILD)
  rust/repos/community-i686/bootstrap-config.toml
(from rev 245924, rust/trunk/bootstrap-config.toml)
  
rust/repos/community-x86_64/0001-librustc_llvm-build-Force-link-against-libffi.patch
(from rev 245924, 
rust/trunk/0001-librustc_llvm-build-Force-link-against-libffi.patch)
  rust/repos/community-x86_64/PKGBUILD
(from rev 245924, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/bootstrap-config.toml
(from rev 245924, rust/trunk/bootstrap-config.toml)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |  
150 ++
 community-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch   |   
32 ++
 community-i686/PKGBUILD   |   
75 -
 community-i686/bootstrap-config.toml  |  
115 +++
 community-x86_64/0001-librustc_llvm-build-Force-link-against-libffi.patch |   
32 ++
 community-x86_64/PKGBUILD |   
75 -
 community-x86_64/bootstrap-config.toml|  
115 +++
 7 files changed, 444 insertions(+), 150 deletions(-)

Copied: 
rust/repos/community-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch
 (from rev 245924, 
rust/trunk/0001-librustc_llvm-build-Force-link-against-libffi.patch)
===
--- community-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch 
(rev 0)
+++ community-i686/0001-librustc_llvm-build-Force-link-against-libffi.patch 
2017-07-21 11:40:33 UTC (rev 245925)
@@ -0,0 +1,32 @@
+From 5dbc650a60ddb230f59e5a18ffd298b033566945 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Johannes=20L=C3=B6thberg?= 
+Date: Thu, 20 Jul 2017 23:07:01 +0200
+Subject: [PATCH] librustc_llvm/build: Force link against libffi
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+`llvm-config --libs` doesn't output libffi in many cases.  Fixing it
+turned out to take quite a bit of effort, so force libffi linking in
+here for now.
+
+Signed-off-by: Johannes Löthberg 
+---
+ src/librustc_llvm/build.rs | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/librustc_llvm/build.rs b/src/librustc_llvm/build.rs
+index 3f0f536960..7dc0c40c9d 100644
+--- a/src/librustc_llvm/build.rs
 b/src/librustc_llvm/build.rs
+@@ -220,6 +220,7 @@ fn main() {
+ };
+ println!("cargo:rustc-link-lib={}={}", kind, name);
+ }
++println!("cargo:rustc-link-lib=dylib=ffi");
+ 
+ // LLVM ldflags
+ //
+-- 
+2.13.3
+

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-21 11:40:22 UTC (rev 245924)
+++ community-i686/PKGBUILD 2017-07-21 11:40:33 UTC (rev 245925)
@@ -1,75 +0,0 @@
-# $Id$
-# Maintainer: Johannes Löthberg 
-# Contributor: Alexander F Rødseth 
-# Contributor: Daniel Micay 
-# Contributor: userwithuid 
-
-pkgname=('rust' 'rust-docs')
-epoch=1
-pkgver=1.18.0
-pkgrel=1
-
-pkgdesc='Systems programming language focused on safety, speed and concurrency'
-url='https://www.rust-lang.org/'
-arch=('x86_64' 'i686')
-license=('MIT' 'Apache')
-
-makedepends=('rust' 'cargo' 'libffi' 'perl' 'python2' 'curl' 'llvm' 'jemalloc')
-
-options=('!emptydirs')
-
-source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
-
-sha256sums=('d2dc36e99b9e2269488b2bcddde43c234e6bde03edf70cba82a027ff49c36111'
-'SKIP')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-
-build() {
-  cd "rustc-$pkgver-src"
-
-  ./configure \
---prefix=/usr \
---release-channel=stable \
---llvm-root=/usr \
---enable-llvm-link-shared \
---disable-codegen-tests \
---jemalloc-root=/usr/lib \
---enable-local-rust
-
-  export RUSTFLAGS="$RUSTFLAGS -C link-args=-lffi"
-
-  msg2 "Run build under x.py"
-  python2 ./x.py build
-}
-
-package_rust() {
-  depends=('gcc-libs' 'llvm-libs')
-  optdepends=('cargo')
-
-  cd "rustc-$pkgver-src"
-
-  make DESTDIR="$pkgdir" install
-
-  for license in APACHE MIT; do install -Dm644 "LICENSE-$license" \
-

[arch-commits] Commit in rust/repos (8 files)

2017-03-20 Thread Johannes Löthberg
Date: Monday, March 20, 2017 @ 21:31:28
  Author: demize
Revision: 217808

db-move: moved rust from [community-testing] to [community] (i686, x86_64)

Added:
  
rust/repos/community-i686/0001-liballoc_jemalloc-fix-linking-with-system-library.patch
(from rev 217807, 
rust/repos/community-testing-i686/0001-liballoc_jemalloc-fix-linking-with-system-library.patch)
  rust/repos/community-i686/PKGBUILD
(from rev 217807, rust/repos/community-testing-i686/PKGBUILD)
  
rust/repos/community-x86_64/0001-liballoc_jemalloc-fix-linking-with-system-library.patch
(from rev 217807, 
rust/repos/community-testing-x86_64/0001-liballoc_jemalloc-fix-linking-with-system-library.patch)
  rust/repos/community-x86_64/PKGBUILD
(from rev 217807, rust/repos/community-testing-x86_64/PKGBUILD)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-testing-i686/
  rust/repos/community-testing-x86_64/
  rust/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD 
|  160 ++
 community-i686/0001-liballoc_jemalloc-fix-linking-with-system-library.patch   
|   41 ++
 community-i686/PKGBUILD   
|   70 
 community-x86_64/0001-liballoc_jemalloc-fix-linking-with-system-library.patch 
|   41 ++
 community-x86_64/PKGBUILD 
|   70 
 5 files changed, 242 insertions(+), 140 deletions(-)

Copied: 
rust/repos/community-i686/0001-liballoc_jemalloc-fix-linking-with-system-library.patch
 (from rev 217807, 
rust/repos/community-testing-i686/0001-liballoc_jemalloc-fix-linking-with-system-library.patch)
===
--- community-i686/0001-liballoc_jemalloc-fix-linking-with-system-library.patch 
(rev 0)
+++ community-i686/0001-liballoc_jemalloc-fix-linking-with-system-library.patch 
2017-03-20 21:31:28 UTC (rev 217808)
@@ -0,0 +1,41 @@
+From 781561a6f26008a49572e156f80b577d6af60262 Mon Sep 17 00:00:00 2001
+From: Tatsuyuki Ishi 
+Date: Fri, 3 Feb 2017 16:15:34 +0900
+Subject: [PATCH] liballoc_jemalloc: fix linking with system library
+
+---
+ src/liballoc_jemalloc/build.rs | 11 ++-
+ 1 file changed, 6 insertions(+), 5 deletions(-)
+
+diff --git a/src/liballoc_jemalloc/build.rs b/src/liballoc_jemalloc/build.rs
+index 1143df0c63..297f5ce99f 100644
+--- a/src/liballoc_jemalloc/build.rs
 b/src/liballoc_jemalloc/build.rs
+@@ -42,6 +42,12 @@ fn main() {
+ return;
+ }
+ 
++if target.contains("android") {
++println!("cargo:rustc-link-lib=gcc");
++} else if !target.contains("windows") && !target.contains("musl") {
++println!("cargo:rustc-link-lib=pthread");
++}
++
+ if let Some(jemalloc) = env::var_os("JEMALLOC_OVERRIDE") {
+ let jemalloc = PathBuf::from(jemalloc);
+ println!("cargo:rustc-link-search=native={}",
+@@ -176,11 +182,6 @@ fn main() {
+ println!("cargo:rustc-link-lib=static=jemalloc_pic");
+ }
+ println!("cargo:rustc-link-search=native={}/lib", build_dir.display());
+-if target.contains("android") {
+-println!("cargo:rustc-link-lib=gcc");
+-} else if !target.contains("windows") && !target.contains("musl") {
+-println!("cargo:rustc-link-lib=pthread");
+-}
+ 
+ // The pthread_atfork symbols is used by jemalloc on android but the 
really
+ // old android we're building on doesn't have them defined, so just make
+-- 
+2.12.0
+

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-03-20 21:31:02 UTC (rev 217807)
+++ community-i686/PKGBUILD 2017-03-20 21:31:28 UTC (rev 217808)
@@ -1,70 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Daniel Micay 
-# Contributor: userwithuid 
-
-pkgname=('rust' 'rust-docs')
-epoch=1
-pkgver=1.15.1
-pkgrel=1
-arch=('x86_64' 'i686')
-pkgdesc='Systems programming language focused on safety, speed and concurrency'
-url='https://www.rust-lang.org/'
-groups=('rust')
-license=('MIT' 'Apache')
-makedepends=('libffi' 'perl' 'python2' 'curl' 'llvm' 'ninja' 'cmake' 'ninja' 
'jemalloc')
-source=("https://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
-sha256sums=('2e7daad418a830b45b977cd7ecf181b65f30f73df63ff36e124ea5fe5d1af327'
-'SKIP')
-options=('staticlibs' '!strip' '!emptydirs')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
-
-build() {
-  cd "rustc-$pkgver-src"
-
-  ./configure \
---prefix=/usr \
---release-channel=stable \
---enable-ninja \

[arch-commits] Commit in rust/repos (8 files)

2016-04-18 Thread Alexander Rødseth
Date: Monday, April 18, 2016 @ 19:41:52
  Author: arodseth
Revision: 171361

archrelease: copy trunk to community-x86_64, community-i686

Added:
  rust/repos/community-i686/PKGBUILD
(from rev 171360, rust/trunk/PKGBUILD)
  rust/repos/community-i686/rust.install
(from rev 171360, rust/trunk/rust.install)
  rust/repos/community-x86_64/PKGBUILD
(from rev 171360, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/rust.install
(from rev 171360, rust/trunk/rust.install)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-i686/rust.install
  rust/repos/community-x86_64/PKGBUILD
  rust/repos/community-x86_64/rust.install

---+
 /PKGBUILD |   86 
 /rust.install |   26 
 community-i686/PKGBUILD   |   43 
 community-i686/rust.install   |   13 --
 community-x86_64/PKGBUILD |   43 
 community-x86_64/rust.install |   13 --
 6 files changed, 112 insertions(+), 112 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-04-18 17:40:42 UTC (rev 171360)
+++ community-i686/PKGBUILD 2016-04-18 17:41:52 UTC (rev 171361)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Daniel Micay 
-
-pkgname=rust
-pkgver=1.7.0
-epoch=1
-pkgrel=1
-arch=('x86_64' 'i686')
-pkgdesc='Systems programming language focused on safety, speed and concurrency'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-makedepends=('libffi' 'perl' 'python2' 'curl')
-source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
-sha256sums=('6df96059d87b718676d9cd879672e4e22418b6093396b4ccb5b5b66df37bf13a'
-'SKIP')
-install="$pkgname.install"
-options=('staticlibs' '!strip')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
-
-build() {
-  cd "rustc-$pkgver"
-
-  ./configure --prefix=/usr --disable-docs --release-channel=stable
-  make
-}
-
-package() {
-  cd "rustc-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 LICENSE-APACHE \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
-  install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
-
-  cd "$pkgdir/usr/lib"
-  rm rustlib/{components,manifest-rustc,rust-installer-version}
-  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rust/repos/community-i686/PKGBUILD (from rev 171360, 
rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-04-18 17:41:52 UTC (rev 171361)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Daniel Micay 
+
+pkgname=rust
+pkgver=1.8.0
+epoch=1
+pkgrel=1
+arch=('x86_64' 'i686')
+pkgdesc='Systems programming language focused on safety, speed and concurrency'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+makedepends=('libffi' 'perl' 'python2' 'curl')
+source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
+sha256sums=('af4466147e8d4db4de2a46e07494d2dc2d96313c5b37da34237f511c905f7449'
+'SKIP')
+install="$pkgname.install"
+options=('staticlibs' '!strip')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
+
+build() {
+  cd "rustc-$pkgver"
+
+  ./configure --prefix=/usr --disable-docs --release-channel=stable
+  make
+}
+
+package() {
+  cd "rustc-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 LICENSE-APACHE \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
+  install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
+
+  cd "$pkgdir/usr/lib"
+  rm rustlib/{components,manifest-rustc,rust-installer-version}
+  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/rust.install
===
--- community-i686/rust.install 2016-04-18 17:40:42 UTC (rev 171360)
+++ community-i686/rust.install 2016-04-18 17:41:52 UTC (rev 171361)
@@ -1,13 +0,0 @@
-post_install() {
-  if type -P update-mime-database &> /dev/null; then
-update-mime-database usr/share/mime >/dev/null
-  fi
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: rust/repos/community-i686/rust.install (from rev 171360, 
rust/trunk/rust.install)

[arch-commits] Commit in rust/repos (8 files)

2016-03-05 Thread Alexander Rødseth
Date: Saturday, March 5, 2016 @ 16:55:53
  Author: arodseth
Revision: 165155

archrelease: copy trunk to community-x86_64, community-i686

Added:
  rust/repos/community-i686/PKGBUILD
(from rev 165154, rust/trunk/PKGBUILD)
  rust/repos/community-i686/rust.install
(from rev 165154, rust/trunk/rust.install)
  rust/repos/community-x86_64/PKGBUILD
(from rev 165154, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/rust.install
(from rev 165154, rust/trunk/rust.install)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-i686/rust.install
  rust/repos/community-x86_64/PKGBUILD
  rust/repos/community-x86_64/rust.install

---+
 /PKGBUILD |   86 
 /rust.install |   26 
 community-i686/PKGBUILD   |   43 
 community-i686/rust.install   |   13 --
 community-x86_64/PKGBUILD |   43 
 community-x86_64/rust.install |   13 --
 6 files changed, 112 insertions(+), 112 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-03-05 15:55:39 UTC (rev 165154)
+++ community-i686/PKGBUILD 2016-03-05 15:55:53 UTC (rev 165155)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Daniel Micay 
-
-pkgname=rust
-pkgver=1.6.0
-epoch=1
-pkgrel=1
-arch=('x86_64' 'i686')
-pkgdesc='Systems programming language focused on safety, speed and concurrency'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-makedepends=('libffi' 'perl' 'python2' 'curl')
-source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
-sha256sums=('3002a4a4b0727709abeefe1ab1b2731845e4dab74566f363861801bb3326'
-'SKIP')
-install="$pkgname.install"
-options=('staticlibs' '!strip')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
-
-build() {
-  cd "rustc-$pkgver"
-
-  ./configure --prefix=/usr --disable-docs --release-channel=stable
-  make
-}
-
-package() {
-  cd "rustc-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 LICENSE-APACHE \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
-  install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
-
-  cd "$pkgdir/usr/lib"
-  rm rustlib/{components,manifest-rustc,rust-installer-version}
-  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rust/repos/community-i686/PKGBUILD (from rev 165154, 
rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-03-05 15:55:53 UTC (rev 165155)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Daniel Micay 
+
+pkgname=rust
+pkgver=1.7.0
+epoch=1
+pkgrel=1
+arch=('x86_64' 'i686')
+pkgdesc='Systems programming language focused on safety, speed and concurrency'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+makedepends=('libffi' 'perl' 'python2' 'curl')
+source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
+sha256sums=('6df96059d87b718676d9cd879672e4e22418b6093396b4ccb5b5b66df37bf13a'
+'SKIP')
+install="$pkgname.install"
+options=('staticlibs' '!strip')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
+
+build() {
+  cd "rustc-$pkgver"
+
+  ./configure --prefix=/usr --disable-docs --release-channel=stable
+  make
+}
+
+package() {
+  cd "rustc-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 LICENSE-APACHE \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
+  install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
+
+  cd "$pkgdir/usr/lib"
+  rm rustlib/{components,manifest-rustc,rust-installer-version}
+  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/rust.install
===
--- community-i686/rust.install 2016-03-05 15:55:39 UTC (rev 165154)
+++ community-i686/rust.install 2016-03-05 15:55:53 UTC (rev 165155)
@@ -1,13 +0,0 @@
-post_install() {
-  if type -P update-mime-database &> /dev/null; then
-update-mime-database usr/share/mime >/dev/null
-  fi
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: rust/repos/community-i686/rust.install (from rev 165154, 
rust/trunk/rust.install)

[arch-commits] Commit in rust/repos (8 files)

2016-01-22 Thread Alexander Rødseth
Date: Friday, January 22, 2016 @ 22:09:59
  Author: arodseth
Revision: 158621

archrelease: copy trunk to community-x86_64, community-i686

Added:
  rust/repos/community-i686/PKGBUILD
(from rev 158620, rust/trunk/PKGBUILD)
  rust/repos/community-i686/rust.install
(from rev 158620, rust/trunk/rust.install)
  rust/repos/community-x86_64/PKGBUILD
(from rev 158620, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/rust.install
(from rev 158620, rust/trunk/rust.install)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-i686/rust.install
  rust/repos/community-x86_64/PKGBUILD
  rust/repos/community-x86_64/rust.install

---+
 /PKGBUILD |   86 
 /rust.install |   26 
 community-i686/PKGBUILD   |   49 --
 community-i686/rust.install   |   13 --
 community-x86_64/PKGBUILD |   49 --
 community-x86_64/rust.install |   13 --
 6 files changed, 112 insertions(+), 124 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-01-22 21:09:48 UTC (rev 158620)
+++ community-i686/PKGBUILD 2016-01-22 21:09:59 UTC (rev 158621)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Daniel Micay 
-
-pkgname=rust
-pkgver=1.5.0
-epoch=1
-pkgrel=1
-arch=('x86_64' 'i686')
-pkgdesc='Systems programming language focused on safety, speed and concurrency'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-makedepends=('libffi' 'perl' 'python2' 'curl')
-source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
-sha256sums=('641037af7b7b6cad0b231cc20671f8a314fbf2f40fc0901d0b877c39fc8da5a0'
-'SKIP')
-install="$pkgname.install"
-options=('staticlibs' '!strip')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
-
-prepare() {
-  cd "rustc-$pkgver"
-
-  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
-}
-
-build() {
-  cd "rustc-$pkgver"
-
-  ./configure --prefix=/usr --disable-docs --release-channel=stable
-  make
-}
-
-package() {
-  cd "rustc-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 LICENSE-APACHE \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
-  install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
-
-  cd "$pkgdir/usr/lib"
-  rm rustlib/{components,manifest-rustc,rust-installer-version}
-  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rust/repos/community-i686/PKGBUILD (from rev 158620, 
rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-01-22 21:09:59 UTC (rev 158621)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Daniel Micay 
+
+pkgname=rust
+pkgver=1.6.0
+epoch=1
+pkgrel=1
+arch=('x86_64' 'i686')
+pkgdesc='Systems programming language focused on safety, speed and concurrency'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+makedepends=('libffi' 'perl' 'python2' 'curl')
+source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
+sha256sums=('3002a4a4b0727709abeefe1ab1b2731845e4dab74566f363861801bb3326'
+'SKIP')
+install="$pkgname.install"
+options=('staticlibs' '!strip')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
+
+build() {
+  cd "rustc-$pkgver"
+
+  ./configure --prefix=/usr --disable-docs --release-channel=stable
+  make
+}
+
+package() {
+  cd "rustc-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 LICENSE-APACHE \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
+  install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
+
+  cd "$pkgdir/usr/lib"
+  rm rustlib/{components,manifest-rustc,rust-installer-version}
+  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/rust.install
===
--- community-i686/rust.install 2016-01-22 21:09:48 UTC (rev 158620)
+++ community-i686/rust.install 2016-01-22 21:09:59 UTC (rev 158621)
@@ -1,13 +0,0 @@
-post_install() {
-  if type -P update-mime-database &> /dev/null; then
-update-mime-database usr/share/mime >/dev/null
-  fi
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  

[arch-commits] Commit in rust/repos (8 files)

2016-01-22 Thread Alexander Rødseth
Date: Friday, January 22, 2016 @ 22:47:33
  Author: arodseth
Revision: 158623

archrelease: copy trunk to community-x86_64, community-i686

Added:
  rust/repos/community-i686/PKGBUILD
(from rev 158621, rust/trunk/PKGBUILD)
  rust/repos/community-i686/rust.install
(from rev 158622, rust/trunk/rust.install)
  rust/repos/community-x86_64/PKGBUILD
(from rev 158621, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/rust.install
(from rev 158621, rust/trunk/rust.install)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-i686/rust.install
  rust/repos/community-x86_64/PKGBUILD
  rust/repos/community-x86_64/rust.install

---+
 /PKGBUILD |   86 
 /rust.install |   26 
 community-i686/PKGBUILD   |   43 
 community-i686/rust.install   |   13 --
 community-x86_64/PKGBUILD |   43 
 community-x86_64/rust.install |   13 --
 6 files changed, 112 insertions(+), 112 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-01-22 21:47:29 UTC (rev 158622)
+++ community-i686/PKGBUILD 2016-01-22 21:47:33 UTC (rev 158623)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Daniel Micay 
-
-pkgname=rust
-pkgver=1.6.0
-epoch=1
-pkgrel=1
-arch=('x86_64' 'i686')
-pkgdesc='Systems programming language focused on safety, speed and concurrency'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-makedepends=('libffi' 'perl' 'python2' 'curl')
-source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
-sha256sums=('3002a4a4b0727709abeefe1ab1b2731845e4dab74566f363861801bb3326'
-'SKIP')
-install="$pkgname.install"
-options=('staticlibs' '!strip')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
-
-build() {
-  cd "rustc-$pkgver"
-
-  ./configure --prefix=/usr --disable-docs --release-channel=stable
-  make
-}
-
-package() {
-  cd "rustc-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 LICENSE-APACHE \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
-  install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
-
-  cd "$pkgdir/usr/lib"
-  rm rustlib/{components,manifest-rustc,rust-installer-version}
-  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rust/repos/community-i686/PKGBUILD (from rev 158621, 
rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-01-22 21:47:33 UTC (rev 158623)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Daniel Micay 
+
+pkgname=rust
+pkgver=1.6.0
+epoch=1
+pkgrel=1
+arch=('x86_64' 'i686')
+pkgdesc='Systems programming language focused on safety, speed and concurrency'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+makedepends=('libffi' 'perl' 'python2' 'curl')
+source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
+sha256sums=('3002a4a4b0727709abeefe1ab1b2731845e4dab74566f363861801bb3326'
+'SKIP')
+install="$pkgname.install"
+options=('staticlibs' '!strip')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
+
+build() {
+  cd "rustc-$pkgver"
+
+  ./configure --prefix=/usr --disable-docs --release-channel=stable
+  make
+}
+
+package() {
+  cd "rustc-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 LICENSE-APACHE \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
+  install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
+
+  cd "$pkgdir/usr/lib"
+  rm rustlib/{components,manifest-rustc,rust-installer-version}
+  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/rust.install
===
--- community-i686/rust.install 2016-01-22 21:47:29 UTC (rev 158622)
+++ community-i686/rust.install 2016-01-22 21:47:33 UTC (rev 158623)
@@ -1,13 +0,0 @@
-post_install() {
-  if type -P update-mime-database &> /dev/null; then
-update-mime-database usr/share/mime >/dev/null
-  fi
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: rust/repos/community-i686/rust.install (from rev 158622, 
rust/trunk/rust.install)

[arch-commits] Commit in rust/repos (8 files)

2016-01-22 Thread Johannes Löthberg
Date: Saturday, January 23, 2016 @ 00:16:36
  Author: demize
Revision: 158631

archrelease: copy trunk to community-x86_64, community-i686

Added:
  rust/repos/community-i686/PKGBUILD
(from rev 158630, rust/trunk/PKGBUILD)
  rust/repos/community-i686/rust.install
(from rev 158630, rust/trunk/rust.install)
  rust/repos/community-x86_64/PKGBUILD
(from rev 158630, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/rust.install
(from rev 158630, rust/trunk/rust.install)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-i686/rust.install
  rust/repos/community-x86_64/PKGBUILD
  rust/repos/community-x86_64/rust.install

---+
 /PKGBUILD |   86 
 /rust.install |   26 
 community-i686/PKGBUILD   |   43 
 community-i686/rust.install   |   13 --
 community-x86_64/PKGBUILD |   43 
 community-x86_64/rust.install |   13 --
 6 files changed, 112 insertions(+), 112 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-01-22 23:07:10 UTC (rev 158630)
+++ community-i686/PKGBUILD 2016-01-22 23:16:36 UTC (rev 158631)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Daniel Micay 
-
-pkgname=rust
-pkgver=1.6.0
-epoch=1
-pkgrel=1
-arch=('x86_64' 'i686')
-pkgdesc='Systems programming language focused on safety, speed and concurrency'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-makedepends=('libffi' 'perl' 'python2' 'curl')
-source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
-sha256sums=('3002a4a4b0727709abeefe1ab1b2731845e4dab74566f363861801bb3326'
-'SKIP')
-install="$pkgname.install"
-options=('staticlibs' '!strip')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
-
-build() {
-  cd "rustc-$pkgver"
-
-  ./configure --prefix=/usr --disable-docs --release-channel=stable
-  make
-}
-
-package() {
-  cd "rustc-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 LICENSE-APACHE \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
-  install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
-
-  cd "$pkgdir/usr/lib"
-  rm rustlib/{components,manifest-rustc,rust-installer-version}
-  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rust/repos/community-i686/PKGBUILD (from rev 158630, 
rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-01-22 23:16:36 UTC (rev 158631)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Daniel Micay 
+
+pkgname=rust
+pkgver=1.6.0
+epoch=1
+pkgrel=1
+arch=('x86_64' 'i686')
+pkgdesc='Systems programming language focused on safety, speed and concurrency'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+makedepends=('libffi' 'perl' 'python2' 'curl')
+source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
+sha256sums=('3002a4a4b0727709abeefe1ab1b2731845e4dab74566f363861801bb3326'
+'SKIP')
+install="$pkgname.install"
+options=('staticlibs' '!strip')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
+
+build() {
+  cd "rustc-$pkgver"
+
+  ./configure --prefix=/usr --disable-docs --release-channel=stable
+  make
+}
+
+package() {
+  cd "rustc-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 LICENSE-APACHE \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
+  install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
+
+  cd "$pkgdir/usr/lib"
+  rm rustlib/{components,manifest-rustc,rust-installer-version}
+  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/rust.install
===
--- community-i686/rust.install 2016-01-22 23:07:10 UTC (rev 158630)
+++ community-i686/rust.install 2016-01-22 23:16:36 UTC (rev 158631)
@@ -1,13 +0,0 @@
-post_install() {
-  if type -P update-mime-database &> /dev/null; then
-update-mime-database usr/share/mime >/dev/null
-  fi
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: rust/repos/community-i686/rust.install (from rev 158630, 
rust/trunk/rust.install)

[arch-commits] Commit in rust/repos (8 files)

2015-12-12 Thread Alexander Rødseth
Date: Saturday, December 12, 2015 @ 16:28:05
  Author: arodseth
Revision: 153138

archrelease: copy trunk to community-x86_64, community-i686

Added:
  rust/repos/community-i686/PKGBUILD
(from rev 153137, rust/trunk/PKGBUILD)
  rust/repos/community-i686/rust.install
(from rev 153137, rust/trunk/rust.install)
  rust/repos/community-x86_64/PKGBUILD
(from rev 153137, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/rust.install
(from rev 153137, rust/trunk/rust.install)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-i686/rust.install
  rust/repos/community-x86_64/PKGBUILD
  rust/repos/community-x86_64/rust.install

---+
 /PKGBUILD |   98 
 /rust.install |   26 ++
 community-i686/PKGBUILD   |   49 
 community-i686/rust.install   |   13 -
 community-x86_64/PKGBUILD |   49 
 community-x86_64/rust.install |   13 -
 6 files changed, 124 insertions(+), 124 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-12-12 15:27:53 UTC (rev 153137)
+++ community-i686/PKGBUILD 2015-12-12 15:28:05 UTC (rev 153138)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Daniel Micay 
-
-pkgname=rust
-pkgver=1.4.0
-epoch=1
-pkgrel=2
-arch=('x86_64' 'i686')
-pkgdesc='Systems programming language focused on safety, speed and concurrency'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-makedepends=('libffi' 'perl' 'python2' 'curl')
-source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
-sha256sums=('1c0dfdce5c85d8098fcebb9adf1493847ab40c1dfaa8cc997af09b2ef0aa8211'
-'SKIP')
-install="$pkgname.install"
-options=('staticlibs' '!strip')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
-
-prepare() {
-  cd "rustc-$pkgver"
-
-  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
-}
-
-build() {
-  cd "rustc-$pkgver"
-
-  ./configure --prefix=/usr --disable-docs --release-channel=stable
-  make
-}
-
-package() {
-  cd "rustc-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 LICENSE-APACHE \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
-  install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
-
-  cd "$pkgdir/usr/lib"
-  rm rustlib/{components,manifest-rustc,rust-installer-version}
-  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rust/repos/community-i686/PKGBUILD (from rev 153137, 
rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-12-12 15:28:05 UTC (rev 153138)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Daniel Micay 
+
+pkgname=rust
+pkgver=1.5.0
+epoch=1
+pkgrel=1
+arch=('x86_64' 'i686')
+pkgdesc='Systems programming language focused on safety, speed and concurrency'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+makedepends=('libffi' 'perl' 'python2' 'curl')
+source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
+sha256sums=('641037af7b7b6cad0b231cc20671f8a314fbf2f40fc0901d0b877c39fc8da5a0'
+'SKIP')
+install="$pkgname.install"
+options=('staticlibs' '!strip')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
+
+prepare() {
+  cd "rustc-$pkgver"
+
+  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
+}
+
+build() {
+  cd "rustc-$pkgver"
+
+  ./configure --prefix=/usr --disable-docs --release-channel=stable
+  make
+}
+
+package() {
+  cd "rustc-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 LICENSE-APACHE \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
+  install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
+
+  cd "$pkgdir/usr/lib"
+  rm rustlib/{components,manifest-rustc,rust-installer-version}
+  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/rust.install
===
--- community-i686/rust.install 2015-12-12 15:27:53 UTC (rev 153137)
+++ community-i686/rust.install 2015-12-12 15:28:05 UTC (rev 153138)
@@ -1,13 +0,0 @@
-post_install() {
-  if type -P update-mime-database &> /dev/null; then
-

[arch-commits] Commit in rust/repos (8 files)

2015-10-30 Thread Alexander Rødseth
Date: Friday, October 30, 2015 @ 21:07:30
  Author: arodseth
Revision: 145325

archrelease: copy trunk to community-x86_64, community-i686

Added:
  rust/repos/community-i686/PKGBUILD
(from rev 145324, rust/trunk/PKGBUILD)
  rust/repos/community-i686/rust.install
(from rev 145324, rust/trunk/rust.install)
  rust/repos/community-x86_64/PKGBUILD
(from rev 145324, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/rust.install
(from rev 145324, rust/trunk/rust.install)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-i686/rust.install
  rust/repos/community-x86_64/PKGBUILD
  rust/repos/community-x86_64/rust.install

---+
 /PKGBUILD |   98 
 /rust.install |   26 ++
 community-i686/PKGBUILD   |   49 
 community-i686/rust.install   |   13 -
 community-x86_64/PKGBUILD |   49 
 community-x86_64/rust.install |   13 -
 6 files changed, 124 insertions(+), 124 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-10-30 20:07:17 UTC (rev 145324)
+++ community-i686/PKGBUILD 2015-10-30 20:07:30 UTC (rev 145325)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Daniel Micay 
-
-pkgname=rust
-pkgver=1.3.0
-epoch=1
-pkgrel=1
-arch=('x86_64' 'i686')
-pkgdesc='Systems programming language focused on safety, speed and concurrency'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-makedepends=('libffi' 'perl' 'python2' 'curl')
-source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
-sha256sums=('ea02d7bc9e7de5b8be3fe6b37ea9b2bd823f9a532c8e4c47d02f37f24ffa3126'
-'SKIP')
-install="$pkgname.install"
-options=('staticlibs' '!strip')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
-
-prepare() {
-  cd "rustc-$pkgver"
-
-  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
-}
-
-build() {
-  cd "rustc-$pkgver"
-
-  ./configure --prefix=/usr --disable-docs --release-channel=stable
-  make
-}
-
-package() {
-  cd "rustc-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 LICENSE-APACHE \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
-  install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
-
-  cd "$pkgdir/usr/lib"
-  rm rustlib/{components,manifest-rustc,rust-installer-version}
-  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rust/repos/community-i686/PKGBUILD (from rev 145324, 
rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-10-30 20:07:30 UTC (rev 145325)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Daniel Micay 
+
+pkgname=rust
+pkgver=1.4.0
+epoch=1
+pkgrel=1
+arch=('x86_64' 'i686')
+pkgdesc='Systems programming language focused on safety, speed and concurrency'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+makedepends=('libffi' 'perl' 'python2' 'curl')
+source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
+sha256sums=('1c0dfdce5c85d8098fcebb9adf1493847ab40c1dfaa8cc997af09b2ef0aa8211'
+'SKIP')
+install="$pkgname.install"
+options=('staticlibs' '!strip')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
+
+prepare() {
+  cd "rustc-$pkgver"
+
+  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
+}
+
+build() {
+  cd "rustc-$pkgver"
+
+  ./configure --prefix=/usr --disable-docs --release-channel=stable
+  make
+}
+
+package() {
+  cd "rustc-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 LICENSE-APACHE \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
+  install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
+
+  cd "$pkgdir/usr/lib"
+  rm rustlib/{components,manifest-rustc,rust-installer-version}
+  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/rust.install
===
--- community-i686/rust.install 2015-10-30 20:07:17 UTC (rev 145324)
+++ community-i686/rust.install 2015-10-30 20:07:30 UTC (rev 145325)
@@ -1,13 +0,0 @@
-post_install() {
-  if type -P update-mime-database &> /dev/null; then
-

[arch-commits] Commit in rust/repos (8 files)

2015-09-19 Thread Alexander Rødseth
Date: Saturday, September 19, 2015 @ 14:20:10
  Author: arodseth
Revision: 140764

archrelease: copy trunk to community-x86_64, community-i686

Added:
  rust/repos/community-i686/PKGBUILD
(from rev 140763, rust/trunk/PKGBUILD)
  rust/repos/community-i686/rust.install
(from rev 140763, rust/trunk/rust.install)
  rust/repos/community-x86_64/PKGBUILD
(from rev 140763, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/rust.install
(from rev 140763, rust/trunk/rust.install)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-i686/rust.install
  rust/repos/community-x86_64/PKGBUILD
  rust/repos/community-x86_64/rust.install

---+
 /PKGBUILD |   98 
 /rust.install |   26 ++
 community-i686/PKGBUILD   |   49 
 community-i686/rust.install   |   13 -
 community-x86_64/PKGBUILD |   49 
 community-x86_64/rust.install |   13 -
 6 files changed, 124 insertions(+), 124 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-09-19 12:19:56 UTC (rev 140763)
+++ community-i686/PKGBUILD 2015-09-19 12:20:10 UTC (rev 140764)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor: Daniel Micay 
-
-pkgname=rust
-pkgver=1.2.0
-epoch=1
-pkgrel=1
-arch=('x86_64' 'i686')
-pkgdesc='Systems programming language focused on safety, speed and concurrency'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-makedepends=('libffi' 'perl' 'python2' 'curl')
-source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
-sha256sums=('ea6eb983daf2a073df57186a58f0d4ce0e85c711bec13c627a8c85d51b6a6d78'
-'SKIP')
-install="$pkgname.install"
-options=('staticlibs' '!strip')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
-#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
-
-prepare() {
-  cd "rustc-$pkgver"
-
-  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
-}
-
-build() {
-  cd "rustc-$pkgver"
-
-  ./configure --prefix=/usr --disable-docs --release-channel=stable
-  make
-}
-
-package() {
-  cd "rustc-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  install -Dm644 LICENSE-APACHE \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
-  install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
-
-  cd "$pkgdir/usr/lib"
-  rm rustlib/{components,manifest-rustc,rust-installer-version}
-  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rust/repos/community-i686/PKGBUILD (from rev 140763, 
rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-09-19 12:20:10 UTC (rev 140764)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Alexander F Rødseth 
+# Contributor: Daniel Micay 
+
+pkgname=rust
+pkgver=1.3.0
+epoch=1
+pkgrel=1
+arch=('x86_64' 'i686')
+pkgdesc='Systems programming language focused on safety, speed and concurrency'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+makedepends=('libffi' 'perl' 'python2' 'curl')
+source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
+sha256sums=('ea02d7bc9e7de5b8be3fe6b37ea9b2bd823f9a532c8e4c47d02f37f24ffa3126'
+'SKIP')
+install="$pkgname.install"
+options=('staticlibs' '!strip')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) 
+#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
+
+prepare() {
+  cd "rustc-$pkgver"
+
+  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
+}
+
+build() {
+  cd "rustc-$pkgver"
+
+  ./configure --prefix=/usr --disable-docs --release-channel=stable
+  make
+}
+
+package() {
+  cd "rustc-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  install -Dm644 LICENSE-APACHE \
+"$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
+  install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
+
+  cd "$pkgdir/usr/lib"
+  rm rustlib/{components,manifest-rustc,rust-installer-version}
+  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/rust.install
===
--- community-i686/rust.install 2015-09-19 12:19:56 UTC (rev 140763)
+++ community-i686/rust.install 2015-09-19 12:20:10 UTC (rev 140764)
@@ -1,13 +0,0 @@
-post_install() {
-  if type -P update-mime-database &> /dev/null; then
-

[arch-commits] Commit in rust/repos (8 files)

2015-08-07 Thread Alexander Rødseth
Date: Friday, August 7, 2015 @ 21:46:37
  Author: arodseth
Revision: 138072

archrelease: copy trunk to community-x86_64, community-i686

Added:
  rust/repos/community-i686/PKGBUILD
(from rev 138071, rust/trunk/PKGBUILD)
  rust/repos/community-i686/rust.install
(from rev 138071, rust/trunk/rust.install)
  rust/repos/community-x86_64/PKGBUILD
(from rev 138071, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/rust.install
(from rev 138071, rust/trunk/rust.install)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-i686/rust.install
  rust/repos/community-x86_64/PKGBUILD
  rust/repos/community-x86_64/rust.install

---+
 /PKGBUILD |   98 
 /rust.install |   26 ++
 community-i686/PKGBUILD   |   49 
 community-i686/rust.install   |   13 -
 community-x86_64/PKGBUILD |   49 
 community-x86_64/rust.install |   13 -
 6 files changed, 124 insertions(+), 124 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-08-07 19:46:24 UTC (rev 138071)
+++ community-i686/PKGBUILD 2015-08-07 19:46:37 UTC (rev 138072)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Daniel Micay danielmi...@gmail.com
-
-pkgname=rust
-pkgver=1.1.0
-epoch=1
-pkgrel=1
-arch=('x86_64' 'i686')
-pkgdesc='Systems programming language focused on safety, speed and concurrency'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-makedepends=('libffi' 'perl' 'python2' 'curl')
-source=(http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz{,.asc})
-sha256sums=('cb09f443b37ec1b81fe73c04eb413f9f656859cf7d00bc5088008cbc2a63fa8a'
-'SKIP')
-install=$pkgname.install
-options=(staticlibs !strip)
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) rust-...@rust-lang.org
-#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
-
-prepare() {
-  cd rustc-$pkgver
-
-  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
-}
-
-build() {
-  cd rustc-$pkgver
-
-  ./configure --prefix=/usr --disable-docs --release-channel=stable
-  make
-}
-
-package() {
-  cd rustc-$pkgver
-
-  make DESTDIR=$pkgdir install
-
-  install -Dm644 LICENSE-APACHE \
-$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE
-  install -Dm644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT
-
-  cd $pkgdir/usr/lib
-  rm rustlib/{components,manifest-rustc,rust-installer-version}
-  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rust/repos/community-i686/PKGBUILD (from rev 138071, 
rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-08-07 19:46:37 UTC (rev 138072)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Alexander F Rødseth xypr...@archlinux.org
+# Contributor: Daniel Micay danielmi...@gmail.com
+
+pkgname=rust
+pkgver=1.2.0
+epoch=1
+pkgrel=1
+arch=('x86_64' 'i686')
+pkgdesc='Systems programming language focused on safety, speed and concurrency'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+makedepends=('libffi' 'perl' 'python2' 'curl')
+source=(http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz{,.asc})
+sha256sums=('ea6eb983daf2a073df57186a58f0d4ce0e85c711bec13c627a8c85d51b6a6d78'
+'SKIP')
+install=$pkgname.install
+options=('staticlibs' '!strip')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) rust-...@rust-lang.org
+#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
+
+prepare() {
+  cd rustc-$pkgver
+
+  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
+}
+
+build() {
+  cd rustc-$pkgver
+
+  ./configure --prefix=/usr --disable-docs --release-channel=stable
+  make
+}
+
+package() {
+  cd rustc-$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  install -Dm644 LICENSE-APACHE \
+$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE
+  install -Dm644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT
+
+  cd $pkgdir/usr/lib
+  rm rustlib/{components,manifest-rustc,rust-installer-version}
+  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/rust.install
===
--- community-i686/rust.install 2015-08-07 19:46:24 UTC (rev 138071)
+++ community-i686/rust.install 2015-08-07 19:46:37 UTC (rev 138072)
@@ -1,13 +0,0 @@
-post_install() {
-  if type -P update-mime-database  /dev/null; then
-update-mime-database usr/share/mime /dev/null
-  fi
-}
-
-post_upgrade() {
-  

[arch-commits] Commit in rust/repos (8 files)

2015-06-26 Thread Alexander Rødseth
Date: Saturday, June 27, 2015 @ 01:49:32
  Author: arodseth
Revision: 135915

archrelease: copy trunk to community-x86_64, community-i686

Added:
  rust/repos/community-i686/PKGBUILD
(from rev 135914, rust/trunk/PKGBUILD)
  rust/repos/community-i686/rust.install
(from rev 135914, rust/trunk/rust.install)
  rust/repos/community-x86_64/PKGBUILD
(from rev 135914, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/rust.install
(from rev 135914, rust/trunk/rust.install)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-i686/rust.install
  rust/repos/community-x86_64/PKGBUILD
  rust/repos/community-x86_64/rust.install

---+
 /PKGBUILD |   98 
 /rust.install |   26 ++
 community-i686/PKGBUILD   |   49 
 community-i686/rust.install   |   13 -
 community-x86_64/PKGBUILD |   49 
 community-x86_64/rust.install |   13 -
 6 files changed, 124 insertions(+), 124 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-26 23:48:35 UTC (rev 135914)
+++ community-i686/PKGBUILD 2015-06-26 23:49:32 UTC (rev 135915)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Daniel Micay danielmi...@gmail.com
-
-pkgname=rust
-pkgver=1.0.0
-epoch=1
-pkgrel=3
-arch=('x86_64' 'i686')
-pkgdesc='Systems programming language focused on safety, speed and concurrency'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-makedepends=('libffi' 'perl' 'python2' 'curl')
-source=(http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz{,.asc})
-sha256sums=('c304cbd4f7b25d116b73c249f66bdb5c9da8645855ce195a41bda5077b995eba'
-'SKIP')
-install=$pkgname.install
-options=(staticlibs !strip)
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) rust-...@rust-lang.org
-#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
-
-prepare() {
-  cd rustc-$pkgver
-
-  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
-}
-
-build() {
-  cd rustc-$pkgver
-
-  ./configure --prefix=/usr --disable-docs --release-channel=stable
-  make
-}
-
-package() {
-  cd rustc-$pkgver
-
-  make DESTDIR=$pkgdir install
-
-  install -Dm644 LICENSE-APACHE \
-$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE
-  install -Dm644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT
-
-  cd $pkgdir/usr/lib
-  rm rustlib/{components,manifest-rustc,rust-installer-version}
-  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rust/repos/community-i686/PKGBUILD (from rev 135914, 
rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-26 23:49:32 UTC (rev 135915)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Daniel Micay danielmi...@gmail.com
+
+pkgname=rust
+pkgver=1.1.0
+epoch=1
+pkgrel=1
+arch=('x86_64' 'i686')
+pkgdesc='Systems programming language focused on safety, speed and concurrency'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+makedepends=('libffi' 'perl' 'python2' 'curl')
+source=(http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz{,.asc})
+sha256sums=('cb09f443b37ec1b81fe73c04eb413f9f656859cf7d00bc5088008cbc2a63fa8a'
+'SKIP')
+install=$pkgname.install
+options=(staticlibs !strip)
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) rust-...@rust-lang.org
+#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
+
+prepare() {
+  cd rustc-$pkgver
+
+  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
+}
+
+build() {
+  cd rustc-$pkgver
+
+  ./configure --prefix=/usr --disable-docs --release-channel=stable
+  make
+}
+
+package() {
+  cd rustc-$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  install -Dm644 LICENSE-APACHE \
+$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE
+  install -Dm644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT
+
+  cd $pkgdir/usr/lib
+  rm rustlib/{components,manifest-rustc,rust-installer-version}
+  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/rust.install
===
--- community-i686/rust.install 2015-06-26 23:48:35 UTC (rev 135914)
+++ community-i686/rust.install 2015-06-26 23:49:32 UTC (rev 135915)
@@ -1,13 +0,0 @@
-post_install() {
-  if type -P update-mime-database  /dev/null; then
-update-mime-database usr/share/mime /dev/null
-  fi
-}
-
-post_upgrade() {
-  

[arch-commits] Commit in rust/repos (8 files)

2015-06-02 Thread Alexander Rødseth
Date: Tuesday, June 2, 2015 @ 11:52:58
  Author: arodseth
Revision: 134525

archrelease: copy trunk to community-x86_64, community-i686

Added:
  rust/repos/community-i686/PKGBUILD
(from rev 134524, rust/trunk/PKGBUILD)
  rust/repos/community-i686/rust.install
(from rev 134524, rust/trunk/rust.install)
  rust/repos/community-x86_64/PKGBUILD
(from rev 134524, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/rust.install
(from rev 134524, rust/trunk/rust.install)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-i686/rust.install
  rust/repos/community-x86_64/PKGBUILD
  rust/repos/community-x86_64/rust.install

---+
 /PKGBUILD |   98 
 /rust.install |   26 ++
 community-i686/PKGBUILD   |   49 
 community-i686/rust.install   |   13 -
 community-x86_64/PKGBUILD |   49 
 community-x86_64/rust.install |   13 -
 6 files changed, 124 insertions(+), 124 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-06-02 09:51:49 UTC (rev 134524)
+++ community-i686/PKGBUILD 2015-06-02 09:52:58 UTC (rev 134525)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Daniel Micay danielmi...@gmail.com
-
-pkgname=rust
-pkgver=1.0.0
-epoch=1
-pkgrel=2
-arch=('x86_64' 'i686')
-pkgdesc='Systems programming language focused on safety, speed and concurrency'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-makedepends=('libffi' 'perl' 'python2' 'curl')
-source=(http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz{,.asc})
-sha256sums=('c304cbd4f7b25d116b73c249f66bdb5c9da8645855ce195a41bda5077b995eba'
-'SKIP')
-install=$pkgname.install
-options=(staticlibs !strip)
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) rust-...@rust-lang.org
-#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
-
-prepare() {
-  cd rustc-$pkgver
-
-  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
-}
-
-build() {
-  cd rustc-$pkgver
-
-  ./configure --prefix=/usr --disable-docs
-  make
-}
-
-package() {
-  cd rustc-$pkgver
-
-  make DESTDIR=$pkgdir install
-
-  install -Dm644 LICENSE-APACHE \
-$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE
-  install -Dm644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT
-
-  cd $pkgdir/usr/lib
-  rm rustlib/{components,manifest-rustc,rust-installer-version}
-  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rust/repos/community-i686/PKGBUILD (from rev 134524, 
rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-06-02 09:52:58 UTC (rev 134525)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Daniel Micay danielmi...@gmail.com
+
+pkgname=rust
+pkgver=1.0.0
+epoch=1
+pkgrel=3
+arch=('x86_64' 'i686')
+pkgdesc='Systems programming language focused on safety, speed and concurrency'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+makedepends=('libffi' 'perl' 'python2' 'curl')
+source=(http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz{,.asc})
+sha256sums=('c304cbd4f7b25d116b73c249f66bdb5c9da8645855ce195a41bda5077b995eba'
+'SKIP')
+install=$pkgname.install
+options=(staticlibs !strip)
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) rust-...@rust-lang.org
+#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
+
+prepare() {
+  cd rustc-$pkgver
+
+  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
+}
+
+build() {
+  cd rustc-$pkgver
+
+  ./configure --prefix=/usr --disable-docs --release-channel=stable
+  make
+}
+
+package() {
+  cd rustc-$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  install -Dm644 LICENSE-APACHE \
+$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE
+  install -Dm644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT
+
+  cd $pkgdir/usr/lib
+  rm rustlib/{components,manifest-rustc,rust-installer-version}
+  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/rust.install
===
--- community-i686/rust.install 2015-06-02 09:51:49 UTC (rev 134524)
+++ community-i686/rust.install 2015-06-02 09:52:58 UTC (rev 134525)
@@ -1,13 +0,0 @@
-post_install() {
-  if type -P update-mime-database  /dev/null; then
-update-mime-database usr/share/mime /dev/null
-  fi
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  

[arch-commits] Commit in rust/repos (8 files)

2015-05-17 Thread Alexander Rødseth
Date: Sunday, May 17, 2015 @ 23:09:13
  Author: arodseth
Revision: 133676

archrelease: copy trunk to community-x86_64, community-i686

Added:
  rust/repos/community-i686/PKGBUILD
(from rev 133675, rust/trunk/PKGBUILD)
  rust/repos/community-i686/rust.install
(from rev 133675, rust/trunk/rust.install)
  rust/repos/community-x86_64/PKGBUILD
(from rev 133675, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/rust.install
(from rev 133675, rust/trunk/rust.install)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-i686/rust.install
  rust/repos/community-x86_64/PKGBUILD
  rust/repos/community-x86_64/rust.install

---+
 /PKGBUILD |   98 
 /rust.install |   26 ++
 community-i686/PKGBUILD   |   49 
 community-i686/rust.install   |   13 -
 community-x86_64/PKGBUILD |   49 
 community-x86_64/rust.install |   13 -
 6 files changed, 124 insertions(+), 124 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-17 21:09:01 UTC (rev 133675)
+++ community-i686/PKGBUILD 2015-05-17 21:09:13 UTC (rev 133676)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Daniel Micay danielmi...@gmail.com
-
-pkgname=rust
-pkgver=1.0.0
-epoch=1
-pkgrel=1
-arch=('x86_64' 'i686')
-pkgdesc='Systems programming language focused on safety, speed and concurrency'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-makedepends=('libffi' 'perl' 'python2' 'curl')
-source=(http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz{,.asc})
-sha256sums=('c304cbd4f7b25d116b73c249f66bdb5c9da8645855ce195a41bda5077b995eba'
-'SKIP')
-install=$pkgname.install
-options=('staticlibs')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) rust-...@rust-lang.org
-#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
-
-prepare() {
-  cd rustc-$pkgver
-
-  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
-}
-
-build() {
-  cd rustc-$pkgver
-
-  ./configure --prefix=/usr --disable-docs --release-channel=beta
-  make
-}
-
-package() {
-  cd rustc-$pkgver
-
-  make DESTDIR=$pkgdir install
-
-  install -Dm644 LICENSE-APACHE \
-$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE
-  install -Dm644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT
-
-  cd $pkgdir/usr/lib
-  rm rustlib/{components,manifest-rustc,rust-installer-version}
-  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rust/repos/community-i686/PKGBUILD (from rev 133675, 
rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-17 21:09:13 UTC (rev 133676)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Daniel Micay danielmi...@gmail.com
+
+pkgname=rust
+pkgver=1.0.0
+epoch=1
+pkgrel=2
+arch=('x86_64' 'i686')
+pkgdesc='Systems programming language focused on safety, speed and concurrency'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+makedepends=('libffi' 'perl' 'python2' 'curl')
+source=(http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz{,.asc})
+sha256sums=('c304cbd4f7b25d116b73c249f66bdb5c9da8645855ce195a41bda5077b995eba'
+'SKIP')
+install=$pkgname.install
+options=(staticlibs !strip)
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) rust-...@rust-lang.org
+#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
+
+prepare() {
+  cd rustc-$pkgver
+
+  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
+}
+
+build() {
+  cd rustc-$pkgver
+
+  ./configure --prefix=/usr --disable-docs
+  make
+}
+
+package() {
+  cd rustc-$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  install -Dm644 LICENSE-APACHE \
+$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE
+  install -Dm644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT
+
+  cd $pkgdir/usr/lib
+  rm rustlib/{components,manifest-rustc,rust-installer-version}
+  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/rust.install
===
--- community-i686/rust.install 2015-05-17 21:09:01 UTC (rev 133675)
+++ community-i686/rust.install 2015-05-17 21:09:13 UTC (rev 133676)
@@ -1,13 +0,0 @@
-post_install() {
-  if type -P update-mime-database  /dev/null; then
-update-mime-database usr/share/mime /dev/null
-  fi
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  

[arch-commits] Commit in rust/repos (8 files)

2015-05-16 Thread Alexander Rødseth
Date: Saturday, May 16, 2015 @ 14:53:49
  Author: arodseth
Revision: 133579

archrelease: copy trunk to community-x86_64, community-i686

Added:
  rust/repos/community-i686/PKGBUILD
(from rev 133578, rust/trunk/PKGBUILD)
  rust/repos/community-i686/rust.install
(from rev 133578, rust/trunk/rust.install)
  rust/repos/community-x86_64/PKGBUILD
(from rev 133578, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/rust.install
(from rev 133578, rust/trunk/rust.install)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-i686/rust.install
  rust/repos/community-x86_64/PKGBUILD
  rust/repos/community-x86_64/rust.install

---+
 /PKGBUILD |   96 
 /rust.install |   26 ++
 community-i686/PKGBUILD   |   49 
 community-i686/rust.install   |   13 -
 community-x86_64/PKGBUILD |   49 
 community-x86_64/rust.install |   13 -
 6 files changed, 122 insertions(+), 124 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-16 12:52:25 UTC (rev 133578)
+++ community-i686/PKGBUILD 2015-05-16 12:53:49 UTC (rev 133579)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Daniel Micay danielmi...@gmail.com
-
-pkgname=rust
-pkgver=1.0.0_beta.5
-pkgrel=1
-arch=('x86_64' 'i686')
-pkgdesc='Systems programming language focused on safety, speed and concurrency'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-makedepends=('libffi' 'perl' 'python2' 'curl')
-source=(http://static.rust-lang.org/dist/rustc-${pkgver/_/-}-src.tar.gz{,.asc})
-sha256sums=('4263ee16cdc554fea9d527699040a75801c020daaf0d57953f8a185d334b0b63'
-'SKIP')
-install=$pkgname.install
-options=('staticlibs')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) rust-...@rust-lang.org
-#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
-
-prepare() {
-  cd rustc-${pkgver/_/-}
-
-  # Use Python 2
-  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
-}
-
-build() {
-  cd rustc-${pkgver/_/-}
-
-  ./configure --prefix=/usr --disable-docs --release-channel=beta
-  make
-}
-
-package() {
-  cd rustc-${pkgver/_/-}
-
-  make DESTDIR=$pkgdir install
-
-  install -Dm644 LICENSE-APACHE \
-$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE
-  install -Dm644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT
-
-  cd $pkgdir/usr/lib
-  rm rustlib/{components,manifest-rustc,rust-installer-version}
-  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rust/repos/community-i686/PKGBUILD (from rev 133578, 
rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-16 12:53:49 UTC (rev 133579)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Daniel Micay danielmi...@gmail.com
+
+pkgname=rust
+pkgver=1.0.0
+pkgrel=1
+arch=('x86_64' 'i686')
+pkgdesc='Systems programming language focused on safety, speed and concurrency'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+makedepends=('libffi' 'perl' 'python2' 'curl')
+source=(http://static.rust-lang.org/dist/rustc-${pkgver/_/-}-src.tar.gz{,.asc})
+sha256sums=('c304cbd4f7b25d116b73c249f66bdb5c9da8645855ce195a41bda5077b995eba'
+'SKIP')
+install=$pkgname.install
+options=('staticlibs' '!strip')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) rust-...@rust-lang.org
+#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
+
+prepare() {
+  cd rustc-${pkgver/_/-}
+
+  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
+}
+
+build() {
+  cd rustc-${pkgver/_/-}
+
+  ./configure --prefix=/usr --disable-docs
+  make
+}
+
+package() {
+  cd rustc-${pkgver/_/-}
+
+  make DESTDIR=$pkgdir install
+
+  install -Dm644 LICENSE-APACHE \
+$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE
+  install -Dm644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT
+
+  cd $pkgdir/usr/lib
+  rm rustlib/{components,manifest-rustc,rust-installer-version}
+  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/rust.install
===
--- community-i686/rust.install 2015-05-16 12:52:25 UTC (rev 133578)
+++ community-i686/rust.install 2015-05-16 12:53:49 UTC (rev 133579)
@@ -1,13 +0,0 @@
-post_install() {
-  if type -P update-mime-database  /dev/null; then
-update-mime-database usr/share/mime /dev/null
-  fi
-}
-

[arch-commits] Commit in rust/repos (8 files)

2015-05-16 Thread Alexander Rødseth
Date: Sunday, May 17, 2015 @ 01:15:19
  Author: arodseth
Revision: 133633

archrelease: copy trunk to community-x86_64, community-i686

Added:
  rust/repos/community-i686/PKGBUILD
(from rev 133632, rust/trunk/PKGBUILD)
  rust/repos/community-i686/rust.install
(from rev 133632, rust/trunk/rust.install)
  rust/repos/community-x86_64/PKGBUILD
(from rev 133632, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/rust.install
(from rev 133632, rust/trunk/rust.install)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-i686/rust.install
  rust/repos/community-x86_64/PKGBUILD
  rust/repos/community-x86_64/rust.install

---+
 /PKGBUILD |   98 
 /rust.install |   26 ++
 community-i686/PKGBUILD   |   48 ---
 community-i686/rust.install   |   13 -
 community-x86_64/PKGBUILD |   48 ---
 community-x86_64/rust.install |   13 -
 6 files changed, 124 insertions(+), 122 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-16 23:14:09 UTC (rev 133632)
+++ community-i686/PKGBUILD 2015-05-16 23:15:19 UTC (rev 133633)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Daniel Micay danielmi...@gmail.com
-
-pkgname=rust
-pkgver=1.0.0
-pkgrel=1
-arch=('x86_64' 'i686')
-pkgdesc='Systems programming language focused on safety, speed and concurrency'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-makedepends=('libffi' 'perl' 'python2' 'curl')
-source=(http://static.rust-lang.org/dist/rustc-${pkgver/_/-}-src.tar.gz{,.asc})
-sha256sums=('c304cbd4f7b25d116b73c249f66bdb5c9da8645855ce195a41bda5077b995eba'
-'SKIP')
-install=$pkgname.install
-options=('staticlibs' '!strip')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) rust-...@rust-lang.org
-#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
-
-prepare() {
-  cd rustc-${pkgver/_/-}
-
-  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
-}
-
-build() {
-  cd rustc-${pkgver/_/-}
-
-  ./configure --prefix=/usr --disable-docs
-  make
-}
-
-package() {
-  cd rustc-${pkgver/_/-}
-
-  make DESTDIR=$pkgdir install
-
-  install -Dm644 LICENSE-APACHE \
-$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE
-  install -Dm644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT
-
-  cd $pkgdir/usr/lib
-  rm rustlib/{components,manifest-rustc,rust-installer-version}
-  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rust/repos/community-i686/PKGBUILD (from rev 133632, 
rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-16 23:15:19 UTC (rev 133633)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Daniel Micay danielmi...@gmail.com
+
+pkgname=rust
+pkgver=1.0.0
+epoch=1
+pkgrel=1
+arch=('x86_64' 'i686')
+pkgdesc='Systems programming language focused on safety, speed and concurrency'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+makedepends=('libffi' 'perl' 'python2' 'curl')
+source=(http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz{,.asc})
+sha256sums=('c304cbd4f7b25d116b73c249f66bdb5c9da8645855ce195a41bda5077b995eba'
+'SKIP')
+install=$pkgname.install
+options=('staticlibs')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) rust-...@rust-lang.org
+#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
+
+prepare() {
+  cd rustc-$pkgver
+
+  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
+}
+
+build() {
+  cd rustc-$pkgver
+
+  ./configure --prefix=/usr --disable-docs --release-channel=beta
+  make
+}
+
+package() {
+  cd rustc-$pkgver
+
+  make DESTDIR=$pkgdir install
+
+  install -Dm644 LICENSE-APACHE \
+$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE
+  install -Dm644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT
+
+  cd $pkgdir/usr/lib
+  rm rustlib/{components,manifest-rustc,rust-installer-version}
+  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/rust.install
===
--- community-i686/rust.install 2015-05-16 23:14:09 UTC (rev 133632)
+++ community-i686/rust.install 2015-05-16 23:15:19 UTC (rev 133633)
@@ -1,13 +0,0 @@
-post_install() {
-  if type -P update-mime-database  /dev/null; then
-update-mime-database usr/share/mime /dev/null
-  fi
-}
-
-post_upgrade() {
-  post_install
-}
-

[arch-commits] Commit in rust/repos (8 files)

2015-05-14 Thread Alexander Rødseth
Date: Thursday, May 14, 2015 @ 17:02:10
  Author: arodseth
Revision: 133437

archrelease: copy trunk to community-x86_64, community-i686

Added:
  rust/repos/community-i686/PKGBUILD
(from rev 133436, rust/trunk/PKGBUILD)
  rust/repos/community-i686/rust.install
(from rev 133436, rust/trunk/rust.install)
  rust/repos/community-x86_64/PKGBUILD
(from rev 133436, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/rust.install
(from rev 133436, rust/trunk/rust.install)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-i686/rust.install
  rust/repos/community-x86_64/PKGBUILD
  rust/repos/community-x86_64/rust.install

---+
 /PKGBUILD |   98 
 /rust.install |   26 ++
 community-i686/PKGBUILD   |   49 
 community-i686/rust.install   |   13 -
 community-x86_64/PKGBUILD |   49 
 community-x86_64/rust.install |   13 -
 6 files changed, 124 insertions(+), 124 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-14 15:01:52 UTC (rev 133436)
+++ community-i686/PKGBUILD 2015-05-14 15:02:10 UTC (rev 133437)
@@ -1,49 +0,0 @@
-# $Id$
-# Maintainer: Alexander Rødseth rods...@gmail.com
-# Contributor: Daniel Micay danielmi...@gmail.com
-
-pkgname=rust
-pkgver=1.0.0_beta.4
-pkgrel=1
-arch=('x86_64' 'i686')
-pkgdesc='Systems programming language focused on safety, speed and concurrency'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-makedepends=('libffi' 'perl' 'python2' 'curl')
-source=(http://static.rust-lang.org/dist/rustc-${pkgver/_/-}-src.tar.gz{,.asc})
-sha256sums=('54e5868dd55a5c171327c72d662b5931a962b0cf160022d11c189ea232e0bd91'
-'SKIP')
-install=$pkgname.install
-options=('staticlibs')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) rust-...@rust-lang.org
-#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
-
-prepare() {
-  cd rustc-${pkgver/_/-}
-
-  # Use Python 2
-  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
-}
-
-build() {
-  cd rustc-${pkgver/_/-}
-
-  ./configure --prefix=/usr --disable-docs --release-channel=beta
-  make
-}
-
-package() {
-  cd rustc-${pkgver/_/-}
-
-  make DESTDIR=$pkgdir install
-
-  install -Dm644 LICENSE-APACHE \
-$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE
-  install -Dm644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT
-
-  cd $pkgdir/usr/lib
-  rm rustlib/{components,manifest-rustc,rust-installer-version}
-  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rust/repos/community-i686/PKGBUILD (from rev 133436, 
rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-14 15:02:10 UTC (rev 133437)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Daniel Micay danielmi...@gmail.com
+
+pkgname=rust
+pkgver=1.0.0_beta.5
+pkgrel=1
+arch=('x86_64' 'i686')
+pkgdesc='Systems programming language focused on safety, speed and concurrency'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+makedepends=('libffi' 'perl' 'python2' 'curl')
+source=(http://static.rust-lang.org/dist/rustc-${pkgver/_/-}-src.tar.gz{,.asc})
+sha256sums=('4263ee16cdc554fea9d527699040a75801c020daaf0d57953f8a185d334b0b63'
+'SKIP')
+install=$pkgname.install
+options=('staticlibs')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) rust-...@rust-lang.org
+#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
+
+prepare() {
+  cd rustc-${pkgver/_/-}
+
+  # Use Python 2
+  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
+}
+
+build() {
+  cd rustc-${pkgver/_/-}
+
+  ./configure --prefix=/usr --disable-docs --release-channel=beta
+  make
+}
+
+package() {
+  cd rustc-${pkgver/_/-}
+
+  make DESTDIR=$pkgdir install
+
+  install -Dm644 LICENSE-APACHE \
+$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE
+  install -Dm644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT
+
+  cd $pkgdir/usr/lib
+  rm rustlib/{components,manifest-rustc,rust-installer-version}
+  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/rust.install
===
--- community-i686/rust.install 2015-05-14 15:01:52 UTC (rev 133436)
+++ community-i686/rust.install 2015-05-14 15:02:10 UTC (rev 133437)
@@ -1,13 +0,0 @@
-post_install() {
-  if type -P update-mime-database  /dev/null; then
-update-mime-database 

[arch-commits] Commit in rust/repos (8 files)

2015-05-07 Thread Alexander Rødseth
Date: Thursday, May 7, 2015 @ 18:58:49
  Author: arodseth
Revision: 132885

archrelease: copy trunk to community-x86_64, community-i686

Added:
  rust/repos/community-i686/PKGBUILD
(from rev 132883, rust/trunk/PKGBUILD)
  rust/repos/community-i686/rust.install
(from rev 132884, rust/trunk/rust.install)
  rust/repos/community-x86_64/PKGBUILD
(from rev 132883, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/rust.install
(from rev 132883, rust/trunk/rust.install)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-i686/rust.install
  rust/repos/community-x86_64/PKGBUILD
  rust/repos/community-x86_64/rust.install

---+
 /PKGBUILD |   98 
 /rust.install |   26 ++
 community-i686/PKGBUILD   |   50 
 community-i686/rust.install   |   13 -
 community-x86_64/PKGBUILD |   50 
 community-x86_64/rust.install |   13 -
 6 files changed, 124 insertions(+), 126 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-05-07 16:58:29 UTC (rev 132884)
+++ community-i686/PKGBUILD 2015-05-07 16:58:49 UTC (rev 132885)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay danielmi...@gmail.com
-
-pkgname=rust
-pkgver=1.0.0.beta.3
-pkgrel=1
-arch=('x86_64' 'i686')
-pkgdesc='Safe, concurrent and practical programming language from Mozilla'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-makedepends=('libffi' 'perl' 'python2' 'curl')
-checkdepends=('git' 'valgrind')
-source=(http://static.rust-lang.org/dist/rustc-${pkgver/.b/-b}-src.tar.gz{,.asc})
-sha256sums=('e751bc8a8ad236c8865697f866b2863e224af56b0194ddf9f3edd71f9ff6545f'
-'SKIP')
-install=$pkgname.install
-options=('staticlibs')
-#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) rust-...@rust-lang.org
-
-build() {
-  cd rustc-${pkgver/.b/-b}
-
-  ./configure --prefix=/usr --disable-debug --disable-docs
-
-  # avoid python makedepend (force fallback to python2)
-  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
-
-  make
-}
-
-#check() {
-#  cd rustc-${pkgver/.b/-b}
-#  make check
-#}
-
-package() {
-  cd rustc-${pkgver/.b/-b}
-
-  make DESTDIR=$pkgdir install
-
-  install -Dm644 LICENSE-APACHE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE
-  install -Dm644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT
-
-  cd $pkgdir/usr/lib
-  rm rustlib/{components,manifest-rustc,rust-installer-version}
-  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
-}
-
-# vim:set ts=2 sw=2 et:

Copied: rust/repos/community-i686/PKGBUILD (from rev 132883, 
rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-05-07 16:58:49 UTC (rev 132885)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Daniel Micay danielmi...@gmail.com
+
+pkgname=rust
+pkgver=1.0.0_beta.4
+pkgrel=1
+arch=('x86_64' 'i686')
+pkgdesc='Systems programming language focused on safety, speed and concurrency'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+makedepends=('libffi' 'perl' 'python2' 'curl')
+source=(http://static.rust-lang.org/dist/rustc-${pkgver/_/-}-src.tar.gz{,.asc})
+sha256sums=('54e5868dd55a5c171327c72d662b5931a962b0cf160022d11c189ea232e0bd91'
+'SKIP')
+install=$pkgname.install
+options=('staticlibs')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) rust-...@rust-lang.org
+#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
+
+prepare() {
+  cd rustc-${pkgver/_/-}
+
+  # Use Python 2
+  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
+}
+
+build() {
+  cd rustc-${pkgver/_/-}
+
+  ./configure --prefix=/usr --disable-docs --release-channel=beta
+  make
+}
+
+package() {
+  cd rustc-${pkgver/_/-}
+
+  make DESTDIR=$pkgdir install
+
+  install -Dm644 LICENSE-APACHE \
+$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE
+  install -Dm644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT
+
+  cd $pkgdir/usr/lib
+  rm rustlib/{components,manifest-rustc,rust-installer-version}
+  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/rust.install
===
--- community-i686/rust.install 2015-05-07 16:58:29 UTC (rev 132884)
+++ community-i686/rust.install 2015-05-07 16:58:49 UTC (rev 132885)
@@ -1,13 +0,0 @@
-post_install() {
-  if type -P update-mime-database  /dev/null; then
- 

[arch-commits] Commit in rust/repos (8 files)

2015-04-27 Thread Alexander Rødseth
Date: Monday, April 27, 2015 @ 16:26:59
  Author: arodseth
Revision: 132326

archrelease: copy trunk to community-x86_64, community-i686

Added:
  rust/repos/community-i686/PKGBUILD
(from rev 132325, rust/trunk/PKGBUILD)
  rust/repos/community-i686/rust.install
(from rev 132325, rust/trunk/rust.install)
  rust/repos/community-x86_64/PKGBUILD
(from rev 132325, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/rust.install
(from rev 132325, rust/trunk/rust.install)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-i686/rust.install
  rust/repos/community-x86_64/PKGBUILD
  rust/repos/community-x86_64/rust.install

---+
 /PKGBUILD |  100 
 /rust.install |   26 ++
 community-i686/PKGBUILD   |   48 ---
 community-i686/rust.install   |   13 -
 community-x86_64/PKGBUILD |   48 ---
 community-x86_64/rust.install |   13 -
 6 files changed, 126 insertions(+), 122 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-04-27 14:25:23 UTC (rev 132325)
+++ community-i686/PKGBUILD 2015-04-27 14:26:59 UTC (rev 132326)
@@ -1,48 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay danielmi...@gmail.com
-
-pkgname=rust
-_pkgver=1.0.0-alpha.2
-pkgver=1.0.0.alpha.2
-pkgrel=1
-arch=(i686 x86_64)
-pkgdesc='A safe, concurrent, practical language'
-url='http://www.rust-lang.org/'
-license=(MIT Apache)
-depends=(gcc)
-makedepends=(libffi perl python2 curl)
-checkdepends=(git valgrind)
-source=(http://static.rust-lang.org/dist/rustc-$_pkgver-src.tar.gz{,.asc})
-sha256sums=('a931b945e98f409df68fdff23e98b688024461c28901106896e73708381956c8'
-'SKIP')
-install=rust.install
-options=(staticlibs)
-validpgpkeys=(108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE) # Rust Language (Tag 
and Release Signing Key) rust-...@rust-lang.org
-
-build() {
-  cd rustc-$_pkgver
-
-  ./configure --prefix=/usr --disable-debug --disable-docs 
--disable-verify-install
-
-  # avoid python makedepend (force fallback to python2)
-  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
-
-  make
-}
-
-check() {
-  cd rustc-$_pkgver
-  #make check
-}
-
-package() {
-  cd rustc-$_pkgver
-  make DESTDIR=$pkgdir install
-
-  install -D -m644 LICENSE-APACHE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE
-  install -D -m644 LICENSE-MIT 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT
-
-  cd $pkgdir/usr/lib
-  rm rustlib/{components,manifest-rustc,rust-installer-version}
-  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
-}

Copied: rust/repos/community-i686/PKGBUILD (from rev 132325, 
rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-04-27 14:26:59 UTC (rev 132326)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Daniel Micay danielmi...@gmail.com
+
+pkgname=rust
+pkgver=1.0.0.beta.3
+pkgrel=1
+arch=('x86_64' 'i686')
+pkgdesc='Safe, concurrent and practical programming language from Mozilla'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+makedepends=('libffi' 'perl' 'python2' 'curl')
+checkdepends=('git' 'valgrind')
+source=(http://static.rust-lang.org/dist/rustc-${pkgver/.b/-b}-src.tar.gz{,.asc})
+sha256sums=('e751bc8a8ad236c8865697f866b2863e224af56b0194ddf9f3edd71f9ff6545f'
+'SKIP')
+install=$pkgname.install
+options=('staticlibs')
+#gpg --keyserver hkp://keys.gnupg.net --recv-keys 
108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag 
and Release Signing Key) rust-...@rust-lang.org
+
+build() {
+  cd rustc-${pkgver/.b/-b}
+
+  ./configure --prefix=/usr --disable-debug --disable-docs
+
+  # avoid python makedepend (force fallback to python2)
+  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
+
+  make
+}
+
+#check() {
+#  cd rustc-${pkgver/.b/-b}
+#  make check
+#}
+
+package() {
+  cd rustc-${pkgver/.b/-b}
+
+  make DESTDIR=$pkgdir install
+
+  install -Dm644 LICENSE-APACHE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE
+  install -Dm644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT
+
+  cd $pkgdir/usr/lib
+  rm rustlib/{components,manifest-rustc,rust-installer-version}
+  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: community-i686/rust.install
===
--- community-i686/rust.install 2015-04-27 14:25:23 UTC (rev 132325)
+++ community-i686/rust.install 2015-04-27 14:26:59 UTC (rev 132326)
@@ -1,13 +0,0 @@
-post_install() {
-  if type -P update-mime-database  /dev/null; then
-update-mime-database usr/share/mime /dev/null
-  fi
-}
-
-post_upgrade() {
-  post_install
-}
-

[arch-commits] Commit in rust/repos (8 files)

2015-02-23 Thread Anatol Pomozov
Date: Monday, February 23, 2015 @ 23:33:53
  Author: anatolik
Revision: 128160

archrelease: copy trunk to community-i686, community-x86_64

Added:
  rust/repos/community-i686/PKGBUILD
(from rev 128159, rust/trunk/PKGBUILD)
  rust/repos/community-i686/rust.install
(from rev 128159, rust/trunk/rust.install)
  rust/repos/community-x86_64/PKGBUILD
(from rev 128159, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/rust.install
(from rev 128159, rust/trunk/rust.install)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-i686/rust.install
  rust/repos/community-x86_64/PKGBUILD
  rust/repos/community-x86_64/rust.install

---+
 /PKGBUILD |   96 
 /rust.install |   26 ++
 community-i686/PKGBUILD   |   64 --
 community-i686/rust.install   |   13 -
 community-x86_64/PKGBUILD |   64 --
 community-x86_64/rust.install |   13 -
 6 files changed, 122 insertions(+), 154 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-02-23 22:32:04 UTC (rev 128159)
+++ community-i686/PKGBUILD 2015-02-23 22:33:53 UTC (rev 128160)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay danielmi...@gmail.com
-
-pkgname=rust
-_pkgver=1.0.0-alpha
-pkgver=1.0.0.alpha
-pkgrel=3
-arch=(i686 x86_64)
-pkgdesc='A safe, concurrent, practical language'
-url='http://www.rust-lang.org/'
-license=(MIT Apache)
-depends=(gcc)
-makedepends=(libffi perl python2 curl)
-checkdepends=(git valgrind)
-source=(http://static.rust-lang.org/dist/rustc-$_pkgver-src.tar.gz{,.asc})
-sha256sums=('3a2285726e839fc57ad49ed8907a50bab2d29d8f898e2d5a02f620a0477fc25c'
-'SKIP')
-install=rust.install
-options=(staticlibs)
-validpgpkeys=(108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE) # Rust Language (Tag 
and Release Signing Key) rust-...@rust-lang.org
-
-build() {
-  cd rustc-$_pkgver
-
-  ./configure --prefix=/usr --disable-debug --disable-docs 
--disable-verify-install
-
-  # avoid python makedepend (force fallback to python2)
-  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
-
-  make
-}
-
-check() {
-  cd rustc-$_pkgver
-  #make check
-}
-
-package() {
-  cd rustc-$_pkgver
-  make DESTDIR=$pkgdir install
-
-  mkdir -p $pkgdir/usr/share/vim $pkgdir/usr/share/licenses/$pkgname
-
-  cp -a src/etc/vim $pkgdir/usr/share/vim/vimfiles
-  find $pkgdir/usr/share/vim -type f -exec chmod 644 {} +
-  find $pkgdir/usr/share/vim -type d -exec chmod 755 {} +
-
-  install -Dm644 src/etc/zsh/_rust $pkgdir/usr/share/zsh/site-functions/_rust
-  install -Dm644 src/etc/kate/rust.xml 
$pkgdir/usr/share/apps/katepart/syntax/rust.xml
-  install -Dm644 src/etc/gedit/share/mime/packages/rust.xml \
-$pkgdir/usr/share/mime/packages/rust.xml
-  install -Dm644 
src/etc/gedit/share/gtksourceview-3.0/language-specs/rust.lang \
-$pkgdir/usr/share/gtksourceview-3.0/language-specs/rust.lang
-
-  install -m644 LICENSE-APACHE $pkgdir/usr/share/licenses/$pkgname
-  install -m644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname
-
-  cd src/etc/emacs
-  install -Dm644 rust-mode.el $pkgdir/usr/share/emacs/site-lisp/rust-mode.el
-
-  cd $pkgdir/usr/lib
-  rm rustlib/{components,manifest-rustc,rust-installer-version}
-  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/*.so .
-}

Copied: rust/repos/community-i686/PKGBUILD (from rev 128159, 
rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-02-23 22:33:53 UTC (rev 128160)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Daniel Micay danielmi...@gmail.com
+
+pkgname=rust
+_pkgver=1.0.0-alpha.2
+pkgver=1.0.0.alpha.2
+pkgrel=1
+arch=(i686 x86_64)
+pkgdesc='A safe, concurrent, practical language'
+url='http://www.rust-lang.org/'
+license=(MIT Apache)
+depends=(gcc)
+makedepends=(libffi perl python2 curl)
+checkdepends=(git valgrind)
+source=(http://static.rust-lang.org/dist/rustc-$_pkgver-src.tar.gz{,.asc})
+sha256sums=('a931b945e98f409df68fdff23e98b688024461c28901106896e73708381956c8'
+'SKIP')
+install=rust.install
+options=(staticlibs)
+validpgpkeys=(108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE) # Rust Language (Tag 
and Release Signing Key) rust-...@rust-lang.org
+
+build() {
+  cd rustc-$_pkgver
+
+  ./configure --prefix=/usr --disable-debug --disable-docs 
--disable-verify-install
+
+  # avoid python makedepend (force fallback to python2)
+  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
+
+  make
+}
+
+check() {
+  cd rustc-$_pkgver
+  #make check
+}
+
+package() {
+  cd rustc-$_pkgver
+  make DESTDIR=$pkgdir install
+
+  install -D -m644 LICENSE-APACHE 
$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE
+  install -D -m644 LICENSE-MIT 

[arch-commits] Commit in rust/repos (8 files)

2015-01-14 Thread Daniel Micay
Date: Wednesday, January 14, 2015 @ 18:11:37
  Author: thestinger
Revision: 125924

archrelease: copy trunk to community-i686, community-x86_64

Added:
  rust/repos/community-i686/PKGBUILD
(from rev 125923, rust/trunk/PKGBUILD)
  rust/repos/community-i686/rust.install
(from rev 125923, rust/trunk/rust.install)
  rust/repos/community-x86_64/PKGBUILD
(from rev 125923, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/rust.install
(from rev 125923, rust/trunk/rust.install)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-i686/rust.install
  rust/repos/community-x86_64/PKGBUILD
  rust/repos/community-x86_64/rust.install

---+
 /PKGBUILD |  136 
 /rust.install |   22 ++
 community-i686/PKGBUILD   |   63 --
 community-i686/rust.install   |   11 ---
 community-x86_64/PKGBUILD |   63 --
 community-x86_64/rust.install |   11 ---
 6 files changed, 158 insertions(+), 148 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-01-14 17:10:50 UTC (rev 125923)
+++ community-i686/PKGBUILD 2015-01-14 17:11:37 UTC (rev 125924)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay danielmi...@gmail.com
-pkgname=rust
-pkgver=0.12.0
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc='A safe, concurrent, practical language'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-depends=(gcc shared-mime-info)
-makedepends=(libffi perl python2 curl)
-source=(http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz;
-http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz.asc;)
-sha256sums=('883e66b24d90d9957c5c538469fcde6f0668e5fb6448beecfc60884060e769b7'
-'SKIP')
-install=rust.install
-options=(staticlibs)
-
-build() {
-  cd rust-$pkgver
-
-  ./configure --prefix=/usr --disable-debug --disable-docs 
--disable-verify-install
-
-  # avoid python makedepend (force fallback to python2)
-  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
-
-  make
-}
-
-#check() {
-  #cd rust-$pkgver
-  #make check
-#}
-
-package() {
-  cd rust-$pkgver
-  make DESTDIR=$pkgdir install
-
-  mkdir -p $pkgdir/usr/share/vim $pkgdir/usr/share/licenses/$pkgname
-
-  cp -a src/etc/vim $pkgdir/usr/share/vim/vimfiles
-  find $pkgdir/usr/share/vim -type f -exec chmod 644 {} +
-  find $pkgdir/usr/share/vim -type d -exec chmod 755 {} +
-
-  install -Dm644 src/etc/zsh/_rust $pkgdir/usr/share/zsh/site-functions/_rust
-  install -Dm644 src/etc/kate/rust.xml 
$pkgdir/usr/share/apps/katepart/syntax/rust.xml
-  install -Dm644 src/etc/gedit/share/mime/packages/rust.xml \
-$pkgdir/usr/share/mime/packages/rust.xml
-  install -Dm644 
src/etc/gedit/share/gtksourceview-3.0/language-specs/rust.lang \
-$pkgdir/usr/share/gtksourceview-3.0/language-specs/rust.lang
-
-  install -m644 LICENSE-APACHE $pkgdir/usr/share/licenses/$pkgname
-  install -m644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname
-
-  cd src/etc/emacs
-  install -Dm644 rust-mode.el $pkgdir/usr/share/emacs/site-lisp/rust-mode.el
-
-  cd $pkgdir/usr
-
-  cd lib
-  rm rustlib/manifest
-  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/* .
-}

Copied: rust/repos/community-i686/PKGBUILD (from rev 125923, 
rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-01-14 17:11:37 UTC (rev 125924)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Daniel Micay danielmi...@gmail.com
+pkgname=rust
+_pkgver=1.0.0-alpha
+pkgver=1.0.0.alpha
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc='A safe, concurrent, practical language'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+depends=(gcc shared-mime-info)
+makedepends=(libffi perl python2 curl)
+source=(http://static.rust-lang.org/dist/rustc-$_pkgver-src.tar.gz;
+http://static.rust-lang.org/dist/rustc-$_pkgver-src.tar.gz.asc;)
+sha256sums=('3a2285726e839fc57ad49ed8907a50bab2d29d8f898e2d5a02f620a0477fc25c'
+'SKIP')
+install=rust.install
+options=(staticlibs)
+validpgpkeys=(
+  # Rust Language (Tag and Release Signing Key) 
rust-...@rust-lang.org
+  108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
+)
+
+build() {
+  cd rustc-$_pkgver
+
+  ./configure --prefix=/usr --disable-debug --disable-docs 
--disable-verify-install
+
+  # avoid python makedepend (force fallback to python2)
+  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
+
+  make
+}
+
+#check() {
+  #cd rust-$_pkgver
+  #make check
+#}
+
+package() {
+  cd rustc-$_pkgver
+  make DESTDIR=$pkgdir install
+
+  mkdir -p $pkgdir/usr/share/vim $pkgdir/usr/share/licenses/$pkgname
+
+  cp -a src/etc/vim $pkgdir/usr/share/vim/vimfiles
+  find $pkgdir/usr/share/vim -type f -exec chmod 644 {} +
+  find 

[arch-commits] Commit in rust/repos (8 files)

2014-10-10 Thread Daniel Micay
Date: Friday, October 10, 2014 @ 08:11:29
  Author: thestinger
Revision: 120466

archrelease: copy trunk to community-i686, community-x86_64

Added:
  rust/repos/community-i686/PKGBUILD
(from rev 120465, rust/trunk/PKGBUILD)
  rust/repos/community-i686/rust.install
(from rev 120465, rust/trunk/rust.install)
  rust/repos/community-x86_64/PKGBUILD
(from rev 120465, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/rust.install
(from rev 120465, rust/trunk/rust.install)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-i686/rust.install
  rust/repos/community-x86_64/PKGBUILD
  rust/repos/community-x86_64/rust.install

---+
 /PKGBUILD |  126 
 /rust.install |   22 ++
 community-i686/PKGBUILD   |   63 
 community-i686/rust.install   |   11 ---
 community-x86_64/PKGBUILD |   63 
 community-x86_64/rust.install |   11 ---
 6 files changed, 148 insertions(+), 148 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-10-10 06:10:57 UTC (rev 120465)
+++ community-i686/PKGBUILD 2014-10-10 06:11:29 UTC (rev 120466)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay danielmi...@gmail.com
-pkgname=rust
-pkgver=0.11.0
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc='A safe, concurrent, practical language'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-depends=(gcc shared-mime-info)
-makedepends=(libffi perl python2 curl)
-source=(http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz;
-http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz.asc;)
-sha256sums=('d1b3e36448bf12b8c9289024df416de10774b6d3235d7b1d22b248ef634411ba'
-'SKIP')
-install=rust.install
-options=(staticlibs)
-
-build() {
-  cd rust-$pkgver
-
-  ./configure --prefix=/usr --disable-docs --disable-rpath 
--disable-verify-install
-
-  # avoid python makedepend (force fallback to python2)
-  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
-
-  make
-}
-
-#check() {
-  #cd rust-$pkgver
-  #make check
-#}
-
-package() {
-  cd rust-$pkgver
-  make DESTDIR=$pkgdir install
-
-  mkdir -p $pkgdir/usr/share/vim $pkgdir/usr/share/licenses/$pkgname
-
-  cp -a src/etc/vim $pkgdir/usr/share/vim/vimfiles
-  find $pkgdir/usr/share/vim -type f -exec chmod 644 {} +
-  find $pkgdir/usr/share/vim -type d -exec chmod 755 {} +
-
-  install -Dm644 src/etc/zsh/_rust $pkgdir/usr/share/zsh/site-functions/_rust
-  install -Dm644 src/etc/kate/rust.xml 
$pkgdir/usr/share/apps/katepart/syntax/rust.xml
-  install -Dm644 src/etc/gedit/share/mime/packages/rust.xml \
-$pkgdir/usr/share/mime/packages/rust.xml
-  install -Dm644 
src/etc/gedit/share/gtksourceview-3.0/language-specs/rust.lang \
-$pkgdir/usr/share/gtksourceview-3.0/language-specs/rust.lang
-
-  install -m644 LICENSE-APACHE $pkgdir/usr/share/licenses/$pkgname
-  install -m644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname
-
-  cd src/etc/emacs
-  install -Dm644 rust-mode.el $pkgdir/usr/share/emacs/site-lisp/rust-mode.el
-
-  cd $pkgdir/usr
-
-  cd lib
-  rm rustlib/manifest
-  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/* .
-}

Copied: rust/repos/community-i686/PKGBUILD (from rev 120465, 
rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-10-10 06:11:29 UTC (rev 120466)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Daniel Micay danielmi...@gmail.com
+pkgname=rust
+pkgver=0.12.0
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc='A safe, concurrent, practical language'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+depends=(gcc shared-mime-info)
+makedepends=(libffi perl python2 curl)
+source=(http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz;
+http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz.asc;)
+sha256sums=('883e66b24d90d9957c5c538469fcde6f0668e5fb6448beecfc60884060e769b7'
+'SKIP')
+install=rust.install
+options=(staticlibs)
+
+build() {
+  cd rust-$pkgver
+
+  ./configure --prefix=/usr --disable-debug --disable-docs 
--disable-verify-install
+
+  # avoid python makedepend (force fallback to python2)
+  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
+
+  make
+}
+
+#check() {
+  #cd rust-$pkgver
+  #make check
+#}
+
+package() {
+  cd rust-$pkgver
+  make DESTDIR=$pkgdir install
+
+  mkdir -p $pkgdir/usr/share/vim $pkgdir/usr/share/licenses/$pkgname
+
+  cp -a src/etc/vim $pkgdir/usr/share/vim/vimfiles
+  find $pkgdir/usr/share/vim -type f -exec chmod 644 {} +
+  find $pkgdir/usr/share/vim -type d -exec chmod 755 {} +
+
+  install -Dm644 src/etc/zsh/_rust $pkgdir/usr/share/zsh/site-functions/_rust
+  install -Dm644 src/etc/kate/rust.xml 

[arch-commits] Commit in rust/repos (8 files)

2014-07-02 Thread Daniel Micay
Date: Thursday, July 3, 2014 @ 06:17:03
  Author: thestinger
Revision: 114694

archrelease: copy trunk to community-i686, community-x86_64

Added:
  rust/repos/community-i686/PKGBUILD
(from rev 114693, rust/trunk/PKGBUILD)
  rust/repos/community-i686/rust.install
(from rev 114693, rust/trunk/rust.install)
  rust/repos/community-x86_64/PKGBUILD
(from rev 114693, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/rust.install
(from rev 114693, rust/trunk/rust.install)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-i686/rust.install
  rust/repos/community-x86_64/PKGBUILD
  rust/repos/community-x86_64/rust.install

---+
 /PKGBUILD |  126 
 /rust.install |   22 ++
 community-i686/PKGBUILD   |   63 
 community-i686/rust.install   |   11 ---
 community-x86_64/PKGBUILD |   63 
 community-x86_64/rust.install |   11 ---
 6 files changed, 148 insertions(+), 148 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-03 04:16:31 UTC (rev 114693)
+++ community-i686/PKGBUILD 2014-07-03 04:17:03 UTC (rev 114694)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay danielmi...@gmail.com
-pkgname=rust
-pkgver=0.10
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc='A safe, concurrent, practical language'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-depends=(gcc shared-mime-info)
-makedepends=(libffi perl python2 curl)
-source=(http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz;
-http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz.asc;)
-sha256sums=('c72cfbbf03016804a81d7b68e8258ffaf018f8f5a25550ad64571ce6c2642cf9'
-'SKIP')
-install=rust.install
-options=(staticlibs)
-
-build() {
-  cd rust-$pkgver
-
-  ./configure --prefix=/usr --disable-docs --disable-rpath 
--disable-verify-install
-
-  # avoid python makedepend (force fallback to python2)
-  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
-
-  make
-}
-
-#check() {
-  #cd rust-$pkgver
-  #make check
-#}
-
-package() {
-  cd rust-$pkgver
-  make DESTDIR=$pkgdir install
-
-  mkdir -p $pkgdir/usr/share/vim $pkgdir/usr/share/licenses/$pkgname
-
-  cp -a src/etc/vim $pkgdir/usr/share/vim/vimfiles
-  find $pkgdir/usr/share/vim -type f -exec chmod 644 {} +
-  find $pkgdir/usr/share/vim -type d -exec chmod 755 {} +
-
-  install -Dm644 src/etc/zsh/_rust $pkgdir/usr/share/zsh/site-functions/_rust
-  install -Dm644 src/etc/kate/rust.xml 
$pkgdir/usr/share/apps/katepart/syntax/rust.xml
-  install -Dm644 src/etc/gedit/share/mime/packages/rust.xml \
-$pkgdir/usr/share/mime/packages/rust.xml
-  install -Dm644 
src/etc/gedit/share/gtksourceview-3.0/language-specs/rust.lang \
-$pkgdir/usr/share/gtksourceview-3.0/language-specs/rust.lang
-
-  install -m644 LICENSE-APACHE $pkgdir/usr/share/licenses/$pkgname
-  install -m644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname
-
-  cd src/etc/emacs
-  install -Dm644 rust-mode.el $pkgdir/usr/share/emacs/site-lisp/rust-mode.el
-
-  cd $pkgdir/usr
-
-  cd lib
-  rm rustlib/manifest
-  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/* .
-}

Copied: rust/repos/community-i686/PKGBUILD (from rev 114693, 
rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-03 04:17:03 UTC (rev 114694)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Daniel Micay danielmi...@gmail.com
+pkgname=rust
+pkgver=0.11.0
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc='A safe, concurrent, practical language'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+depends=(gcc shared-mime-info)
+makedepends=(libffi perl python2 curl)
+source=(http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz;
+http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz.asc;)
+sha256sums=('d1b3e36448bf12b8c9289024df416de10774b6d3235d7b1d22b248ef634411ba'
+'SKIP')
+install=rust.install
+options=(staticlibs)
+
+build() {
+  cd rust-$pkgver
+
+  ./configure --prefix=/usr --disable-docs --disable-rpath 
--disable-verify-install
+
+  # avoid python makedepend (force fallback to python2)
+  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
+
+  make
+}
+
+#check() {
+  #cd rust-$pkgver
+  #make check
+#}
+
+package() {
+  cd rust-$pkgver
+  make DESTDIR=$pkgdir install
+
+  mkdir -p $pkgdir/usr/share/vim $pkgdir/usr/share/licenses/$pkgname
+
+  cp -a src/etc/vim $pkgdir/usr/share/vim/vimfiles
+  find $pkgdir/usr/share/vim -type f -exec chmod 644 {} +
+  find $pkgdir/usr/share/vim -type d -exec chmod 755 {} +
+
+  install -Dm644 src/etc/zsh/_rust $pkgdir/usr/share/zsh/site-functions/_rust
+  install -Dm644 src/etc/kate/rust.xml 
$pkgdir/usr/share/apps/katepart/syntax/rust.xml

[arch-commits] Commit in rust/repos (8 files)

2014-04-03 Thread Daniel Micay
Date: Thursday, April 3, 2014 @ 22:27:41
  Author: thestinger
Revision: 108786

archrelease: copy trunk to community-i686, community-x86_64

Added:
  rust/repos/community-i686/PKGBUILD
(from rev 108785, rust/trunk/PKGBUILD)
  rust/repos/community-i686/rust.install
(from rev 108785, rust/trunk/rust.install)
  rust/repos/community-x86_64/PKGBUILD
(from rev 108785, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/rust.install
(from rev 108785, rust/trunk/rust.install)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-i686/rust.install
  rust/repos/community-x86_64/PKGBUILD
  rust/repos/community-x86_64/rust.install

---+
 /PKGBUILD |  126 
 /rust.install |   22 ++
 community-i686/PKGBUILD   |   65 
 community-i686/rust.install   |   11 ---
 community-x86_64/PKGBUILD |   65 
 community-x86_64/rust.install |   11 ---
 6 files changed, 148 insertions(+), 152 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-04-03 20:26:39 UTC (rev 108785)
+++ community-i686/PKGBUILD 2014-04-03 20:27:41 UTC (rev 108786)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay danielmi...@gmail.com
-pkgname=rust
-pkgver=0.9
-pkgrel=2
-arch=('i686' 'x86_64')
-pkgdesc='A safe, concurrent, practical language'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-depends=(gcc shared-mime-info)
-makedepends=(libffi perl python2 curl chrpath)
-source=(http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz;
-http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz.asc;)
-sha256sums=('c0911c3545b797a1ca16f3d76bf5ed234754b828efd1e22c182c7300ac7dd5d1'
-'SKIP')
-install=rust.install
-options=(staticlibs)
-
-build() {
-  cd rust-$pkgver
-
-  ./configure --prefix=/usr --disable-docs
-
-  # avoid python makedepend (force fallback to python2)
-  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
-
-  make
-}
-
-#check() {
-  #cd rust-$pkgver
-  #make check
-#}
-
-package() {
-  cd rust-$pkgver
-  make DESTDIR=$pkgdir install
-
-  mkdir -p $pkgdir/usr/share/vim $pkgdir/usr/share/licenses/$pkgname
-
-  cp -a src/etc/vim $pkgdir/usr/share/vim/vimfiles
-  find $pkgdir/usr/share/vim -type f -exec chmod 644 {} +
-  find $pkgdir/usr/share/vim -type d -exec chmod 755 {} +
-
-  install -Dm644 src/etc/zsh/_rust $pkgdir/usr/share/zsh/site-functions/_rust
-  install -Dm644 src/etc/kate/rust.xml 
$pkgdir/usr/share/apps/katepart/syntax/rust.xml
-  install -Dm644 src/etc/gedit/share/mime/packages/rust.xml \
-$pkgdir/usr/share/mime/packages/rust.xml
-  install -Dm644 
src/etc/gedit/share/gtksourceview-3.0/language-specs/rust.lang \
-$pkgdir/usr/share/gtksourceview-3.0/language-specs/rust.lang
-
-  install -m644 LICENSE-APACHE $pkgdir/usr/share/licenses/$pkgname
-  install -m644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname
-
-  cd src/etc/emacs
-  install -Dm644 rust-mode.el $pkgdir/usr/share/emacs/site-lisp/rust-mode.el
-
-  cd $pkgdir/usr
-
-  # https://github.com/mozilla/rust/issues/5219
-  chrpath -d bin/* lib/*.so lib/rustlib/*/lib/*.so
-
-  cd lib
-  ln -sf rustlib/$CARCH-unknown-linux-gnu/lib/* .
-}

Copied: rust/repos/community-i686/PKGBUILD (from rev 108785, 
rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-04-03 20:27:41 UTC (rev 108786)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Daniel Micay danielmi...@gmail.com
+pkgname=rust
+pkgver=0.10
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc='A safe, concurrent, practical language'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+depends=(gcc shared-mime-info)
+makedepends=(libffi perl python2 curl)
+source=(http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz;
+http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz.asc;)
+sha256sums=('c72cfbbf03016804a81d7b68e8258ffaf018f8f5a25550ad64571ce6c2642cf9'
+'SKIP')
+install=rust.install
+options=(staticlibs)
+
+build() {
+  cd rust-$pkgver
+
+  ./configure --prefix=/usr --disable-docs --disable-rpath 
--disable-verify-install
+
+  # avoid python makedepend (force fallback to python2)
+  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
+
+  make
+}
+
+#check() {
+  #cd rust-$pkgver
+  #make check
+#}
+
+package() {
+  cd rust-$pkgver
+  make DESTDIR=$pkgdir install
+
+  mkdir -p $pkgdir/usr/share/vim $pkgdir/usr/share/licenses/$pkgname
+
+  cp -a src/etc/vim $pkgdir/usr/share/vim/vimfiles
+  find $pkgdir/usr/share/vim -type f -exec chmod 644 {} +
+  find $pkgdir/usr/share/vim -type d -exec chmod 755 {} +
+
+  install -Dm644 src/etc/zsh/_rust $pkgdir/usr/share/zsh/site-functions/_rust
+  install -Dm644 src/etc/kate/rust.xml 

[arch-commits] Commit in rust/repos (8 files)

2014-01-09 Thread Daniel Micay
Date: Friday, January 10, 2014 @ 02:23:08
  Author: thestinger
Revision: 103693

archrelease: copy trunk to community-i686, community-x86_64

Added:
  rust/repos/community-i686/PKGBUILD
(from rev 103692, rust/trunk/PKGBUILD)
  rust/repos/community-i686/rust.install
(from rev 103692, rust/trunk/rust.install)
  rust/repos/community-x86_64/PKGBUILD
(from rev 103692, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/rust.install
(from rev 103692, rust/trunk/rust.install)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-i686/rust.install
  rust/repos/community-x86_64/PKGBUILD
  rust/repos/community-x86_64/rust.install

---+
 /PKGBUILD |  130 
 /rust.install |   22 ++
 community-i686/PKGBUILD   |   64 ---
 community-i686/rust.install   |   11 ---
 community-x86_64/PKGBUILD |   64 ---
 community-x86_64/rust.install |   11 ---
 6 files changed, 152 insertions(+), 150 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-01-10 01:22:23 UTC (rev 103692)
+++ community-i686/PKGBUILD 2014-01-10 01:23:08 UTC (rev 103693)
@@ -1,64 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay danielmi...@gmail.com
-pkgname=rust
-pkgver=0.8
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc='A safe, concurrent, practical language'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-depends=(gcc shared-mime-info)
-makedepends=(libffi perl python2 curl chrpath)
-source=(http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz;
-http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz.asc;)
-sha256sums=('42f791ab1537357fe0f63d67ffe6bcb64ecf16b2bd3f1484ab589823f5914182'
-'SKIP')
-install=rust.install
-
-build() {
-  cd rust-$pkgver
-
-  ./configure --prefix=/usr --disable-docs
-
-  # avoid python makedepend (force fallback to python2)
-  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
-
-  make
-}
-
-#check() {
-  #cd rust-$pkgver
-  #make check
-#}
-
-package() {
-  cd rust-$pkgver
-  make DESTDIR=$pkgdir install
-
-  mkdir -p $pkgdir/usr/share/vim $pkgdir/usr/share/licenses/$pkgname
-
-  cp -a src/etc/vim $pkgdir/usr/share/vim/vimfiles
-  find $pkgdir/usr/share/vim -type f -exec chmod 644 {} +
-  find $pkgdir/usr/share/vim -type d -exec chmod 755 {} +
-
-  install -Dm644 src/etc/zsh/_rust $pkgdir/usr/share/zsh/site-functions/_rust
-  install -Dm644 src/etc/kate/rust.xml 
$pkgdir/usr/share/apps/katepart/syntax/rust.xml
-  install -Dm644 src/etc/gedit/share/mime/packages/rust.xml \
-$pkgdir/usr/share/mime/packages/rust.xml
-  install -Dm644 
src/etc/gedit/share/gtksourceview-3.0/language-specs/rust.lang \
-$pkgdir/usr/share/gtksourceview-3.0/language-specs/rust.lang
-
-  install -m644 LICENSE-APACHE $pkgdir/usr/share/licenses/$pkgname
-  install -m644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname
-
-  cd src/etc/emacs
-  install -Dm644 rust-mode.el $pkgdir/usr/share/emacs/site-lisp/rust-mode.el
-
-  cd $pkgdir/usr
-
-  # https://github.com/mozilla/rust/issues/5219
-  chrpath -d bin/* lib/*.so lib/rustc/*/lib/*.so
-
-  cd lib
-  ln -sf rustc/$CARCH-unknown-linux-gnu/lib/* .
-}

Copied: rust/repos/community-i686/PKGBUILD (from rev 103692, 
rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-01-10 01:23:08 UTC (rev 103693)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Daniel Micay danielmi...@gmail.com
+pkgname=rust
+pkgver=0.9
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc='A safe, concurrent, practical language'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+depends=(gcc shared-mime-info)
+makedepends=(libffi perl python2 curl chrpath)
+source=(http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz;)
+#http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz.asc;)
+sha256sums=('a66b7834027115237ca2f64a2b232901ef77e3afcc4b73f263fcdb0b6ec17014')
+#'SKIP')
+install=rust.install
+options=(staticlibs)
+
+build() {
+  cd rust-$pkgver
+
+  ./configure --prefix=/usr --disable-docs
+
+  # avoid python makedepend (force fallback to python2)
+  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
+
+  make
+}
+
+#check() {
+  #cd rust-$pkgver
+  #make check
+#}
+
+package() {
+  cd rust-$pkgver
+  make DESTDIR=$pkgdir install
+
+  mkdir -p $pkgdir/usr/share/vim $pkgdir/usr/share/licenses/$pkgname
+
+  cp -a src/etc/vim $pkgdir/usr/share/vim/vimfiles
+  find $pkgdir/usr/share/vim -type f -exec chmod 644 {} +
+  find $pkgdir/usr/share/vim -type d -exec chmod 755 {} +
+
+  install -Dm644 src/etc/zsh/_rust $pkgdir/usr/share/zsh/site-functions/_rust
+  install -Dm644 src/etc/kate/rust.xml 
$pkgdir/usr/share/apps/katepart/syntax/rust.xml
+  install 

[arch-commits] Commit in rust/repos (8 files)

2014-01-09 Thread Daniel Micay
Date: Friday, January 10, 2014 @ 04:08:10
  Author: thestinger
Revision: 103695

archrelease: copy trunk to community-i686, community-x86_64

Added:
  rust/repos/community-i686/PKGBUILD
(from rev 103694, rust/trunk/PKGBUILD)
  rust/repos/community-i686/rust.install
(from rev 103694, rust/trunk/rust.install)
  rust/repos/community-x86_64/PKGBUILD
(from rev 103694, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/rust.install
(from rev 103694, rust/trunk/rust.install)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-i686/rust.install
  rust/repos/community-x86_64/PKGBUILD
  rust/repos/community-x86_64/rust.install

---+
 /PKGBUILD |  130 
 /rust.install |   22 ++
 community-i686/PKGBUILD   |   65 
 community-i686/rust.install   |   11 ---
 community-x86_64/PKGBUILD |   65 
 community-x86_64/rust.install |   11 ---
 6 files changed, 152 insertions(+), 152 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-01-10 03:07:32 UTC (rev 103694)
+++ community-i686/PKGBUILD 2014-01-10 03:08:10 UTC (rev 103695)
@@ -1,65 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay danielmi...@gmail.com
-pkgname=rust
-pkgver=0.9
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc='A safe, concurrent, practical language'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-depends=(gcc shared-mime-info)
-makedepends=(libffi perl python2 curl chrpath)
-source=(http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz;)
-#http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz.asc;)
-sha256sums=('a66b7834027115237ca2f64a2b232901ef77e3afcc4b73f263fcdb0b6ec17014')
-#'SKIP')
-install=rust.install
-options=(staticlibs)
-
-build() {
-  cd rust-$pkgver
-
-  ./configure --prefix=/usr --disable-docs
-
-  # avoid python makedepend (force fallback to python2)
-  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
-
-  make
-}
-
-#check() {
-  #cd rust-$pkgver
-  #make check
-#}
-
-package() {
-  cd rust-$pkgver
-  make DESTDIR=$pkgdir install
-
-  mkdir -p $pkgdir/usr/share/vim $pkgdir/usr/share/licenses/$pkgname
-
-  cp -a src/etc/vim $pkgdir/usr/share/vim/vimfiles
-  find $pkgdir/usr/share/vim -type f -exec chmod 644 {} +
-  find $pkgdir/usr/share/vim -type d -exec chmod 755 {} +
-
-  install -Dm644 src/etc/zsh/_rust $pkgdir/usr/share/zsh/site-functions/_rust
-  install -Dm644 src/etc/kate/rust.xml 
$pkgdir/usr/share/apps/katepart/syntax/rust.xml
-  install -Dm644 src/etc/gedit/share/mime/packages/rust.xml \
-$pkgdir/usr/share/mime/packages/rust.xml
-  install -Dm644 
src/etc/gedit/share/gtksourceview-3.0/language-specs/rust.lang \
-$pkgdir/usr/share/gtksourceview-3.0/language-specs/rust.lang
-
-  install -m644 LICENSE-APACHE $pkgdir/usr/share/licenses/$pkgname
-  install -m644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname
-
-  cd src/etc/emacs
-  install -Dm644 rust-mode.el $pkgdir/usr/share/emacs/site-lisp/rust-mode.el
-
-  cd $pkgdir/usr
-
-  # https://github.com/mozilla/rust/issues/5219
-  chrpath -d bin/* lib/*.so lib/rustc/*/lib/*.so
-
-  cd lib
-  ln -sf rustc/$CARCH-unknown-linux-gnu/lib/* .
-}

Copied: rust/repos/community-i686/PKGBUILD (from rev 103694, 
rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-01-10 03:08:10 UTC (rev 103695)
@@ -0,0 +1,65 @@
+# $Id$
+# Maintainer: Daniel Micay danielmi...@gmail.com
+pkgname=rust
+pkgver=0.9
+pkgrel=2
+arch=('i686' 'x86_64')
+pkgdesc='A safe, concurrent, practical language'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+depends=(gcc shared-mime-info)
+makedepends=(libffi perl python2 curl chrpath)
+source=(http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz;
+http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz.asc;)
+sha256sums=('c0911c3545b797a1ca16f3d76bf5ed234754b828efd1e22c182c7300ac7dd5d1'
+'SKIP')
+install=rust.install
+options=(staticlibs)
+
+build() {
+  cd rust-$pkgver
+
+  ./configure --prefix=/usr --disable-docs
+
+  # avoid python makedepend (force fallback to python2)
+  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
+
+  make
+}
+
+#check() {
+  #cd rust-$pkgver
+  #make check
+#}
+
+package() {
+  cd rust-$pkgver
+  make DESTDIR=$pkgdir install
+
+  mkdir -p $pkgdir/usr/share/vim $pkgdir/usr/share/licenses/$pkgname
+
+  cp -a src/etc/vim $pkgdir/usr/share/vim/vimfiles
+  find $pkgdir/usr/share/vim -type f -exec chmod 644 {} +
+  find $pkgdir/usr/share/vim -type d -exec chmod 755 {} +
+
+  install -Dm644 src/etc/zsh/_rust $pkgdir/usr/share/zsh/site-functions/_rust
+  install -Dm644 src/etc/kate/rust.xml 

[arch-commits] Commit in rust/repos (8 files)

2013-09-26 Thread Daniel Micay
Date: Friday, September 27, 2013 @ 03:45:47
  Author: thestinger
Revision: 97658

archrelease: copy trunk to community-i686, community-x86_64

Added:
  rust/repos/community-i686/PKGBUILD
(from rev 97657, rust/trunk/PKGBUILD)
  rust/repos/community-i686/rust.install
(from rev 97657, rust/trunk/rust.install)
  rust/repos/community-x86_64/PKGBUILD
(from rev 97657, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/rust.install
(from rev 97657, rust/trunk/rust.install)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-i686/rust.install
  rust/repos/community-x86_64/PKGBUILD
  rust/repos/community-x86_64/rust.install

---+
 /PKGBUILD |  128 
 /rust.install |   22 ++
 community-i686/PKGBUILD   |   62 ---
 community-i686/rust.install   |   11 ---
 community-x86_64/PKGBUILD |   62 ---
 community-x86_64/rust.install |   11 ---
 6 files changed, 150 insertions(+), 146 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-09-27 01:45:04 UTC (rev 97657)
+++ community-i686/PKGBUILD 2013-09-27 01:45:47 UTC (rev 97658)
@@ -1,62 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay danielmi...@gmail.com
-pkgname=rust
-pkgver=0.7
-pkgrel=1
-arch=('i686' 'x86_64')
-pkgdesc='A safe, concurrent, practical language'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-depends=(gcc shared-mime-info)
-makedepends=(libffi perl python2 curl chrpath emacs-nox)
-optdepends=('haskell-pandoc: documentation generator (rustdoc)')
-source=(http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz;)
-sha256sums=('0b88b8a4489382e0a69214eaab88e2e7c316ec33c164af0d3b53630b17590df0')
-install=rust.install
-
-build() {
-  cd rust-$pkgver
-
-  ./configure --prefix=/usr --disable-docs
-
-  # avoid python makedepend (force fallback to python2)
-  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
-
-  make
-}
-
-#check() {
-  #cd rust-$pkgver
-  #make check
-#}
-
-package() {
-  cd rust-$pkgver
-  make DESTDIR=$pkgdir install
-
-  mkdir -p $pkgdir/usr/share/vim $pkgdir/usr/share/licenses/$pkgname
-
-  cp -a src/etc/vim $pkgdir/usr/share/vim/vimfiles
-  find $pkgdir/usr/share/vim -type f -exec chmod 644 {} +
-  find $pkgdir/usr/share/vim -type d -exec chmod 755 {} +
-
-  install -Dm644 src/etc/zsh/_rust $pkgdir/usr/share/zsh/site-functions/_rust
-  install -Dm644 src/etc/kate/rust.xml 
$pkgdir/usr/share/apps/katepart/syntax/rust.xml
-  install -Dm644 src/etc/gedit/share/mime/packages/rust.xml \
-$pkgdir/usr/share/mime/packages/rust.xml
-  install -Dm644 
src/etc/gedit/share/gtksourceview-3.0/language-specs/rust.lang \
-$pkgdir/usr/share/gtksourceview-3.0/language-specs/rust.lang
-
-  install -m644 LICENSE-APACHE $pkgdir/usr/share/licenses/$pkgname
-  install -m644 LICENSE-MIT $pkgdir/usr/share/licenses/$pkgname
-
-  cd src/etc/emacs
-  make
-  mkdir -p $pkgdir/usr/share/emacs/site-lisp/
-  install -Dm644 cm-mode.el{,c} rust-mode.el{,c} 
$pkgdir/usr/share/emacs/site-lisp/
-
-  cd $pkgdir/usr
-
-  # https://github.com/mozilla/rust/issues/5219
-  chrpath -d bin/* lib/*.so lib/rustc/*/lib/*.so
-}

Copied: rust/repos/community-i686/PKGBUILD (from rev 97657, rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-09-27 01:45:47 UTC (rev 97658)
@@ -0,0 +1,64 @@
+# $Id$
+# Maintainer: Daniel Micay danielmi...@gmail.com
+pkgname=rust
+pkgver=0.8
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc='A safe, concurrent, practical language'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+depends=(gcc shared-mime-info)
+makedepends=(libffi perl python2 curl chrpath)
+source=(http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz;
+http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz.asc;)
+sha256sums=('42f791ab1537357fe0f63d67ffe6bcb64ecf16b2bd3f1484ab589823f5914182'
+'SKIP')
+install=rust.install
+
+build() {
+  cd rust-$pkgver
+
+  ./configure --prefix=/usr --disable-docs
+
+  # avoid python makedepend (force fallback to python2)
+  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
+
+  make
+}
+
+#check() {
+  #cd rust-$pkgver
+  #make check
+#}
+
+package() {
+  cd rust-$pkgver
+  make DESTDIR=$pkgdir install
+
+  mkdir -p $pkgdir/usr/share/vim $pkgdir/usr/share/licenses/$pkgname
+
+  cp -a src/etc/vim $pkgdir/usr/share/vim/vimfiles
+  find $pkgdir/usr/share/vim -type f -exec chmod 644 {} +
+  find $pkgdir/usr/share/vim -type d -exec chmod 755 {} +
+
+  install -Dm644 src/etc/zsh/_rust $pkgdir/usr/share/zsh/site-functions/_rust
+  install -Dm644 src/etc/kate/rust.xml 
$pkgdir/usr/share/apps/katepart/syntax/rust.xml
+  install -Dm644 

[arch-commits] Commit in rust/repos (8 files)

2013-07-03 Thread Daniel Micay
Date: Thursday, July 4, 2013 @ 04:25:38
  Author: thestinger
Revision: 93472

archrelease: copy trunk to community-i686, community-x86_64

Added:
  rust/repos/community-i686/PKGBUILD
(from rev 93471, rust/trunk/PKGBUILD)
  rust/repos/community-i686/rust.install
(from rev 93471, rust/trunk/rust.install)
  rust/repos/community-x86_64/PKGBUILD
(from rev 93471, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/rust.install
(from rev 93471, rust/trunk/rust.install)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-i686/rust.install
  rust/repos/community-x86_64/PKGBUILD
  rust/repos/community-x86_64/rust.install

---+
 /PKGBUILD |  124 
 /rust.install |   22 +++
 community-i686/PKGBUILD   |   63 
 community-i686/rust.install   |   11 ---
 community-x86_64/PKGBUILD |   63 
 community-x86_64/rust.install |   11 ---
 6 files changed, 146 insertions(+), 148 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-07-04 02:25:00 UTC (rev 93471)
+++ community-i686/PKGBUILD 2013-07-04 02:25:38 UTC (rev 93472)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay danielmi...@gmail.com
-pkgname=rust
-pkgver=0.6
-pkgrel=4
-arch=('i686' 'x86_64')
-pkgdesc='A safe, concurrent, practical language'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-depends=(gcc gcc-libs shared-mime-info)
-makedepends=(libffi perl python2 curl chrpath emacs)
-optdepends=('haskell-pandoc: documentation generator (rustdoc)')
-source=(http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz;)
-sha256sums=('e11cb529a1e20f27d99033181a9e0e131817136b46d2742f0fa1afa1210053e5')
-install=rust.install
-
-build() {
-  cd rust-$pkgver
-
-  ./configure --prefix=/usr --disable-docs
-
-  # avoid python makedepend (force fallback to python2)
-  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
-
-  make
-}
-
-#check() {
-  #cd rust-$pkgver
-  #make check
-#}
-
-package() {
-  cd rust-$pkgver
-  make DESTDIR=$pkgdir install
-
-  mkdir -p $pkgdir/usr/share/vim $pkgdir/usr/share/licenses/rust
-
-  cp -a src/etc/vim $pkgdir/usr/share/vim/vimfiles
-  find $pkgdir/usr/share/vim -type f -exec chmod 644 {} +
-  find $pkgdir/usr/share/vim -type d -exec chmod 755 {} +
-
-  install -Dm644 src/etc/kate/rust.xml 
$pkgdir/usr/share/apps/katepart/syntax/rust.xml
-  install -Dm644 src/etc/gedit/share/mime/packages/rust.xml \
-$pkgdir/usr/share/mime/packages/rust.xml
-  install -Dm644 
src/etc/gedit/share/gtksourceview-3.0/language-specs/rust.lang \
-$pkgdir/usr/share/gtksourceview-3.0/language-specs/rust.lang
-
-  install -m644 LICENSE-APACHE $pkgdir/usr/share/licenses/rust
-  install -m644 LICENSE-MIT $pkgdir/usr/share/licenses/rust
-
-  cd src/etc/emacs
-  make
-  mkdir -p $pkgdir/usr/share/emacs/site-lisp/
-  install -Dm644 cm-mode.el{,c} rust-mode.el{,c} 
$pkgdir/usr/share/emacs/site-lisp/
-
-  cd $pkgdir/usr
-
-  # https://github.com/mozilla/rust/issues/5219
-  chrpath -d bin/* lib/*.so lib/rustc/*/lib/*.so
-
-  cp lib/rustc/*/lib/{librustdoc-*-0.6.so,librustpkg-*-0.6.so} lib/
-}

Copied: rust/repos/community-i686/PKGBUILD (from rev 93471, rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-07-04 02:25:38 UTC (rev 93472)
@@ -0,0 +1,62 @@
+# $Id$
+# Maintainer: Daniel Micay danielmi...@gmail.com
+pkgname=rust
+pkgver=0.7
+pkgrel=1
+arch=('i686' 'x86_64')
+pkgdesc='A safe, concurrent, practical language'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+depends=(gcc shared-mime-info)
+makedepends=(libffi perl python2 curl chrpath emacs-nox)
+optdepends=('haskell-pandoc: documentation generator (rustdoc)')
+source=(http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz;)
+sha256sums=('0b88b8a4489382e0a69214eaab88e2e7c316ec33c164af0d3b53630b17590df0')
+install=rust.install
+
+build() {
+  cd rust-$pkgver
+
+  ./configure --prefix=/usr --disable-docs
+
+  # avoid python makedepend (force fallback to python2)
+  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
+
+  make
+}
+
+#check() {
+  #cd rust-$pkgver
+  #make check
+#}
+
+package() {
+  cd rust-$pkgver
+  make DESTDIR=$pkgdir install
+
+  mkdir -p $pkgdir/usr/share/vim $pkgdir/usr/share/licenses/$pkgname
+
+  cp -a src/etc/vim $pkgdir/usr/share/vim/vimfiles
+  find $pkgdir/usr/share/vim -type f -exec chmod 644 {} +
+  find $pkgdir/usr/share/vim -type d -exec chmod 755 {} +
+
+  install -Dm644 src/etc/zsh/_rust $pkgdir/usr/share/zsh/site-functions/_rust
+  install -Dm644 src/etc/kate/rust.xml 
$pkgdir/usr/share/apps/katepart/syntax/rust.xml
+  install -Dm644 src/etc/gedit/share/mime/packages/rust.xml \
+

[arch-commits] Commit in rust/repos (8 files)

2013-05-07 Thread Daniel Micay
Date: Wednesday, May 8, 2013 @ 00:11:28
  Author: thestinger
Revision: 90170

archrelease: copy trunk to community-i686, community-x86_64

Added:
  rust/repos/community-i686/PKGBUILD
(from rev 90169, rust/trunk/PKGBUILD)
  rust/repos/community-i686/rust.install
(from rev 90169, rust/trunk/rust.install)
  rust/repos/community-x86_64/PKGBUILD
(from rev 90169, rust/trunk/PKGBUILD)
  rust/repos/community-x86_64/rust.install
(from rev 90169, rust/trunk/rust.install)
Deleted:
  rust/repos/community-i686/PKGBUILD
  rust/repos/community-i686/rust.install
  rust/repos/community-x86_64/PKGBUILD
  rust/repos/community-x86_64/rust.install

---+
 /PKGBUILD |  126 
 /rust.install |   22 ++
 community-i686/PKGBUILD   |   63 
 community-i686/rust.install   |   11 ---
 community-x86_64/PKGBUILD |   63 
 community-x86_64/rust.install |   11 ---
 6 files changed, 148 insertions(+), 148 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2013-05-07 22:10:50 UTC (rev 90169)
+++ community-i686/PKGBUILD 2013-05-07 22:11:28 UTC (rev 90170)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay danielmi...@gmail.com
-pkgname=rust
-pkgver=0.6
-pkgrel=3
-arch=('i686' 'x86_64')
-pkgdesc='A safe, concurrent, practical language'
-url='http://www.rust-lang.org/'
-license=('MIT' 'Apache')
-depends=(gcc-libs shared-mime-info)
-makedepends=(libffi perl python2 curl chrpath emacs)
-optdepends=('haskell-pandoc: documentation generator (rustdoc)')
-source=(http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz;)
-sha256sums=('e11cb529a1e20f27d99033181a9e0e131817136b46d2742f0fa1afa1210053e5')
-install=rust.install
-
-build() {
-  cd rust-$pkgver
-
-  ./configure --prefix=/usr --disable-docs
-
-  # avoid python makedepend (force fallback to python2)
-  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
-
-  make
-}
-
-check() {
-  cd rust-$pkgver
-  make check
-}
-
-package() {
-  cd rust-$pkgver
-  make DESTDIR=$pkgdir install
-
-  mkdir -p $pkgdir/usr/share/vim $pkgdir/usr/share/licenses/rust
-
-  cp -a src/etc/vim $pkgdir/usr/share/vim/vimfiles
-  find $pkgdir/usr/share/vim -type f -exec chmod 644 {} +
-  find $pkgdir/usr/share/vim -type d -exec chmod 755 {} +
-
-  install -Dm644 src/etc/kate/rust.xml 
$pkgdir/usr/share/apps/katepart/syntax/rust.xml
-  install -Dm644 src/etc/gedit/share/mime/packages/rust.xml \
-$pkgdir/usr/share/mime/packages/rust.xml
-  install -Dm644 
src/etc/gedit/share/gtksourceview-3.0/language-specs/rust.lang \
-$pkgdir/usr/share/gtksourceview-3.0/language-specs/rust.lang
-
-  install -m644 LICENSE-APACHE $pkgdir/usr/share/licenses/rust
-  install -m644 LICENSE-MIT $pkgdir/usr/share/licenses/rust
-
-  cd src/etc/emacs
-  make
-  mkdir -p $pkgdir/usr/share/emacs/site-lisp/
-  install -Dm644 cm-mode.el{,c} rust-mode.el{,c} 
$pkgdir/usr/share/emacs/site-lisp/
-
-  cd $pkgdir/usr
-
-  # https://github.com/mozilla/rust/issues/5219
-  chrpath -d bin/* lib/*.so lib/rustc/*/lib/*.so
-
-  cp lib/rustc/*/lib/{librustdoc-*-0.6.so,librustpkg-*-0.6.so} lib/
-}

Copied: rust/repos/community-i686/PKGBUILD (from rev 90169, rust/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-05-07 22:11:28 UTC (rev 90170)
@@ -0,0 +1,63 @@
+# $Id$
+# Maintainer: Daniel Micay danielmi...@gmail.com
+pkgname=rust
+pkgver=0.6
+pkgrel=4
+arch=('i686' 'x86_64')
+pkgdesc='A safe, concurrent, practical language'
+url='http://www.rust-lang.org/'
+license=('MIT' 'Apache')
+depends=(gcc gcc-libs shared-mime-info)
+makedepends=(libffi perl python2 curl chrpath emacs)
+optdepends=('haskell-pandoc: documentation generator (rustdoc)')
+source=(http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz;)
+sha256sums=('e11cb529a1e20f27d99033181a9e0e131817136b46d2742f0fa1afa1210053e5')
+install=rust.install
+
+build() {
+  cd rust-$pkgver
+
+  ./configure --prefix=/usr --disable-docs
+
+  # avoid python makedepend (force fallback to python2)
+  sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules
+
+  make
+}
+
+#check() {
+  #cd rust-$pkgver
+  #make check
+#}
+
+package() {
+  cd rust-$pkgver
+  make DESTDIR=$pkgdir install
+
+  mkdir -p $pkgdir/usr/share/vim $pkgdir/usr/share/licenses/rust
+
+  cp -a src/etc/vim $pkgdir/usr/share/vim/vimfiles
+  find $pkgdir/usr/share/vim -type f -exec chmod 644 {} +
+  find $pkgdir/usr/share/vim -type d -exec chmod 755 {} +
+
+  install -Dm644 src/etc/kate/rust.xml 
$pkgdir/usr/share/apps/katepart/syntax/rust.xml
+  install -Dm644 src/etc/gedit/share/mime/packages/rust.xml \
+$pkgdir/usr/share/mime/packages/rust.xml
+  install -Dm644