diff options
author | OGINO Masanori <masanori.ogino@gmail.com> | 2014-04-04 12:17:36 +0900 |
---|---|---|
committer | OGINO Masanori <masanori.ogino@gmail.com> | 2014-04-04 12:17:36 +0900 |
commit | aeb29553a454a41aa7ae57d35f4d2cfdfd4fdff9 (patch) | |
tree | d1d8162e622cb32c8415c81dfeb74c1fe689ed72 /app-vim | |
parent | mirana is deprecated (diff) | |
download | rust-aeb29553a454a41aa7ae57d35f4d2cfdfd4fdff9.tar.gz rust-aeb29553a454a41aa7ae57d35f4d2cfdfd4fdff9.tar.bz2 rust-aeb29553a454a41aa7ae57d35f4d2cfdfd4fdff9.zip |
Update to 0.10.
The time has come. Enjoy!
Signed-off-by: OGINO Masanori <masanori.ogino@gmail.com>
Diffstat (limited to 'app-vim')
-rw-r--r-- | app-vim/rust-mode/Manifest | 1 | ||||
-rw-r--r-- | app-vim/rust-mode/rust-mode-0.10.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/app-vim/rust-mode/Manifest b/app-vim/rust-mode/Manifest index 059dfea..57a731e 100644 --- a/app-vim/rust-mode/Manifest +++ b/app-vim/rust-mode/Manifest @@ -1,2 +1,3 @@ +DIST rust-0.10.tar.gz 19538709 SHA256 c72cfbbf03016804a81d7b68e8258ffaf018f8f5a25550ad64571ce6c2642cf9 SHA512 c5a36f947864a86241e0e443c7a19a96e7cd052c2fa7c91dacf50a6d5617ce9b6f60c74194af13a173c6360b72d4066ac8f96c0f3be7e8471f5bf77c3263d654 WHIRLPOOL 567b8e41d7e1cad1ccbcbf250a5a1abbe479aaa89bc3d110ba9c53c0c06a44d9e18b056ec2045670be1505e82f70a23cd21b9bee53857122e1e4fb61b62075fd DIST rust-0.8.tar.gz 16720822 SHA256 42f791ab1537357fe0f63d67ffe6bcb64ecf16b2bd3f1484ab589823f5914182 SHA512 494817e045af87055ca22a6b15799f14ab4e5a4d1e7be883c211bfbbc2b9b1c498711d91c40c130dd8b8307f226d4ed6100b51064aab8a9f3939f19bd829b0e4 WHIRLPOOL 907838591486cf6336b697bab338ca3aa970f2c0daa352c78dba53ccaa5bb77b3f1e2f110b345bab67e4476846a30b71c612ee0726176b23e49bc3fd4cba17e3 DIST rust-0.9.tar.gz 17152912 SHA256 c0911c3545b797a1ca16f3d76bf5ed234754b828efd1e22c182c7300ac7dd5d1 SHA512 a8cdd59e3b2eacf319068511ee30166f218ba2772f9facf8193fa9b7da77a4b01685711b201e8aa6bcc9e4d7068c2d48a9e2c5e9af80e319bf513a6652083e0a WHIRLPOOL 4e86a3156fec7ebc5d4efd4f3c86d8357b66dc8b7858a1609237607ed70ab6ef7426401fcf232b654dc5e9fa00ac28830f3a834defe04375e93adbebe44e43f6 diff --git a/app-vim/rust-mode/rust-mode-0.10.ebuild b/app-vim/rust-mode/rust-mode-0.10.ebuild new file mode 100644 index 0000000..f549c3a --- /dev/null +++ b/app-vim/rust-mode/rust-mode-0.10.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit vim-plugin + +DESCRIPTION="vim plugin: syntax highlighting, indentation, quickfix and other useful things for editing Rust code" +HOMEPAGE="http://www.rust-lang.org/" + +LICENSE="|| ( MIT Apache-2.0 )" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +if [[ ${PV} != 9999 ]]; then + MY_P="rust-${PV}" + SRC_URI="http://static.rust-lang.org/dist/${MY_P}.tar.gz" + + S="${WORKDIR}/${MY_P}/src/etc/vim" +else + EGIT_SOURCEDIR="${S}" + S="${S}/src/etc/vim" + + inherit git-2 + + EGIT_REPO_URI="git://github.com/mozilla/rust.git" +fi + +src_configure() { + echo "just for suppressing econf" +} |