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 5B817138335 for ; Tue, 18 Sep 2018 19:43:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 36799E0B47; Tue, 18 Sep 2018 19:43:02 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 0D921E0B47 for ; Tue, 18 Sep 2018 19:43:00 +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 F26C3335CDC for ; Tue, 18 Sep 2018 19:42:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C3A9B2C6 for ; Tue, 18 Sep 2018 19:42:56 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1537299772.cccb1ca7f6e9d63f53a9ed3bbe1b34c3c9945a6d.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/ninja/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/ninja/ninja-9999.ebuild X-VCS-Directories: dev-util/ninja/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: cccb1ca7f6e9d63f53a9ed3bbe1b34c3c9945a6d X-VCS-Branch: master Date: Tue, 18 Sep 2018 19:42:56 +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-Archives-Salt: 22f99be2-750c-4b66-ae71-71d657f540fb X-Archives-Hash: 8a9865e84f14fb80a415f53713b074ae commit: cccb1ca7f6e9d63f53a9ed3bbe1b34c3c9945a6d Author: Mike Gilbert gentoo org> AuthorDate: Tue Sep 18 19:31:15 2018 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Tue Sep 18 19:42:52 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cccb1ca7 dev-util/ninja: bump to EAPI 7 Signed-off-by: Mike Gilbert gentoo.org> Package-Manager: Portage-2.3.49_p2, Repoman-2.3.10_p48 dev-util/ninja/ninja-9999.ebuild | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/dev-util/ninja/ninja-9999.ebuild b/dev-util/ninja/ninja-9999.ebuild index 73fb8e30509..38f251adba3 100644 --- a/dev-util/ninja/ninja-9999.ebuild +++ b/dev-util/ninja/ninja-9999.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) @@ -12,7 +12,7 @@ if [[ ${PV} == 9999 ]]; then EGIT_REPO_URI="https://github.com/ninja-build/ninja.git" else SRC_URI="https://github.com/ninja-build/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris" fi DESCRIPTION="A small build system similar to make" @@ -23,7 +23,7 @@ SLOT="0" IUSE="doc emacs test vim-syntax zsh-completion" -DEPEND=" +BDEPEND=" ${PYTHON_DEPS} dev-util/re2c doc? ( @@ -64,7 +64,7 @@ src_compile() { if tc-is-cross-compiler; then mv ninja ninja-build || die - "${PYTHON}" configure.py || die + ${EPYTHON} configure.py || die ./ninja-build -v ninja || die else ln ninja ninja-build || die @@ -101,11 +101,11 @@ src_install() { if use vim-syntax; then insinto /usr/share/vim/vimfiles/syntax/ - doins misc/"${PN}".vim + doins misc/ninja.vim - echo 'au BufNewFile,BufRead *.ninja set ft=ninja' > "${T}/${PN}.vim" + echo 'au BufNewFile,BufRead *.ninja set ft=ninja' > "${T}/ninja.vim" insinto /usr/share/vim/vimfiles/ftdetect - doins "${T}/${PN}.vim" + doins "${T}/ninja.vim" fi if use zsh-completion; then @@ -115,7 +115,7 @@ src_install() { if use emacs; then cd misc || die - elisp-install ${PN} ninja-mode.el* || die + elisp-install ninja ninja-mode.el* || die fi }