blob: 7f11b6b93bdf86d1bcb904edf4cdbc2d9a39c1fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
USE_RUBY="ruby31 ruby32 ruby33"
RUBY_FAKEGEM_EXTRADOC="FAQ.rdoc README.rdoc USAGE.rdoc"
RUBY_FAKEGEM_EXTENSIONS=(ext/pcaprub_c/extconf.rb)
RUBY_FAKEGEM_TASK_TEST="test"
inherit ruby-fakegem
DESCRIPTION="Libpcap bindings for ruby compat"
HOMEPAGE="https://rubygems.org/gems/pcaprub"
LICENSE="LGPL-2.1"
SLOT="$(ver_cut 1-2)"
KEYWORDS="~amd64 ~arm ~x86"
DEPEND="net-libs/libpcap"
RDEPEND="net-libs/libpcap"
ruby_add_bdepend "
test? (
>=dev-ruby/rake-compiler-0.6.0
dev-ruby/shoulda-context
)
"
all_ruby_prepare() {
sed -i \
-e '/\(minitest\|shoulda-context\)/s:~>:>=:' \
-e '/coveralls/d' \
-e '/rubygems-tasks/d' \
-e '/gem.*git/d' \
Gemfile || die
sed -i \
-e '/rubygems\/tasks/d' \
-e '/Gem::Tasks/d' \
-e "/^require 'git'/,/end/ s/^/#/" \
Rakefile || die
sed -i -e '/coveralls/Id' test/test_helper.rb || die
# Tests which need escalated privileges, network interfaces or other devices
local privileged_tests=(
test_set_datalink
test_create_from_primitives
test_filter
test_lookupdev
test_lookupnet
test_monitor
test_pcap_stats
test_pcap_datalink
test_pcap_inject
test_pcap_next
test_pcap_setfilter
test_pcap_snapshot
)
local privileged_tests_expr=$(printf "%s\|" "${privileged_tests[@]}")
privileged_tests_expr="${privileged_tests_expr::-2}"
sed -i \
-e "/def \(${privileged_tests_expr}\)/,/^ end/s/^/#/" \
test/test_pcaprub_unit.rb || die
}
|