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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B450B158094 for ; Sat, 1 Oct 2022 01:02:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EEF79E09F3; Sat, 1 Oct 2022 01:02:42 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D4692E09F3 for ; Sat, 1 Oct 2022 01:02:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9B390340F3F for ; Sat, 1 Oct 2022 01:02:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CE9E9599 for ; Sat, 1 Oct 2022 01:02:39 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1664585932.0dbd3d973fc4cece0b1f09281a428b1ddf41e643.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/layman/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/layman/layman-2.4.3.ebuild app-portage/layman/layman-9999.ebuild X-VCS-Directories: app-portage/layman/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0dbd3d973fc4cece0b1f09281a428b1ddf41e643 X-VCS-Branch: master Date: Sat, 1 Oct 2022 01:02:39 +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: 6a6cd0ec-8b22-4633-991e-0443407a53bb X-Archives-Hash: e16330586fe639a4fdef44517313306c commit: 0dbd3d973fc4cece0b1f09281a428b1ddf41e643 Author: Sam James gentoo org> AuthorDate: Sat Oct 1 00:58:52 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Oct 1 00:58:52 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dbd3d97 app-portage/layman: fix live ebuild Signed-off-by: Sam James gentoo.org> app-portage/layman/layman-2.4.3.ebuild | 10 +++++++++- app-portage/layman/layman-9999.ebuild | 3 +-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/app-portage/layman/layman-2.4.3.ebuild b/app-portage/layman/layman-2.4.3.ebuild index 298dc099aaf9..8b62b7cd4223 100644 --- a/app-portage/layman/layman-2.4.3.ebuild +++ b/app-portage/layman/layman-2.4.3.ebuild @@ -10,7 +10,7 @@ DISTUTILS_USE_SETUPTOOLS=no inherit distutils-r1 linux-info prefix if [[ ${PV} == *9999 ]] ; then - EGIT_REPO_URI="git://anongit.gentoo.org/proj/layman.git" + EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/layman.git" inherit git-r3 else SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" @@ -68,6 +68,14 @@ python_test() { unset suite } +python_compile_all() { + # Generate man page. only required for 9999 + if [[ ${PV} == *9999 ]] ; then + # override MAKEOPTS to prevent build failure + emake -j1 -C doc + fi +} + python_install_all() { distutils-r1_python_install_all diff --git a/app-portage/layman/layman-9999.ebuild b/app-portage/layman/layman-9999.ebuild index 0f5addf3ecee..598324e7d35c 100644 --- a/app-portage/layman/layman-9999.ebuild +++ b/app-portage/layman/layman-9999.ebuild @@ -10,7 +10,7 @@ DISTUTILS_USE_SETUPTOOLS=no inherit distutils-r1 linux-info prefix if [[ ${PV} == *9999 ]] ; then - EGIT_REPO_URI="git://anongit.gentoo.org/proj/layman.git" + EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/layman.git" inherit git-r3 else SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" @@ -69,7 +69,6 @@ python_test() { } python_compile_all() { - default_python_compile_all # Generate man page. only required for 9999 if [[ ${PV} == *9999 ]] ; then # override MAKEOPTS to prevent build failure