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/rqrcode_core/
Date: Tue, 29 Dec 2020 06:36:25
Message-Id: 1609223776.350384b4cbf898c49284506c1873e81504ae76bc.graaff@gentoo
1 commit: 350384b4cbf898c49284506c1873e81504ae76bc
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 28 12:53:45 2020 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 29 06:36:16 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=350384b4
7
8 dev-ruby/rqrcode_core: add 0.2.0
9
10 Package-Manager: Portage-3.0.9, Repoman-3.0.2
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/rqrcode_core/Manifest | 1 +
14 dev-ruby/rqrcode_core/rqrcode_core-0.2.0.ebuild | 28 +++++++++++++++++++++++++
15 2 files changed, 29 insertions(+)
16
17 diff --git a/dev-ruby/rqrcode_core/Manifest b/dev-ruby/rqrcode_core/Manifest
18 index 2daf0bc1d18..43adb1e57d0 100644
19 --- a/dev-ruby/rqrcode_core/Manifest
20 +++ b/dev-ruby/rqrcode_core/Manifest
21 @@ -1,2 +1,3 @@
22 DIST rqrcode_core-0.1.0.tar.gz 20241 BLAKE2B 1d6f97cd8e1188c0a3ba0246d2102a901ac64fb0bb08317479f9061d3273ea49388e4a6ea02c8de6b54f8e928aefab62fe8b0dca8ba9f7ed31625cf84965df4b SHA512 30ba73f45d69360b0efbf543a774c709a4397bd8f726f4edeaa830397187cd5c7535ac5816d65cea00f356f7111f69629f03fa508b7a7fc91d5618c4cebd8167
23 DIST rqrcode_core-0.1.2.tar.gz 20165 BLAKE2B 7d8cabcb2258a667c3b27fcbd11988bbe5cba849b191c45f3288b4d096a6d13df614e64977ce633ec829f0350bbd7ee153342070845f5ed0d6121e6e2aab321a SHA512 9e4362b3b72193a20e44b636b3dfdbb7e496667b147e391660464ea6fd279720cbf4419e3d94561b61bee291c56fee8a3171f2287e2660f071dbda8d7153285b
24 +DIST rqrcode_core-0.2.0.tar.gz 20167 BLAKE2B 68ddad8e908404a9e156cffd0d1f2704671ffeaca0ce48a2a74b3512076d89812f19b537cbef98f3b0ae046486ab11f7681b187a07fb53539afb188bdcc87c21 SHA512 96a1fc3484aabfc30b9a26da705405e56cb82168d34ce252f35481b03142ddab359dfbfc4601d12f67f5a65d466120fc0a295c66c0a7ae07401b58cbd8d5c47a
25
26 diff --git a/dev-ruby/rqrcode_core/rqrcode_core-0.2.0.ebuild b/dev-ruby/rqrcode_core/rqrcode_core-0.2.0.ebuild
27 new file mode 100644
28 index 00000000000..71e3c38c418
29 --- /dev/null
30 +++ b/dev-ruby/rqrcode_core/rqrcode_core-0.2.0.ebuild
31 @@ -0,0 +1,28 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +USE_RUBY="ruby25 ruby26 ruby27 ruby30"
38 +
39 +RUBY_FAKEGEM_EXTRADOC="README.md"
40 +
41 +RUBY_FAKEGEM_BINWRAP=""
42 +
43 +RUBY_FAKEGEM_GEMSPEC="rqrcode_core.gemspec"
44 +
45 +inherit ruby-fakegem
46 +
47 +DESCRIPTION="Library for encoding QR Codes"
48 +HOMEPAGE="https://github.com/whomwah/rqrcode_core/"
49 +SRC_URI="https://github.com/whomwah/rqrcode_core/archive/v${PV}.tar.gz -> ${P}.tar.gz"
50 +
51 +LICENSE="MIT"
52 +SLOT="0"
53 +KEYWORDS="~amd64"
54 +IUSE=""
55 +
56 +all_ruby_prepare() {
57 + sed -i -e '/bundler/ s:^:#:' Rakefile || die
58 + sed -i -e 's/git ls-files -z/find . -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die
59 +}