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/rbs/
Date: Mon, 28 Dec 2020 07:47:00
Message-Id: 1609141607.e38e1f39620d013b0df3eb3f3e1747d5cfe55bca.graaff@gentoo
1 commit: e38e1f39620d013b0df3eb3f3e1747d5cfe55bca
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 28 07:44:27 2020 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 28 07:46:47 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e38e1f39
7
8 dev-ruby/rbs: initial import of 1.0.0
9
10 New dependency for dev-lang/ruby
11
12 Package-Manager: Portage-3.0.9, Repoman-3.0.2
13 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
14
15 dev-ruby/rbs/Manifest | 1 +
16 dev-ruby/rbs/metadata.xml | 11 +++++++++++
17 dev-ruby/rbs/rbs-1.0.0.ebuild | 34 ++++++++++++++++++++++++++++++++++
18 3 files changed, 46 insertions(+)
19
20 diff --git a/dev-ruby/rbs/Manifest b/dev-ruby/rbs/Manifest
21 new file mode 100644
22 index 00000000000..9c3c5ba6a76
23 --- /dev/null
24 +++ b/dev-ruby/rbs/Manifest
25 @@ -0,0 +1 @@
26 +DIST rbs-1.0.0.tar.gz 497065 BLAKE2B 3cd0d583f3048e11c70882c783766ed4bcd5e464562900d4528da2218a7fcc773be8b36eb79a517314cba0db8360d6b9312531fd07b618d70575c7aef54d0efc SHA512 512e8abd883403697fde537844c99a0780e9f8d1dc59ff827c0372274573967981735065b670afed50c13ca87c6abc44bc6cf47caa9cdc6e6c117c6d0907c405
27
28 diff --git a/dev-ruby/rbs/metadata.xml b/dev-ruby/rbs/metadata.xml
29 new file mode 100644
30 index 00000000000..b6cefc32d55
31 --- /dev/null
32 +++ b/dev-ruby/rbs/metadata.xml
33 @@ -0,0 +1,11 @@
34 +<?xml version="1.0" encoding="UTF-8"?>
35 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
36 +<pkgmetadata>
37 + <maintainer type="project">
38 + <email>ruby@g.o</email>
39 + <name>Gentoo Ruby Project</name>
40 + </maintainer>
41 + <upstream>
42 + <remote-id type="github">ruby/rbs</remote-id>
43 + </upstream>
44 +</pkgmetadata>
45
46 diff --git a/dev-ruby/rbs/rbs-1.0.0.ebuild b/dev-ruby/rbs/rbs-1.0.0.ebuild
47 new file mode 100644
48 index 00000000000..84aadf8ad61
49 --- /dev/null
50 +++ b/dev-ruby/rbs/rbs-1.0.0.ebuild
51 @@ -0,0 +1,34 @@
52 +# Copyright 1999-2020 Gentoo Authors
53 +# Distributed under the terms of the GNU General Public License v2
54 +
55 +EAPI=7
56 +USE_RUBY="ruby26 ruby27 ruby30"
57 +
58 +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
59 +
60 +RUBY_FAKEGEM_BINDIR="exe"
61 +
62 +RUBY_FAKEGEM_EXTRAINSTALL="core schema sig stdlib"
63 +
64 +RUBY_FAKEGEM_GEMSPEC="rbs.gemspec"
65 +
66 +inherit ruby-fakegem
67 +
68 +DESCRIPTION="The language for type signatures for Ruby and standard library definitions"
69 +HOMEPAGE="https://github.com/ruby/rbs"
70 +SRC_URI="https://github.com/ruby/rbs/archive/v${PV}.tar.gz -> ${P}.tar.gz"
71 +
72 +LICENSE="|| ( Ruby-BSD BSD-2 )"
73 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
74 +SLOT="0"
75 +IUSE="test"
76 +
77 +ruby_add_bdepend "test? ( dev-ruby/bundler )"
78 +
79 +all_ruby_prepare() {
80 + # Avoid JSON schema validation tests due to a large dependency stack
81 + # that would be needed.
82 + rm -f test/rbs/schema_test.rb || die
83 +
84 + sed -i -e '/def test_paths/askip "Different paths in Gentoo test environment"' test/rbs/cli_test.rb || die
85 +}