[arch-commits] Commit in rust/repos (4 files)
Alexander Rødseth
arodseth at archlinux.org
Wed Aug 24 18:26:33 UTC 2016
Date: Wednesday, August 24, 2016 @ 18:26:33
Author: arodseth
Revision: 187466
archrelease: copy trunk to community-x86_64, community-i686
Added:
rust/repos/community-i686/PKGBUILD
(from rev 187465, rust/trunk/PKGBUILD)
rust/repos/community-x86_64/PKGBUILD
(from rev 187465, rust/trunk/PKGBUILD)
Deleted:
rust/repos/community-i686/PKGBUILD
rust/repos/community-x86_64/PKGBUILD
---------------------------+
/PKGBUILD | 110 ++++++++++++++++++++++++++++++++++++++++++++
community-i686/PKGBUILD | 43 -----------------
community-x86_64/PKGBUILD | 43 -----------------
3 files changed, 110 insertions(+), 86 deletions(-)
Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD 2016-08-24 18:26:11 UTC (rev 187465)
+++ community-i686/PKGBUILD 2016-08-24 18:26:33 UTC (rev 187466)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
-# Contributor: Daniel Micay <danielmicay at gmail.com>
-
-pkgname=rust
-epoch=1
-pkgver=1.10.0
-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' 'jemalloc')
-depends=('gcc')
-source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
-sha256sums=('a4015aacf4f6d8a8239253c4da46e7abaa8584f8214d1828d2ff0a8f56176869'
- 'SKIP')
-options=('staticlibs' '!strip')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag and Release Signing Key) <rust-key at rust-lang.org>
-#gpg --keyserver hkp://keys.gnupg.net --recv-keys 108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
-
-build() {
- cd "rustc-$pkgver"
-
- ./configure --prefix=/usr --disable-docs --release-channel=stable
- make CFLAGS="$CFLAGS -fPIC -w"
-}
-
-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 187465, rust/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-08-24 18:26:33 UTC (rev 187466)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
+# Contributor: Daniel Micay <danielmicay at gmail.com>
+
+pkgname=('rust' 'rust-docs')
+epoch=1
+pkgver=1.11.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' 'jemalloc' 'cmake')
+depends=('gcc')
+source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
+sha256sums=('3685034a78e70637bdfa3117619f759f2481002fd9abbc78cc0f737c9974de6a'
+ 'SKIP')
+options=('staticlibs' '!strip' '!emptydirs')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag and Release Signing Key) <rust-key at rust-lang.org>
+#gpg --keyserver hkp://keys.gnupg.net --recv-keys 108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
+
+build() {
+ cd "rustc-$pkgver"
+
+ ./configure --prefix=/usr --release-channel=stable
+ make CFLAGS="$CFLAGS -fPIC -w"
+}
+
+package_rust() {
+ depends=('gcc')
+
+ 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 .
+}
+
+package_rust-docs() {
+ cd "rustc-$pkgver"
+
+ install -d "$pkgdir/usr/share/doc/rust"
+ cp -r "doc/"* "$pkgdir/usr/share/doc/rust"
+ install -Dm644 LICENSE-APACHE \
+ "$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
+ install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
+}
+
+# vim:set ts=2 sw=2 et:
Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD 2016-08-24 18:26:11 UTC (rev 187465)
+++ community-x86_64/PKGBUILD 2016-08-24 18:26:33 UTC (rev 187466)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
-# Contributor: Daniel Micay <danielmicay at gmail.com>
-
-pkgname=rust
-epoch=1
-pkgver=1.10.0
-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' 'jemalloc')
-depends=('gcc')
-source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
-sha256sums=('a4015aacf4f6d8a8239253c4da46e7abaa8584f8214d1828d2ff0a8f56176869'
- 'SKIP')
-options=('staticlibs' '!strip')
-validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag and Release Signing Key) <rust-key at rust-lang.org>
-#gpg --keyserver hkp://keys.gnupg.net --recv-keys 108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
-
-build() {
- cd "rustc-$pkgver"
-
- ./configure --prefix=/usr --disable-docs --release-channel=stable
- make CFLAGS="$CFLAGS -fPIC -w"
-}
-
-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-x86_64/PKGBUILD (from rev 187465, rust/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2016-08-24 18:26:33 UTC (rev 187466)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
+# Contributor: Daniel Micay <danielmicay at gmail.com>
+
+pkgname=('rust' 'rust-docs')
+epoch=1
+pkgver=1.11.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' 'jemalloc' 'cmake')
+depends=('gcc')
+source=("http://static.rust-lang.org/dist/rustc-$pkgver-src.tar.gz"{,.asc})
+sha256sums=('3685034a78e70637bdfa3117619f759f2481002fd9abbc78cc0f737c9974de6a'
+ 'SKIP')
+options=('staticlibs' '!strip' '!emptydirs')
+validpgpkeys=('108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE') # Rust Language (Tag and Release Signing Key) <rust-key at rust-lang.org>
+#gpg --keyserver hkp://keys.gnupg.net --recv-keys 108F66205EAEB0AAA8DD5E1C85AB96E6FA1BE5FE
+
+build() {
+ cd "rustc-$pkgver"
+
+ ./configure --prefix=/usr --release-channel=stable
+ make CFLAGS="$CFLAGS -fPIC -w"
+}
+
+package_rust() {
+ depends=('gcc')
+
+ 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 .
+}
+
+package_rust-docs() {
+ cd "rustc-$pkgver"
+
+ install -d "$pkgdir/usr/share/doc/rust"
+ cp -r "doc/"* "$pkgdir/usr/share/doc/rust"
+ install -Dm644 LICENSE-APACHE \
+ "$pkgdir/usr/share/licenses/$pkgname/LICENSE-APACHE"
+ install -Dm644 LICENSE-MIT "$pkgdir/usr/share/licenses/$pkgname/LICENSE-MIT"
+}
+
+# vim:set ts=2 sw=2 et:
More information about the arch-commits
mailing list