From 4e37fdf5adbf4d25561b472b4089b6782c599f93 Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Tue, 11 Sep 2012 18:05:56 +0100 Subject: Don't require .morph in triplet arguments This gives us consistency with morphologies, where the triplets are repo|ref|morphology, not repo|ref|filename Anyone who runs 'morph build baserock:morphs master system.morph' will now see an error ending with 'was looking for system.morph.morph', which should make it clear where they have gone wrong. --- tests/build-chunk-failures-dump-log.script | 2 +- tests/build-chunk-writes-log.script | 3 +-- tests/build-chunk.script | 3 +-- tests/build-stratum-with-submodules.script | 2 +- tests/build-stratum.script | 2 +- tests/build-system-autotools-fails-if-autogen-fails.script | 2 +- tests/build-system-autotools.script | 3 +-- tests/build-system-cpan.script | 2 +- tests/build-system-python-distutils.script | 2 +- tests/missing-ref.script | 4 ++-- tests/morphless-chunks.script | 3 +-- tests/name-clash.script | 4 ++-- tests/rebuild-cached-stratum.script | 4 ++-- tests/show-dependencies.script | 2 +- tests/stratum-overlap-warns.script | 2 +- tests/stratum-overlap-writes-overlap.script | 2 +- tests/update-gits-chunk.script | 2 +- tests/update-gits-stratum.script | 3 +-- tests/update-gits-submodules.script | 3 +-- tests/uses-tempdir.script | 2 +- 20 files changed, 23 insertions(+), 29 deletions(-) (limited to 'tests') diff --git a/tests/build-chunk-failures-dump-log.script b/tests/build-chunk-failures-dump-log.script index 6f15c640..05a3bd8a 100755 --- a/tests/build-chunk-failures-dump-log.script +++ b/tests/build-chunk-failures-dump-log.script @@ -37,5 +37,5 @@ git add false.morph git commit --quiet -m "Make a morphology that fails." "$SRCDIR/scripts/test-morph" build-morphology \ - test:chunk-repo master false.morph \ + test:chunk-repo master false \ 2>/dev/null diff --git a/tests/build-chunk-writes-log.script b/tests/build-chunk-writes-log.script index 48557703..e34914df 100755 --- a/tests/build-chunk-writes-log.script +++ b/tests/build-chunk-writes-log.script @@ -19,8 +19,7 @@ set -eu -"$SRCDIR/scripts/test-morph" build-morphology \ - test:chunk-repo farrokh hello.morph +"$SRCDIR/scripts/test-morph" build-morphology test:chunk-repo farrokh hello SOURCES="$DATADIR/cached-sources" find "$DATADIR/cache/artifacts" -name '*.chunk.*' | diff --git a/tests/build-chunk.script b/tests/build-chunk.script index c73502c2..e69515b3 100755 --- a/tests/build-chunk.script +++ b/tests/build-chunk.script @@ -19,8 +19,7 @@ set -eu -"$SRCDIR/scripts/test-morph" build-morphology \ - test:chunk-repo farrokh hello.morph +"$SRCDIR/scripts/test-morph" build-morphology test:chunk-repo farrokh hello for chunk in "$DATADIR/cache/artifacts/"*.chunk.* do diff --git a/tests/build-stratum-with-submodules.script b/tests/build-stratum-with-submodules.script index 06afd9f3..2a99b12d 100755 --- a/tests/build-stratum-with-submodules.script +++ b/tests/build-stratum-with-submodules.script @@ -66,7 +66,7 @@ EOF # No build and verify we got a stratum. "$SRCDIR/scripts/test-morph" build-morphology \ - test:morphs-repo master submod-stratum.morph + test:morphs-repo master submod-stratum "$SRCDIR/scripts/assemble-stratum" --cachedir "$DATADIR/cache" \ "$DATADIR/cache/artifacts/"*submod-stratum \ "$DATADIR/stratum.tar" submod-stratum diff --git a/tests/build-stratum.script b/tests/build-stratum.script index 046b66f0..d4909e9a 100755 --- a/tests/build-stratum.script +++ b/tests/build-stratum.script @@ -20,7 +20,7 @@ set -eu "$SRCDIR/scripts/test-morph" build-morphology \ - test:morphs-repo master hello-stratum.morph + test:morphs-repo master hello-stratum "$SRCDIR/scripts/assemble-stratum" --cachedir "$DATADIR/cache" \ "$DATADIR/cache/artifacts/"*.hello-stratum \ "$DATADIR/stratum.tar" hello-stratum diff --git a/tests/build-system-autotools-fails-if-autogen-fails.script b/tests/build-system-autotools-fails-if-autogen-fails.script index 06edcd29..fb80fc72 100755 --- a/tests/build-system-autotools-fails-if-autogen-fails.script +++ b/tests/build-system-autotools-fails-if-autogen-fails.script @@ -34,6 +34,6 @@ chmod a+x "$x/autogen.sh" "$SRCDIR/scripts/run-git-in" "$x" commit --quiet -m initial "$SRCDIR/scripts/test-morph" build-morphology \ - test:autogen-chunk master detected.morph \ + test:autogen-chunk master detected \ >/dev/null 2> /dev/null diff --git a/tests/build-system-autotools.script b/tests/build-system-autotools.script index 992f34e0..f23eb04e 100755 --- a/tests/build-system-autotools.script +++ b/tests/build-system-autotools.script @@ -47,8 +47,7 @@ EOF git add hello.morph git commit --quiet -m "Convert hello to an autotools project" -"$SRCDIR/scripts/test-morph" build-morphology \ - test:chunk-repo farrokh hello.morph +"$SRCDIR/scripts/test-morph" build-morphology test:chunk-repo farrokh hello for chunk in "$DATADIR/cache/artifacts/"*.chunk.* do diff --git a/tests/build-system-cpan.script b/tests/build-system-cpan.script index 94191395..aec91873 100755 --- a/tests/build-system-cpan.script +++ b/tests/build-system-cpan.script @@ -54,7 +54,7 @@ git add hello.morph git commit --quiet -m 'convert hello into a perl cpan project' "$SRCDIR/scripts/test-morph" build-morphology --prefix=/ \ - test:chunk-repo farrokh hello.morph + test:chunk-repo farrokh hello for chunk in "$DATADIR/cache/artifacts/"*.chunk.* do diff --git a/tests/build-system-python-distutils.script b/tests/build-system-python-distutils.script index 470b175f..d7be93bd 100755 --- a/tests/build-system-python-distutils.script +++ b/tests/build-system-python-distutils.script @@ -52,7 +52,7 @@ git add hello.morph git commit --quiet -m 'convert hello into a python project' "$SRCDIR/scripts/test-morph" build-morphology --prefix= \ - test:chunk-repo farrokh hello.morph + test:chunk-repo farrokh hello for chunk in "$DATADIR/cache/artifacts/"*.chunk.* do diff --git a/tests/missing-ref.script b/tests/missing-ref.script index 0ee075d7..2da9fa05 100755 --- a/tests/missing-ref.script +++ b/tests/missing-ref.script @@ -17,6 +17,6 @@ # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -"$SRCDIR/scripts/test-morph" build-morphology\ - test:chunk-repo non-existent-branch hello.morph +"$SRCDIR/scripts/test-morph" build-morphology \ + test:chunk-repo non-existent-branch hello diff --git a/tests/morphless-chunks.script b/tests/morphless-chunks.script index 45f88cd8..315f42ea 100755 --- a/tests/morphless-chunks.script +++ b/tests/morphless-chunks.script @@ -60,8 +60,7 @@ git init --quiet git add alfred.morph git commit --quiet -m initial -"$SRCDIR/scripts/test-morph" build-morphology \ - test:stratum master alfred.morph +"$SRCDIR/scripts/test-morph" build-morphology test:stratum master alfred for chunk in "$DATADIR/cache/artifacts/"*.chunk.* do diff --git a/tests/name-clash.script b/tests/name-clash.script index 974d15b0..9a3e942b 100755 --- a/tests/name-clash.script +++ b/tests/name-clash.script @@ -49,11 +49,11 @@ EOF # build the dodgy chunk "$SRCDIR/scripts/test-morph" build-morphology \ - test:chunk-repo farrokh goodbye.morph + test:chunk-repo farrokh goodbye # build a stratum "$SRCDIR/scripts/test-morph" build-morphology \ - test:morphs-repo master hello-stratum.morph + test:morphs-repo master hello-stratum # unpack it and check the contents INSTDIR="$DATADIR"/unpack diff --git a/tests/rebuild-cached-stratum.script b/tests/rebuild-cached-stratum.script index dee08dfb..2615fb30 100755 --- a/tests/rebuild-cached-stratum.script +++ b/tests/rebuild-cached-stratum.script @@ -38,7 +38,7 @@ cache="$DATADIR/cache/artifacts" # Build the first time. "$SRCDIR/scripts/test-morph" build-morphology \ - test:morphs-repo rebuild-cached-stratum hello-stratum.morph + test:morphs-repo rebuild-cached-stratum hello-stratum echo "first build:" (cd "$cache" && ls *.chunk.* *hello-stratum | sed 's/^[^.]*\./ /' | LC_ALL=C sort) @@ -50,7 +50,7 @@ echo "first build:" # Rebuild. "$SRCDIR/scripts/test-morph" build-morphology \ - test:morphs-repo rebuild-cached-stratum hello-stratum.morph + test:morphs-repo rebuild-cached-stratum hello-stratum echo "second build:" (cd "$cache" && ls *.chunk.* *hello-stratum | sed 's/^[^.]*\./ /' | LC_ALL=C sort) diff --git a/tests/show-dependencies.script b/tests/show-dependencies.script index d7495f35..aad036e9 100755 --- a/tests/show-dependencies.script +++ b/tests/show-dependencies.script @@ -20,5 +20,5 @@ set -eu "$SRCDIR/scripts/test-morph" \ - show-dependencies test:test-repo master xfce-core.morph | + show-dependencies test:test-repo master xfce-core | sed 's/test://' diff --git a/tests/stratum-overlap-warns.script b/tests/stratum-overlap-warns.script index 08551333..8cf1606c 100755 --- a/tests/stratum-overlap-warns.script +++ b/tests/stratum-overlap-warns.script @@ -29,7 +29,7 @@ warning_mentions(){ } "$SRCDIR/scripts/test-morph" build-morphology --log=$log \ - test:morphs-repo overlap overlap-stratum.morph > /dev/null + test:morphs-repo overlap overlap-stratum > /dev/null grep WARNING "$log" >"$warnings" for str in overlap-stratum \ overlap-foo-baz overlap-foobar bin/bar \ diff --git a/tests/stratum-overlap-writes-overlap.script b/tests/stratum-overlap-writes-overlap.script index 6ea0ceac..d06b4677 100755 --- a/tests/stratum-overlap-writes-overlap.script +++ b/tests/stratum-overlap-writes-overlap.script @@ -24,7 +24,7 @@ cache="$DATADIR/cache/artifacts" "$SRCDIR/scripts/test-morph" build-morphology \ - test:morphs-repo overlap overlap-stratum.morph > /dev/null + test:morphs-repo overlap overlap-stratum > /dev/null "$SRCDIR/scripts/list-overlaps" groups \ "$cache"/*.stratum.overlap-stratum.overlaps | while IFS='\n' read overlaps; do diff --git a/tests/update-gits-chunk.script b/tests/update-gits-chunk.script index 8e42acd9..b07aef17 100755 --- a/tests/update-gits-chunk.script +++ b/tests/update-gits-chunk.script @@ -26,7 +26,7 @@ git checkout --quiet farrokh git commit --quiet --allow-empty --allow-empty-message -m "" NEWREF="$(git show-ref --hash farrokh)" -"$SRCDIR/scripts/test-morph" update-gits test:chunk-repo farrokh hello.morph +"$SRCDIR/scripts/test-morph" update-gits test:chunk-repo farrokh hello # check the top commit of the cached repo's farrokh branch cd "$DATADIR/cache/gits/"*chunk?repo* diff --git a/tests/update-gits-stratum.script b/tests/update-gits-stratum.script index 13ce249c..24b6f199 100755 --- a/tests/update-gits-stratum.script +++ b/tests/update-gits-stratum.script @@ -26,8 +26,7 @@ git checkout --quiet farrokh git commit --quiet --allow-empty --allow-empty-message -m "" NEWREF="$(git show-ref --hash farrokh)" -"$SRCDIR/scripts/test-morph" update-gits \ - test:morphs-repo master hello-stratum.morph +"$SRCDIR/scripts/test-morph" update-gits test:morphs-repo master hello-stratum # check the top commit of the cached repo's farrokh branch cd "$DATADIR/cache/gits/"*chunk?repo* diff --git a/tests/update-gits-submodules.script b/tests/update-gits-submodules.script index 01be003e..49f4de62 100755 --- a/tests/update-gits-submodules.script +++ b/tests/update-gits-submodules.script @@ -33,8 +33,7 @@ chunkrepo="$DATADIR/chunk-repo" > /dev/null "$SRCDIR/scripts/run-git-in" "$chunkrepo" commit --quiet -m "add submodule" -"$SRCDIR/scripts/test-morph" update-gits \ - test:morphs-repo master hello-stratum.morph +"$SRCDIR/scripts/test-morph" update-gits test:morphs-repo master hello-stratum test -d "$DATADIR/cache/gits/"*chunk?repo* && echo chunk-repo cached test -d "$DATADIR/cache/gits/"*morphs?repo* && echo morphs-repo cached diff --git a/tests/uses-tempdir.script b/tests/uses-tempdir.script index b4cc2688..328413dd 100755 --- a/tests/uses-tempdir.script +++ b/tests/uses-tempdir.script @@ -24,4 +24,4 @@ TMPDIR="$DATADIR"/unwritable-tmp install -m 000 -d "$TMPDIR" mkdir "$DATADIR"/tmp "$SRCDIR/scripts/test-morph" build-morphology --tempdir "$DATADIR"/tmp \ - test:morphs-repo master hello-stratum.morph + test:morphs-repo master hello-stratum -- cgit v1.2.1 From dd21e646b320a4aeb948830034dea2ab94e32064 Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Tue, 11 Sep 2012 18:25:38 +0100 Subject: Don't use .morph extension when printing name of triplets We should now be fully consistent regarding the form of triplets (ie. the last component is always a morphology name rather than a filename) --- tests/show-dependencies.stdout | 248 ++++++++++++++++++++--------------------- 1 file changed, 124 insertions(+), 124 deletions(-) (limited to 'tests') diff --git a/tests/show-dependencies.stdout b/tests/show-dependencies.stdout index 3938e266..e58f5285 100644 --- a/tests/show-dependencies.stdout +++ b/tests/show-dependencies.stdout @@ -1,133 +1,133 @@ -dependency graph for test-repo|master|xfce-core.morph: - test-repo|master|cairo.morph|cairo - test-repo|master|dbus-glib.morph|dbus-glib - -> test-repo|master|dbus.morph|dbus - -> test-repo|master|glib.morph|glib - test-repo|master|dbus.morph|dbus - test-repo|master|exo.morph|exo - -> test-repo|master|gtk-stack.morph|gtk-stack - -> test-repo|master|libxfce4util.morph|libxfce4util - test-repo|master|fontconfig.morph|fontconfig - test-repo|master|freetype.morph|freetype - test-repo|master|garcon.morph|garcon - -> test-repo|master|gtk-stack.morph|gtk-stack - -> test-repo|master|libxfce4util.morph|libxfce4util - test-repo|master|gdk-pixbuf.morph|gdk-pixbuf - -> test-repo|master|glib.morph|glib - test-repo|master|glib.morph|glib - test-repo|master|gtk-stack.morph|gtk-stack - -> test-repo|master|cairo.morph|cairo - -> test-repo|master|dbus-glib.morph|dbus-glib - -> test-repo|master|dbus.morph|dbus - -> test-repo|master|fontconfig.morph|fontconfig - -> test-repo|master|freetype.morph|freetype - -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf - -> test-repo|master|glib.morph|glib - -> test-repo|master|gtk.morph|gtk - -> test-repo|master|pango.morph|pango - test-repo|master|gtk-xfce-engine.morph|gtk-xfce-engine - -> test-repo|master|garcon.morph|garcon - -> test-repo|master|gtk-stack.morph|gtk-stack - -> test-repo|master|libxfce4ui.morph|libxfce4ui - -> test-repo|master|xfconf.morph|xfconf - test-repo|master|gtk.morph|gtk - -> test-repo|master|cairo.morph|cairo - -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf - -> test-repo|master|glib.morph|glib - -> test-repo|master|pango.morph|pango - test-repo|master|libxfce4ui.morph|libxfce4ui - -> test-repo|master|gtk-stack.morph|gtk-stack - -> test-repo|master|xfconf.morph|xfconf - test-repo|master|libxfce4util.morph|libxfce4util - -> test-repo|master|gtk-stack.morph|gtk-stack - test-repo|master|pango.morph|pango - -> test-repo|master|fontconfig.morph|fontconfig - -> test-repo|master|freetype.morph|freetype - test-repo|master|thunar.morph|thunar - -> test-repo|master|exo.morph|exo - -> test-repo|master|gtk-stack.morph|gtk-stack - -> test-repo|master|libxfce4ui.morph|libxfce4ui - test-repo|master|tumbler.morph|tumbler - -> test-repo|master|gtk-stack.morph|gtk-stack - test-repo|master|xfce-core.morph|xfce-core - -> test-repo|master|exo.morph|exo - -> test-repo|master|garcon.morph|garcon - -> test-repo|master|gtk-stack.morph|gtk-stack - -> test-repo|master|gtk-xfce-engine.morph|gtk-xfce-engine - -> test-repo|master|libxfce4ui.morph|libxfce4ui - -> test-repo|master|libxfce4util.morph|libxfce4util - -> test-repo|master|thunar.morph|thunar - -> test-repo|master|tumbler.morph|tumbler - -> test-repo|master|xfce4-appfinder.morph|xfce4-appfinder - -> test-repo|master|xfce4-panel.morph|xfce4-panel - -> test-repo|master|xfce4-session.morph|xfce4-session - -> test-repo|master|xfce4-settings.morph|xfce4-settings - -> test-repo|master|xfconf.morph|xfconf - -> test-repo|master|xfdesktop.morph|xfdesktop - -> test-repo|master|xfwm4.morph|xfwm4 - test-repo|master|xfce4-appfinder.morph|xfce4-appfinder - -> test-repo|master|garcon.morph|garcon - -> test-repo|master|gtk-stack.morph|gtk-stack - -> test-repo|master|libxfce4ui.morph|libxfce4ui - -> test-repo|master|xfconf.morph|xfconf - test-repo|master|xfce4-panel.morph|xfce4-panel - -> test-repo|master|exo.morph|exo - -> test-repo|master|garcon.morph|garcon - -> test-repo|master|gtk-stack.morph|gtk-stack - -> test-repo|master|libxfce4ui.morph|libxfce4ui - test-repo|master|xfce4-session.morph|xfce4-session - -> test-repo|master|exo.morph|exo - -> test-repo|master|gtk-stack.morph|gtk-stack - -> test-repo|master|libxfce4ui.morph|libxfce4ui - -> test-repo|master|xfconf.morph|xfconf - test-repo|master|xfce4-settings.morph|xfce4-settings - -> test-repo|master|exo.morph|exo - -> test-repo|master|gtk-stack.morph|gtk-stack - -> test-repo|master|libxfce4ui.morph|libxfce4ui - -> test-repo|master|xfconf.morph|xfconf - test-repo|master|xfconf.morph|xfconf - -> test-repo|master|gtk-stack.morph|gtk-stack - -> test-repo|master|libxfce4util.morph|libxfce4util - test-repo|master|xfdesktop.morph|xfdesktop - -> test-repo|master|gtk-stack.morph|gtk-stack - -> test-repo|master|libxfce4ui.morph|libxfce4ui - -> test-repo|master|xfconf.morph|xfconf - test-repo|master|xfwm4.morph|xfwm4 - -> test-repo|master|gtk-stack.morph|gtk-stack - -> test-repo|master|libxfce4ui.morph|libxfce4ui - -> test-repo|master|xfconf.morph|xfconf -build order for test-repo|master|xfce-core.morph: +dependency graph for test-repo|master|xfce-core: + test-repo|master|cairo|cairo + test-repo|master|dbus-glib|dbus-glib + -> test-repo|master|dbus|dbus + -> test-repo|master|glib|glib + test-repo|master|dbus|dbus + test-repo|master|exo|exo + -> test-repo|master|gtk-stack|gtk-stack + -> test-repo|master|libxfce4util|libxfce4util + test-repo|master|fontconfig|fontconfig + test-repo|master|freetype|freetype + test-repo|master|garcon|garcon + -> test-repo|master|gtk-stack|gtk-stack + -> test-repo|master|libxfce4util|libxfce4util + test-repo|master|gdk-pixbuf|gdk-pixbuf + -> test-repo|master|glib|glib + test-repo|master|glib|glib + test-repo|master|gtk-stack|gtk-stack + -> test-repo|master|cairo|cairo + -> test-repo|master|dbus-glib|dbus-glib + -> test-repo|master|dbus|dbus + -> test-repo|master|fontconfig|fontconfig + -> test-repo|master|freetype|freetype + -> test-repo|master|gdk-pixbuf|gdk-pixbuf + -> test-repo|master|glib|glib + -> test-repo|master|gtk|gtk + -> test-repo|master|pango|pango + test-repo|master|gtk-xfce-engine|gtk-xfce-engine + -> test-repo|master|garcon|garcon + -> test-repo|master|gtk-stack|gtk-stack + -> test-repo|master|libxfce4ui|libxfce4ui + -> test-repo|master|xfconf|xfconf + test-repo|master|gtk|gtk + -> test-repo|master|cairo|cairo + -> test-repo|master|gdk-pixbuf|gdk-pixbuf + -> test-repo|master|glib|glib + -> test-repo|master|pango|pango + test-repo|master|libxfce4ui|libxfce4ui + -> test-repo|master|gtk-stack|gtk-stack + -> test-repo|master|xfconf|xfconf + test-repo|master|libxfce4util|libxfce4util + -> test-repo|master|gtk-stack|gtk-stack + test-repo|master|pango|pango + -> test-repo|master|fontconfig|fontconfig + -> test-repo|master|freetype|freetype + test-repo|master|thunar|thunar + -> test-repo|master|exo|exo + -> test-repo|master|gtk-stack|gtk-stack + -> test-repo|master|libxfce4ui|libxfce4ui + test-repo|master|tumbler|tumbler + -> test-repo|master|gtk-stack|gtk-stack + test-repo|master|xfce-core|xfce-core + -> test-repo|master|exo|exo + -> test-repo|master|garcon|garcon + -> test-repo|master|gtk-stack|gtk-stack + -> test-repo|master|gtk-xfce-engine|gtk-xfce-engine + -> test-repo|master|libxfce4ui|libxfce4ui + -> test-repo|master|libxfce4util|libxfce4util + -> test-repo|master|thunar|thunar + -> test-repo|master|tumbler|tumbler + -> test-repo|master|xfce4-appfinder|xfce4-appfinder + -> test-repo|master|xfce4-panel|xfce4-panel + -> test-repo|master|xfce4-session|xfce4-session + -> test-repo|master|xfce4-settings|xfce4-settings + -> test-repo|master|xfconf|xfconf + -> test-repo|master|xfdesktop|xfdesktop + -> test-repo|master|xfwm4|xfwm4 + test-repo|master|xfce4-appfinder|xfce4-appfinder + -> test-repo|master|garcon|garcon + -> test-repo|master|gtk-stack|gtk-stack + -> test-repo|master|libxfce4ui|libxfce4ui + -> test-repo|master|xfconf|xfconf + test-repo|master|xfce4-panel|xfce4-panel + -> test-repo|master|exo|exo + -> test-repo|master|garcon|garcon + -> test-repo|master|gtk-stack|gtk-stack + -> test-repo|master|libxfce4ui|libxfce4ui + test-repo|master|xfce4-session|xfce4-session + -> test-repo|master|exo|exo + -> test-repo|master|gtk-stack|gtk-stack + -> test-repo|master|libxfce4ui|libxfce4ui + -> test-repo|master|xfconf|xfconf + test-repo|master|xfce4-settings|xfce4-settings + -> test-repo|master|exo|exo + -> test-repo|master|gtk-stack|gtk-stack + -> test-repo|master|libxfce4ui|libxfce4ui + -> test-repo|master|xfconf|xfconf + test-repo|master|xfconf|xfconf + -> test-repo|master|gtk-stack|gtk-stack + -> test-repo|master|libxfce4util|libxfce4util + test-repo|master|xfdesktop|xfdesktop + -> test-repo|master|gtk-stack|gtk-stack + -> test-repo|master|libxfce4ui|libxfce4ui + -> test-repo|master|xfconf|xfconf + test-repo|master|xfwm4|xfwm4 + -> test-repo|master|gtk-stack|gtk-stack + -> test-repo|master|libxfce4ui|libxfce4ui + -> test-repo|master|xfconf|xfconf +build order for test-repo|master|xfce-core: group: - test-repo|master|glib.morph|glib - test-repo|master|freetype.morph|freetype - test-repo|master|fontconfig.morph|fontconfig + test-repo|master|glib|glib + test-repo|master|freetype|freetype + test-repo|master|fontconfig|fontconfig group: - test-repo|master|cairo.morph|cairo - test-repo|master|gdk-pixbuf.morph|gdk-pixbuf - test-repo|master|pango.morph|pango - test-repo|master|dbus.morph|dbus + test-repo|master|cairo|cairo + test-repo|master|gdk-pixbuf|gdk-pixbuf + test-repo|master|pango|pango + test-repo|master|dbus|dbus group: - test-repo|master|gtk.morph|gtk - test-repo|master|dbus-glib.morph|dbus-glib + test-repo|master|gtk|gtk + test-repo|master|dbus-glib|dbus-glib group: - test-repo|master|gtk-stack.morph|gtk-stack + test-repo|master|gtk-stack|gtk-stack group: - test-repo|master|libxfce4util.morph|libxfce4util + test-repo|master|libxfce4util|libxfce4util group: - test-repo|master|xfconf.morph|xfconf + test-repo|master|xfconf|xfconf group: - test-repo|master|exo.morph|exo - test-repo|master|libxfce4ui.morph|libxfce4ui - test-repo|master|garcon.morph|garcon + test-repo|master|exo|exo + test-repo|master|libxfce4ui|libxfce4ui + test-repo|master|garcon|garcon group: - test-repo|master|thunar.morph|thunar - test-repo|master|tumbler.morph|tumbler - test-repo|master|xfce4-panel.morph|xfce4-panel - test-repo|master|xfce4-settings.morph|xfce4-settings - test-repo|master|xfce4-session.morph|xfce4-session - test-repo|master|xfwm4.morph|xfwm4 - test-repo|master|xfdesktop.morph|xfdesktop - test-repo|master|xfce4-appfinder.morph|xfce4-appfinder - test-repo|master|gtk-xfce-engine.morph|gtk-xfce-engine + test-repo|master|thunar|thunar + test-repo|master|tumbler|tumbler + test-repo|master|xfce4-panel|xfce4-panel + test-repo|master|xfce4-settings|xfce4-settings + test-repo|master|xfce4-session|xfce4-session + test-repo|master|xfwm4|xfwm4 + test-repo|master|xfdesktop|xfdesktop + test-repo|master|xfce4-appfinder|xfce4-appfinder + test-repo|master|gtk-xfce-engine|gtk-xfce-engine group: - test-repo|master|xfce-core.morph|xfce-core + test-repo|master|xfce-core|xfce-core -- cgit v1.2.1