summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirkjan Ochtman <djc@gentoo.org>2011-06-06 08:31:13 +0000
committerDirkjan Ochtman <djc@gentoo.org>2011-06-06 08:31:13 +0000
commitb56af24f34f76b1670c22be0212154860b600b20 (patch)
tree0d357618a79d0d308baef53b53b876b51c1b3ec8 /dev-python/dulwich
parentAdding arch=x86 (diff)
downloadgentoo-2-b56af24f34f76b1670c22be0212154860b600b20.tar.gz
gentoo-2-b56af24f34f76b1670c22be0212154860b600b20.tar.bz2
gentoo-2-b56af24f34f76b1670c22be0212154860b600b20.zip
Remove old version.
(Portage version: 2.1.9.50/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/dulwich')
-rw-r--r--dev-python/dulwich/ChangeLog5
-rw-r--r--dev-python/dulwich/dulwich-0.7.0.ebuild49
2 files changed, 4 insertions, 50 deletions
diff --git a/dev-python/dulwich/ChangeLog b/dev-python/dulwich/ChangeLog
index c765c79c7f4d..4409b6c6bb62 100644
--- a/dev-python/dulwich/ChangeLog
+++ b/dev-python/dulwich/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/dulwich
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/dulwich/ChangeLog,v 1.30 2011/05/31 20:20:33 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/dulwich/ChangeLog,v 1.31 2011/06/06 08:31:12 djc Exp $
+
+ 06 Jun 2011; Dirkjan Ochtman <djc@gentoo.org> -dulwich-0.7.0.ebuild:
+ Remove old version.
31 May 2011; Markus Meier <maekke@gentoo.org> dulwich-0.7.1.ebuild:
x86 stable, bug #367299
diff --git a/dev-python/dulwich/dulwich-0.7.0.ebuild b/dev-python/dulwich/dulwich-0.7.0.ebuild
deleted file mode 100644
index da88e60bf051..000000000000
--- a/dev-python/dulwich/dulwich-0.7.0.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/dulwich/dulwich-0.7.0.ebuild,v 1.8 2011/05/22 14:33:02 josejx Exp $
-
-EAPI="3"
-PYTHON_DEPEND="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.* *-jython"
-DISTUTILS_SRC_TEST="nosetests"
-
-inherit distutils
-
-DESCRIPTION="Dulwich is a pure-Python implementation of the Git file formats and protocols."
-HOMEPAGE="http://samba.org/~jelmer/dulwich/ http://pypi.python.org/pypi/dulwich"
-SRC_URI="http://samba.org/~jelmer/dulwich/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86 ~ppc-macos ~x86-macos ~x86-solaris"
-IUSE=""
-
-DEPEND="dev-python/setuptools
- test? ( || ( dev-lang/python:2.7 dev-python/unittest2 dev-python/testtools ) )"
-RDEPEND=""
-
-src_prepare() {
- distutils_src_prepare
-
- # https://github.com/jelmer/dulwich/commit/ee087a68c995bda4e83c464bf9339523f04e7a23
- sed -e "s/from dulwich.utils import/from dulwich.tests.compat.utils import/" -i dulwich/tests/compat/test_web.py
-
- sed -e "s/test_fetch_from_dulwich(/_&/" -i dulwich/tests/compat/server_utils.py
-}
-
-distutils_src_test_pre_hook() {
- local module
- for module in _diff_tree _objects _pack; do
- ln -fs "../$(ls -d build-${PYTHON_ABI}/lib.*)/dulwich/${module}.so" "dulwich/${module}.so" || die "Symlinking dulwich/${module}.so failed with $(python_get_implementation) $(python_get_version)"
- done
-}
-
-src_install() {
- distutils_src_install
-
- delete_tests() {
- rm -fr "${ED}$(python_get_sitedir)/dulwich/tests"
- }
- python_execute_function -q delete_tests
-}