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/dotenv: ChangeLog dotenv-2.0.1.ebuild
Date: Mon, 01 Jun 2015 05:50:57
Message-Id: 20150601055052.15273A19@oystercatcher.gentoo.org
1 graaff 15/06/01 05:50:52
2
3 Modified: ChangeLog
4 Added: dotenv-2.0.1.ebuild
5 Log:
6 Version bump. Drop ruby22 due to new rails test dependencies.
7
8 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.8 dev-ruby/dotenv/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/dotenv/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/dotenv/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/dotenv/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/dotenv/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 1 Jun 2015 05:38:43 -0000 1.7
24 +++ ChangeLog 1 Jun 2015 05:50:52 -0000 1.8
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/dotenv
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/dotenv/ChangeLog,v 1.7 2015/06/01 05:38:43 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/dotenv/ChangeLog,v 1.8 2015/06/01 05:50:52 graaff Exp $
30 +
31 +*dotenv-2.0.1 (01 Jun 2015)
32 +
33 + 01 Jun 2015; Hans de Graaff <graaff@g.o> +dotenv-2.0.1.ebuild:
34 + Version bump. Drop ruby22 due to new rails test dependencies.
35
36 01 Jun 2015; Hans de Graaff <graaff@g.o> -dotenv-0.11.1.ebuild:
37 Cleanup.
38
39
40
41 1.1 dev-ruby/dotenv/dotenv-2.0.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/dotenv/dotenv-2.0.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/dotenv/dotenv-2.0.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: dotenv-2.0.1.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/dotenv/dotenv-2.0.1.ebuild,v 1.1 2015/06/01 05:50:52 graaff Exp $
51
52 EAPI=5
53 USE_RUBY="ruby19 ruby20 ruby21"
54
55 RUBY_FAKEGEM_EXTRADOC="README.md Changelog.md"
56 RUBY_FAKEGEM_RECIPE_TEST="rspec"
57 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
58
59 inherit ruby-fakegem
60
61 DESCRIPTION="Loads environment variables from .env into ENV"
62 HOMEPAGE="https://github.com/bkeepers/dotenv"
63 SRC_URI="https://github.com/bkeepers/dotenv/archive/v${PV}.tar.gz -> ${P}.tar.gz"
64 LICENSE="MIT"
65
66 KEYWORDS="~amd64"
67 SLOT="2"
68 IUSE=""
69
70 ruby_add_bdepend "test? ( dev-ruby/spring dev-ruby/rails )"
71
72 each_ruby_prepare() {
73 sed -i -e "s:ruby -v:${RUBY} -v:g" spec/dotenv/parser_spec.rb || die
74 }