blob: 775f21af6ca10890ee047bd21b96df7af9a82e28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
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"
KEYWORDS="~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"
}
|