forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pms-test-suite-0.2.ebuild
62 lines (48 loc) · 1.2 KB
/
pms-test-suite-0.2.ebuild
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
50
51
52
53
54
55
56
57
58
59
60
61
62
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
PYTHON_DEPEND='2:2.6'
# Python ABIs are not supported by pkgcore
#SUPPORT_PYTHON_ABIS=1
# Python3 is not supported by dbus & gobject
RESTRICT_PYTHON_ABIS='2.4 2.5 3.*'
DISTUTILS_SRC_TEST=setup.py
inherit base distutils
DESCRIPTION="A test suite for Package Manager PMS compliance"
HOMEPAGE="https://www.gentoo.org/proj/en/qa/pms/pms-test-suite.xml"
SRC_URI="https://www.bitbucket.org/mgorny/${PN}/downloads/${P}.tar.bz2"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc test"
RDEPEND=">=app-portage/gentoopm-0.1.5
dev-python/dbus-python
dev-python/pygobject:2"
DEPEND="doc? ( dev-python/epydoc )
test? ( >=sys-apps/portage-2.1.10.3
sys-apps/pkgcore
>=sys-apps/paludis-0.64.2[python] )"
# broken atm
RESTRICT=test
PYTHON_MODNAME=pmstestsuite
pkg_setup() {
python_set_active_version 2
python_pkg_setup
}
src_prepare() {
base_src_prepare
distutils_src_prepare
}
src_compile() {
distutils_src_compile
if use doc; then
"$(PYTHON)" setup.py "${_DISTUTILS_GLOBAL_OPTIONS[@]}" doc || die
fi
}
src_install() {
distutils_src_install
if use doc; then
dohtml -r doc/*
fi
}