commit:     b0be94e4692b721233dd76c96966f7a5b907386e
Author:     Pawel Hajdan, Jr <phajdan.jr <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 29 21:15:18 2016 +0000
Commit:     Paweł Hajdan <phajdan.jr <AT> gentoo <DOT> org>
CommitDate: Fri Apr 29 21:15:18 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0be94e4

dev-util/ninja: version bump (1.7.1)

Package-Manager: portage-2.2.26

 dev-util/ninja/Manifest           |   1 +
 dev-util/ninja/ninja-1.7.1.ebuild | 128 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 129 insertions(+)

diff --git a/dev-util/ninja/Manifest b/dev-util/ninja/Manifest
index 7fd73a1..74f9f6c 100644
--- a/dev-util/ninja/Manifest
+++ b/dev-util/ninja/Manifest
@@ -1 +1,2 @@
 DIST ninja-1.6.0.tar.gz 174501 SHA256 
b43e88fb068fe4d92a3dfd9eb4d19755dae5c33415db2e9b7b61b4659009cde7 SHA512 
551a9e14b95c2d2ddad6bee0f939a45614cce86719748dc580192dd122f3671e3d95fd6a6fb3facb2d314ba100d61a004af4df77f59df119b1b95c6fe8c38875
 WHIRLPOOL 
74d10df3d112c6cbd524f802978f1a56d2643767d947cff33a276a29f89485576f7d6b40597f9eac1db1446ae22c7f2c73c9d1f7795132e0254fa970df37063b
+DIST ninja-1.7.1.tar.gz 179717 SHA256 
51581de53cf4705b89eb6b14a85baa73288ad08bff256e7d30d529155813be19 SHA512 
6c7bea92942c48d2a810b1edb0187a3b0230eee3a1ce0013e9dcc8dd41d99215f18f0f85be789173e590ee24f517969fd159099541cacd7eb0ba69e50d296f40
 WHIRLPOOL 
ece2737adb37438aa822bab97d3784c7220fd6eb613bfc4852a33ecf26d6e04f5309aec3be558cb072e38a77538c46b38e2f009567d98cc79747bb4cfdc94576

diff --git a/dev-util/ninja/ninja-1.7.1.ebuild 
b/dev-util/ninja/ninja-1.7.1.ebuild
new file mode 100644
index 0000000..03d1eeb
--- /dev/null
+++ b/dev-util/ninja/ninja-1.7.1.ebuild
@@ -0,0 +1,128 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
+
+inherit bash-completion-r1 elisp-common python-any-r1 toolchain-funcs
+
+if [[ ${PV} == 9999 ]]; then
+       inherit git-r3
+       EGIT_REPO_URI="https://github.com/martine/ninja.git";
+else
+       SRC_URI="https://github.com/martine/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+       KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
+fi
+
+DESCRIPTION="A small build system similar to make"
+HOMEPAGE="https://ninja-build.org/";
+
+LICENSE="Apache-2.0"
+SLOT="0"
+
+IUSE="doc emacs test vim-syntax zsh-completion"
+
+DEPEND="
+       ${PYTHON_DEPS}
+       dev-util/re2c
+       doc? (
+               app-text/asciidoc
+               app-doc/doxygen
+               dev-libs/libxslt
+       )
+       test? ( dev-cpp/gtest )
+"
+RDEPEND="
+       emacs? ( virtual/emacs )
+       vim-syntax? (
+               || (
+                       app-editors/vim
+                       app-editors/gvim
+               )
+       )
+       zsh-completion? ( app-shells/zsh )
+       !<net-irc/ninja-1.5.9_pre14-r1" #436804
+
+run_for_build() {
+       if tc-is-cross-compiler; then
+               local -x AR=$(tc-getBUILD_AR)
+               local -x CXX=$(tc-getBUILD_CXX)
+               local -x CFLAGS=${BUILD_CXXFLAGS}
+               local -x LDFLAGS=${BUILD_LDFLAGS}
+       fi
+       "$@"
+}
+
+src_compile() {
+       tc-export AR CXX
+
+       # configure.py uses CFLAGS instead of CXXFLAGS
+       export CFLAGS=${CXXFLAGS}
+
+       run_for_build "${PYTHON}" configure.py --bootstrap --verbose || die
+
+       if tc-is-cross-compiler; then
+               mv ninja ninja-build || die
+               "${PYTHON}" configure.py || die
+               ./ninja-build -v ninja || die
+       else
+               ln ninja ninja-build || die
+       fi
+
+       if use doc; then
+               ./ninja-build -v doxygen manual || die
+       fi
+
+       if use emacs; then
+               elisp-compile misc/ninja-mode.el || die
+       fi
+}
+
+src_test() {
+       if ! tc-is-cross-compiler; then
+               # Bug 485772
+               ulimit -n 2048
+               ./ninja-build -v ninja_test || die
+               ./ninja_test || die
+       fi
+}
+
+src_install() {
+       dodoc README HACKING.md
+       if use doc; then
+               dohtml -r doc/doxygen/html/*
+               dohtml doc/manual.html
+       fi
+       dobin ninja
+
+       newbashcomp misc/bash-completion "${PN}"
+
+       if use vim-syntax; then
+               insinto /usr/share/vim/vimfiles/syntax/
+               doins misc/"${PN}".vim
+
+               echo 'au BufNewFile,BufRead *.ninja set ft=ninja' > 
"${T}/${PN}.vim"
+               insinto /usr/share/vim/vimfiles/ftdetect
+               doins "${T}/${PN}.vim"
+       fi
+
+       if use zsh-completion; then
+               insinto /usr/share/zsh/site-functions
+               newins misc/zsh-completion _ninja
+       fi
+
+       if use emacs; then
+               cd misc || die
+               elisp-install ${PN} ninja-mode.el* || die
+       fi
+}
+
+pkg_postinst() {
+       use emacs && elisp-site-regen
+}
+
+pkg_postrm() {
+       use emacs && elisp-site-regen
+}

Reply via email to