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 CF7B6158094 for ; Thu, 21 Jul 2022 12:53:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B92DEE08F2; Thu, 21 Jul 2022 12:53:43 +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 E9DC4E08EC for ; Thu, 21 Jul 2022 12:53:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 BBFBC340DC4 for ; Thu, 21 Jul 2022 12:53:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DD6DC456 for ; Thu, 21 Jul 2022 12:53:39 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1658408013.5dd615765ecde27f1a72c78fd2b05b2e65d0318f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/llvm/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/llvm/llvm-13.0.1.ebuild sys-devel/llvm/llvm-14.0.4.ebuild sys-devel/llvm/llvm-14.0.6-r1.ebuild sys-devel/llvm/llvm-14.0.6.ebuild sys-devel/llvm/llvm-15.0.0.9999.ebuild X-VCS-Directories: sys-devel/llvm/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5dd615765ecde27f1a72c78fd2b05b2e65d0318f X-VCS-Branch: master Date: Thu, 21 Jul 2022 12:53: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: bbd881f3-fd08-4949-9fb2-5032d79ea82f X-Archives-Hash: 91501084c9031d5174ebfc4c832b2072 commit: 5dd615765ecde27f1a72c78fd2b05b2e65d0318f Author: Michał Górny gentoo org> AuthorDate: Thu Jul 21 06:52:56 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Jul 21 12:53:33 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5dd61576 sys-devel/llvm: Rename check_live_ebuild to comply to policy Signed-off-by: Michał Górny gentoo.org> sys-devel/llvm/llvm-13.0.1.ebuild | 6 +++--- sys-devel/llvm/llvm-14.0.4.ebuild | 6 +++--- sys-devel/llvm/llvm-14.0.6-r1.ebuild | 6 +++--- sys-devel/llvm/llvm-14.0.6.ebuild | 6 +++--- sys-devel/llvm/llvm-15.0.0.9999.ebuild | 6 +++--- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/sys-devel/llvm/llvm-13.0.1.ebuild b/sys-devel/llvm/llvm-13.0.1.ebuild index 9ae168db4cfb..9bec4f84d3ae 100644 --- a/sys-devel/llvm/llvm-13.0.1.ebuild +++ b/sys-devel/llvm/llvm-13.0.1.ebuild @@ -71,7 +71,7 @@ python_check_deps() { has_version -b "dev-python/sphinx[${PYTHON_USEDEP}]" } -check_live_ebuild() { +check_uptodate() { local prod_targets=( $(sed -n -e '/set(LLVM_ALL_TARGETS/,/)/p' CMakeLists.txt \ | tail -n +2 | head -n -1) @@ -168,8 +168,8 @@ src_prepare() { # Update config.guess to support more systems cp "${BROOT}/usr/share/gnuconfig/config.guess" cmake/ || die - # Verify that the live ebuild is up-to-date - check_live_ebuild + # Verify that the ebuild is up-to-date + check_uptodate llvm.org_src_prepare } diff --git a/sys-devel/llvm/llvm-14.0.4.ebuild b/sys-devel/llvm/llvm-14.0.4.ebuild index 936ff9736ee0..a003f620a1fa 100644 --- a/sys-devel/llvm/llvm-14.0.4.ebuild +++ b/sys-devel/llvm/llvm-14.0.4.ebuild @@ -79,7 +79,7 @@ python_check_deps() { has_version -b "dev-python/sphinx[${PYTHON_USEDEP}]" } -check_live_ebuild() { +check_uptodate() { local prod_targets=( $(sed -n -e '/set(LLVM_ALL_TARGETS/,/)/p' CMakeLists.txt \ | tail -n +2 | head -n -1) @@ -176,8 +176,8 @@ src_prepare() { # Update config.guess to support more systems cp "${BROOT}/usr/share/gnuconfig/config.guess" cmake/ || die - # Verify that the live ebuild is up-to-date - check_live_ebuild + # Verify that the ebuild is up-to-date + check_uptodate llvm.org_src_prepare diff --git a/sys-devel/llvm/llvm-14.0.6-r1.ebuild b/sys-devel/llvm/llvm-14.0.6-r1.ebuild index 722dc92b8505..fcee531bd42f 100644 --- a/sys-devel/llvm/llvm-14.0.6-r1.ebuild +++ b/sys-devel/llvm/llvm-14.0.6-r1.ebuild @@ -79,7 +79,7 @@ python_check_deps() { has_version -b "dev-python/sphinx[${PYTHON_USEDEP}]" } -check_live_ebuild() { +check_uptodate() { local prod_targets=( $(sed -n -e '/set(LLVM_ALL_TARGETS/,/)/p' CMakeLists.txt \ | tail -n +2 | head -n -1) @@ -176,8 +176,8 @@ src_prepare() { # Update config.guess to support more systems cp "${BROOT}/usr/share/gnuconfig/config.guess" cmake/ || die - # Verify that the live ebuild is up-to-date - check_live_ebuild + # Verify that the ebuild is up-to-date + check_uptodate llvm.org_src_prepare diff --git a/sys-devel/llvm/llvm-14.0.6.ebuild b/sys-devel/llvm/llvm-14.0.6.ebuild index ad91093de640..f379e7940354 100644 --- a/sys-devel/llvm/llvm-14.0.6.ebuild +++ b/sys-devel/llvm/llvm-14.0.6.ebuild @@ -79,7 +79,7 @@ python_check_deps() { has_version -b "dev-python/sphinx[${PYTHON_USEDEP}]" } -check_live_ebuild() { +check_uptodate() { local prod_targets=( $(sed -n -e '/set(LLVM_ALL_TARGETS/,/)/p' CMakeLists.txt \ | tail -n +2 | head -n -1) @@ -176,8 +176,8 @@ src_prepare() { # Update config.guess to support more systems cp "${BROOT}/usr/share/gnuconfig/config.guess" cmake/ || die - # Verify that the live ebuild is up-to-date - check_live_ebuild + # Verify that the ebuild is up-to-date + check_uptodate llvm.org_src_prepare diff --git a/sys-devel/llvm/llvm-15.0.0.9999.ebuild b/sys-devel/llvm/llvm-15.0.0.9999.ebuild index 6d34fc401750..c6095aed35b3 100644 --- a/sys-devel/llvm/llvm-15.0.0.9999.ebuild +++ b/sys-devel/llvm/llvm-15.0.0.9999.ebuild @@ -76,7 +76,7 @@ python_check_deps() { has_version -b "dev-python/sphinx[${PYTHON_USEDEP}]" } -check_live_ebuild() { +check_uptodate() { local prod_targets=( $(sed -n -e '/set(LLVM_ALL_TARGETS/,/)/p' CMakeLists.txt \ | tail -n +2 | head -n -1) @@ -173,8 +173,8 @@ src_prepare() { # Update config.guess to support more systems cp "${BROOT}/usr/share/gnuconfig/config.guess" cmake/ || die - # Verify that the live ebuild is up-to-date - check_live_ebuild + # Verify that the ebuild is up-to-date + check_uptodate llvm.org_src_prepare }