app-portage/gentoolkit-dev: Remove 9999
authorBrian Dolbec <dolsen@gentoo.org>
Wed, 22 Mar 2017 18:19:52 +0000 (11:19 -0700)
committerBrian Dolbec <dolsen@gentoo.org>
Wed, 22 Mar 2017 18:25:36 +0000 (11:25 -0700)
The remaining useful pkgs have been merged to gentoolkit.

Package-Manager: Portage-2.3.5, Repoman-2.3.2_p30

app-portage/gentoolkit-dev/gentoolkit-dev-9999.ebuild [deleted file]

diff --git a/app-portage/gentoolkit-dev/gentoolkit-dev-9999.ebuild b/app-portage/gentoolkit-dev/gentoolkit-dev-9999.ebuild
deleted file mode 100644 (file)
index 89c96ad..0000000
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-PYTHON_REQ_USE="xml"
-
-inherit python-r1
-
-if [[ ${PV} == 9999 ]]; then
-       inherit git-r3
-       EGIT_REPO_URI="git://anongit.gentoo.org/proj/gentoolkit.git
-               https://anongit.gentoo.org/git/proj/gentoolkit.git"
-       EGIT_BRANCH="gentoolkit-dev"
-else
-       SRC_URI="https://dev.gentoo.org/~floppym/dist/${P}.tar.gz
-               https://dev.gentoo.org/~vapier/dist/${P}.tar.gz"
-       KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-fi
-
-DESCRIPTION="Collection of developer scripts for Gentoo"
-HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage-Tools"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="test"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-CDEPEND="
-       sys-apps/portage[${PYTHON_USEDEP}]
-       dev-lang/perl
-       sys-apps/diffutils"
-DEPEND="${PYTHON_DEPS}
-       test? ( ${CDEPEND} )"
-RDEPEND="${PYTHON_DEPS}
-       ${CDEPEND}"
-
-src_prepare() {
-       if [[ -n ${EPREFIX} ]] ; then
-               # fix shebangs of scripts
-               local d p
-               ebegin "Fixing shebangs"
-               for d in src/* ; do
-                       p=${d#*/}
-                       sed -i \
-                               -e "1s:\(\(/usr\)\?/bin/\):${EPREFIX}\1:" \
-                               ${d}/${p}* \
-                               || die "failed to fix ${d}/${p}"
-               done
-               eend $?
-
-               # fix repo location
-               sed -i \
-                       -e "s:portage\.db\['/'\]:portage.db['${EPREFIX}/']:g" \
-                       src/ekeyword/ekeyword.py \
-                       || die "failed to set EPREFIX in ekeyword"
-       fi
-}
-
-src_test() {
-       # echangelog test is not able to run as root
-       # the EUID check may not work for everybody
-       if [[ ${EUID} -ne 0 ]]; then
-               python_foreach_impl emake test
-       else
-               ewarn "test skipped, please re-run as non-root if you wish to test ${PN}"
-       fi
-}
-
-src_install() {
-       emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
-       python_replicate_script "${ED}"/usr/bin/{ekeyword,imlate}
-}