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: Mon, 18 Feb 2019 16:48:33
Message-Id: 1550508486.27b8ed4fd4aaab537034830ccc28ea467aa992ea.prometheanfire@gentoo
1 commit: 27b8ed4fd4aaab537034830ccc28ea467aa992ea
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 18 16:48:06 2019 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 18 16:48:06 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27b8ed4f
7
8 dev-ruby/facter: 3.13.0 bump
9
10 Package-Manager: Portage-2.3.51, Repoman-2.3.12
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 dev-ruby/facter/Manifest | 1 +
14 dev-ruby/facter/facter-3.13.0.ebuild | 111 +++++++++++++++++++++++++++++++++++
15 2 files changed, 112 insertions(+)
16
17 diff --git a/dev-ruby/facter/Manifest b/dev-ruby/facter/Manifest
18 index 9938d3f0d86..49bcee966dc 100644
19 --- a/dev-ruby/facter/Manifest
20 +++ b/dev-ruby/facter/Manifest
21 @@ -1,3 +1,4 @@
22 DIST facter-3.12.2.tar.gz 391789 BLAKE2B a4476dd37629aa770d66c2597d29a2bf46ae67df2484bffc8c66fb18a0a93eea58bb11fbfb117c8f4778e10649315b1b53b4a609bc51327e29e87dcb00e96d07 SHA512 82901e973c187faf2b70863fe34e46d4f8f4a706364587fa293a8b91818c75bd3ec3cc6e5784bcb600f3dacb2c43c918708ae0996ea0e0e68cbcfaec458f9c27
23 DIST facter-3.12.3.tar.gz 391836 BLAKE2B 60ec23ab9df0d6ca069608c897949be8aaf719b2ab1b71455871a9364b7d0111ec78753cdb45d082041d2b028bac8e468a415a2bd9a15fe51dc69ec9738dc723 SHA512 d1568ca606b07c67f2e293b020dc5c2d399d5080857e47d3c748a7d104f75231d59dc95d54e5504b24f951ce540d1223102ee1b882e4495633ed89324ccc1c7b
24 +DIST facter-3.13.0.tar.gz 391833 BLAKE2B 8fabb2ebb438975564a770657866c6ac8ac77394c4e3cdb635eae78a744a097ef5eabb4307092cd2b9cf12b4db70623b18b3ca1e2c9e1a248825a2bf53b76565 SHA512 f3c39239d7b0708bd98a3e5de5d5623406edf5e60b6321de1d4ec7c8cf903f3ec777640b9301979f2316e90e97e2aa0a80dc71975239dc715aaba61ec7cc37de
25 DIST facter-3.9.2.tar.gz 380883 BLAKE2B d2804664e0499715230e5696c5a9ebae933f5b43dfb37154251d47763c2c7f78cfa8d1413dd836e5a0c76ed67300d066fa5bb390f17f85cd4cb7a444eaf0d133 SHA512 bc040826311bbff40f5a151ade315d9d47ef1e0f3faa570805e48ca55405265e66308230118b9cd59f701ecd76a7b0fd4d9200dd4ace838521223a162b105374
26
27 diff --git a/dev-ruby/facter/facter-3.13.0.ebuild b/dev-ruby/facter/facter-3.13.0.ebuild
28 new file mode 100644
29 index 00000000000..c6ee584a2af
30 --- /dev/null
31 +++ b/dev-ruby/facter/facter-3.13.0.ebuild
32 @@ -0,0 +1,111 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +USE_RUBY="ruby23 ruby24 ruby25"
38 +
39 +# git-r3 goes after ruby-ng so that it overrides src_unpack properly
40 +inherit cmake-utils eutils multilib ruby-ng
41 +
42 +DESCRIPTION="A cross-platform ruby library for retrieving facts from operating systems"
43 +HOMEPAGE="http://www.puppetlabs.com/puppet/related-projects/facter/"
44 +
45 +LICENSE="Apache-2.0"
46 +SLOT="0"
47 +IUSE="debug test"
48 +if [[ ${PV} == 9999 ]] ; then
49 + inherit git-r3
50 + EGIT_REPO_URI="https://github.com/puppetlabs/facter.git"
51 + EGIT_BRANCH="master"
52 +else
53 + [[ "${PV}" = *_rc* ]] || \
54 + KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
55 + SRC_URI="https://github.com/puppetlabs/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
56 +fi
57 +
58 +BDEPEND="
59 + >=sys-devel/gcc-4.8:*
60 + dev-cpp/cpp-hocon"
61 +COMMON_DEPEND="
62 + >=dev-libs/leatherman-1.0.0:=
63 + dev-libs/openssl:*
64 + sys-apps/util-linux
65 + app-emulation/virt-what
66 + net-misc/curl
67 + >=dev-libs/boost-1.54:=[nls]
68 + >=dev-cpp/yaml-cpp-0.5.1
69 + !<app-admin/puppet-4.0.0"
70 +
71 +ruby_add_bdepend "test? ( dev-ruby/rake dev-ruby/rspec:2 dev-ruby/mocha:0.14 )"
72 +
73 +RDEPEND="${COMMON_DEPEND}"
74 +DEPEND="${BDEPEND}
75 + ${COMMON_DEPEND}"
76 +
77 +# restore ${S} and override all phases exported by ruby-ng.eclass
78 +S="${WORKDIR}/${P}"
79 +
80 +pkg_setup() {
81 + ruby-ng_pkg_setup
82 +}
83 +
84 +src_unpack() {
85 + default
86 +
87 + if [[ ${PV} == 9999 ]] ; then
88 + git-r3_src_unpack
89 + fi
90 +}
91 +
92 +src_prepare() {
93 + # be explicit about the version of rspec we test with
94 + sed -i -e '/libfacter.*specs/ s/rspec/rspec-2/' \
95 + CMakeLists.txt || die
96 + # be more lenient for software versions for tests
97 + sed -i -e '/rake/ s/~> 10.1.0/>= 10/' \
98 + -e '/rspec/ s/2.11.0/2.11/' \
99 + -e '/mocha/ s/0.10.5/0.14.0/' lib/Gemfile || die
100 + # patches
101 + default
102 + cmake-utils_src_prepare
103 +}
104 +
105 +each_ruby_configure() {
106 + # hack for correct calculation of relative path from facter.rb to
107 + # libfacter.so
108 + my_ruby_sitelibdir=$(ruby_rbconfig_value 'sitelibdir')
109 +}
110 +
111 +src_configure() {
112 + ruby-ng_src_configure
113 +
114 + local mycmakeargs=(
115 + -DCMAKE_VERBOSE_MAKEFILE=ON
116 + -DRUBY_LIB_INSTALL=${my_ruby_sitelibdir}
117 + -DBLKID_LIBRARYDIR="${EPREFIX}/$(get_libdir)"
118 + )
119 + if use debug; then
120 + mycmakeargs+=(
121 + -DCMAKE_BUILD_TYPE=Debug
122 + )
123 + fi
124 + cmake-utils_src_configure
125 +}
126 +
127 +src_compile() {
128 + addpredict /proc/self/oom_score_adj
129 + cmake-utils_src_compile
130 +}
131 +
132 +src_test() {
133 + cmake-utils_src_test
134 +}
135 +
136 +each_ruby_install() {
137 + doruby "${BUILD_DIR}"/lib/facter.rb
138 +}
139 +
140 +src_install() {
141 + cmake-utils_src_install
142 + ruby-ng_src_install
143 +}