Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/highline/
Date: Sat, 05 Sep 2020 08:01:43
Message-Id: 1599292882.cfa760e30b6420d356c1ad9ae1d8bdbaa065a7a7.graaff@gentoo
1 commit: cfa760e30b6420d356c1ad9ae1d8bdbaa065a7a7
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 5 06:09:44 2020 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 5 08:01:22 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfa760e3
7
8 dev-ruby/highline: cleanup
9
10 Package-Manager: Portage-3.0.4, Repoman-2.3.23
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/highline/Manifest | 1 -
14 dev-ruby/highline/highline-1.7.8.ebuild | 41 ---------------------------------
15 2 files changed, 42 deletions(-)
16
17 diff --git a/dev-ruby/highline/Manifest b/dev-ruby/highline/Manifest
18 index fa3c57aa68a..ccf43edf369 100644
19 --- a/dev-ruby/highline/Manifest
20 +++ b/dev-ruby/highline/Manifest
21 @@ -1,2 +1 @@
22 -DIST highline-1.7.8.gem 224768 BLAKE2B 683fa70e3ea4bf697ab5a1cd40da2528e2586f8fe12fb0ffb799938f2bfa2efe64fe1424c0ee1f90ae3df69f86a92f44eebcbb2ab34f18b3c4cdbb143e596067 SHA512 85f57ab732009cc961b824e252f0b65bbe7c0a8c97849d453773a331016b2ea8fa0efe393bc1a0073eae6d3cf523d97b9434cd73bdceed55bc069be0b6f4b41d
23 DIST highline-2.0.3.tar.gz 234205 BLAKE2B 4748c3ad8a15e551162ab9f2eb6e176297d833d13e6f5db7898f99c71f25e8a2a01057b0438c5d30b56a66333bbba0da1a435cfa07db97f2ffc5e301157618ef SHA512 f432c8836040bcfb147a84efa2dd3feee7f3f6e03eafbf4232e9457aeef8cb9ca83fcf854d3b261f59a166666abc3f2c8fc0f1279a7efeb07dea8a13be22ebde
24
25 diff --git a/dev-ruby/highline/highline-1.7.8.ebuild b/dev-ruby/highline/highline-1.7.8.ebuild
26 deleted file mode 100644
27 index 72db97dc500..00000000000
28 --- a/dev-ruby/highline/highline-1.7.8.ebuild
29 +++ /dev/null
30 @@ -1,41 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -
36 -USE_RUBY="ruby23 ruby24 ruby25"
37 -
38 -RUBY_FAKEGEM_EXTRADOC="Changelog.md README.rdoc TODO"
39 -RUBY_FAKEGEM_DOCDIR="doc/html"
40 -
41 -inherit ruby-fakegem
42 -
43 -DESCRIPTION="Highline is a high-level command-line IO library for ruby"
44 -HOMEPAGE="https://github.com/JEG2/highline"
45 -
46 -IUSE=""
47 -LICENSE="|| ( GPL-2 Ruby )"
48 -SLOT="0"
49 -KEYWORDS="amd64 hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
50 -
51 -ruby_add_bdepend "test? ( dev-ruby/rdoc )"
52 -
53 -all_ruby_prepare() {
54 - # fix up gemspec file not to call git
55 - sed -i -e '/git ls-files/d' highline.gemspec || die
56 -
57 - # Avoid unneeded dependencies
58 - sed -i -e '/\(bundler\|code_statistics\)/ s:^:#:' \
59 - -e '/PackageTask/,/end/ s:^:#:' Rakefile || die
60 -
61 - # Avoid tests that require a real console because we can't provide
62 - # that when running tests through portage. These should pass when
63 - # run in a console. We should probably narrow this down more to the
64 - # specific tests.
65 - rm test/tc_highline.rb || die
66 -
67 - sed -i -e '/test_question_options/,/^ end/ s:^:#:' \
68 - -e '/test_paged_print_infinite_loop_bug/,/^ end/ s:^:#:' \
69 - -e '/test_cancel_paging/,/^ end/ s:^:#:' \
70 - test/tc_menu.rb || die
71 -}