Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/network_interface/
Date: Sat, 25 Jun 2022 06:22:11
Message-Id: 1656137640.f11fcd5fca0650f921810cbb594d29da239529e0.graaff@gentoo
1 commit: f11fcd5fca0650f921810cbb594d29da239529e0
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 25 06:14:00 2022 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 25 06:14:00 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f11fcd5f
7
8 dev-ruby/network_interface: drop 0.0.2
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11
12 .../network_interface-0.0.2.ebuild | 36 ----------------------
13 1 file changed, 36 deletions(-)
14
15 diff --git a/dev-ruby/network_interface/network_interface-0.0.2.ebuild b/dev-ruby/network_interface/network_interface-0.0.2.ebuild
16 deleted file mode 100644
17 index 153cf1a9e375..000000000000
18 --- a/dev-ruby/network_interface/network_interface-0.0.2.ebuild
19 +++ /dev/null
20 @@ -1,36 +0,0 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -USE_RUBY="ruby24 ruby25 ruby26 ruby27"
27 -
28 -RUBY_FAKEGEM_TASK_DOC=""
29 -
30 -RUBY_FAKEGEM_RECIPE_TEST="rspec"
31 -
32 -inherit ruby-fakegem
33 -
34 -DESCRIPTION="network_interface layer from metasploit pcaprub"
35 -HOMEPAGE="https://github.com/rapid7/network_interface"
36 -
37 -LICENSE="MIT"
38 -SLOT="0"
39 -KEYWORDS="~amd64 ~arm ~x86"
40 -IUSE=""
41 -
42 -# Tests are brittle as they cannot deal with all network interface configurations.
43 -RESTRICT="test"
44 -
45 -all_ruby_prepare() {
46 - sed -i -e 's:/sbin/ifconfig:/bin/ifconfig:' spec/spec_helper.rb || die
47 -}
48 -
49 -each_ruby_configure() {
50 - ${RUBY} -C ext/network_interface_ext extconf.rb || die
51 -}
52 -
53 -each_ruby_compile() {
54 - emake -C ext/network_interface_ext V=1
55 - cp ext/network_interface_ext/network_interface_ext.so lib/ || die
56 -}