diff options
author | Tim Harder <radhermit@gentoo.org> | 2016-11-10 00:38:05 -0500 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2016-11-10 00:38:26 -0500 |
commit | d873ba8b8fb26415f4b95a75800db0d642cd1bc2 (patch) | |
tree | 4247926dd46bc5deeab9dba6b2d286cc94af3af0 /sys-apps | |
parent | dev-vcs/monotone: remove unused patches/files (diff) | |
download | gentoo-d873ba8b8fb26415f4b95a75800db0d642cd1bc2.tar.gz gentoo-d873ba8b8fb26415f4b95a75800db0d642cd1bc2.tar.bz2 gentoo-d873ba8b8fb26415f4b95a75800db0d642cd1bc2.zip |
sys-apps/ripgrep: version bump to 0.2.9
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/ripgrep/Manifest | 1 | ||||
-rw-r--r-- | sys-apps/ripgrep/ripgrep-0.2.9.ebuild | 41 |
2 files changed, 42 insertions, 0 deletions
diff --git a/sys-apps/ripgrep/Manifest b/sys-apps/ripgrep/Manifest index a3a166ec307b..19857ccc9f63 100644 --- a/sys-apps/ripgrep/Manifest +++ b/sys-apps/ripgrep/Manifest @@ -1,2 +1,3 @@ DIST ripgrep-0.2.5.tar.xz 36327796 SHA256 af30c197e8ed4779288023b4b197ebd481f5c644be1ac18495c91556989da5f8 SHA512 4ce2374f677110bc61ac1ee0511a9e801f21f414ba3bf809b3020e82a2a26a7deeff45fea1edc8d20353023e95074899262db2f84e0cd822103dc60b55f39216 WHIRLPOOL e0a50bc59142aa74ecfc93c2089d6916aba6af15d33d9dbd9f7fa7c790b5fa9f46b757419c9db3abd4d17eba6d0e17c6b5a83ceb6842d8a7d57722ef1e6862ff DIST ripgrep-0.2.6.tar.xz 36034548 SHA256 1f26e3023a58f52085780f5392241d3781d51746ce1fa8abc155b99bd11eae1e SHA512 1389e97009a30c417f75e8a6804e53ba72c679b6e67366c83c839fe5bc4035cc59ab0261ada1110eda84e8aa9900fd12abc1732bf68b6fd379aee64fbfe7acc9 WHIRLPOOL 416b3eab0146872e86dd9184b17aa73ae4dba5016c7829d2daa845fe304aa2be31fc4505e08b8270ff7589872fcb07852bfbbb30a06c7c13d63abf2c17ae0c01 +DIST ripgrep-0.2.9.tar.xz 36405508 SHA256 f5013f18620495a24af5bfa7a58b9f336831f489c34acbd91d963f27ab24a77d SHA512 3196b7e9cc9302e327ef09d87e5f586829deac5394e229b131bb4d76a54db05f12a9207f7b3b0d1d8c0790857ffd86dc4b177a31065f82f31192b3a7e6211399 WHIRLPOOL be4836c70ffc70827fdb2bf187624ddfa2238a97f93e7bb73dc4f3e13ea569f7a80bdb4ca0e956e661440849663891af88d3848eb8bc4758e02cbd6898806e6d diff --git a/sys-apps/ripgrep/ripgrep-0.2.9.ebuild b/sys-apps/ripgrep/ripgrep-0.2.9.ebuild new file mode 100644 index 000000000000..ea3ae7b4c81b --- /dev/null +++ b/sys-apps/ripgrep/ripgrep-0.2.9.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="a command line search tool that combines usability with raw speed" +HOMEPAGE="https://github.com/BurntSushi/ripgrep" +#SRC_URI="https://github.com/BurntSushi/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +# custom tarball bundling all deps and index, otherwise cargo fetches from the network +SRC_URI="http://dev.gentoo.org/~radhermit/dist/${P}.tar.xz" + +LICENSE="|| ( MIT Unlicense )" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND=" + dev-util/cargo + dev-lang/rust +" + +src_prepare() { + default + + # move cache dir where cargo expects it + mv .cargo "${HOME}" || die +} + +src_compile() { + cargo build --release --verbose || die +} + +src_test() { + cargo test || die "tests failed" +} + +src_install() { + dobin target/release/rg + doman doc/rg.1 + dodoc CHANGELOG.md README.md +} |