summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukasz Strzygowski <lucass@gentoo.org>2006-04-02 18:19:07 +0000
committerLukasz Strzygowski <lucass@gentoo.org>2006-04-02 18:19:07 +0000
commit83fbe56837d1f6e58e656b81358367dd711edf8d (patch)
tree5869d1a660981bebe827a2dd5c8ab1d76fff087c /dev-python/logilab-common/logilab-common-0.13.0-r1.ebuild
parentadded ~alpha for bug #108471 (diff)
downloadgentoo-2-83fbe56837d1f6e58e656b81358367dd711edf8d.tar.gz
gentoo-2-83fbe56837d1f6e58e656b81358367dd711edf8d.tar.bz2
gentoo-2-83fbe56837d1f6e58e656b81358367dd711edf8d.zip
Version bump. Fixed tests. Removed older versions: 0.5.0, 0.10.0, 0.12.0, 0.13.0, 0.13.0-r1.
(Portage version: 2.1_pre7-r3)
Diffstat (limited to 'dev-python/logilab-common/logilab-common-0.13.0-r1.ebuild')
-rw-r--r--dev-python/logilab-common/logilab-common-0.13.0-r1.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/dev-python/logilab-common/logilab-common-0.13.0-r1.ebuild b/dev-python/logilab-common/logilab-common-0.13.0-r1.ebuild
deleted file mode 100644
index bfcd8565f2d3..000000000000
--- a/dev-python/logilab-common/logilab-common-0.13.0-r1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/logilab-common/logilab-common-0.13.0-r1.ebuild,v 1.1 2006/01/19 16:45:37 marienz Exp $
-
-inherit distutils
-
-DESCRIPTION="Several modules providing low level functionality shared among some python projects developed by logilab."
-HOMEPAGE="http://www.logilab.org/projects/common/"
-SRC_URI="ftp://ftp.logilab.org/pub/common/${P#logilab-}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~s390 ~sparc ~x86"
-IUSE="doc"
-
-DEPEND="|| ( >=dev-python/optik-1.4 >=dev-lang/python-2.3 )"
-
-S=${WORKDIR}/${P#logilab-}
-
-PYTHON_MODNAME="logilab"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}/${P}-dbapi-skip-tests.patch"
- epatch "${FILESDIR}/${P}-configuration-help-test-less-strict.patch"
- # the permissions for this file are 400 in the tarball for no
- # obvious reason
- chmod 444 test/data/noendingnewline.py || die "chmod failed"
-}
-
-src_install() {
- distutils_src_install
-
- if use doc; then
- dohtml -r doc/html/*
- fi
-}
-
-src_test() {
- # The tests will not work properly from the source dir, so do a
- # temporary install:
- python_version
- local spath="test/usr/$(get_libdir)/python${PYVER}/site-packages/"
- ${python} setup.py install --root="${T}/test" || die "test install failed"
- # dir needs to be this or the tests fail
- cd "${T}/${spath}/logilab/common/test"
- PYTHONPATH="${T}/${spath}" "${python}" runtests.py || die "tests failed"
- cd "${S}"
- rm -rf "${T}/test"
-}