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 <xypr...@archlinux.org> -# Contributor: Daniel Micay <danielmi...@gmail.com> - -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) <rust-...@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 -} - -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 <xypr...@archlinux.org> +# Contributor: Daniel Micay <danielmi...@gmail.com> + +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) <rust-...@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 +} + +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) =================================================================== --- community-i686/rust.install (rev 0) +++ community-i686/rust.install 2016-04-18 17:41:52 UTC (rev 171361) @@ -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 2016-04-18 17:40:42 UTC (rev 171360) +++ community-x86_64/PKGBUILD 2016-04-18 17:41:52 UTC (rev 171361) @@ -1,43 +0,0 @@ -# $Id$ -# Maintainer: Alexander F Rødseth <xypr...@archlinux.org> -# Contributor: Daniel Micay <danielmi...@gmail.com> - -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) <rust-...@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 -} - -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 171360, rust/trunk/PKGBUILD) =================================================================== --- community-x86_64/PKGBUILD (rev 0) +++ community-x86_64/PKGBUILD 2016-04-18 17:41:52 UTC (rev 171361) @@ -0,0 +1,43 @@ +# $Id$ +# Maintainer: Alexander F Rødseth <xypr...@archlinux.org> +# Contributor: Daniel Micay <danielmi...@gmail.com> + +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) <rust-...@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 +} + +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 2016-04-18 17:40:42 UTC (rev 171360) +++ community-x86_64/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-x86_64/rust.install (from rev 171360, rust/trunk/rust.install) =================================================================== --- community-x86_64/rust.install (rev 0) +++ community-x86_64/rust.install 2016-04-18 17:41:52 UTC (rev 171361) @@ -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 +}