From 0618f2996ad74043e7f481fc76a056a616bfc0c8 Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Mon, 14 Aug 2017 09:25:26 +0200 Subject: dev-util/ninja-ide: Remove last-rited pkg, #620816 --- dev-util/ninja-ide/Manifest | 1 - .../ninja-ide/files/ninja-ide-2.3-python2_6.patch | 27 ------------- .../ninja-ide/files/ninja-ide-2.3-syntax.patch | 9 ----- dev-util/ninja-ide/metadata.xml | 28 ------------- dev-util/ninja-ide/ninja-ide-2.3.ebuild | 47 ---------------------- 5 files changed, 112 deletions(-) delete mode 100644 dev-util/ninja-ide/Manifest delete mode 100644 dev-util/ninja-ide/files/ninja-ide-2.3-python2_6.patch delete mode 100644 dev-util/ninja-ide/files/ninja-ide-2.3-syntax.patch delete mode 100644 dev-util/ninja-ide/metadata.xml delete mode 100644 dev-util/ninja-ide/ninja-ide-2.3.ebuild (limited to 'dev-util') diff --git a/dev-util/ninja-ide/Manifest b/dev-util/ninja-ide/Manifest deleted file mode 100644 index c5be352ff9a4..000000000000 --- a/dev-util/ninja-ide/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST ninja-ide-2.3.tar.gz 650762 SHA256 79012ba8e526e126d54ba7b70fa6fcf61dfadb478624a74c299a0740c170d9ac SHA512 c449620c603060cb9dcc64ffa8c5a778a3993501c906b89a8ece1691ec85504521c893b03b8536c16d9a3e20c10fbc29b0fbfdf57250eb68a7284dca54dbaca9 WHIRLPOOL 79182e28bbef2592ef9ffeae301d0a48a87765121169e505fbe1364961e3286425d2a44b1d4e637bf3ccdea22f4cce3333a55ab8a855a80f1b167e3220ea84ca diff --git a/dev-util/ninja-ide/files/ninja-ide-2.3-python2_6.patch b/dev-util/ninja-ide/files/ninja-ide-2.3-python2_6.patch deleted file mode 100644 index c01465dd9140..000000000000 --- a/dev-util/ninja-ide/files/ninja-ide-2.3-python2_6.patch +++ /dev/null @@ -1,27 +0,0 @@ -From: Julian Ospald -Date: Wed Apr 24 21:05:44 UTC 2013 -Subject: fix compatibility with python:2.6 - ---- ninja_ide/core/file_manager.py -+++ ninja_ide/core/file_manager.py -@@ -26,7 +26,7 @@ - - from ninja_ide.core import settings - --if sys.version_info.major == 3: -+if sys.version_info[0] == 3: - python3 = True - else: - python3 = False - ---- ninja_ide/gui/editor/editor.py -+++ ninja_ide/gui/editor/editor.py -@@ -68,7 +68,7 @@ - logger = NinjaLogger('ninja_ide.gui.editor.editor') - - --if sys.version_info.major == 3: -+if sys.version_info[0] == 3: - python3 = True - else: - python3 = False diff --git a/dev-util/ninja-ide/files/ninja-ide-2.3-syntax.patch b/dev-util/ninja-ide/files/ninja-ide-2.3-syntax.patch deleted file mode 100644 index 0430b6448983..000000000000 --- a/dev-util/ninja-ide/files/ninja-ide-2.3-syntax.patch +++ /dev/null @@ -1,9 +0,0 @@ ---- ninja_tests/core/examples/file_for_tests.py -+++ ninja_tests/core/examples/file_for_tests.py -@@ -1,4 +1,4 @@ - # -*- coding: utf-8 -*- - --print 'testing' --print 'ñandú testing' -+print('testing') -+print('ñandú testing') diff --git a/dev-util/ninja-ide/metadata.xml b/dev-util/ninja-ide/metadata.xml deleted file mode 100644 index 2b02efb7ea35..000000000000 --- a/dev-util/ninja-ide/metadata.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - proxy-maint@gentoo.org - Proxy Maintainers - - - awol.lordofthepants@gmail.com - Aaron Burnett - Proxy maintainer. CC him on bugs - - - https://github.com/ninja-ide/ninja-ide/commits/master - https://github.com/ninja-ide/ninja-ide/wiki - https://github.com/ninja-ide/ninja-ide/issues - ninja-ide/ninja-ide - - - NINJA-IDE (from the recursive acronym: "Ninja-IDE Is Not Just - Another IDE"), is a cross-platform integrated development - environment (IDE). NINJA-IDE runs on Linux/X11, Mac OS X and - Windows desktop operating systems, and allows developers to create - applications for several purposes using all the tools and utilities - of NINJA-IDE, making the task of writing software easier and more - enjoyable. - - diff --git a/dev-util/ninja-ide/ninja-ide-2.3.ebuild b/dev-util/ninja-ide/ninja-ide-2.3.ebuild deleted file mode 100644 index 25ed510722de..000000000000 --- a/dev-util/ninja-ide/ninja-ide-2.3.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -# XXX: tests - -EAPI=5 - -PYTHON_COMPAT=( python2_7 ) - -inherit eutils gnome2-utils distutils-r1 vcs-snapshot - -DESCRIPTION="Ninja-IDE Is Not Just Another IDE" -HOMEPAGE="http://www.ninja-ide.org" -SRC_URI="https://github.com/ninja-ide/ninja-ide/tarball/v${PV} -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND=" - dev-python/PyQt4[X,declarative,webkit,${PYTHON_USEDEP}] - dev-python/pyinotify[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND}" - -PATCHES=( - "${FILESDIR}"/${P}-syntax.patch - "${FILESDIR}"/${P}-python2_6.patch -) - -python_install_all() { - distutils-r1_python_install_all - newicon -s 256 icon.png ${PN}.png - make_desktop_entry ${PN} "NINJA-IDE" -} - -pkg_preinst() { - gnome2_icon_savelist -} - -pkg_postinst() { - gnome2_icon_cache_update -} - -pkg_postrm() { - gnome2_icon_cache_update -} -- cgit v1.2.3-65-gdbad