summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Junghans <ottxor@gentoo.org>2013-06-26 00:06:35 +0000
committerChristoph Junghans <ottxor@gentoo.org>2013-06-26 00:06:35 +0000
commit44319ac36a0fafd9ff7343c8c9c4ad20a79c43e7 (patch)
tree63330ce864849886256a4aa5ca160064cd5583d7 /dev-util
parentclean up + fix depend (bug #474720) (diff)
downloadgentoo-2-44319ac36a0fafd9ff7343c8c9c4ad20a79c43e7.tar.gz
gentoo-2-44319ac36a0fafd9ff7343c8c9c4ad20a79c43e7.tar.bz2
gentoo-2-44319ac36a0fafd9ff7343c8c9c4ad20a79c43e7.zip
remove myself as maintainer, remove old
(Portage version: 2.2.0_alpha185/cvs/Linux x86_64, signed Manifest commit with key C2000586)
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/ninja/ChangeLog6
-rw-r--r--dev-util/ninja/metadata.xml4
-rw-r--r--dev-util/ninja/ninja-1.1.0.ebuild93
3 files changed, 5 insertions, 98 deletions
diff --git a/dev-util/ninja/ChangeLog b/dev-util/ninja/ChangeLog
index 35e8cd79b416..d918e5d9469d 100644
--- a/dev-util/ninja/ChangeLog
+++ b/dev-util/ninja/ChangeLog
@@ -1,6 +1,10 @@
# 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.16 2013/06/25 15:03:38 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ninja/ChangeLog,v 1.17 2013/06/26 00:06:34 ottxor Exp $
+
+ 26 Jun 2013; Christoph Junghans <ottxor@gentoo.org> -ninja-1.1.0.ebuild,
+ metadata.xml:
+ remove myself as maintainer, remove old
25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> ninja-1.3.3.ebuild:
Stable for x86, wrt bug #472186
diff --git a/dev-util/ninja/metadata.xml b/dev-util/ninja/metadata.xml
index 75bbb701f017..d0d2e6d9f0f4 100644
--- a/dev-util/ninja/metadata.xml
+++ b/dev-util/ninja/metadata.xml
@@ -2,10 +2,6 @@
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>chromium</herd>
- <maintainer>
- <email>ottxor@gentoo.org</email>
- <name>Christoph Junghans</name>
- </maintainer>
<upstream>
<remote-id type="github">martine/ninja</remote-id>
</upstream>
diff --git a/dev-util/ninja/ninja-1.1.0.ebuild b/dev-util/ninja/ninja-1.1.0.ebuild
deleted file mode 100644
index e77dee5e1cfe..000000000000
--- a/dev-util/ninja/ninja-1.1.0.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# 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.1.0.ebuild,v 1.6 2013/03/07 01:50:01 ottxor Exp $
-
-EAPI=4
-
-PYTHON_DEPEND="2"
-
-inherit bash-completion-r1 elisp-common python 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
- inherit vcs-snapshot
- SRC_URI="mirror://github/martine/${PN}/tarball/v${PV} -> ${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 vim-syntax zsh-completion"
-
-DEPEND="
- dev-util/re2c
- doc? ( app-text/asciidoc app-doc/doxygen )
- "
-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
-
-pkg_setup() {
- python_set_active_version 2
-}
-
-src_compile() {
- tc-export BUILD_CXX
- ./bootstrap.py || die
- if use doc; then
- ./ninja doxygen || die
- fi
-
- if use emacs; then
- elisp-compile misc/ninja-mode.el || die
- fi
-}
-
-src_install() {
- dodoc README HACKING.md
- use doc && dohtml -r doc/doxygen/html/*
- 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
-}