Gentoo Archives: gentoo-commits

From: "Hans de Graaff (graaff)" <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/highline: highline-1.7.3.ebuild ChangeLog
Date: Sun, 02 Aug 2015 06:43:54
Message-Id: 20150802064343.87C4211F@oystercatcher.gentoo.org
1 graaff 15/08/02 06:43:43
2
3 Modified: ChangeLog
4 Added: highline-1.7.3.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.106 dev-ruby/highline/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/highline/ChangeLog?rev=1.106&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/highline/ChangeLog?rev=1.106&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/highline/ChangeLog?r1=1.105&r2=1.106
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/highline/ChangeLog,v
20 retrieving revision 1.105
21 retrieving revision 1.106
22 diff -u -r1.105 -r1.106
23 --- ChangeLog 7 Jun 2015 17:56:45 -0000 1.105
24 +++ ChangeLog 2 Aug 2015 06:43:43 -0000 1.106
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/highline
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/highline/ChangeLog,v 1.105 2015/06/07 17:56:45 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/highline/ChangeLog,v 1.106 2015/08/02 06:43:43 graaff Exp $
30 +
31 +*highline-1.7.3 (02 Aug 2015)
32 +
33 + 02 Aug 2015; Hans de Graaff <graaff@g.o> +highline-1.7.3.ebuild:
34 + Version bump.
35
36 07 Jun 2015; Justin Lecher <jlec@g.o> metadata.xml:
37 Add github to remote-id in metadata.xml
38
39
40
41 1.1 dev-ruby/highline/highline-1.7.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/highline/highline-1.7.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/highline/highline-1.7.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: highline-1.7.3.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/highline/highline-1.7.3.ebuild,v 1.1 2015/08/02 06:43:43 graaff Exp $
51
52 EAPI=5
53
54 USE_RUBY="ruby19 ruby20 ruby21 ruby22"
55
56 RUBY_FAKEGEM_EXTRADOC="Changelog.md README.rdoc TODO"
57 RUBY_FAKEGEM_DOCDIR="doc/html"
58
59 inherit ruby-fakegem
60
61 DESCRIPTION="Highline is a high-level command-line IO library for ruby"
62 HOMEPAGE="https://github.com/JEG2/highline"
63
64 IUSE=""
65 LICENSE="|| ( GPL-2 Ruby )"
66 SLOT="0"
67 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
68
69 all_ruby_prepare() {
70 # fix up gemspec file not to call git
71 sed -i -e '/git ls-files/d' highline.gemspec || die
72
73 # Avoid unneeded dependencies
74 sed -i -e '/\(bundler\|code_statistics\)/ s:^:#:' \
75 -e '/PackageTask/,/end/ s:^:#:' Rakefile || die
76
77 # Avoid tests that require a real console because we can't provide
78 # that when running tests through portage. These should pass when
79 # run in a console. We should probably narrow this down more to the
80 # specific tests.
81 rm test/tc_highline.rb || die
82
83 sed -i -e '/test_question_options/,/^ end/ s:^:#:' \
84 -e '/test_paged_print_infinite_loop_bug/,/^ end/ s:^:#:' \
85 -e '/test_cancel_paging/,/^ end/ s:^:#:' \
86 test/tc_menu.rb || die
87 }