commit:     d533c6b4b974a032022565efea6a61b2c4f17f05
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 31 15:17:17 2019 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Tue Dec 31 15:17:17 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d533c6b4

dev-ruby/facter: Remove old

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 dev-ruby/facter/Manifest             |   1 -
 dev-ruby/facter/facter-3.14.5.ebuild | 113 -----------------------------------
 2 files changed, 114 deletions(-)

diff --git a/dev-ruby/facter/Manifest b/dev-ruby/facter/Manifest
index 2a3332a287f..555f7a7a4bf 100644
--- a/dev-ruby/facter/Manifest
+++ b/dev-ruby/facter/Manifest
@@ -1,2 +1 @@
-DIST facter-3.14.5.tar.gz 395892 BLAKE2B 
c8f98716f4abca8d5f32c1cbfa79437b4021b1994476a31f7c00fc092f02aa08ed01eff4357368e140763bd3d39a38915c99606914e697ff8c769c9f0dd26638
 SHA512 
387f3d4c654ce3231129dbf6c22ccb04023d73006e4709b330b11ac01ef55831c618d80171ffb8de455be2a12e339a2b52ab782b0ed97e2dbfeaca2692ed951d
 DIST facter-3.14.6.tar.gz 397339 BLAKE2B 
74fae02a70194fd85789428c779f000e6b6750f52ecb0c713d6b772b3592a1974835367b148d046f849d61704adf82d93f519b86ecfe0007fb492f880a2aebca
 SHA512 
6c17ba200fe82a2223b76505c29c6fb7bce2bff6e795316ea0b91d2fc8bc42bed9b930ba9c5d7b3851fd36fe93fb20e81a9cbc919589d4012e989234be1ba787

diff --git a/dev-ruby/facter/facter-3.14.5.ebuild 
b/dev-ruby/facter/facter-3.14.5.ebuild
deleted file mode 100644
index dbf4788a288..00000000000
--- a/dev-ruby/facter/facter-3.14.5.ebuild
+++ /dev/null
@@ -1,113 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby23 ruby24 ruby25 ruby26"
-
-# git-r3 goes after ruby-ng so that it overrides src_unpack properly
-inherit cmake-utils eutils multilib ruby-ng
-
-DESCRIPTION="A cross-platform ruby library for retrieving facts from operating 
systems"
-HOMEPAGE="http://www.puppetlabs.com/puppet/related-projects/facter/";
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="debug test"
-if [[ ${PV} == 9999 ]] ; then
-       inherit git-r3
-       EGIT_REPO_URI="https://github.com/puppetlabs/facter.git";
-       EGIT_BRANCH="master"
-else
-       [[ "${PV}" = *_rc* ]] || \
-       KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc x86"
-       SRC_URI="https://github.com/puppetlabs/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-fi
-
-RESTRICT="!test? ( test )"
-
-BDEPEND="
-       >=sys-devel/gcc-4.8:*
-       >=dev-cpp/cpp-hocon-0.1.4-r1"
-COMMON_DEPEND="
-       >=dev-libs/leatherman-1.0.0:=
-       dev-libs/openssl:0=
-       sys-apps/util-linux
-       app-emulation/virt-what
-       net-misc/curl
-       >=dev-libs/boost-1.54:=[nls]
-       >=dev-cpp/yaml-cpp-0.5.1
-       !<app-admin/puppet-4.0.0"
-
-ruby_add_bdepend "test? ( dev-ruby/rake dev-ruby/rspec:2 dev-ruby/mocha:0.14 )"
-
-RDEPEND="${COMMON_DEPEND}"
-DEPEND="${BDEPEND}
-       ${COMMON_DEPEND}"
-
-# restore ${S} and override all phases exported by ruby-ng.eclass
-S="${WORKDIR}/${P}"
-
-pkg_setup() {
-       ruby-ng_pkg_setup
-}
-
-src_unpack() {
-       default
-
-       if [[ ${PV} == 9999 ]] ; then
-               git-r3_src_unpack
-       fi
-}
-
-src_prepare() {
-       # be explicit about the version of rspec we test with
-       sed -i -e '/libfacter.*specs/ s/rspec/rspec-2/' \
-               CMakeLists.txt || die
-       # be more lenient for software versions for tests
-       sed -i -e '/rake/ s/~> 10.1.0/>= 10/' \
-               -e '/rspec/ s/2.11.0/2.11/' \
-               -e '/mocha/ s/0.10.5/0.14.0/' lib/Gemfile || die
-       # patches
-       default
-       cmake-utils_src_prepare
-}
-
-each_ruby_configure() {
-       # hack for correct calculation of relative path from facter.rb to
-       # libfacter.so
-       my_ruby_sitelibdir=$(ruby_rbconfig_value 'sitelibdir')
-}
-
-src_configure() {
-       ruby-ng_src_configure
-
-       local mycmakeargs=(
-               -DCMAKE_VERBOSE_MAKEFILE=ON
-               -DRUBY_LIB_INSTALL=${my_ruby_sitelibdir}
-               -DBLKID_LIBRARYDIR="${EPREFIX}/$(get_libdir)"
-       )
-       if use debug; then
-               mycmakeargs+=(
-                 -DCMAKE_BUILD_TYPE=Debug
-               )
-       fi
-       cmake-utils_src_configure
-}
-
-src_compile() {
-       addpredict /proc/self/oom_score_adj
-       cmake-utils_src_compile
-}
-
-src_test() {
-       cmake-utils_src_test
-}
-
-each_ruby_install() {
-       doruby "${BUILD_DIR}"/lib/facter.rb
-}
-
-src_install() {
-       cmake-utils_src_install
-       ruby-ng_src_install
-}

Reply via email to