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 B7ABF138334 for ; Sun, 3 Nov 2019 11:46:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F0F5DE08BB; Sun, 3 Nov 2019 11:46:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 C4140E08BB for ; Sun, 3 Nov 2019 11:46:31 +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 1B0B134C78B for ; Sun, 3 Nov 2019 11:46:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E242E8A1 for ; Sun, 3 Nov 2019 11:46:27 +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: <1572781568.c6862fa57e51d8bd3d68d1a70dd12012b252dd50.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/llvm-common/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/llvm-common/llvm-common-10.0.0.9999.ebuild sys-devel/llvm-common/llvm-common-9.0.0.ebuild sys-devel/llvm-common/llvm-common-9.0.1.9999.ebuild X-VCS-Directories: sys-devel/llvm-common/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c6862fa57e51d8bd3d68d1a70dd12012b252dd50 X-VCS-Branch: master Date: Sun, 3 Nov 2019 11:46:27 +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: 77e849f6-4459-433b-846c-ed2e21bc036a X-Archives-Hash: 038060b8bb0c0353105ab1918005631e commit: c6862fa57e51d8bd3d68d1a70dd12012b252dd50 Author: Michał Górny gentoo org> AuthorDate: Fri Nov 1 17:37:46 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Nov 3 11:46:08 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6862fa5 sys-devel/llvm-common: Port 9+ to llvm.org.eclass Signed-off-by: Michał Górny gentoo.org> .../llvm-common/llvm-common-10.0.0.9999.ebuild | 22 ++++++--------------- sys-devel/llvm-common/llvm-common-9.0.0.ebuild | 22 +++++++-------------- .../llvm-common/llvm-common-9.0.1.9999.ebuild | 23 ++++++---------------- 3 files changed, 19 insertions(+), 48 deletions(-) diff --git a/sys-devel/llvm-common/llvm-common-10.0.0.9999.ebuild b/sys-devel/llvm-common/llvm-common-10.0.0.9999.ebuild index 7edf27153de..ba2ffc76a70 100644 --- a/sys-devel/llvm-common/llvm-common-10.0.0.9999.ebuild +++ b/sys-devel/llvm-common/llvm-common-10.0.0.9999.ebuild @@ -3,13 +3,12 @@ EAPI=7 -inherit git-r3 +inherit llvm.org DESCRIPTION="Common files shared between multiple slots of LLVM" HOMEPAGE="https://llvm.org/" -SRC_URI="" -EGIT_REPO_URI="https://github.com/llvm/llvm-project.git" -S=${WORKDIR}/${P}/llvm +LLVM_COMPONENTS=( llvm/utils/vim ) +llvm.org_set_globals LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" SLOT="0" @@ -18,19 +17,10 @@ IUSE="" RDEPEND="!sys-devel/llvm:0" -src_unpack() { - git-r3_fetch - git-r3_checkout '' '' '' llvm/utils/vim -} - -src_configure() { :; } -src_compile() { :; } -src_test() { :; } - src_install() { insinto /usr/share/vim/vimfiles - doins -r utils/vim/*/ + doins -r */ # some users may find it useful - newdoc utils/vim/README README.vim - dodoc utils/vim/vimrc + newdoc README README.vim + dodoc vimrc } diff --git a/sys-devel/llvm-common/llvm-common-9.0.0.ebuild b/sys-devel/llvm-common/llvm-common-9.0.0.ebuild index 65eb4d232e3..a81f8f50599 100644 --- a/sys-devel/llvm-common/llvm-common-9.0.0.ebuild +++ b/sys-devel/llvm-common/llvm-common-9.0.0.ebuild @@ -3,11 +3,12 @@ EAPI=7 -MY_P=llvm-${PV/_/}.src +inherit llvm.org + DESCRIPTION="Common files shared between multiple slots of LLVM" HOMEPAGE="https://llvm.org/" -SRC_URI="https://releases.llvm.org/${PV}/${MY_P}.tar.xz" -S=${WORKDIR}/${MY_P} +LLVM_COMPONENTS=( llvm/utils/vim ) +llvm.org_set_globals LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" SLOT="0" @@ -16,19 +17,10 @@ IUSE="" RDEPEND="!sys-devel/llvm:0" -src_unpack() { - einfo "Unpacking parts of ${MY_P}.tar.xz ..." - tar -xJf "${DISTDIR}/${MY_P}.tar.xz" "${MY_P}/utils/vim" || die -} - -src_configure() { :; } -src_compile() { :; } -src_test() { :; } - src_install() { insinto /usr/share/vim/vimfiles - doins -r utils/vim/*/ + doins -r */ # some users may find it useful - newdoc utils/vim/README README.vim - dodoc utils/vim/vimrc + newdoc README README.vim + dodoc vimrc } diff --git a/sys-devel/llvm-common/llvm-common-9.0.1.9999.ebuild b/sys-devel/llvm-common/llvm-common-9.0.1.9999.ebuild index b3b79ac4e6c..ba2ffc76a70 100644 --- a/sys-devel/llvm-common/llvm-common-9.0.1.9999.ebuild +++ b/sys-devel/llvm-common/llvm-common-9.0.1.9999.ebuild @@ -3,14 +3,12 @@ EAPI=7 -inherit git-r3 +inherit llvm.org DESCRIPTION="Common files shared between multiple slots of LLVM" HOMEPAGE="https://llvm.org/" -SRC_URI="" -EGIT_REPO_URI="https://github.com/llvm/llvm-project.git" -EGIT_BRANCH="release/9.x" -S=${WORKDIR}/${P}/llvm +LLVM_COMPONENTS=( llvm/utils/vim ) +llvm.org_set_globals LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" SLOT="0" @@ -19,19 +17,10 @@ IUSE="" RDEPEND="!sys-devel/llvm:0" -src_unpack() { - git-r3_fetch - git-r3_checkout '' '' '' llvm/utils/vim -} - -src_configure() { :; } -src_compile() { :; } -src_test() { :; } - src_install() { insinto /usr/share/vim/vimfiles - doins -r utils/vim/*/ + doins -r */ # some users may find it useful - newdoc utils/vim/README README.vim - dodoc utils/vim/vimrc + newdoc README README.vim + dodoc vimrc }