Date: Saturday, March 4, 2017 @ 17:56:44
  Author: demize
Revision: 214911

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

Added:
  cargo/repos/community-staging-i686/
  cargo/repos/community-staging-i686/PKGBUILD
    (from rev 214910, cargo/trunk/PKGBUILD)
  cargo/repos/community-staging-x86_64/
  cargo/repos/community-staging-x86_64/PKGBUILD
    (from rev 214910, cargo/trunk/PKGBUILD)

-----------------------------------+
 community-staging-i686/PKGBUILD   |   58 ++++++++++++++++++++++++++++++++++++
 community-staging-x86_64/PKGBUILD |   58 ++++++++++++++++++++++++++++++++++++
 2 files changed, 116 insertions(+)

Copied: cargo/repos/community-staging-i686/PKGBUILD (from rev 214910, 
cargo/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD                             (rev 0)
+++ community-staging-i686/PKGBUILD     2017-03-04 17:56:44 UTC (rev 214911)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Alexander F Rødseth <[email protected]>
+# Contributor: Christopher Reimer <[email protected]>
+
+pkgname=cargo
+pkgver=0.16.0
+pkgrel=2
+pkgdesc='Rust package manager'
+url='http://crates.io/'
+arch=('x86_64' 'i686')
+license=('APACHE' 'MIT' 'custom')
+depends=('curl' 'rust')
+makedepends=('git' 'python' 'cmake' 'cargo')
+optdepends=('gcc: for compiling C source code with gcc'
+            'clang: for compiling C source code with clang')
+groups=('rust')
+options=('!emptydirs')
+source=("git+https://github.com/rust-lang/cargo.git#tag=$pkgver";
+        "git+https://github.com/rust-lang/rust-installer.git";)
+md5sums=('SKIP'
+         'SKIP')
+
+prepare() {
+  cd cargo
+
+  git submodule init
+  git config submodule.src/rust-installer.url "$srcdir"/rust-installer
+  git submodule update
+
+  sed 's^share/doc^share/licenses^g' -i Makefile.in
+}
+
+build() {
+  cd cargo
+
+  ./configure --prefix=/usr --enable-optimize
+  make
+}
+
+package() {
+  cd cargo
+
+  make DESTDIR="$pkgdir" install
+
+  # Remove files that contains references to $srcdir or $pkgdir,
+  # or that conflicts with the rust package.
+  rm -f "$pkgdir/usr/lib/rustlib/"{install.log,manifest-cargo,uninstall.sh}
+
+  install -d "$pkgdir/usr/share/bash-completion/completions"
+  mv "$pkgdir/usr/etc/bash_completion.d/cargo" \
+    "$pkgdir/usr/share/bash-completion/completions/cargo"
+
+  for f in LICENSE-APACHE LICENSE-MIT LICENSE-THIRD-PARTY; do
+    install -Dm644 "$f" "$pkgdir/usr/share/licenses/$pkgname/$f"
+  done
+}
+
+# vim:set ts=2 sw=2 et:

Copied: cargo/repos/community-staging-x86_64/PKGBUILD (from rev 214910, 
cargo/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD                           (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-04 17:56:44 UTC (rev 214911)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Alexander F Rødseth <[email protected]>
+# Contributor: Christopher Reimer <[email protected]>
+
+pkgname=cargo
+pkgver=0.16.0
+pkgrel=2
+pkgdesc='Rust package manager'
+url='http://crates.io/'
+arch=('x86_64' 'i686')
+license=('APACHE' 'MIT' 'custom')
+depends=('curl' 'rust')
+makedepends=('git' 'python' 'cmake' 'cargo')
+optdepends=('gcc: for compiling C source code with gcc'
+            'clang: for compiling C source code with clang')
+groups=('rust')
+options=('!emptydirs')
+source=("git+https://github.com/rust-lang/cargo.git#tag=$pkgver";
+        "git+https://github.com/rust-lang/rust-installer.git";)
+md5sums=('SKIP'
+         'SKIP')
+
+prepare() {
+  cd cargo
+
+  git submodule init
+  git config submodule.src/rust-installer.url "$srcdir"/rust-installer
+  git submodule update
+
+  sed 's^share/doc^share/licenses^g' -i Makefile.in
+}
+
+build() {
+  cd cargo
+
+  ./configure --prefix=/usr --enable-optimize
+  make
+}
+
+package() {
+  cd cargo
+
+  make DESTDIR="$pkgdir" install
+
+  # Remove files that contains references to $srcdir or $pkgdir,
+  # or that conflicts with the rust package.
+  rm -f "$pkgdir/usr/lib/rustlib/"{install.log,manifest-cargo,uninstall.sh}
+
+  install -d "$pkgdir/usr/share/bash-completion/completions"
+  mv "$pkgdir/usr/etc/bash_completion.d/cargo" \
+    "$pkgdir/usr/share/bash-completion/completions/cargo"
+
+  for f in LICENSE-APACHE LICENSE-MIT LICENSE-THIRD-PARTY; do
+    install -Dm644 "$f" "$pkgdir/usr/share/licenses/$pkgname/$f"
+  done
+}
+
+# vim:set ts=2 sw=2 et:

Reply via email to