blob: 6d3a54a474f27877f1624a5b4b8ee6b5fb798b8d (
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
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/markdown/markdown-2.2.1.ebuild,v 1.1 2013/01/11 08:01:42 patrick Exp $
EAPI="4"
PYTHON_DEPEND="2:2.6 3:3.1"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.5"
inherit distutils eutils
MY_PN="Markdown"
MY_P=${MY_PN}-${PV}
DESCRIPTION="Python implementation of the markdown markup language"
HOMEPAGE="http://www.freewisdom.org/projects/python-markdown http://pypi.python.org/pypi/Markdown"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="|| ( BSD GPL-2 )"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~ppc-macos ~x86-macos"
IUSE="doc test pygments"
DEPEND="test? ( dev-python/nose )"
RDEPEND="pygments? ( dev-python/pygments )"
S="${WORKDIR}/${MY_P}"
src_install() {
distutils_src_install
if use doc; then
dodoc docs/[!extensions]*
docinto extensions
dodoc docs/extensions/*
fi
}
src_test() {
testing() {
cp -r run-tests.py tests build-${PYTHON_ABI}/ || return
cd build-${PYTHON_ABI}
if [[ $(python_get_version -l --major) == 3 ]]; then
2to3-${PYTHON_ABI} -n -w --no-diffs tests || return
fi
PYTHONPATH=lib "$(PYTHON)" run-tests.py
}
python_execute_function testing
}
|