* [gentoo-commits] gentoo-x86 commit in dev-util/ninja: ChangeLog ninja-1.4.0.ebuild
@ 2013-09-23 3:15 PaweA Hajdan (phajdan.jr)
0 siblings, 0 replies; 2+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2013-09-23 3:15 UTC (permalink / raw
To: gentoo-commits
phajdan.jr 13/09/23 03:15:30
Modified: ChangeLog
Added: ninja-1.4.0.ebuild
Log:
Version bump, bug #485530 by Uwe L. Korn.
(Portage version: 2.2.1/cvs/Linux i686, signed Manifest commit with key 30427902)
Revision Changes Path
1.21 dev-util/ninja/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ninja/ChangeLog?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ninja/ChangeLog?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ninja/ChangeLog?r1=1.20&r2=1.21
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/ninja/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog 29 Jun 2013 19:41:28 -0000 1.20
+++ ChangeLog 23 Sep 2013 03:15:30 -0000 1.21
@@ -1,6 +1,11 @@
# ChangeLog for dev-util/ninja
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ninja/ChangeLog,v 1.20 2013/06/29 19:41:28 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ninja/ChangeLog,v 1.21 2013/09/23 03:15:30 phajdan.jr Exp $
+
+*ninja-1.4.0 (23 Sep 2013)
+
+ 23 Sep 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org> +ninja-1.4.0.ebuild:
+ Version bump, bug #485530 by Uwe L. Korn.
29 Jun 2013; Agostino Sarubbo <ago@gentoo.org> ninja-1.3.3.ebuild:
Stable for ppc64, wrt bug #472186
1.1 dev-util/ninja/ninja-1.4.0.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ninja/ninja-1.4.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ninja/ninja-1.4.0.ebuild?rev=1.1&content-type=text/plain
Index: ninja-1.4.0.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/ninja/ninja-1.4.0.ebuild,v 1.1 2013/09/23 03:15:30 phajdan.jr Exp $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
inherit bash-completion-r1 elisp-common python-any-r1 toolchain-funcs
if [ "${PV}" = "999999" ]; then
EGIT_REPO_URI="git://github.com/martine/ninja.git http://github.com/martine/ninja.git"
inherit git-2
KEYWORDS=""
else
SRC_URI="https://github.com/martine/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~alpha ~amd64 ~arm ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
fi
DESCRIPTION="A small build system similar to make."
HOMEPAGE="http://github.com/martine/ninja"
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
src_compile() {
# If somebody wants to cross-compile, we will probably need to do 2 builds.
tc-export AR CXX
"${PYTHON}" bootstrap.py --verbose || die
if use doc; then
./ninja -v doxygen manual || die
fi
if use emacs; then
elisp-compile misc/ninja-mode.el || die
fi
}
src_test() {
./ninja -v ninja_test || die
./ninja_test || die
}
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
}
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/ninja: ChangeLog ninja-1.4.0.ebuild
@ 2015-06-22 23:04 Mike Gilbert (floppym)
0 siblings, 0 replies; 2+ messages in thread
From: Mike Gilbert (floppym) @ 2015-06-22 23:04 UTC (permalink / raw
To: gentoo-commits
floppym 15/06/22 23:04:12
Modified: ChangeLog
Removed: ninja-1.4.0.ebuild
Log:
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
Revision Changes Path
1.44 dev-util/ninja/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ninja/ChangeLog?rev=1.44&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ninja/ChangeLog?rev=1.44&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/ninja/ChangeLog?r1=1.43&r2=1.44
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/ninja/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog 22 Jun 2015 22:56:08 -0000 1.43
+++ ChangeLog 22 Jun 2015 23:04:12 -0000 1.44
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/ninja
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ninja/ChangeLog,v 1.43 2015/06/22 22:56:08 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ninja/ChangeLog,v 1.44 2015/06/22 23:04:12 floppym Exp $
+
+ 22 Jun 2015; Mike Gilbert <floppym@gentoo.org> -ninja-1.4.0.ebuild:
+ Remove old.
22 Jun 2015; Mike Gilbert <floppym@gentoo.org> ninja-1.5.3.ebuild:
Drop unused code from a live ebuild that has never existed in the repository.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-06-22 23:04 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-23 3:15 [gentoo-commits] gentoo-x86 commit in dev-util/ninja: ChangeLog ninja-1.4.0.ebuild PaweA Hajdan (phajdan.jr)
-- strict thread matches above, loose matches on Subject: below --
2015-06-22 23:04 Mike Gilbert (floppym)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox