summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2023-04-21 10:54:31 +0200
committerDavid Seifert <soap@gentoo.org>2023-04-21 10:54:31 +0200
commit8381ad9d05a299e354b1a2d318572c9e0673b6ca (patch)
tree7b907c546855bdffb325cc87b3adbed5dd252fa7 /dev-ruby/sigar
parentdev-util/dmake: treeclean (diff)
downloadgentoo-8381ad9d05a299e354b1a2d318572c9e0673b6ca.tar.gz
gentoo-8381ad9d05a299e354b1a2d318572c9e0673b6ca.tar.bz2
gentoo-8381ad9d05a299e354b1a2d318572c9e0673b6ca.zip
dev-ruby/sigar: treeclean
Closes: https://bugs.gentoo.org/713784 Closes: https://bugs.gentoo.org/895686 Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-ruby/sigar')
-rw-r--r--dev-ruby/sigar/Manifest1
-rw-r--r--dev-ruby/sigar/metadata.xml8
-rw-r--r--dev-ruby/sigar/sigar-0.7.3-r1.ebuild30
3 files changed, 0 insertions, 39 deletions
diff --git a/dev-ruby/sigar/Manifest b/dev-ruby/sigar/Manifest
deleted file mode 100644
index 9405c0d5a6d6..000000000000
--- a/dev-ruby/sigar/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST sigar-0.7.3.gem 205312 BLAKE2B 1a1d526e2f60a4a91ef405bbb7bf6aede2d4707631108f2779dfd1533d345b9e2c1fb586aa748d13ff1f7cb0b228e34618a0e8d549a3b4b4dc44a37684f2e970 SHA512 cdab3ec8b9662bfa3a432f0206c34c99c6e6e0ac5c85a93cb472367a9f325a27d5232bf2166f5c2955817e3ab8bd1035db06aad709ce20cc261f1b15d89dea2a
diff --git a/dev-ruby/sigar/metadata.xml b/dev-ruby/sigar/metadata.xml
deleted file mode 100644
index 658c72b1920d..000000000000
--- a/dev-ruby/sigar/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
- <email>ruby@gentoo.org</email>
- <name>Gentoo Ruby Project</name>
-</maintainer>
-</pkgmetadata>
diff --git a/dev-ruby/sigar/sigar-0.7.3-r1.ebuild b/dev-ruby/sigar/sigar-0.7.3-r1.ebuild
deleted file mode 100644
index 1b01ab6860af..000000000000
--- a/dev-ruby/sigar/sigar-0.7.3-r1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-USE_RUBY="ruby26 ruby27 ruby30 ruby31"
-
-RUBY_FAKEGEM_RECIPE_TEST="none"
-RUBY_FAKEGEM_EXTRADOC="README"
-RUBY_FAKEGEM_EXTENSIONS=(bindings/ruby/extconf.rb)
-
-inherit ruby-fakegem
-
-DESCRIPTION="System Information Gatherer And Reporter"
-HOMEPAGE="http://sigar.hyperic.com/"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND+=" || ( <sys-libs/glibc-2.26 net-libs/libtirpc )"
-
-all_ruby_prepare() {
- sed -i -e '25i$CFLAGS += " -std=gnu89 -I/usr/include/tirpc"' \
- -e '25i$LDFLAGS += " -ltirpc"' bindings/ruby/extconf.rb || die
-
- # Fix compatibility with glibc 2.25
- sed -i -e '26i#include <sys/sysmacros.h>' \
- -e '27i#include <ctype.h>' bindings/ruby/rbsigar.c src/os/linux/linux_sigar.c || die
-}