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: Fri, 21 Feb 2020 01:30:29
Message-Id: 1582247802.b1e8117176ff8c2af827fcb7a28319d1c19f35aa.prometheanfire@gentoo
1 commit: b1e8117176ff8c2af827fcb7a28319d1c19f35aa
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 21 01:16:42 2020 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 21 01:16:42 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1e81171
7
8 dev-ruby/puppetdb-termini: 6.9.0 bump
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 dev-ruby/puppetdb-termini/Manifest | 1 +
14 .../puppetdb-termini/puppetdb-termini-6.9.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 5403a7de4cc..f8411ce7664 100644
19 --- a/dev-ruby/puppetdb-termini/Manifest
20 +++ b/dev-ruby/puppetdb-termini/Manifest
21 @@ -1 +1,2 @@
22 DIST puppetdb-termini_6.8.0-1stretch_all.deb 21302 BLAKE2B d3524f7acfb60ba73ca5ec42d3d4f2c79efb944ad597e97b664dd7925f24aa80905b2fa7f8dfb98ef7da777242f34d36711affabb179b005703bed8e5d4b33e3 SHA512 8d92e9bffe8e377823b644a54aa73e59c32cf1a69b2b97b9bbf61d9e5149f31c03bb5d39175844f2651a33f6028d44bf0eb6dc2e3ac3236faab9f11a801d4981
23 +DIST puppetdb-termini_6.9.0-1stretch_all.deb 21298 BLAKE2B 98ace25e1768af323beee73b98587921d1880d8af7365401e648ff4db3133bcd3703a356233f03775712aa265e829de6ab5b09f6b02017f833824788bff3dcab SHA512 c74e7d5296c07116d4f95aad24314574a32c8be61d9b53cdb5fddffdc4acc872318b624a6128e61e299e903b864e51217636e3932a931c7c957dd008ad28af57
24
25 diff --git a/dev-ruby/puppetdb-termini/puppetdb-termini-6.9.0.ebuild b/dev-ruby/puppetdb-termini/puppetdb-termini-6.9.0.ebuild
26 new file mode 100644
27 index 00000000000..a7f2b53b2dd
28 --- /dev/null
29 +++ b/dev-ruby/puppetdb-termini/puppetdb-termini-6.9.0.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="ruby23 ruby24 ruby25 ruby26"
37 +
38 +inherit unpacker
39 +
40 +DESCRIPTION="Library needed to connect puppet to puppetdb"
41 +HOMEPAGE="http://docs.puppetlabs.com/puppetdb/"
42 +SRC_URI="http://apt.puppetlabs.com/pool/stretch/puppet/${PN:0:1}/${PN}/${PN}_${PV}-1stretch_all.deb"
43 +
44 +LICENSE="Apache-2.0"
45 +SLOT="0"
46 +IUSE=""
47 +# will need the same keywords as puppet
48 +KEYWORDS="~amd64 ~ppc ~x86"
49 +
50 +RDEPEND+=""
51 +DEPEND+=""
52 +
53 +S=${WORKDIR}
54 +
55 +src_install() {
56 + insinto opt/puppetlabs/puppet/lib/ruby/vendor_ruby/puppet/
57 + doins -r opt/puppetlabs/puppet/lib/ruby/vendor_ruby/puppet/*
58 +}