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: Sun, 29 Mar 2020 07:43:22
Message-Id: 1585467789.0e6bdb0d13f4770064c7fddba36a83522535d09f.graaff@gentoo
1 commit: 0e6bdb0d13f4770064c7fddba36a83522535d09f
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 29 06:34:12 2020 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 29 07:43:09 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e6bdb0d
7
8 dev-ruby/rqrcode_core: add 0.1.2
9
10 Package-Manager: Portage-2.3.89, Repoman-2.3.20
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.1.2.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 43369a05c11..2daf0bc1d18 100644
19 --- a/dev-ruby/rqrcode_core/Manifest
20 +++ b/dev-ruby/rqrcode_core/Manifest
21 @@ -1 +1,2 @@
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
25 diff --git a/dev-ruby/rqrcode_core/rqrcode_core-0.1.2.ebuild b/dev-ruby/rqrcode_core/rqrcode_core-0.1.2.ebuild
26 new file mode 100644
27 index 00000000000..76d6b6aeafc
28 --- /dev/null
29 +++ b/dev-ruby/rqrcode_core/rqrcode_core-0.1.2.ebuild
30 @@ -0,0 +1,28 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +USE_RUBY="ruby24 ruby25 ruby26 ruby27"
37 +
38 +RUBY_FAKEGEM_EXTRADOC="README.md"
39 +
40 +RUBY_FAKEGEM_BINWRAP=""
41 +
42 +RUBY_FAKEGEM_GEMSPEC="rqrcode_core.gemspec"
43 +
44 +inherit ruby-fakegem
45 +
46 +DESCRIPTION="Library for encoding QR Codes"
47 +HOMEPAGE="https://github.com/whomwah/rqrcode_core/"
48 +SRC_URI="https://github.com/whomwah/rqrcode_core/archive/v${PV}.tar.gz -> ${P}.tar.gz"
49 +
50 +LICENSE="MIT"
51 +SLOT="0"
52 +KEYWORDS="~amd64"
53 +IUSE=""
54 +
55 +all_ruby_prepare() {
56 + sed -i -e '/bundler/ s:^:#:' Rakefile || die
57 + sed -i -e 's/git ls-files -z/find . -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die
58 +}