Gentoo Archives: gentoo-commits

From: Ronny Gutbrod <gentoo@××××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-shells/zsh-autosuggestions/
Date: Wed, 06 Apr 2022 19:50:56
Message-Id: 1649274408.69f1edbd96d9bf63b263aff711626740a3b71fcb.tastytea@gentoo
1 commit: 69f1edbd96d9bf63b263aff711626740a3b71fcb
2 Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
3 AuthorDate: Wed Apr 6 19:36:42 2022 +0000
4 Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
5 CommitDate: Wed Apr 6 19:46:48 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=69f1edbd
7
8 app-shells/zsh-autosuggestions: drop 0.7.0
9
10 Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
11
12 .../zsh-autosuggestions-0.7.0.ebuild | 57 ----------------------
13 1 file changed, 57 deletions(-)
14
15 diff --git a/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.7.0.ebuild b/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.7.0.ebuild
16 deleted file mode 100644
17 index 924f2c04d..000000000
18 --- a/app-shells/zsh-autosuggestions/zsh-autosuggestions-0.7.0.ebuild
19 +++ /dev/null
20 @@ -1,57 +0,0 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -RUBY_FAKEGEM_RECIPE_TEST="rspec3"
27 -USE_RUBY="ruby26 ruby27 ruby30"
28 -
29 -inherit readme.gentoo-r1 ruby-fakegem
30 -
31 -DESCRIPTION="Fish-like autosuggestions for zsh"
32 -HOMEPAGE="https://github.com/zsh-users/zsh-autosuggestions"
33 -SRC_URI="https://github.com/zsh-users/zsh-autosuggestions/archive/v${PV}.tar.gz -> ${P}.tar.gz"
34 -S="${WORKDIR}/all/${P}"
35 -
36 -LICENSE="MIT"
37 -SLOT="0"
38 -KEYWORDS="~amd64"
39 -IUSE="test"
40 -
41 -RDEPEND=">=app-shells/zsh-4.3.11"
42 -BDEPEND="
43 - test? (
44 - ${RDEPEND}
45 - app-misc/tmux
46 - dev-ruby/bundler
47 - dev-ruby/pry
48 - dev-ruby/pry-byebug
49 - dev-ruby/rspec-wait
50 - )
51 -"
52 -
53 -RESTRICT="!test? ( test )"
54 -
55 -DISABLE_AUTOFORMATTING="true"
56 -DOC_CONTENTS="In order to use ${CATEGORY}/${PN} add
57 -. /usr/share/zsh/site-functions/${PN}.zsh
58 -at the end of your ~/.zshrc"
59 -
60 -src_prepare() {
61 - # FIXME: Disable failing tests
62 - rm "spec/options/buffer_max_size_spec.rb" \
63 - || die "Could not remove tests"
64 - ruby-ng_src_prepare
65 -}
66 -
67 -src_install() {
68 - insinto "/usr/share/zsh/site-functions/"
69 - doins "${PN}.zsh"
70 -
71 - readme.gentoo_create_doc
72 - einstalldocs
73 -}
74 -
75 -pkg_postinst() {
76 - readme.gentoo_print_elog
77 -}