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/facter/
Date: Sat, 06 Feb 2021 20:47:44
Message-Id: 1612644456.1a7f69339955d4eaa878047aa21aaf6a53dd4271.prometheanfire@gentoo
1 commit: 1a7f69339955d4eaa878047aa21aaf6a53dd4271
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 6 20:47:27 2021 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 6 20:47:36 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a7f6933
7
8 dev-ruby/facter: 3.14.16 bump
9
10 Package-Manager: Portage-3.0.13, Repoman-3.0.2
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 dev-ruby/facter/Manifest | 1 +
14 dev-ruby/facter/facter-3.14.16.ebuild | 99 +++++++++++++++++++++++++++++++++++
15 2 files changed, 100 insertions(+)
16
17 diff --git a/dev-ruby/facter/Manifest b/dev-ruby/facter/Manifest
18 index 86336cd585a..21f5e761693 100644
19 --- a/dev-ruby/facter/Manifest
20 +++ b/dev-ruby/facter/Manifest
21 @@ -1,2 +1,3 @@
22 DIST facter-3.14.14.tar.gz 407276 BLAKE2B 5f911581773ef9a19ee42b5ed64114e2519ff88e024490d74bf9b1e777221d92d3ed502c8e6a0df573a5390fca323fcf0bcfdce6aeed25826c84efb3971307a5 SHA512 22e0ff0a9280be129f7587e24109f76f34660d99086378dd7e9ccc004c08a4fa5dd6f9ba50957c146ea40e26344ee87dbafd45b885f8f576192b6e572b084af7
23 DIST facter-3.14.15.tar.gz 407293 BLAKE2B 0f9bfe78314144e920695e678fa7ce8b4656ba424240e7e7621fe048e15e46db6fe507bc859448fa22f31e28caecadc33877ebaee8dab85c8e87238daf140157 SHA512 45deb530991883ecb1235d6a6166c36888c3c2c4a42a694e041f4d0911ab4bed880bee56034871fde08cc723b7270166e7d0dfa626bbc205d3b1f495c8d74691
24 +DIST facter-3.14.16.tar.gz 407315 BLAKE2B f9637841bd2c1d369d262c77876f08bb248f6a98e0fcb10573c872d521473790ba6eaa8dfcd6a8f0da2becd2f10c2bc7fbfde0d3a44f6a3d38c9e5f363e27e66 SHA512 3adcb7c3ce90a9cb71486c5d86eeaf1f0794194f51faf149052333d2f55a8a8fbe1e5772ecf9a0ed53196cfe732effeb383a42a43942a7803aa8b27e23939d23
25
26 diff --git a/dev-ruby/facter/facter-3.14.16.ebuild b/dev-ruby/facter/facter-3.14.16.ebuild
27 new file mode 100644
28 index 00000000000..0feb8baceee
29 --- /dev/null
30 +++ b/dev-ruby/facter/facter-3.14.16.ebuild
31 @@ -0,0 +1,99 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +USE_RUBY="ruby24 ruby25 ruby26 ruby27"
37 +
38 +# git-r3 goes after ruby-ng so that it overrides src_unpack properly
39 +inherit cmake-utils eutils ruby-ng
40 +
41 +DESCRIPTION="A cross-platform ruby library for retrieving facts from operating systems"
42 +HOMEPAGE="http://www.puppetlabs.com/puppet/related-projects/facter/"
43 +
44 +LICENSE="Apache-2.0"
45 +SLOT="0"
46 +IUSE="test"
47 +if [[ ${PV} == 9999 ]] ; then
48 + inherit git-r3
49 + EGIT_REPO_URI="https://github.com/puppetlabs/facter.git"
50 + EGIT_BRANCH="master"
51 +else
52 + [[ "${PV}" = *_rc* ]] || \
53 + KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
54 + SRC_URI="https://github.com/puppetlabs/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
55 +fi
56 +
57 +RESTRICT="!test? ( test )"
58 +
59 +ruby_add_bdepend "test? ( dev-ruby/rake dev-ruby/rspec:2 dev-ruby/mocha:0.14 )"
60 +
61 +RDEPEND="
62 + >=dev-cpp/cpp-hocon-0.2.1:=
63 + >=dev-libs/leatherman-1.0.0:=
64 + dev-libs/openssl:0=
65 + sys-apps/util-linux
66 + app-emulation/virt-what
67 + net-misc/curl
68 + dev-libs/boost:=[nls]
69 + >=dev-cpp/yaml-cpp-0.5.1
70 + !<app-admin/puppet-4.0.0"
71 +DEPEND="${RDEPEND}"
72 +
73 +# restore ${S} and override all phases exported by ruby-ng.eclass
74 +S="${WORKDIR}/${P}"
75 +
76 +PATCHES=(
77 + "${FILESDIR}"/${PN}-3.14.6-fix-static-libcpp-hocon.patch
78 + # be explicit about the version of rspec we test with
79 + "${FILESDIR}"/${PN}-3.14.8-explicit-rspec-2.patch
80 +)
81 +
82 +pkg_setup() {
83 + ruby-ng_pkg_setup
84 +}
85 +
86 +src_unpack() {
87 + default
88 +
89 + if [[ ${PV} == 9999 ]] ; then
90 + git-r3_src_unpack
91 + fi
92 +}
93 +
94 +src_prepare() {
95 + cmake-utils_src_prepare
96 +}
97 +
98 +each_ruby_configure() {
99 + # hack for correct calculation of relative path from facter.rb to
100 + # libfacter.so
101 + my_ruby_sitelibdir=$(ruby_rbconfig_value 'sitelibdir')
102 +}
103 +
104 +src_configure() {
105 + ruby-ng_src_configure
106 +
107 + local mycmakeargs=(
108 + -DRUBY_LIB_INSTALL=${my_ruby_sitelibdir}
109 + -DBLKID_LIBRARYDIR="${EPREFIX}/$(get_libdir)"
110 + )
111 + cmake-utils_src_configure
112 +}
113 +
114 +src_compile() {
115 + addpredict /proc/self/oom_score_adj
116 + cmake-utils_src_compile
117 +}
118 +
119 +src_test() {
120 + cmake-utils_src_test
121 +}
122 +
123 +each_ruby_install() {
124 + doruby "${BUILD_DIR}"/lib/facter.rb
125 +}
126 +
127 +src_install() {
128 + cmake-utils_src_install
129 + ruby-ng_src_install
130 +}