summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2016-11-09 14:43:43 +0100
committerPacho Ramos <pacho@gentoo.org>2016-11-09 15:04:09 +0100
commitb5b1e536da5cbcfcdb712b57896da7fed63e5ca6 (patch)
treea48fbf892a0e6615bcb910c3f265d48c1592b45a /dev-python/pydb
parentdev-python/pyclimate: Drop old (diff)
downloadgentoo-b5b1e536da5cbcfcdb712b57896da7fed63e5ca6.tar.gz
gentoo-b5b1e536da5cbcfcdb712b57896da7fed63e5ca6.tar.bz2
gentoo-b5b1e536da5cbcfcdb712b57896da7fed63e5ca6.zip
dev-python/pydb: Drop old
Package-Manager: portage-2.3.2
Diffstat (limited to 'dev-python/pydb')
-rw-r--r--dev-python/pydb/pydb-1.26-r1.ebuild56
1 files changed, 0 insertions, 56 deletions
diff --git a/dev-python/pydb/pydb-1.26-r1.ebuild b/dev-python/pydb/pydb-1.26-r1.ebuild
deleted file mode 100644
index c17011eda1b3..000000000000
--- a/dev-python/pydb/pydb-1.26-r1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.*"
-PYTHON_EXPORT_PHASE_FUNCTIONS="1"
-
-inherit elisp-common python
-
-DESCRIPTION="Extended python debugger"
-HOMEPAGE="http://bashdb.sourceforge.net/pydb/"
-SRC_URI="mirror://sourceforge/bashdb/${P}.tar.bz2"
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="emacs"
-
-DEPEND="
- emacs? ( virtual/emacs )"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- echo "#!/bin/sh" > py-compile
-
- # Fix pydb symlinks.
- sed -e '/$(LN_S) "$(DESTDIR)$(pkgpythondir)\/$(python_debugger_script)" "$(DESTDIR)$(bindir)\/$(bin_SCRIPTS)"/s/$(DESTDIR)$(pkgpythondir)/$(pkgpythondir)/' -i Makefile.in
-
- python_src_prepare
-}
-
-src_configure() {
- configuration() {
- econf --with-lispdir="${SITELISP}/${PN}" \
- EMACS="$(use emacs && echo "${EMACS}" || echo no)" \
- --with-site-packages=$(python_get_sitedir) \
- --with-python=$(PYTHON -a)
- }
- python_execute_function -s configuration
-}
-
-src_install() {
- python_src_install
- dodoc AUTHORS ChangeLog NEWS README THANKS TODO
-}
-
-pkg_postinst() {
- python_mod_optimize pydb
-}
-
-pkg_postrm() {
- python_mod_cleanup pydb
-}