Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/ripgrep/
Date: Thu, 20 Jul 2017 08:17:47
Message-Id: 1500538649.cca7c35bf724aa5af204ac18f35fda5bf649e2a1.radhermit@gentoo
1 commit: cca7c35bf724aa5af204ac18f35fda5bf649e2a1
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 20 08:16:25 2017 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 20 08:17:29 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cca7c35b
7
8 sys-apps/ripgrep: remove old
9
10 sys-apps/ripgrep/Manifest | 1 -
11 sys-apps/ripgrep/ripgrep-0.5.1.ebuild | 40 -----------------------------------
12 2 files changed, 41 deletions(-)
13
14 diff --git a/sys-apps/ripgrep/Manifest b/sys-apps/ripgrep/Manifest
15 index 78b47b82ba9..f710a5330a6 100644
16 --- a/sys-apps/ripgrep/Manifest
17 +++ b/sys-apps/ripgrep/Manifest
18 @@ -1,2 +1 @@
19 -DIST ripgrep-0.5.1.tar.xz 45921476 SHA256 72a72716af333aa1d578ca8de55a4ba295abf70ec037ebd89fc7e5e627b4fd17 SHA512 bfeb4ee2373b1ee0d8bc77b3bfbc12eb3e43e5160ca4bbe80206041a29f459ba71d464635f660626f530b8cbc0a39157cb0fc91620236b5bdcd884b024391218 WHIRLPOOL b0cea9c1f931d094752d4b19a98830e57599d484dff07431a80bdc36e926d2ffe7152cfebc041357c4f1bb074d0f3e9a0f67aebcf454fc69e25cacfb2396f360
20 DIST ripgrep-0.5.2.tar.xz 48910752 SHA256 e0fadefc1718d967ac15ccc22131255606cddf969b700ccc243c1f973be81d90 SHA512 d8bc86e12be80568de4565c911a03b0c3a15577b22dfa2f1fd9b44f4e77354da1e80852247b9955e225fd13a540acbb3ca7b5a00d686bfa65fdf3f5f329dfcd5 WHIRLPOOL c33a828471a925da2be2f6b3730c28146182ff79b2a75e4f193a0c94f540256cb1670d5cc79470a39d0b898e8c55e20fabe5fdec1c42124339001ad7b437d02c
21
22 diff --git a/sys-apps/ripgrep/ripgrep-0.5.1.ebuild b/sys-apps/ripgrep/ripgrep-0.5.1.ebuild
23 deleted file mode 100644
24 index 8445e52f2c6..00000000000
25 --- a/sys-apps/ripgrep/ripgrep-0.5.1.ebuild
26 +++ /dev/null
27 @@ -1,40 +0,0 @@
28 -# Copyright 1999-2017 Gentoo Foundation
29 -# Distributed under the terms of the GNU General Public License v2
30 -
31 -EAPI=6
32 -
33 -DESCRIPTION="a command line search tool that combines usability with raw speed"
34 -HOMEPAGE="https://github.com/BurntSushi/ripgrep"
35 -#SRC_URI="https://github.com/BurntSushi/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
36 -# custom tarball bundling all deps and index, otherwise cargo fetches from the network
37 -SRC_URI="http://dev.gentoo.org/~radhermit/dist/${P}.tar.xz"
38 -
39 -LICENSE="|| ( MIT Unlicense )"
40 -SLOT="0"
41 -KEYWORDS="~amd64 ~x86"
42 -
43 -DEPEND="
44 - dev-util/cargo
45 - >=dev-lang/rust-1.11
46 -"
47 -
48 -src_prepare() {
49 - default
50 -
51 - # move cache dir where cargo expects it
52 - mv .cargo "${HOME}" || die
53 -}
54 -
55 -src_compile() {
56 - cargo build --release --verbose || die
57 -}
58 -
59 -src_test() {
60 - cargo test || die "tests failed"
61 -}
62 -
63 -src_install() {
64 - dobin target/release/rg
65 - doman doc/rg.1
66 - dodoc CHANGELOG.md README.md
67 -}