Gentoo Archives: gentoo-commits

From: "Manuel Rueger (mrueg)" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ruby/ffi: ffi-1.9.2.ebuild ChangeLog
Date: Wed, 30 Oct 2013 05:47:40
Message-Id: 20131030054736.F01E720047@flycatcher.gentoo.org
1 mrueg 13/10/30 05:47:36
2
3 Modified: ChangeLog
4 Added: ffi-1.9.2.ebuild
5 Log:
6 Version bump. Switched from LGPL to BSD.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key )
9
10 Revision Changes Path
11 1.53 dev-ruby/ffi/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ffi/ChangeLog?rev=1.53&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ffi/ChangeLog?rev=1.53&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ffi/ChangeLog?r1=1.52&r2=1.53
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-ruby/ffi/ChangeLog,v
20 retrieving revision 1.52
21 retrieving revision 1.53
22 diff -u -r1.52 -r1.53
23 --- ChangeLog 29 Oct 2013 15:55:55 -0000 1.52
24 +++ ChangeLog 30 Oct 2013 05:47:36 -0000 1.53
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-ruby/ffi
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ffi/ChangeLog,v 1.52 2013/10/29 15:55:55 graaff Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ffi/ChangeLog,v 1.53 2013/10/30 05:47:36 mrueg Exp $
30 +
31 +*ffi-1.9.2 (30 Oct 2013)
32 +
33 + 30 Oct 2013; Manuel Rüger <mrueg@g.o> +ffi-1.9.2.ebuild:
34 + Version bump. Switched from LGPL to BSD.
35
36 *ffi-1.9.1 (29 Oct 2013)
37
38
39
40
41 1.1 dev-ruby/ffi/ffi-1.9.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ffi/ffi-1.9.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/ffi/ffi-1.9.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ffi-1.9.2.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-ruby/ffi/ffi-1.9.2.ebuild,v 1.1 2013/10/30 05:47:36 mrueg Exp $
51
52 EAPI=5
53
54 # jruby → unneeded, this is part of the standard JRuby distribution, and
55 # would just install a dummy.
56 USE_RUBY="ruby18 ruby19 ruby20"
57
58 RUBY_FAKEGEM_TASK_TEST="specs"
59
60 RUBY_FAKEGEM_TASK_DOC="doc:yard"
61 RUBY_FAKEGEM_DOCDIR="doc"
62 RUBY_FAKEGEM_EXTRADOC="README.md"
63
64 inherit ruby-fakegem
65
66 DESCRIPTION="Ruby extension for programmatically loading dynamic libraries"
67 HOMEPAGE="http://wiki.github.com/ffi/ffi"
68
69 SRC_URI="http://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${PN}-git-${PV}.tgz"
70
71 IUSE=""
72 LICENSE="BSD"
73 SLOT="0"
74 KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
75
76 RDEPEND+=" virtual/libffi"
77 DEPEND+=" virtual/libffi"
78
79 ruby_add_bdepend "dev-ruby/rake-compiler dev-ruby/yard
80 test? ( dev-ruby/rspec:2 )"
81
82 ruby_add_rdepend "virtual/ruby-threads"
83
84 all_ruby_prepare() {
85 sed -i -e '/tasks/ s:^:#:' \
86 -e '/Gem::Tasks/,/end/ s:^:#:' Rakefile || die
87 }
88
89 each_ruby_compile() {
90 ${RUBY} -S rake compile || die "compile failed"
91 ${RUBY} -S rake -f gen/Rakefile || die "types.conf generation failed"
92 }
93
94 all_ruby_install() {
95 all_fakegem_install
96
97 docinto examples
98 dodoc samples/*
99 }