diff options
author | Mikle Kolyada <zlogene@gentoo.org> | 2020-07-10 22:38:40 +0300 |
---|---|---|
committer | Mikle Kolyada <zlogene@gentoo.org> | 2020-07-10 22:39:14 +0300 |
commit | 388fb2a68e9ae8fbef5da4c2a17b9b1641fb2eff (patch) | |
tree | df5e208fde728ba2af9c7270033d0682fcb64ad7 | |
parent | sys-apps/pciutils: arm stable (bug #730504) (diff) | |
download | gentoo-388fb2a68e9ae8fbef5da4c2a17b9b1641fb2eff.tar.gz gentoo-388fb2a68e9ae8fbef5da4c2a17b9b1641fb2eff.tar.bz2 gentoo-388fb2a68e9ae8fbef5da4c2a17b9b1641fb2eff.zip |
sys-cluster/rdma-core: call python conditionally
Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
-rw-r--r-- | sys-cluster/rdma-core/rdma-core-26.0-r2.ebuild | 2 | ||||
-rw-r--r-- | sys-cluster/rdma-core/rdma-core-26.1-r1.ebuild | 2 | ||||
-rw-r--r-- | sys-cluster/rdma-core/rdma-core-27.0-r2.ebuild | 2 | ||||
-rw-r--r-- | sys-cluster/rdma-core/rdma-core-28.0-r1.ebuild | 2 | ||||
-rw-r--r-- | sys-cluster/rdma-core/rdma-core-29.0-r1.ebuild | 2 | ||||
-rw-r--r-- | sys-cluster/rdma-core/rdma-core-30.0-r1.ebuild | 2 | ||||
-rw-r--r-- | sys-cluster/rdma-core/rdma-core-9999.ebuild | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/sys-cluster/rdma-core/rdma-core-26.0-r2.ebuild b/sys-cluster/rdma-core/rdma-core-26.0-r2.ebuild index 74779b99fe8f..ae773c23dc32 100644 --- a/sys-cluster/rdma-core/rdma-core-26.0-r2.ebuild +++ b/sys-cluster/rdma-core/rdma-core-26.0-r2.ebuild @@ -59,7 +59,7 @@ BDEPEND="virtual/pkgconfig" PATCHES=( "${FILESDIR}"/optional_pandoc.patch ) pkg_setup() { - python-single-r1_pkg_setup + use python && python-single-r1_pkg_setup } diff --git a/sys-cluster/rdma-core/rdma-core-26.1-r1.ebuild b/sys-cluster/rdma-core/rdma-core-26.1-r1.ebuild index 19ce4ff4082f..720b47023aef 100644 --- a/sys-cluster/rdma-core/rdma-core-26.1-r1.ebuild +++ b/sys-cluster/rdma-core/rdma-core-26.1-r1.ebuild @@ -59,7 +59,7 @@ BDEPEND="virtual/pkgconfig" PATCHES=( "${FILESDIR}"/optional_pandoc.patch ) pkg_setup() { - python-single-r1_pkg_setup + use python && python-single-r1_pkg_setup } diff --git a/sys-cluster/rdma-core/rdma-core-27.0-r2.ebuild b/sys-cluster/rdma-core/rdma-core-27.0-r2.ebuild index 7f6e171699e5..9911097e9b41 100644 --- a/sys-cluster/rdma-core/rdma-core-27.0-r2.ebuild +++ b/sys-cluster/rdma-core/rdma-core-27.0-r2.ebuild @@ -59,7 +59,7 @@ BDEPEND="virtual/pkgconfig" PATCHES=( "${FILESDIR}"/optional_pandoc.patch ) pkg_setup() { - python-single-r1_pkg_setup + use python && python-single-r1_pkg_setup } diff --git a/sys-cluster/rdma-core/rdma-core-28.0-r1.ebuild b/sys-cluster/rdma-core/rdma-core-28.0-r1.ebuild index 895bd252e6e6..be7204ccc11c 100644 --- a/sys-cluster/rdma-core/rdma-core-28.0-r1.ebuild +++ b/sys-cluster/rdma-core/rdma-core-28.0-r1.ebuild @@ -59,7 +59,7 @@ BDEPEND="virtual/pkgconfig" PATCHES=( "${FILESDIR}"/optional_pandoc.patch ) pkg_setup() { - python-single-r1_pkg_setup + use python && python-single-r1_pkg_setup } diff --git a/sys-cluster/rdma-core/rdma-core-29.0-r1.ebuild b/sys-cluster/rdma-core/rdma-core-29.0-r1.ebuild index 9a120345c302..6d0a8046f9c4 100644 --- a/sys-cluster/rdma-core/rdma-core-29.0-r1.ebuild +++ b/sys-cluster/rdma-core/rdma-core-29.0-r1.ebuild @@ -59,7 +59,7 @@ BDEPEND="virtual/pkgconfig" PATCHES=( "${FILESDIR}"/optional_pandoc.patch ) pkg_setup() { - python-single-r1_pkg_setup + use python && python-single-r1_pkg_setup } diff --git a/sys-cluster/rdma-core/rdma-core-30.0-r1.ebuild b/sys-cluster/rdma-core/rdma-core-30.0-r1.ebuild index 9bcb28a2f0be..c7530aca8d21 100644 --- a/sys-cluster/rdma-core/rdma-core-30.0-r1.ebuild +++ b/sys-cluster/rdma-core/rdma-core-30.0-r1.ebuild @@ -59,7 +59,7 @@ BDEPEND="virtual/pkgconfig" PATCHES=( "${FILESDIR}"/optional_pandoc.patch ) pkg_setup() { - python-single-r1_pkg_setup + use python && python-single-r1_pkg_setup } diff --git a/sys-cluster/rdma-core/rdma-core-9999.ebuild b/sys-cluster/rdma-core/rdma-core-9999.ebuild index fae3876a639c..6db92b4ee104 100644 --- a/sys-cluster/rdma-core/rdma-core-9999.ebuild +++ b/sys-cluster/rdma-core/rdma-core-9999.ebuild @@ -57,7 +57,7 @@ RDEPEND="${COMMON_DEPEND} BDEPEND="virtual/pkgconfig" pkg_setup() { - python-single-r1_pkg_setup + use python && python-single-r1_pkg_setup } |