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/date_validator: date_validator-0.8.1.ebuild ChangeLog
Date: Sun, 05 Jul 2015 05:55:32
Message-Id: 20150705055519.2211174E@oystercatcher.gentoo.org
1 graaff 15/07/05 05:55:19
2
3 Modified: ChangeLog
4 Added: date_validator-0.8.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.11 dev-ruby/date_validator/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/date_validator/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/date_validator/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/date_validator/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/date_validator/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 7 Jun 2015 17:37:22 -0000 1.10
24 +++ ChangeLog 5 Jul 2015 05:55:19 -0000 1.11
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/date_validator
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/date_validator/ChangeLog,v 1.10 2015/06/07 17:37:22 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/date_validator/ChangeLog,v 1.11 2015/07/05 05:55:19 graaff Exp $
30 +
31 +*date_validator-0.8.1 (05 Jul 2015)
32 +
33 + 05 Jul 2015; Hans de Graaff <graaff@g.o> +date_validator-0.8.1.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/date_validator/date_validator-0.8.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/date_validator/date_validator-0.8.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/date_validator/date_validator-0.8.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: date_validator-0.8.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/date_validator/date_validator-0.8.1.ebuild,v 1.1 2015/07/05 05:55:19 graaff Exp $
51
52 EAPI=5
53 USE_RUBY="ruby19 ruby20 ruby21"
54
55 RUBY_FAKEGEM_TASK_TEST="test"
56
57 RUBY_FAKEGEM_TASK_DOC="docs"
58 RUBY_FAKEGEM_EXTRADOC="Readme.md"
59
60 RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
61
62 # if ever needed
63 #GITHUB_USER="codegram"
64 #GITHUB_PROJECT="${PN}"
65 #RUBY_S="${GITHUB_USER}-${GITHUB_PROJECT}-*"
66
67 inherit ruby-fakegem
68
69 DESCRIPTION="Simple, ORM agnostic, Ruby 1.9 compatible date validator for Rails 3"
70 HOMEPAGE="https://github.com/codegram/date_validator"
71
72 LICENSE="MIT"
73 SLOT="3"
74 KEYWORDS="~amd64"
75 IUSE=""
76
77 ruby_add_rdepend ">=dev-ruby/activemodel-3.0:*
78 "
79
80 ruby_add_bdepend "
81 test? (
82 dev-ruby/minitest
83 >=dev-ruby/tzinfo-0.3
84 >=dev-ruby/activesupport-3.0
85 )
86 doc? ( dev-ruby/yard )"
87
88 all_ruby_prepare() {
89 sed -i \
90 -e '/git ls-files/d' \
91 ${RUBY_FAKEGEM_GEMSPEC} || die
92 sed -i \
93 -e '/[Bb]undler/s/^/#/' Rakefile || die
94 # Fix tests
95 sed -i -e "1irequire 'active_support'" test/test_helper.rb || die
96 }