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, 06 Dec 2021 19:52:19
Message-Id: 1638820333.167b626442c11d0d0753cf3124c86ce386450d09.prometheanfire@gentoo
1 commit: 167b626442c11d0d0753cf3124c86ce386450d09
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 6 19:51:58 2021 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 6 19:52:13 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=167b6264
7
8 dev-ruby/facter: 3.14.19 clean up
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 dev-ruby/facter/Manifest | 1 -
14 dev-ruby/facter/facter-3.14.19.ebuild | 99 -----------------------------------
15 2 files changed, 100 deletions(-)
16
17 diff --git a/dev-ruby/facter/Manifest b/dev-ruby/facter/Manifest
18 index 4f1931877e25..8e42f2a86566 100644
19 --- a/dev-ruby/facter/Manifest
20 +++ b/dev-ruby/facter/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST facter-3.14.19.tar.gz 409345 BLAKE2B f977bb36ec8042ac950babd19ed398b8bd4fece854304a8a7a5f6b7608c3ad6ba4999b9038e401d599883da5bad63304b502fef164d1988d68a8477f1ff302a1 SHA512 65efc0237edc8198165e8229ca5d64e165a36e58718a863e14df9de9b64d4c9fb911d084e23daa982473f0703077b2cb0a5de8c544161591a894d537312c30f0
23 DIST facter-3.14.20.tar.gz 410552 BLAKE2B 8ff8422e9066ab6fabe00e22dedb4c2970e126eb06e307df52ab2b4f989f18a8f6b405fff405702720b6d25503b663791f5d0ec94b07d32759387bebbdc302e6 SHA512 14073dbd628e0c211fc95b5dab2a65bd549429a933c9f745cfa62c6bec7a810f444626c165117efc05ad67b3aef2dae5398112911059826f1b5d2bee9b27eedd
24 DIST facter-3.14.21.tar.gz 410594 BLAKE2B 30b502debaec476d7ba03a73ad3a251aeabf3347c2c552204e825dea8d85807d50cd6d06de03be32a5977e5e8cefe4869e2cc453b1ea79b9045c80369df6a0d7 SHA512 69618e54d2c46ae1230fa99ead88413ca8d5be6a01c149fcc00a7485767b9e624283fdf6064679e825a1ecb426be59a86e7ef903cd0ffca58383006ba5e9cf7f
25
26 diff --git a/dev-ruby/facter/facter-3.14.19.ebuild b/dev-ruby/facter/facter-3.14.19.ebuild
27 deleted file mode 100644
28 index b69eea0e499e..000000000000
29 --- a/dev-ruby/facter/facter-3.14.19.ebuild
30 +++ /dev/null
31 @@ -1,99 +0,0 @@
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 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_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_src_configure
112 -}
113 -
114 -src_compile() {
115 - addpredict /proc/self/oom_score_adj
116 - cmake_src_compile
117 -}
118 -
119 -src_test() {
120 - cmake_src_test
121 -}
122 -
123 -each_ruby_install() {
124 - doruby "${BUILD_DIR}"/lib/facter.rb
125 -}
126 -
127 -src_install() {
128 - cmake_src_install
129 - ruby-ng_src_install
130 -}