Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/colorator/
Date: Fri, 29 Apr 2016 20:45:10
Message-Id: 1461962692.288c37ee026dc6d9d111156bed0c792dd4a6edfa.mrueg@gentoo
1 commit: 288c37ee026dc6d9d111156bed0c792dd4a6edfa
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 29 20:44:52 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 29 20:44:52 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=288c37ee
7
8 Version bump to 1.0.0
9
10 Package-Manager: portage-2.2.28
11
12 dev-ruby/colorator/Manifest | 1 +
13 dev-ruby/colorator/colorator-1.0.0.ebuild | 27 +++++++++++++++++++++++++++
14 2 files changed, 28 insertions(+)
15
16 diff --git a/dev-ruby/colorator/Manifest b/dev-ruby/colorator/Manifest
17 index 63430d9..1fa394d 100644
18 --- a/dev-ruby/colorator/Manifest
19 +++ b/dev-ruby/colorator/Manifest
20 @@ -1 +1,2 @@
21 DIST colorator-0.1.gem 7680 SHA256 7adfe632249e619a955347ba0403dc97219f6d262ed719dc5b94a7e66109f727 SHA512 572a15f4d3011579302ae5448c9752511baec962d65265e923f561b002a3a80384610ab877233f15c1c6953a765fbf32b2d2838a658d207900cf53b6525caee2 WHIRLPOOL 833187760367c2f6493bf4dc229ba140f3987b41b58e49749578c3aa65500edd3c40806c3bfec7c2dd56bd6b73d8dfd28cc48678893f03aa7ec3575805bc4cf9
22 +DIST colorator-1.0.0.tar.gz 5063 SHA256 e7ecb784ab500815081d3add4ea371351b86af91510aca7d52ef1dfffe0664be SHA512 c6755dc822a67b39f8a3d2feeadede7159554a39c49fc3d04370bedee7d58cb9b7208592f84c3aa13a6a5c84b0076aa39926a6f77598d55d38697ba2b4945749 WHIRLPOOL 8f4b2eb4c0585e669d35ca047356acfdb1f020e614e18df964b5980af2effae8b33065d3d2bd2971784cab88f15902f0021b08903da157135660c5baa116b801
23
24 diff --git a/dev-ruby/colorator/colorator-1.0.0.ebuild b/dev-ruby/colorator/colorator-1.0.0.ebuild
25 new file mode 100644
26 index 0000000..dc00e6a
27 --- /dev/null
28 +++ b/dev-ruby/colorator/colorator-1.0.0.ebuild
29 @@ -0,0 +1,27 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +USE_RUBY="ruby20 ruby21 ruby22 ruby23"
36 +
37 +RUBY_FAKEGEM_EXTRADOC="README.markdown"
38 +RUBY_FAKEGEM_RECIPE_DOC="rdoc"
39 +
40 +RUBY_FAKEGEM_RECIPE_TEST="rspec3"
41 +
42 +inherit ruby-fakegem
43 +
44 +DESCRIPTION="Colorize your text in the terminal"
45 +HOMEPAGE="https://github.com/octopress/colorator"
46 +SRC_URI="https://github.com/octopress/colorator/archive/v${PV}.tar.gz -> ${P}.tar.gz"
47 +
48 +LICENSE="MIT"
49 +SLOT="0"
50 +KEYWORDS="~amd64"
51 +IUSE=""
52 +
53 +all_ruby_prepare() {
54 + sed -i -e "/bundler/d" Rakefile || die
55 + sed -i -e "/luna/d" spec/spec/helper.rb || die
56 +}