Package Base Details: rust-git

Git Clone URL: https://aur.archlinux.org/rust-git.git (read-only, click to copy)
Keywords: mozilla rust
Submitter: mrshpot
Maintainer: spider-mario (ishitatsuyuki)
Last Packager: ishitatsuyuki
Votes: 28
Popularity: 0.000000
First Submitted: 2012-01-21 11:30 (UTC)
Last Updated: 2022-11-10 14:57 (UTC)

Latest Comments

« First ‹ Previous 1 .. 8 9 10 11 12 13

spider-mario commented on 2012-12-10 19:23 (UTC)

Done for Vim, thanks! Unfortunately, I don’t use Emacs either, so even if I tried to do the same for the Emacs files, I wouldn’t be able to check that it works. If someone can make it work, I’ll be glad to add it to the PKGBUILD.

thestinger commented on 2012-12-10 14:40 (UTC)

It would be great if you could install the Vim and Emacs files that ship with the rust source. For vim, you just need this: mkdir -p "$pkgdir/usr/share/vim" cp -a src/etc/vim "$pkgdir/usr/share/vim/vimfiles" I'm unsure about what to do with the Emacs files + Makefile though, so an Emacs user will have to step forward with that info :).

mrshpot commented on 2012-10-19 07:00 (UTC)

Sorry, due to lack of time I'm disowning it so somebody can actually fix it.

svenstaro commented on 2012-10-12 16:48 (UTC)

This PKGBUILD has a bunch of problems. 1) You are not using a packaging() function 2) You are still using || return 1 3) You are using the wrong DESTDIR 4) You are not using Maintainer or Contributor in the comment but your custom "Author" 5) You don't need the python hack anymore 6) You shouldn't manually have to copy docs (did you make an upstream bug report?)

<deleted-account> commented on 2012-10-12 16:06 (UTC)

Files are being installed in the wrong directory (/usr/usr instead of just /usr), fixed PKGBUILD: http://p.blicky.net/86t6s (only changes the DESTDIR= line).

<deleted-account> commented on 2012-10-12 11:39 (UTC)

Anybody with problems on x86_64, if so what did you do to solve this? I am working with the official repos and python2, but at the end of the build I have problems with packaging the documentation which kill the whole build. I've tried modifiying the PKGBUILD with no success, any ideas? thanks for the PKGBUILD though

mrshpot commented on 2012-01-21 15:06 (UTC)

llvm-build (src/llvm/llvm-build/llvm-build) breaks with python3 [1]. I saw those errors during the LLVM build and figured it would be best to roll back to python2. The carpet-bomb replacement might really be overkill, though -- the LLVM build takes a long time on my machine and I wanted to have rust working ASAP. If the thing builds properly with python3 for everything except llvm-build, let me know (or I'll try that later myself). [1]: $ pwd /home/mrshpot/build/rust-git/src/llvm/utils/llvm-build $ python llvm-build Traceback (most recent call last): File "llvm-build", line 3, in <module> import llvmbuild File "/home/mrshpot/build/rust-git/src/llvm/utils/llvm-build/llvmbuild/__init__.py", line 1, in <module> from main import main ImportError: No module named main $ python2 llvm-build # runs with no errors

spider-mario commented on 2012-01-21 12:04 (UTC)

Are you sure you need to replace “python” with “python2”? This page: https://github.com/graydon/rust/wiki/Doc-getting-started suggests that Python 3 should be used.