diff options
author | 2024-05-18 11:27:46 +0200 | |
---|---|---|
committer | 2024-05-25 01:35:13 +0200 | |
commit | 9c8f5178012043f4f31dc9f6d0b73be89aa11969 (patch) | |
tree | bb6cb6e4679595f67cdd1987b98a85f6b2ef2199 /net-misc | |
parent | net-analyzer/thc-ipv6: add 3.8 (diff) | |
download | gentoo-9c8f5178012043f4f31dc9f6d0b73be89aa11969.tar.gz gentoo-9c8f5178012043f4f31dc9f6d0b73be89aa11969.tar.bz2 gentoo-9c8f5178012043f4f31dc9f6d0b73be89aa11969.zip |
net-misc/libteam: EAPI8 bump, fix git repo link
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/libteam/libteam-9999.ebuild | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/net-misc/libteam/libteam-9999.ebuild b/net-misc/libteam/libteam-9999.ebuild index a5a895f1bca1..23c3186d0a44 100644 --- a/net-misc/libteam/libteam-9999.ebuild +++ b/net-misc/libteam/libteam-9999.ebuild @@ -1,20 +1,20 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit autotools linux-info if [[ ${PV} == *9999 ]] ; then - EGIT_REPO_URI="https://github.com/pirko/${PN}.git" + EGIT_REPO_URI="https://github.com/jpirko/${PN}.git" inherit git-r3 else SRC_URI="https://github.com/jpirko/libteam/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86" fi DESCRIPTION="Library and tools set for controlling team network device" -HOMEPAGE="http://libteam.org" +HOMEPAGE="https://libteam.org" LICENSE="LGPL-2.1+" SLOT="0" @@ -34,8 +34,6 @@ CONFIG_CHECK="~NET_TEAM ~NET_TEAM_MODE_ROUNDROBIN ~NET_TEAM_MODE_ACTIVEBACKUP ~N ERROR_NET_TEAM="NET_TEAM is not enabled in this kernel! Only >=3.3.0 kernel version support in team mode" -DOCS=( README ) - src_prepare() { default eautoreconf @@ -52,6 +50,8 @@ src_configure() { src_install() { default + find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die + insinto /etc/dbus-1/system.d doins teamd/dbus/teamd.conf |