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/redis: ChangeLog redis-3.0.6.ebuild
Date: Tue, 21 Jan 2014 19:05:12
Message-Id: 20140121190509.7B13B2004C@flycatcher.gentoo.org
1 graaff 14/01/21 19:05:09
2
3 Modified: ChangeLog
4 Added: redis-3.0.6.ebuild
5 Log:
6 Version bump by Peter Wilmott in the ruby overlay.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
9
10 Revision Changes Path
11 1.2 dev-ruby/redis/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/redis/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/redis/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/redis/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/redis/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 26 Dec 2013 21:59:46 -0000 1.1
24 +++ ChangeLog 21 Jan 2014 19:05:09 -0000 1.2
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-ruby/redis
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/redis/ChangeLog,v 1.1 2013/12/26 21:59:46 mrueg Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/redis/ChangeLog,v 1.2 2014/01/21 19:05:09 graaff Exp $
31 +
32 +*redis-3.0.6 (21 Jan 2014)
33 +
34 + 21 Jan 2014; Hans de Graaff <graaff@g.o> +redis-3.0.6.ebuild,
35 + +files/redis-3.0.6-local-redis-server.patch:
36 + Version bump by Peter Wilmott in the ruby overlay.
37
38 *redis-3.0.5 (26 Dec 2013)
39
40
41
42
43 1.1 dev-ruby/redis/redis-3.0.6.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/redis/redis-3.0.6.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/redis/redis-3.0.6.ebuild?rev=1.1&content-type=text/plain
47
48 Index: redis-3.0.6.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/redis/redis-3.0.6.ebuild,v 1.1 2014/01/21 19:05:09 graaff Exp $
53
54 EAPI=5
55 USE_RUBY="ruby19 ruby20"
56
57 MY_P="redis-rb-${PV}"
58 RUBY_FAKEGEM_RECIPE_TEST="rake"
59 RUBY_FAKEGEM_TASK_TEST="run"
60 RUBY_FAKEGEM_RECIPE_DOC="yard"
61 RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
62 RUBY_FAKEGEM_DOCDIR="doc"
63
64 inherit ruby-fakegem
65
66 DESCRIPTION="A Ruby client library for Redis"
67 HOMEPAGE="https://github.com/redis/redis-rb"
68 SRC_URI="https://github.com/redis/redis-rb/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz"
69
70 LICENSE="MIT"
71 SLOT="0"
72 KEYWORDS="~amd64"
73 IUSE="doc test"
74
75 DEPEND="test? ( dev-db/redis )"
76
77 RUBY_S="${MY_P}"
78
79 all_ruby_prepare() {
80 # call me impatient, but this way we don't need netcat
81 sed -i \
82 -e '/test_subscribe_past_a_timeout/,+18d' \
83 test/publish_subscribe_test.rb || die "sed failed"
84
85 # Version 3.0.6 downloads and compiles redis-server to test against.
86 # This patch reverts it to the way 3.0.5 does it, using the local server.
87 # https://github.com/redis/redis-rb/commit/351a1294fe33f79c23495b7568045e9f484918f2
88 epatch "${FILESDIR}/${P}-local-redis-server.patch"
89 }