From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0ACE31382C5 for ; Mon, 1 Mar 2021 15:25:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 51902E0999; Mon, 1 Mar 2021 15:25:20 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2AA18E0999 for ; Mon, 1 Mar 2021 15:25:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 95E2333D3D0 for ; Mon, 1 Mar 2021 15:25:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C6BBA46B for ; Mon, 1 Mar 2021 15:25:16 +0000 (UTC) From: "罗百科" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "罗百科" Message-ID: <1614612287.6cdf612eaa66301433e726371ddf804df44c4f31.patrick@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/rdma-core/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/rdma-core/rdma-core-32.0-r1.ebuild sys-cluster/rdma-core/rdma-core-33.0-r1.ebuild sys-cluster/rdma-core/rdma-core-9999.ebuild X-VCS-Directories: sys-cluster/rdma-core/ X-VCS-Committer: patrick X-VCS-Committer-Name: 罗百科 X-VCS-Revision: 6cdf612eaa66301433e726371ddf804df44c4f31 X-VCS-Branch: master Date: Mon, 1 Mar 2021 15:25:16 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5805010d-3a5d-4237-8b4d-15bbaa5df40e X-Archives-Hash: 78fdd7383a8313ee6af6a04972a0cd22 commit: 6cdf612eaa66301433e726371ddf804df44c4f31 Author: Patrick Lauer gentoo org> AuthorDate: Mon Mar 1 15:24:47 2021 +0000 Commit: 罗百科 gentoo org> CommitDate: Mon Mar 1 15:24:47 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cdf612e sys-cluster/rdma-core: Fix iwpmd init script installation iwpmd binary depends on USE="neigh", make iwpmd init script installation conditional too Package-Manager: Portage-3.0.16, Repoman-3.0.2 Signed-off-by: Patrick Lauer gentoo.org> .../rdma-core/{rdma-core-9999.ebuild => rdma-core-32.0-r1.ebuild} | 6 +++--- .../rdma-core/{rdma-core-9999.ebuild => rdma-core-33.0-r1.ebuild} | 7 +++---- sys-cluster/rdma-core/rdma-core-9999.ebuild | 4 ++-- 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/sys-cluster/rdma-core/rdma-core-9999.ebuild b/sys-cluster/rdma-core/rdma-core-32.0-r1.ebuild similarity index 93% copy from sys-cluster/rdma-core/rdma-core-9999.ebuild copy to sys-cluster/rdma-core/rdma-core-32.0-r1.ebuild index 04f071dfb37..f8daeb64452 100644 --- a/sys-cluster/rdma-core/rdma-core-9999.ebuild +++ b/sys-cluster/rdma-core/rdma-core-32.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -15,7 +15,7 @@ if [[ ${PV} == "9999" ]]; then EGIT_REPO_URI="https://github.com/linux-rdma/rdma-core" else SRC_URI="https://github.com/linux-rdma/rdma-core/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" fi LICENSE="|| ( GPL-2 ( CC0-1.0 MIT BSD BSD-with-attribution ) )" @@ -95,9 +95,9 @@ src_install() { if use neigh; then newinitd "${FILESDIR}"/ibacm.init ibacm + newinitd "${FILESDIR}"/iwpmd.init iwpmd fi - newinitd "${FILESDIR}"/iwpmd.init iwpmd newinitd "${FILESDIR}"/srpd.init srpd use python && python_optimize diff --git a/sys-cluster/rdma-core/rdma-core-9999.ebuild b/sys-cluster/rdma-core/rdma-core-33.0-r1.ebuild similarity index 93% copy from sys-cluster/rdma-core/rdma-core-9999.ebuild copy to sys-cluster/rdma-core/rdma-core-33.0-r1.ebuild index 04f071dfb37..d83a2529ce2 100644 --- a/sys-cluster/rdma-core/rdma-core-9999.ebuild +++ b/sys-cluster/rdma-core/rdma-core-33.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -15,7 +15,7 @@ if [[ ${PV} == "9999" ]]; then EGIT_REPO_URI="https://github.com/linux-rdma/rdma-core" else SRC_URI="https://github.com/linux-rdma/rdma-core/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" fi LICENSE="|| ( GPL-2 ( CC0-1.0 MIT BSD BSD-with-attribution ) )" @@ -95,9 +95,8 @@ src_install() { if use neigh; then newinitd "${FILESDIR}"/ibacm.init ibacm + newinitd "${FILESDIR}"/iwpmd.init iwpmd fi - - newinitd "${FILESDIR}"/iwpmd.init iwpmd newinitd "${FILESDIR}"/srpd.init srpd use python && python_optimize diff --git a/sys-cluster/rdma-core/rdma-core-9999.ebuild b/sys-cluster/rdma-core/rdma-core-9999.ebuild index 04f071dfb37..22768de9389 100644 --- a/sys-cluster/rdma-core/rdma-core-9999.ebuild +++ b/sys-cluster/rdma-core/rdma-core-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -95,9 +95,9 @@ src_install() { if use neigh; then newinitd "${FILESDIR}"/ibacm.init ibacm + newinitd "${FILESDIR}"/iwpmd.init iwpmd fi - newinitd "${FILESDIR}"/iwpmd.init iwpmd newinitd "${FILESDIR}"/srpd.init srpd use python && python_optimize