Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/puppetdb-termini/
Date: Thu, 14 Oct 2021 19:01:10
Message-Id: 1634238063.b1784d5148a9cd90425d5a2f09f6da837c132cb5.prometheanfire@gentoo
1 commit: b1784d5148a9cd90425d5a2f09f6da837c132cb5
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 14 19:00:44 2021 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 14 19:01:03 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1784d51
7
8 dev-ruby/puppetdb-termini: 7.7.0 bump
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 dev-ruby/puppetdb-termini/Manifest | 1 +
14 .../puppetdb-termini/puppetdb-termini-7.7.0.ebuild | 28 ++++++++++++++++++++++
15 2 files changed, 29 insertions(+)
16
17 diff --git a/dev-ruby/puppetdb-termini/Manifest b/dev-ruby/puppetdb-termini/Manifest
18 index 8e6803b1249..3b8d9ad08b5 100644
19 --- a/dev-ruby/puppetdb-termini/Manifest
20 +++ b/dev-ruby/puppetdb-termini/Manifest
21 @@ -1,2 +1,3 @@
22 DIST puppetdb-termini_7.5.0-1stretch_all.deb 21542 BLAKE2B 903a3290f3f10a199d53e5721fdac58aa771b2f9843037250be223df1f4db8328f4164c9f9756013bb5eba81d03fc13ef95b6806f64f6ecd70b7af8aa7336277 SHA512 d6179dbb4192ecfc1d082d32a978bb4d0c89f47db9c335ff70fc75bc81f41e3b0e78fa9fcd80ed3254ce57600e82f75ebefc217069dca8e0ea4014041878052b
23 DIST puppetdb-termini_7.6.0-1stretch_all.deb 22010 BLAKE2B 535315b0b710fbd0aea5d4fb6964a38300d8da1c723a38153ac011bc326b75eaf9a8abc4804d60d20a078f8aabb01dc674112a0513f90b327dcd13d946cdd4a1 SHA512 cb3ebd4ff35b4b3be57c8a488e66faae1f44d130843cce95033baf3aac70a8519b0f775b3b41991cb5377cc78338141310662ba76a3985d19bcaacf2f7ea9038
24 +DIST puppetdb-termini_7.7.0-1stretch_all.deb 22018 BLAKE2B 38716d2fe7bbe14656e4f274096ae93d4dc316cbdca49a0da33061df87666caea2bb8fa855de7539be8355805cb5055f74339b12660fe4f8020dbc0f92b79fdf SHA512 61c70aa919a6cee85a36e50c122ed7570e996fb74f68f70733d3f2233dcbbce8623090e9d856722c0da8583836457ded11cd97d1492019a84df00855fe79d462
25
26 diff --git a/dev-ruby/puppetdb-termini/puppetdb-termini-7.7.0.ebuild b/dev-ruby/puppetdb-termini/puppetdb-termini-7.7.0.ebuild
27 new file mode 100644
28 index 00000000000..a7cef96b4b1
29 --- /dev/null
30 +++ b/dev-ruby/puppetdb-termini/puppetdb-termini-7.7.0.ebuild
31 @@ -0,0 +1,28 @@
32 +# Copyright 1999-2021 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"
38 +
39 +inherit unpacker
40 +
41 +DESCRIPTION="Library needed to connect puppet to puppetdb"
42 +HOMEPAGE="https://puppet.com/docs/puppetdb/latest/index.html"
43 +SRC_URI="http://apt.puppetlabs.com/pool/stretch/puppet/${PN:0:1}/${PN}/${PN}_${PV}-1stretch_all.deb"
44 +
45 +LICENSE="Apache-2.0"
46 +SLOT="0"
47 +IUSE=""
48 +# will need the same keywords as puppet
49 +KEYWORDS="~amd64 ~ppc ~x86"
50 +
51 +RDEPEND+=""
52 +DEPEND+=""
53 +
54 +S=${WORKDIR}
55 +
56 +src_install() {
57 + insinto opt/puppetlabs/puppet/lib/ruby/vendor_ruby/puppet/
58 + doins -r opt/puppetlabs/puppet/lib/ruby/vendor_ruby/puppet/*
59 +}