Gentoo Archives: gentoo-commits

From: Georgy Yakovlev <gyakovlev@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/ripgrep/
Date: Fri, 28 Sep 2018 06:06:19
Message-Id: 1538114472.e0109c61eff95321433ddc061991ea9fff3e8bc9.gyakovlev@gentoo
1 commit: e0109c61eff95321433ddc061991ea9fff3e8bc9
2 Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 28 06:01:12 2018 +0000
4 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 28 06:01:12 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0109c61
7
8 sys-apps/ripgrep: drop 0.10.0
9
10 -r1 with pcre support remains
11
12 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
13 Package-Manager: Portage-2.3.50, Repoman-2.3.11
14
15 sys-apps/ripgrep/ripgrep-0.10.0.ebuild | 129 ---------------------------------
16 1 file changed, 129 deletions(-)
17
18 diff --git a/sys-apps/ripgrep/ripgrep-0.10.0.ebuild b/sys-apps/ripgrep/ripgrep-0.10.0.ebuild
19 deleted file mode 100644
20 index f9b287ae30a..00000000000
21 --- a/sys-apps/ripgrep/ripgrep-0.10.0.ebuild
22 +++ /dev/null
23 @@ -1,129 +0,0 @@
24 -# Copyright 1999-2018 Gentoo Foundation
25 -# Distributed under the terms of the GNU General Public License v2
26 -
27 -EAPI=6
28 -
29 -CRATES="
30 -aho-corasick-0.6.8
31 -arrayvec-0.4.7
32 -atty-0.2.11
33 -base64-0.9.2
34 -bitflags-1.0.4
35 -bytecount-0.3.2
36 -byteorder-1.2.6
37 -cc-1.0.24
38 -cfg-if-0.1.5
39 -clap-2.32.0
40 -cloudabi-0.0.3
41 -crossbeam-channel-0.2.4
42 -crossbeam-epoch-0.5.2
43 -crossbeam-utils-0.5.0
44 -encoding_rs-0.8.6
45 -encoding_rs_io-0.1.2
46 -fnv-1.0.6
47 -fuchsia-zircon-0.3.3
48 -fuchsia-zircon-sys-0.3.3
49 -glob-0.2.11
50 -globset-0.4.2
51 -grep-0.2.2
52 -grep-cli-0.1.1
53 -grep-matcher-0.1.1
54 -grep-pcre2-0.1.1
55 -grep-printer-0.1.1
56 -grep-regex-0.1.1
57 -grep-searcher-0.1.1
58 -ignore-0.4.4
59 -itoa-0.4.2
60 -lazy_static-1.1.0
61 -libc-0.2.43
62 -lock_api-0.1.3
63 -log-0.4.5
64 -memchr-2.0.2
65 -memmap-0.6.2
66 -memoffset-0.2.1
67 -nodrop-0.1.12
68 -num_cpus-1.8.0
69 -owning_ref-0.3.3
70 -parking_lot-0.6.4
71 -parking_lot_core-0.3.0
72 -pcre2-0.1.0
73 -pcre2-sys-0.1.1
74 -pkg-config-0.3.14
75 -proc-macro2-0.4.18
76 -quote-0.6.8
77 -rand-0.4.3
78 -rand-0.5.5
79 -rand_core-0.2.1
80 -redox_syscall-0.1.40
81 -redox_termios-0.1.1
82 -regex-1.0.5
83 -regex-syntax-0.6.2
84 -remove_dir_all-0.5.1
85 -ripgrep-0.10.0
86 -ryu-0.2.6
87 -safemem-0.2.0
88 -same-file-1.0.3
89 -scopeguard-0.3.3
90 -serde-1.0.77
91 -serde_derive-1.0.77
92 -serde_json-1.0.27
93 -simd-0.2.2
94 -smallvec-0.6.5
95 -stable_deref_trait-1.1.1
96 -strsim-0.7.0
97 -syn-0.15.1
98 -tempdir-0.3.7
99 -termcolor-1.0.3
100 -termion-1.5.1
101 -textwrap-0.10.0
102 -thread_local-0.3.6
103 -ucd-util-0.1.1
104 -unicode-width-0.1.5
105 -unicode-xid-0.1.0
106 -unreachable-1.0.0
107 -utf8-ranges-1.0.1
108 -version_check-0.1.4
109 -void-1.0.2
110 -walkdir-2.2.5
111 -winapi-0.3.5
112 -winapi-i686-pc-windows-gnu-0.4.0
113 -winapi-util-0.1.1
114 -winapi-x86_64-pc-windows-gnu-0.4.0
115 -wincolor-1.0.1
116 -"
117 -
118 -inherit cargo bash-completion-r1
119 -
120 -DESCRIPTION="a search tool that combines the usability of ag with the raw speed of grep"
121 -HOMEPAGE="https://github.com/BurntSushi/ripgrep"
122 -SRC_URI="$(cargo_crate_uris ${CRATES})"
123 -
124 -LICENSE="|| ( MIT Unlicense )"
125 -SLOT="0"
126 -KEYWORDS="~amd64 ~x86"
127 -IUSE="doc"
128 -
129 -DEPEND=">=virtual/rust-1.20
130 - doc? ( app-text/asciidoc )"
131 -
132 -QA_FLAGS_IGNORED="usr/bin/rg"
133 -
134 -src_test() {
135 - cargo test || die "tests failed"
136 -}
137 -
138 -src_install() {
139 - cargo_src_install
140 -
141 - # hacks to find/install generated files
142 - BUILD_DIR=$(dirname $(find target/release -name rg.bash))
143 - if use doc ; then
144 - doman "${BUILD_DIR}"/rg.1
145 - fi
146 - newbashcomp "${BUILD_DIR}"/rg.bash rg
147 -
148 - dodoc CHANGELOG.md README.md
149 -
150 - insinto /usr/share/zsh/site-functions
151 - doins complete/_rg
152 -}