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/globalid/
Date: Sat, 12 Jan 2019 07:26:03
Message-Id: 1547277667.b59ac57f29d7b507c2de2ca1f9dcc7c3457ab7c8.graaff@gentoo
1 commit: b59ac57f29d7b507c2de2ca1f9dcc7c3457ab7c8
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 12 07:21:07 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 12 07:21:07 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b59ac57f
7
8 dev-ruby/globalid: add 0.4.2
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 dev-ruby/globalid/Manifest | 1 +
14 dev-ruby/globalid/globalid-0.4.2.ebuild | 26 ++++++++++++++++++++++++++
15 2 files changed, 27 insertions(+)
16
17 diff --git a/dev-ruby/globalid/Manifest b/dev-ruby/globalid/Manifest
18 index 452fb1c0659..5a334297216 100644
19 --- a/dev-ruby/globalid/Manifest
20 +++ b/dev-ruby/globalid/Manifest
21 @@ -1 +1,2 @@
22 DIST globalid-0.4.1.tar.gz 17924 BLAKE2B 6657c916049f841f472f6320868287451d061f96501f5a2b4df8fd71512f5752d5568185c8166344494fa3f6829ec0047f54235c8ea4e01b040653b8699d0484 SHA512 da484c6c7e8155416d008d650929c6b72981d2ae2d1654eb02e414838a065dad9b4ba3c6e275abb008a0d9cad1e2d4d5295d90807c7d7fc73e55b7071c0fd657
23 +DIST globalid-0.4.2.tar.gz 18669 BLAKE2B 7773362a16f5e3d0fec2a45e9bc768b5f22072d148bc77289c6841f24e4187f88b34bb9134f3ac086390bea5664d4cfa4281d96b0b8a3750e09e461350a0a50a SHA512 2f101601e36fdb6ba912652bbcc78a0561e0233c58d481dacbddd250ed39a1fa68a9b9c1cdadbdc708ac3147f64475fd6b68562d1ebab376fd2a517c93a23e49
24
25 diff --git a/dev-ruby/globalid/globalid-0.4.2.ebuild b/dev-ruby/globalid/globalid-0.4.2.ebuild
26 new file mode 100644
27 index 00000000000..e4d0332567f
28 --- /dev/null
29 +++ b/dev-ruby/globalid/globalid-0.4.2.ebuild
30 @@ -0,0 +1,26 @@
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="ruby23 ruby24 ruby25"
36 +
37 +RUBY_FAKEGEM_RECIPE_DOC="rdoc"
38 +RUBY_FAKEGEM_EXTRADOC="README.md"
39 +
40 +inherit ruby-fakegem
41 +
42 +DESCRIPTION="Reference models by URI"
43 +HOMEPAGE="https://github.com/rails/globalid"
44 +SRC_URI="https://github.com/rails/globalid/archive/v${PV}.tar.gz -> ${P}.tar.gz"
45 +
46 +LICENSE="MIT"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux"
49 +IUSE=""
50 +
51 +ruby_add_bdepend "test? ( dev-ruby/bundler >=dev-ruby/activemodel-4.2.0 >=dev-ruby/railties-4.2.0 )"
52 +ruby_add_rdepend ">=dev-ruby/activesupport-4.2.0:*"
53 +
54 +all_ruby_prepare() {
55 + rm -f Gemfile.lock || die
56 +}