diff options
author | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2008-08-30 20:02:27 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2008-08-30 20:02:27 +0530 |
commit | 9e93d9091acb76ad178f1ffe89b659d0ec71b6b4 (patch) | |
tree | edf0194ea10985eee3c2303ea546533c5d94985c | |
parent | Add a few more (skeleton) jobuilds to test the dep resolver (diff) | |
download | jobtage-master.tar.gz jobtage-master.tar.bz2 jobtage-master.zip |
-rw-r--r-- | bheekling/build-brasero/build-brasero-1.0.jobuild | 4 | ||||
-rw-r--r-- | bheekling/test-brasero/test-brasero-1.0.jobuild | 29 |
2 files changed, 30 insertions, 3 deletions
diff --git a/bheekling/build-brasero/build-brasero-1.0.jobuild b/bheekling/build-brasero/build-brasero-1.0.jobuild index a7e9aca..23f4852 100644 --- a/bheekling/build-brasero/build-brasero-1.0.jobuild +++ b/bheekling/build-brasero/build-brasero-1.0.jobuild @@ -5,9 +5,7 @@ SRC_URI="http://dev.gentooexperimental.org/~bheekling/sample-jobfile" # DEPEND on a jobuild with glee # The job must be completed in the same chroot -DEPEND="bheekling/test-libbeagle - bheekling/test-gstreamer - bheekling/build-glib" +DEPEND="bheekling/build-glib" # 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 diff --git a/bheekling/test-brasero/test-brasero-1.0.jobuild b/bheekling/test-brasero/test-brasero-1.0.jobuild new file mode 100644 index 0000000..587d9e6 --- /dev/null +++ b/bheekling/test-brasero/test-brasero-1.0.jobuild @@ -0,0 +1,29 @@ +# vim: set filetype=ebuild : + +# List of stuff this jobuild needs +# Excluding portage config files +SRC_URI="" +# DEPEND on a jobuild with glee +# The job must be completed in the same chroot +DEPEND="bheekling/build-brasero + bheekling/test-libbeagle + bheekling/test-gstreamer" +# 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="" + +# Unpack SRC_URI +src_unpack() { + echo 'unpack' +} + +# Do work +do_work() { + echo 'work' +} + +# Cleanup +cleanup() { + echo 'cleanup' +} |