From: "Ian Delaney" <idella4@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/libteam/
Date: Tue, 12 Jan 2016 14:44:07 +0000 (UTC) [thread overview]
Message-ID: <1452605734.b69cff032b80ed6ad87c8c17603179031c61f63e.idella4@gentoo> (raw)
commit: b69cff032b80ed6ad87c8c17603179031c61f63e
Author: Matthias Maier <tamiko <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 12 12:29:19 2016 +0000
Commit: Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Tue Jan 12 13:35:34 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b69cff03
net-misc/libteam: bump to version 1.22, bug 566934
This also resolves the compilation issue with dev-libs/libnl-3.2.27
Gentoo-Bugs: 566934 568542
Package-Manager: portage-2.2.26
net-misc/libteam/Manifest | 1 +
net-misc/libteam/libteam-1.22.ebuild | 55 ++++++++++++++++++++++++++++++++++++
2 files changed, 56 insertions(+)
diff --git a/net-misc/libteam/Manifest b/net-misc/libteam/Manifest
index 131f822..9e6a713 100644
--- a/net-misc/libteam/Manifest
+++ b/net-misc/libteam/Manifest
@@ -1,3 +1,4 @@
DIST libteam-1.0.tar.gz 99558 SHA256 5fb6dcf296f07be20e6ff61b4f18f4e98346ed158032f8d733bedd6f39b48f8f SHA512 69206709ebb9ad576b844402ad5c2327bf85a0d48d386a51decafd22f0fd638fa0d6d09e822afb77d511006d20749c3820b84c17e4c6874ce1fdc1499484a313 WHIRLPOOL f68274b50771aa67ac30abf38f9f2af8401eb84cacaf0eeb3468dbb845b3336af78d0459eec087d8081551c13640fa2097e1dfc5d4741c33a2bb7c29682bd7c6
DIST libteam-1.11.tar.gz 497560 SHA256 b89e81258f8a8f4abd718ec1c91f85cb66d4d29e4d50095a3d2a4ffd8ce4bf7a SHA512 0e7da9ffbe2e0fe15d1caa67bdb2b8acb69f12884656005d4a0bd91beb82c71eb380af46263d92c543b42fc0087d40a4b607847ee895482109a6f34847eafcbf WHIRLPOOL d1eed93acdb6212e0615170f927c77d359f8963262700aa76104859dd102fa4407fbae6f5705b104f2e59905cfa24a3551c9488cf214e1c9456a58004cfba187
DIST libteam-1.14.tar.gz 524122 SHA256 294cdabd85cddfeac304ecbd4f331ef3f9afbf03f8b8ef7bb3a9c5827ab22d97 SHA512 11cad4baf42b27cf9bce106d202d5e6dd2685bac45784233868f0757c12d9b6f672db6d65e4cd1138de4f22c89665838db578b1ce30c8da283f3e258a56b65e8 WHIRLPOOL 9471099dde384948274c925bfbd38530be71b4676a15283bc645b47aab7d7199ba0c494bd5ccaece8dc4f124044b4f3cd4efcae3b00a809b4d9f6c6978525968
+DIST libteam-1.22.tar.gz 544302 SHA256 9a028bf4e77ef21f2812c6d32cbd57a640e409f848fe81b74ecb231d75647ee3 SHA512 7f54b7e87c1d3a5150e598052126e1c2f5396096450a68a923c9cfb7bcc48b724cddc61f55e34d1b5df103f5473367eb268877100f10c58d53fc3eaf24749d5b WHIRLPOOL d86535a74814ce2fc7c41d56e94574a230e265c350ee5678a81d746a1548b548c7f841af4d2122e10d0d514d99585747c9b6612059f795494a14af5ee90d18b9
diff --git a/net-misc/libteam/libteam-1.22.ebuild b/net-misc/libteam/libteam-1.22.ebuild
new file mode 100644
index 0000000..1a77813
--- /dev/null
+++ b/net-misc/libteam/libteam-1.22.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+AUTOTOOLS_IN_SOURCE_BUILD=1
+inherit autotools-utils linux-info
+
+DESCRIPTION="Library and tools set for controlling team network device"
+HOMEPAGE="http://libteam.org"
+SRC_URI="http://libteam.org/files/${P}.tar.gz"
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
+IUSE="dbus debug examples static-libs +syslog zmq"
+
+DEPEND=">=dev-libs/jansson-2.4
+ dev-libs/libdaemon
+ >=dev-libs/libnl-3.2.19[utils]
+ dbus? ( sys-apps/dbus )
+ zmq? ( >=net-libs/zeromq-3.2.0 )
+ "
+
+RDEPEND="${DEPEND}
+ syslog? ( virtual/logger )"
+
+CONFIG_CHECK="~NET_TEAM ~NET_TEAM_MODE_ROUNDROBIN ~NET_TEAM_MODE_ACTIVEBACKUP ~NET_TEAM_MODE_BROADCAST ~NET_TEAM_MODE_RANDOM ~NET_TEAM_MODE_LOADBALANCE"
+ERROR_NET_TEAM="NET_TEAM is not enabled in this kernel!
+Only >=3.3.0 kernel version support in team mode"
+
+DOCS=( README )
+
+src_configure() {
+ local myeconfargs=(
+ $(use_enable debug)
+ $(use_enable syslog logging)
+ $(use_enable dbus)
+ $(use_enable zmq)
+ )
+ autotools-utils_src_configure
+}
+
+src_install() {
+ autotools-utils_src_install
+
+ insinto /etc/dbus-1/system.d
+ doins teamd/dbus/teamd.conf
+
+ if use examples; then
+ docinto examples
+ dodoc teamd/example_configs/*
+ fi
+}
next reply other threads:[~2016-01-12 14:44 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-12 14:44 Ian Delaney [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-09-15 9:28 [gentoo-commits] repo/gentoo:master commit in: net-misc/libteam/ Petr Vaněk
2024-09-14 17:55 Arthur Zamarin
2024-09-14 17:55 Arthur Zamarin
2024-09-14 17:55 Arthur Zamarin
2024-09-14 17:55 Arthur Zamarin
2024-09-14 17:55 Arthur Zamarin
2024-09-14 12:25 Arthur Zamarin
2024-05-24 23:35 Conrad Kostecki
2024-05-24 23:35 Conrad Kostecki
2023-09-05 14:48 Craig Andrews
2021-09-25 19:08 Sam James
2021-08-08 21:39 Marek Szuba
2020-12-02 15:17 Aaron Bauman
2020-12-02 14:57 Sam James
2020-11-29 8:22 Agostino Sarubbo
2020-11-29 8:20 Agostino Sarubbo
2020-11-29 8:16 Agostino Sarubbo
2020-11-27 16:49 Thomas Deutschmann
2020-07-27 15:20 Craig Andrews
2020-07-27 15:20 Craig Andrews
2020-02-02 21:51 Mart Raudsepp
2020-01-09 19:19 Craig Andrews
2019-08-09 0:31 Craig Andrews
2019-08-08 21:22 Craig Andrews
2019-08-08 21:22 Craig Andrews
2019-05-23 6:39 Aaron Bauman
2017-06-26 8:37 Alexis Ballier
2016-11-01 10:51 Pacho Ramos
2016-11-01 10:51 Pacho Ramos
2016-01-15 15:23 Agostino Sarubbo
2016-01-12 15:43 Ian Delaney
2016-01-08 14:10 Alexey Shvetsov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1452605734.b69cff032b80ed6ad87c8c17603179031c61f63e.idella4@gentoo \
--to=idella4@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox