Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/graaff:master commit in: dev-ruby/acts_as_list/
Date: Mon, 30 Apr 2012 09:31:56
Message-Id: 1334311179.56079ecdc79854c42c35e7402f531ac8ed0db4ba.graaff@gentoo
1 commit: 56079ecdc79854c42c35e7402f531ac8ed0db4ba
2 Author: Hans de Graaff <hans <AT> degraaff <DOT> org>
3 AuthorDate: Fri Apr 13 09:59:39 2012 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 13 09:59:39 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/graaff.git;a=commit;h=56079ecd
7
8 Version bump.
9
10 (Portage version: 2.1.10.49/git/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
11
12 ---
13 dev-ruby/acts_as_list/ChangeLog | 5 ++++
14 dev-ruby/acts_as_list/Manifest | 7 +++--
15 dev-ruby/acts_as_list/acts_as_list-0.1.5.ebuild | 29 +++++++++++++++++++++++
16 3 files changed, 38 insertions(+), 3 deletions(-)
17
18 diff --git a/dev-ruby/acts_as_list/ChangeLog b/dev-ruby/acts_as_list/ChangeLog
19 index d378800..b73295f 100644
20 --- a/dev-ruby/acts_as_list/ChangeLog
21 +++ b/dev-ruby/acts_as_list/ChangeLog
22 @@ -2,6 +2,11 @@
23 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
24 # $Header: $
25
26 +*acts_as_list-0.1.5 (13 Apr 2012)
27 +
28 + 13 Apr 2012; Hans de Graaff <graaff@g.o> +acts_as_list-0.1.5.ebuild:
29 + Version bump.
30 +
31 04 Apr 2012; Hans de Graaff <graaff@g.o> acts_as_list-0.1.4.ebuild:
32 Add ruby19 support. Drop x86 because of it.
33
34
35 diff --git a/dev-ruby/acts_as_list/Manifest b/dev-ruby/acts_as_list/Manifest
36 index 8757a8b..94653a5 100644
37 --- a/dev-ruby/acts_as_list/Manifest
38 +++ b/dev-ruby/acts_as_list/Manifest
39 @@ -2,10 +2,11 @@
40 Hash: SHA256
41
42 DIST acts_as_list-0.1.4.gem 9728 RMD160 ca05c0a814da8a84fa2cf0c0bbd8b3631b2754ac SHA1 0093c8f7aa8d91e3cac15e03e0d6b32d49e5701d SHA256 173a4dfa6d2e15c86eb6a6f4da4c37e2f31b11e368a179ef2aaaf1118b9f3602
43 +DIST acts_as_list-0.1.5.gem 11264 RMD160 a1ac0d2bc1fbc481debf83000ec5a3e59933042a SHA1 fa45b32eb438088890e2a96bc1cfa686ef014644 SHA256 6a6122f6139999535924826c07474c9ea84b17ea5e6f6a4ecf28406322dd025e
44 -----BEGIN PGP SIGNATURE-----
45 Version: GnuPG v2.0.17 (GNU/Linux)
46
47 -iF4EAREIAAYFAk9780cACgkQiIP6VqMIqNd+iwD9EMZuZIs+Tw3iK4O7FawMWgzR
48 -cp7qYAKJXx+sOMsy8asBAIF4UqX0o1Go8B7FWRmNmqfl+pbH8xWnLLPNssSCp9lf
49 -=sBCC
50 +iF4EAREIAAYFAk+H+QsACgkQiIP6VqMIqNejswEAlVRTXyjXxK8texrDg3q1gT4I
51 +Pwx4to67hwCb77eKQg8A/Ai1YkCE0Hi6bcwpV0U1hXP5Ru2eXStAiwhxwcO+InB3
52 +=+ErR
53 -----END PGP SIGNATURE-----
54
55 diff --git a/dev-ruby/acts_as_list/acts_as_list-0.1.5.ebuild b/dev-ruby/acts_as_list/acts_as_list-0.1.5.ebuild
56 new file mode 100644
57 index 0000000..d09f438
58 --- /dev/null
59 +++ b/dev-ruby/acts_as_list/acts_as_list-0.1.5.ebuild
60 @@ -0,0 +1,29 @@
61 +# Copyright 1999-2012 Gentoo Foundation
62 +# Distributed under the terms of the GNU General Public License v2
63 +# $Header: $
64 +
65 +EAPI=2
66 +USE_RUBY="ruby18 ruby19 ree18"
67 +
68 +inherit ruby-fakegem
69 +
70 +RUBY_FAKEGEM_TASK_TEST="-Ilib test"
71 +
72 +RUBY_FAKEGEM_TASK_DOC=""
73 +RUBY_FAKEGEM_EXTRADOC="README.rdoc"
74 +
75 +DESCRIPTION="Capabilities for sorting and reordering a number of objects in a list."
76 +HOMEPAGE="http://rake.rubyforge.org/"
77 +
78 +LICENSE="MIT"
79 +SLOT="0"
80 +KEYWORDS="~amd64 ~x86-macos"
81 +IUSE=""
82 +
83 +ruby_add_bdepend "test? ( virtual/ruby-test-unit dev-ruby/activerecord )"
84 +
85 +all_ruby_prepare() {
86 + rm Gemfile || die
87 + sed -i -e '/[Bb]undler/d' Rakefile || die
88 + sed -i -e '1,9d' test/helper.rb || die
89 +}