Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/ruby-gobject-introspection/
Date: Thu, 30 May 2019 19:12:51
Message-Id: 1559243553.62815573beb967ec7fae37a71b4c5d54a635da52.graaff@gentoo
1 commit: 62815573beb967ec7fae37a71b4c5d54a635da52
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 30 18:48:37 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Thu May 30 19:12:33 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62815573
7
8 dev-ruby/ruby-gobject-introspection: add 3.3.6
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11 Package-Manager: Portage-2.3.66, Repoman-2.3.11
12
13 dev-ruby/ruby-gobject-introspection/Manifest | 1 +
14 .../ruby-gobject-introspection-3.3.6.ebuild | 36 ++++++++++++++++++++++
15 2 files changed, 37 insertions(+)
16
17 diff --git a/dev-ruby/ruby-gobject-introspection/Manifest b/dev-ruby/ruby-gobject-introspection/Manifest
18 index 1b65a51f45d..f9915c2e278 100644
19 --- a/dev-ruby/ruby-gobject-introspection/Manifest
20 +++ b/dev-ruby/ruby-gobject-introspection/Manifest
21 @@ -1 +1,2 @@
22 DIST ruby-gnome2-all-3.3.2.tar.gz 2310841 BLAKE2B 8f50dc289cd097fa476a3419ffec623009395384bcfa965803f3e4e857e095866e0233e7546150c5e54d1e35f71c5e72a2880100a881ba037356208e5d3721ce SHA512 4581aad8c69db2b6be3b067ff60994fb3567d68299f634e085319ac81f51e1d681972ccba715f8e93df3adba155fa8cd3a49929cd77f6eb01856be30e551b21c
23 +DIST ruby-gnome2-all-3.3.6.tar.gz 2307419 BLAKE2B 80d981528a7d1ff41400e8555c7576ac299a5e3b7d3fc7f78843ae0bedfa6ad43c79d3ebef60b918236c9054b0e5de462b48a274d1fdd03f6f288ff53d6645a5 SHA512 8bcd439cee77efc70423eeec43380f080b348627384c675e3b3a810e602b5da4f04bc476eccabdf009a442d496442e7a45a23f126bde4b356af70ac9949c27f5
24
25 diff --git a/dev-ruby/ruby-gobject-introspection/ruby-gobject-introspection-3.3.6.ebuild b/dev-ruby/ruby-gobject-introspection/ruby-gobject-introspection-3.3.6.ebuild
26 new file mode 100644
27 index 00000000000..2cb9544a260
28 --- /dev/null
29 +++ b/dev-ruby/ruby-gobject-introspection/ruby-gobject-introspection-3.3.6.ebuild
30 @@ -0,0 +1,36 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +USE_RUBY="ruby24 ruby25 ruby26"
36 +
37 +inherit ruby-ng-gnome2
38 +
39 +RUBY_S=ruby-gnome2-all-${PV}/gobject-introspection
40 +
41 +DESCRIPTION="Ruby GObjectIntrospection bindings"
42 +KEYWORDS="~amd64 ~ppc ~x86"
43 +IUSE=""
44 +
45 +DEPEND+=" dev-libs/gobject-introspection"
46 +RDEPEND+=" dev-libs/gobject-introspection"
47 +
48 +ruby_add_rdepend "~dev-ruby/ruby-glib2-${PV}"
49 +
50 +all_ruby_prepare() {
51 + # Remove pregenerated Makefile since it will otherwise be shared by all targets.
52 + rm -f Makefile Makefile.lib ext/gobject-introspection/Makefile || die
53 +
54 + # Avoid native installer
55 + sed -i -e '/native-package-installer/ s:^:#: ; /^\s*setup_homebrew/ s:^:#:' ../glib2/lib/mkmf-gnome2.rb || die
56 +
57 + # Avoid unneeded dependency on test-unit-notify.
58 + sed -i -e '/notify/ s:^:#:' test/gobject-introspection-test-utils.rb || die
59 +
60 + # Avoid compilation of dependencies during test.
61 + sed -i -e '/system/,/^ end/ s:^:#:' test/run-test.rb || die
62 +}
63 +
64 +each_ruby_test() {
65 + ${RUBY} test/run-test.rb || die
66 +}