summaryrefslogtreecommitdiff
blob: e16f68551bcc120e9c9473f4d484505e3c470e93 (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
# vim: set filetype=ebuild :

# List of stuff this jobuild needs
# Excluding portage config files
SRC_URI="http://pastebin.osuosl.org/pastebin.php?dl=8934"
# DEPEND on a jobuild with glee
# The job must be completed in the same chroot
DEPEND="bheekling/test-libbeagle"
# SuperImpose DEPEND
# When we only need to know that a jobuild finished successfully
# And don't need it's effects on this chroot to continue
SIDEPEND=""

# Get SRC_URI and unpack
unpack_phase() {
	echo 'unpack'
}

# Do various setup
setup_phase() {
	echo 'setup'
}

# Chroot and do work
chroot_phase() {
	echo 'chroot'
}

# Cleanup
cleanup_phase() {
	echo 'cleanup'
}