summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-07-03 22:20:20 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-07-03 22:20:20 +0000
commit8fa48da61a0e6117317e23241e0394bd58c7fd1f (patch)
tree981ef067f28f4fda13a741ba93e2596597198eb5 /dev-python
parentFix bug 321139, remove old (diff)
downloadgentoo-2-8fa48da61a0e6117317e23241e0394bd58c7fd1f.tar.gz
gentoo-2-8fa48da61a0e6117317e23241e0394bd58c7fd1f.tar.bz2
gentoo-2-8fa48da61a0e6117317e23241e0394bd58c7fd1f.zip
Delete older ebuild.
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/pylzma/files/pylzma-0.3.0-fbsd.patch13
-rw-r--r--dev-python/pylzma/pylzma-0.3.0.ebuild41
2 files changed, 0 insertions, 54 deletions
diff --git a/dev-python/pylzma/files/pylzma-0.3.0-fbsd.patch b/dev-python/pylzma/files/pylzma-0.3.0-fbsd.patch
deleted file mode 100644
index e6b32643a65e..000000000000
--- a/dev-python/pylzma/files/pylzma-0.3.0-fbsd.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- 7zip/LzmaCompatDecode.h.orig Thu Dec 28 06:27:50 2006
-+++ 7zip/LzmaCompatDecode.h Thu Dec 28 06:27:56 2006
-@@ -39,10 +39,6 @@
- # define LZMACALL
- #endif
-
--#ifndef malloc
--#include <malloc.h>
--#endif
--
- #ifndef UInt32
- #ifdef _LZMA_UINT32_IS_ULONG
- #define UInt32 unsigned long
diff --git a/dev-python/pylzma/pylzma-0.3.0.ebuild b/dev-python/pylzma/pylzma-0.3.0.ebuild
deleted file mode 100644
index b1096d69d3d2..000000000000
--- a/dev-python/pylzma/pylzma-0.3.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/pylzma/pylzma-0.3.0.ebuild,v 1.1 2009/04/23 21:33:35 patrick Exp $
-
-NEED_PYTHON=2.4
-
-inherit distutils eutils
-
-DESCRIPTION="Python bindings for the LZMA compression library."
-HOMEPAGE="http://www.joachim-bauch.de/projects/python/pylzma/"
-SRC_URI="http://www.joachim-bauch.de/projects/python/${PN}/releases/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-# fails horribly on amd64 at the moment.
-KEYWORDS="-amd64 ~x86 ~x86-fbsd"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-
-DOCS="doc/usage.txt readme.txt"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- use x86-fbsd && epatch "${FILESDIR}/${P}-fbsd.patch"
-}
-
-src_test() {
- einfo "Testing 7zfiles"
- export PYTHONPATH="$(ls -d build/lib.*)"
- "${python}" tests/test_7zfiles.py || die "7zfiles test failed"
- einfo "Testing compatibility"
- "${python}" tests/test_compatibility.py || die "Compatibility test failed"
- einfo "Testing pylzma"
- "${python}" tests/test_pylzma.py || die "pylzma test failed"
- einfo "Testing usage"
- "${python}" tests/test_usage.py || die "usage test failed"
-}