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

Alexander Rødseth arodseth at archlinux.org
Thu May 7 16:58:50 UTC 2015


    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 <danielmicay at 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-key at 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 <rodseth at gmail.com>
+# Contributor: Daniel Micay <danielmicay at 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-key at 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
-    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 132884, rust/trunk/rust.install)
===================================================================
--- community-i686/rust.install	                        (rev 0)
+++ community-i686/rust.install	2015-05-07 16:58:49 UTC (rev 132885)
@@ -0,0 +1,13 @@
+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
+}

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2015-05-07 16:58:29 UTC (rev 132884)
+++ community-x86_64/PKGBUILD	2015-05-07 16:58:49 UTC (rev 132885)
@@ -1,50 +0,0 @@
-# $Id$
-# Maintainer: Daniel Micay <danielmicay at 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-key at 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-x86_64/PKGBUILD (from rev 132883, rust/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2015-05-07 16:58:49 UTC (rev 132885)
@@ -0,0 +1,49 @@
+# $Id$
+# Maintainer: Alexander Rødseth <rodseth at gmail.com>
+# Contributor: Daniel Micay <danielmicay at 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-key at 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-x86_64/rust.install
===================================================================
--- community-x86_64/rust.install	2015-05-07 16:58:29 UTC (rev 132884)
+++ community-x86_64/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
-    update-mime-database usr/share/mime >/dev/null
-  fi
-}
-
-post_upgrade() {
-  post_install
-}
-
-post_remove() {
-  post_install
-}

Copied: rust/repos/community-x86_64/rust.install (from rev 132883, rust/trunk/rust.install)
===================================================================
--- community-x86_64/rust.install	                        (rev 0)
+++ community-x86_64/rust.install	2015-05-07 16:58:49 UTC (rev 132885)
@@ -0,0 +1,13 @@
+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
+}



More information about the arch-commits mailing list