summaryrefslogtreecommitdiff
blob: 944e7f89449782d21b38bd6ad9d1e75d32e9d521 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=6
PYTHON_COMPAT=( python2_7 )

inherit eutils autotools linux-info python-single-r1

COMMIT="c9a4f15b8c8f2349601d3073cc95e30d3b91af13"

DESCRIPTION="Unix Guest Agent for OpenStack"
HOMEPAGE="https://wiki.openstack.org/wiki/GuestAgent"
SRC_URI="https://github.com/rackerlabs/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RESTRICT="mirror strip"

DEPEND="
	app-emulation/xe-guest-utilities[-xenstore]
	dev-util/patchelf
	dev-python/pycrypto[${PYTHON_USEDEP}]
	test? ( dev-python/mox[${PYTHON_USEDEP}] )
	test? ( dev-python/unittest2[${PYTHON_USEDEP}] )
	${PYTHON_DEPS}
"
RDEPEND="
	app-emulation/xe-guest-utilities
	dev-python/pyxenstore[${PYTHON_USEDEP}]
	dev-python/pycrypto[${PYTHON_USEDEP}]
	${PYTHON_DEPS}
"
S=${WORKDIR}/${PN}-${COMMIT}

# Required for Emergency Console
CONFIG_CHECK="~KEYBOARD_ATKBD"

pkg_setup()
{
	python-single-r1_pkg_setup
}

src_prepare()
{
	# Note: https://github.com/rackerlabs/openstack-guest-agents-unix/issues/52
	ebegin 'patching tests/test_injectfile.py'
	sed -e '97,127 d' -i tests/test_injectfile.py
	STATUS=$?
	eend ${STATUS}
	[[ ${STATUS} -gt 0 ]] && die

	eapply_user
	eautoreconf
}

src_install()
{
	emake DESTDIR="${D}" install || die
	doinitd scripts/gentoo/nova-agent
}

pkg_postinst()
{
	if [ "$(rc-config list default | grep nova-agent)" = "" ] ; then
		elog "To start nova-agent automatically by default"
		elog "you should add it to the default runlevel :"
		elog "\`rc-update add nova-agent default\`"
		elog
	fi
}