Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/libteam/
Date: Wed, 02 Dec 2020 15:17:26
Message-Id: 1606922221.78495fc91108ef2f974c6b44ba1c22752a0a9b54.bman@gentoo
1 commit: 78495fc91108ef2f974c6b44ba1c22752a0a9b54
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 2 15:17:01 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 2 15:17:01 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78495fc9
7
8 net-misc/libteam: drop old
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11
12 net-misc/libteam/Manifest | 1 -
13 net-misc/libteam/libteam-1.22.ebuild | 54 ------------------------------------
14 2 files changed, 55 deletions(-)
15
16 diff --git a/net-misc/libteam/Manifest b/net-misc/libteam/Manifest
17 index c939387775f..51a524d4b82 100644
18 --- a/net-misc/libteam/Manifest
19 +++ b/net-misc/libteam/Manifest
20 @@ -1,2 +1 @@
21 -DIST libteam-1.22.tar.gz 544302 BLAKE2B 8c20471506546de6f45989513ed22fe79f694febacbf1a0caeda872e6e8b815f9813cff682eb11060c3bb1b2ef12149f34d15c201a6b50fe438bf9776abda987 SHA512 7f54b7e87c1d3a5150e598052126e1c2f5396096450a68a923c9cfb7bcc48b724cddc61f55e34d1b5df103f5473367eb268877100f10c58d53fc3eaf24749d5b
22 DIST libteam-1.31.tar.gz 176331 BLAKE2B 77aae059b37a018e5503642138aa469f0769d305ec2043642fb1d84ff1d05f6eb90083946ca113cf3f9c21a09a17b3fbda327b714eb96743a10e99b89d5d5c83 SHA512 1382cc3b0a2d0211f33e506e8a6fd8a1847398fa5bba56abfc959da70bcc8417cf1dba9e26a777da5729eb237f51a66b3f9cfa33fb830ed684aa076f4c8cec9e
23
24 diff --git a/net-misc/libteam/libteam-1.22.ebuild b/net-misc/libteam/libteam-1.22.ebuild
25 deleted file mode 100644
26 index 67f37cc9413..00000000000
27 --- a/net-misc/libteam/libteam-1.22.ebuild
28 +++ /dev/null
29 @@ -1,54 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -AUTOTOOLS_IN_SOURCE_BUILD=1
36 -inherit autotools-utils linux-info
37 -
38 -DESCRIPTION="Library and tools set for controlling team network device"
39 -HOMEPAGE="http://libteam.org"
40 -SRC_URI="http://libteam.org/files/${P}.tar.gz"
41 -
42 -LICENSE="LGPL-2.1+"
43 -SLOT="0"
44 -KEYWORDS="amd64 ~arm arm64 ppc ppc64 x86"
45 -IUSE="dbus debug examples static-libs +syslog zmq"
46 -
47 -DEPEND=">=dev-libs/jansson-2.4
48 - dev-libs/libdaemon
49 - >=dev-libs/libnl-3.2.19[utils]
50 - dbus? ( sys-apps/dbus )
51 - zmq? ( >=net-libs/zeromq-3.2.0 )
52 - "
53 -
54 -RDEPEND="${DEPEND}
55 - syslog? ( virtual/logger )"
56 -
57 -CONFIG_CHECK="~NET_TEAM ~NET_TEAM_MODE_ROUNDROBIN ~NET_TEAM_MODE_ACTIVEBACKUP ~NET_TEAM_MODE_BROADCAST ~NET_TEAM_MODE_RANDOM ~NET_TEAM_MODE_LOADBALANCE"
58 -ERROR_NET_TEAM="NET_TEAM is not enabled in this kernel!
59 -Only >=3.3.0 kernel version support in team mode"
60 -
61 -DOCS=( README )
62 -
63 -src_configure() {
64 - local myeconfargs=(
65 - $(use_enable debug)
66 - $(use_enable syslog logging)
67 - $(use_enable dbus)
68 - $(use_enable zmq)
69 - )
70 - autotools-utils_src_configure
71 -}
72 -
73 -src_install() {
74 - autotools-utils_src_install
75 -
76 - insinto /etc/dbus-1/system.d
77 - doins teamd/dbus/teamd.conf
78 -
79 - if use examples; then
80 - docinto examples
81 - dodoc teamd/example_configs/*
82 - fi
83 -}