summaryrefslogtreecommitdiff
path: root/yarns/noncore-plugins.yarn
blob: 9e573673e46ff741aab6a06e9e4a1c4b0cb6cf44 (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
Non-Core Morph Plugins Tests
============================

Anchoring commits for reproducibility
-------------------------------------

For full reproducibility, we need to ensure we anchor the commits we use.
`morph anchor` handles making this easier by pushing refs to the repositories
we use.

    SCENARIO morph anchors commits used by a release
    GIVEN    a git server

Note that we only require a definitions repo here to allow us to obtain
a list of shas so we can verify each sha has been anchored.

    WHEN     the user clones definitions

The `morph anchor` command must be given a semantic name, to make the anchor
refs less opaque to humans, and allow anchor ref cleanup by semantic name, such
as when a given release is no longer supported.

    AND      the user attempts to anchor systems/test-system.morph with semantic name foo-release in branch master
    THEN     morph succeeded

After the `morph anchor` command completes, there are branches on the git
server in every repository used by the listed systems referring to the commits
used.

    AND      every commit used in master has anchor branches on the git server

`morph anchor` needs to handle being told to create anchors when they already
exist for that system, as we may have forgotten to anchor a system as part of a
release, and systems likely share contents.

    WHEN     the user attempts to anchor systems/test-system.morph with semantic name foo-release in branch master
    THEN     morph succeeded
    AND      every commit used in master has anchor branches on the git server

`morph anchor` will roll back any pushes when it is unable to push, and report
failure. To test this we need a new system to anchor.

    GIVEN    a chunk called extra-chunk
    AND      push access is denied to extra-chunk
    WHEN     the user creates a new definitions branch two, based on master
    AND      the user checks out definitions branch two
    AND      the user adds a new system to build called expanded-system that uses chunk extra-chunk
    AND      the user attempts to anchor systems/expanded-system.morph with semantic name foo-release in branch two
    THEN     morph failed

When this happens `morph anchor` must not remove anchors that already existed
before attempting to anchor, as they may be from a different system that shares
some components.

    THEN     every commit used in master has anchor branches on the git server
    FINALLY  the git server is shut down

### Anchor implementations

    IMPLEMENTS WHEN the user (attempts to )?(anchor) (.*) with semantic name (.*) in branch (\S+)

    systems=$(echo "$MATCH_3" | sed -e 's/, /\n/g' -e 's/ and /\n/g')
    set "$MATCH_2" "$MATCH_4" "file://$DATADIR/definitions" "$MATCH_5" $systems
    if [ "$MATCH_1" != "attempts to " ]; then run_morph "$@"
    else attempt_morph "$@"; fi

    IMPLEMENTS THEN every commit used in (.*) has anchor branches on the git server
    set +e
    run_in "$DATADIR/definitions" git checkout "$MATCH_1"
    # extract sha1s from ref: fields
    find "$DATADIR/definitions" -name '*.morph' \
          -exec sed -rn '/[^-]ref:\s*[0-9a-f]{40}/s/^.*([0-9a-f]{40})/\1/p' {} + | sort -u >"$DATADIR/sha1s"
    for sha1 in $(cat "$DATADIR/sha1s"); do
        sha1found=false
        # for each git repository
        for gitdir in $(find "$DATADIR/gits" -name '.git' -prune -exec dirname {} ';'); do
            # for each ref, check if the commit it points to is the sha1 we seek
            eval "$(cd "$gitdir" && git for-each-ref 'refs/heads/*/anchors/**' --shell \
                        --format='"$sha1found" || [ %(objectname) = "$sha1" ] && sha1found=true')"
        done
        if ! "$sha1found"; then
            exit 1
        fi
    done

    IMPLEMENTS GIVEN push access is denied to (.*)
    install -m 755 /dev/stdin "$DATADIR/gits/$MATCH_1/.git/hooks/pre-receive" <<'EOF'
    #!/bin/sh
    touch "$GIT_DIR/hook-ever-run"
    echo No push for you!
    exit 1
    EOF

    IMPLEMENTS GIVEN a chunk called (.*)
    mkdir "$DATADIR/gits/$MATCH_1"
    cd "$DATADIR/gits/$MATCH_1"
    git init .
    install -D -m644 /dev/stdin <<'EOF' "usr/share/doc/$MATCH_1/README"
    No other content here
    EOF
    git add .
    git commit -m "$MATCH_1 exists"

    IMPLEMENTS WHEN the user adds a new system to build called (.*) that uses chunk (.*)
    cd "$DATADIR/definitions"

    install -m644 -D /dev/stdin << EOF "strata/tools/$MATCH_2.morph"
    name: extra-chunk
    kind: chunk
    build-system: manual
    EOF
    git add strata/tools/extra-chunk.morph

    install -m644 -D /dev/stdin << EOF "strata/tools.morph"
    name: tools
    kind: stratum
    build-depends:
    - morph: strata/build-essential.morph
    chunks:
    -   name: "$MATCH_2"
        morph: strata/tools/extra-chunk.morph
        repo: test:extra-chunk
        unpetrify-ref: master
        ref: $(run_in "$DATADIR/gits/$MATCH_2" git rev-parse master)
        build-depends: []
    EOF
    git add strata/tools.morph

    arch=$(run_morph print-architecture)
    install -m644 -D /dev/stdin <<EOF "systems/$MATCH_1.morph"
    name: $MATCH_1
    kind: system
    arch: $arch
    strata:
    - name: build-essential
      morph: strata/build-essential.morph
    - name: core
      morph: strata/core.morph
    - name: tools
      morph: strata/tools.morph
    EOF
    git add "systems/$MATCH_1.morph"
    git commit -m 'Add extended system'

Manifests
---------

Generating a manifest works

    SCENARIO    morph generates a manifest
    GIVEN       a git server
    AND         a system artifact
    WHEN        the user clones definitions
    AND         morph generates a manifest
    THEN        the manifest is generated

A CSV manifest can also be generated.

    SCENARIO morph generates a csv manifest
    GIVEN    a git server

    WHEN     morph generates a manifest for system systems/test-system.morph at ref HEAD in repository test:definitions
    THEN     morph succeeded
    AND      the csv manifest is generated

Definition diffing
------------------

    SCENARIO diff reporting changes
    GIVEN    a git server

    WHEN     the user clones definitions
    AND      chunk repository test-chunk is re-tagged as test-tag
    AND      chunk test-chunk in stratum strata/core.morph in branch master is updated to use HEAD from chunk repository test-chunk
    AND      the user commits all changes in branch master
    AND      the user requests a definition diff on all systems on branches HEAD and HEAD^ in branch master

    THEN     morph succeeded
    AND      morph output test-tag

### diff implementations

    IMPLEMENTS WHEN the user requests a definition diff on all systems on branches (\S+) and (\S+) in branch (\S+)
    repo="$DATADIR/definitions"
    attempt_morph diff "$repo" "$MATCH_1" - "$repo" "$MATCH_2" -

Certify
-------

`morph certify` can be used to get an indication whether or not building
a system is likely to have a reproducible result.

    SCENARIO using morph certify
    GIVEN    a git server

    WHEN     the user certifies the system systems/test-system.morph at ref HEAD in repository test:definitions
    THEN     morph succeeded
    AND      morph output Reproducibility certification PASSED

Listing artifacts in a system
-----------------------------

The `morph list-artifacts` command can be used to list the names of each
artifact in a system. This name includes the cache key of the artifact.

    SCENARIO using morph list-artifacts
    GIVEN    a git server

    WHEN     the user lists the artifacts which make up the system systems/test-system.morph at ref HEAD in repository test:definitions
    THEN     morph succeeded

Printing the architecture
-------------------------

This is short and simple. Morph can print the name for the current
architecture, and we verify not that it is correct, but that exactly
one line is printed to the standard output. The reason we're not
checking it's correct is because that would require the test code
to duplicate the architecture name list that is in the code already,
and that wouldn't help with tests. However, verifying there's exactly
one line in stdout (and nothing in stderr) means the plugin does at
least something sensible.

Oh, and the one line should contain no spaces, either.

    SCENARIO morph print-architecture prints out a single word
    WHEN morph print-architecture is run
    THEN stdout contains a single line
    AND stdout contains no spaces
    AND stderr is empty

    IMPLEMENTS WHEN morph print-architecture is run
    set +x
    run_morph print-architecture > "$DATADIR/stdout" 2> "$DATADIR/stderr"

    IMPLEMENTS THEN stdout contains a single line
    n=$(wc -l < "$DATADIR/stdout")
    if [ "$n" != 1 ]
    then
        die "stdout contains $n lines, not 1"
    fi

    IMPLEMENTS THEN stdout contains no spaces
    n=$(tr < "$DATADIR/stdout" -cd ' ' | wc -c)
    if [ "$n" != 0 ]
    then
        die "stdout contains spaces"
    fi

    IMPLEMENTS THEN stderr is empty
    if [ -s "$DATADIR/stderr" ]
    then
        die "stderr is not empty"
    fi

Showing help for extensions
---------------------------

    SCENARIO morph shows help for extensions
    WHEN morph help is run for an extension
    THEN morph succeeded

    SCENARIO morph help shows an error for a non-existent extension
    WHEN morph help is run for a non-existent extension
    THEN morph failed
    AND the help error message includes the string "ERROR: Unknown subcommand or extension"

    IMPLEMENTS WHEN morph help is run for an extension
    attempt_morph help tar.write > "$DATADIR/stdout" 2> "$DATADIR/stderr"

    IMPLEMENTS WHEN morph help is run for a non-existent extension
    attempt_morph help nonexistent.write > "$DATADIR/stdout" 2> "$DATADIR/stderr"

Showing dependencies
--------------------

    SCENARIO showing the dependencies for a system
    GIVEN a git server
    AND a system with two reasonable-sized strata in branch master of definitions
    WHEN the user runs the show-dependencies command for system xfce-system.morph in branch master
    THEN the result shows the dependencies of the system

    IMPLEMENTS GIVEN a system with two reasonable-sized strata in branch (\S+) of definitions
    branch="$MATCH_1"
    cd "$DATADIR"/gits/definitions
    git checkout "$branch"
    cat << EOF > gtk-stack.morph
    name: gtk-stack
    kind: stratum
    build-depends: []
    chunks:
    - name: freetype
      repo: test:test-chunk
      ref: master
      build-mode: bootstrap
      build-system: manual
    - name: fontconfig
      repo: test:test-chunk
      ref: master
      build-mode: bootstrap
      build-system: manual
    - name: cairo
      repo: test:test-chunk
      ref: master
      build-mode: bootstrap
      build-system: manual
    - name: pango
      repo: test:test-chunk
      ref: master
      build-system: manual
      build-depends:
      - freetype
      - fontconfig
    - name: glib
      repo: test:test-chunk
      ref: master
      build-mode: bootstrap
      build-system: manual
    - name: gdk-pixbuf
      repo: test:test-chunk
      ref: master
      build-system: manual
      build-depends:
      - glib
    - name: gtk
      repo: test:test-chunk
      ref: master
      build-system: manual
      build-depends:
      - cairo
      - gdk-pixbuf
      - glib
      - pango
    - name: dbus
      repo: test:test-chunk
      ref: master
      build-mode: bootstrap
      build-system: manual
    - name: dbus-glib
      repo: test:test-chunk
      ref: master
      build-system: manual
      build-depends:
      - dbus
      - glib
    EOF
    git add gtk-stack.morph

    cat <<EOF > xfce-core.morph
    name: xfce-core
    kind: stratum
    build-depends:
    - morph: gtk-stack
    chunks:
    - name: libxfce4util
      repo: test:test-chunk
      ref: master
      build-system: manual
    - name: xfconf
      repo: test:test-chunk
      ref: master
      build-system: manual
      build-depends:
      - libxfce4util
    - name: libxfce4ui
      repo: test:test-chunk
      ref: master
      build-system: manual
      build-depends:
      - xfconf
    - name: exo
      repo: test:test-chunk
      ref: master
      build-system: manual
      build-depends:
      - libxfce4util
    - name: garcon
      repo: test:test-chunk
      ref: master
      build-system: manual
      build-depends:
      - libxfce4util
    - name: thunar
      repo: test:test-chunk
      ref: master
      build-system: manual
      build-depends:
      - libxfce4ui
      - exo
    - name: tumbler
      repo: test:test-chunk
      ref: master
      build-system: manual
    - name: xfce4-panel
      repo: test:test-chunk
      ref: master
      build-system: manual
      build-depends:
      - libxfce4ui
      - exo
      - garcon
    - name: xfce4-settings
      repo: test:test-chunk
      ref: master
      build-system: manual
      build-depends:
      - libxfce4ui
      - exo
      - xfconf
    - name: xfce4-session
      repo: test:test-chunk
      ref: master
      build-system: manual
      build-depends:
      - libxfce4ui
      - exo
      - xfconf
    - name: xfwm4
      repo: test:test-chunk
      ref: master
      build-system: manual
      build-depends:
      - libxfce4ui
      - xfconf
    - name: xfdesktop
      repo: test:test-chunk
      ref: master
      build-system: manual
      build-depends:
      - libxfce4ui
      - xfconf
    - name: xfce4-appfinder
      repo: test:test-chunk
      ref: master
      build-system: manual
      build-depends:
      - libxfce4ui
      - garcon
      - xfconf
    - name: gtk-xfce-engine
      repo: test:test-chunk
      ref: master
      build-system: manual
      build-depends:
      - libxfce4ui
      - garcon
      - xfconf
    EOF
    git add xfce-core.morph

    cat << EOF > xfce-system.morph
    name: xfce-system
    kind: system
    arch: $("$SRCDIR/scripts/test-morph" print-architecture)
    strata:
    - morph: xfce-core
    EOF
    git add xfce-system.morph
    git commit -m "Add xfce-system"
    git checkout -

    IMPLEMENTS WHEN the user runs the show-dependencies command for system (\S+) in branch (\S+)
    system="$MATCH_1"
    branch="$MATCH_2"
    run_morph show-dependencies --quiet test:definitions "$branch" "$system" | sed 's/test://'

    IMPLEMENTS THEN the result shows the dependencies of the system
    cat << EOF > "$DATADIR"/xfce-system-dependencies
    dependency graph for test:definitions|master|xfce-system.morph:
      test:definitions|master|xfce-system.morph|xfce-system|xfce-system-rootfs
        -> test:definitions|master|xfce-core.morph|xfce-core-devel|xfce-core-devel
        -> test:definitions|master|xfce-core.morph|xfce-core-runtime|xfce-core-runtime
      test:definitions|master|xfce-core.morph|xfce-core-devel|xfce-core-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
        -> test:test-chunk|master|exo.morph|exo|exo-devel
        -> test:test-chunk|master|garcon.morph|garcon|garcon-devel
        -> test:test-chunk|master|gtk-xfce-engine.morph|gtk-xfce-engine|gtk-xfce-engine-devel
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-devel
        -> test:test-chunk|master|libxfce4util.morph|libxfce4util|libxfce4util-devel
        -> test:test-chunk|master|thunar.morph|thunar|thunar-devel
        -> test:test-chunk|master|tumbler.morph|tumbler|tumbler-devel
        -> test:test-chunk|master|xfce4-appfinder.morph|xfce4-appfinder|xfce4-appfinder-devel
        -> test:test-chunk|master|xfce4-panel.morph|xfce4-panel|xfce4-panel-devel
        -> test:test-chunk|master|xfce4-session.morph|xfce4-session|xfce4-session-devel
        -> test:test-chunk|master|xfce4-settings.morph|xfce4-settings|xfce4-settings-devel
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-devel
        -> test:test-chunk|master|xfdesktop.morph|xfdesktop|xfdesktop-devel
        -> test:test-chunk|master|xfwm4.morph|xfwm4|xfwm4-devel
      test:test-chunk|master|gtk-xfce-engine.morph|gtk-xfce-engine|gtk-xfce-engine-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
        -> test:test-chunk|master|garcon.morph|garcon|garcon-devel
        -> test:test-chunk|master|garcon.morph|garcon|garcon-runtime
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-devel
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-runtime
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-devel
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-runtime
      test:test-chunk|master|xfce4-appfinder.morph|xfce4-appfinder|xfce4-appfinder-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
        -> test:test-chunk|master|garcon.morph|garcon|garcon-devel
        -> test:test-chunk|master|garcon.morph|garcon|garcon-runtime
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-devel
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-runtime
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-devel
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-runtime
      test:test-chunk|master|xfdesktop.morph|xfdesktop|xfdesktop-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-devel
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-runtime
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-devel
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-runtime
      test:test-chunk|master|xfwm4.morph|xfwm4|xfwm4-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-devel
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-runtime
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-devel
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-runtime
      test:test-chunk|master|xfce4-session.morph|xfce4-session|xfce4-session-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
        -> test:test-chunk|master|exo.morph|exo|exo-devel
        -> test:test-chunk|master|exo.morph|exo|exo-runtime
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-devel
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-runtime
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-devel
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-runtime
      test:test-chunk|master|xfce4-settings.morph|xfce4-settings|xfce4-settings-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
        -> test:test-chunk|master|exo.morph|exo|exo-devel
        -> test:test-chunk|master|exo.morph|exo|exo-runtime
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-devel
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-runtime
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-devel
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-runtime
      test:test-chunk|master|xfce4-panel.morph|xfce4-panel|xfce4-panel-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
        -> test:test-chunk|master|exo.morph|exo|exo-devel
        -> test:test-chunk|master|exo.morph|exo|exo-runtime
        -> test:test-chunk|master|garcon.morph|garcon|garcon-devel
        -> test:test-chunk|master|garcon.morph|garcon|garcon-runtime
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-devel
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-runtime
      test:test-chunk|master|tumbler.morph|tumbler|tumbler-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
      test:test-chunk|master|thunar.morph|thunar|thunar-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
        -> test:test-chunk|master|exo.morph|exo|exo-devel
        -> test:test-chunk|master|exo.morph|exo|exo-runtime
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-devel
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-runtime
      test:definitions|master|xfce-core.morph|xfce-core-runtime|xfce-core-runtime
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
        -> test:test-chunk|master|exo.morph|exo|exo-runtime
        -> test:test-chunk|master|garcon.morph|garcon|garcon-runtime
        -> test:test-chunk|master|gtk-xfce-engine.morph|gtk-xfce-engine|gtk-xfce-engine-runtime
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-runtime
        -> test:test-chunk|master|libxfce4util.morph|libxfce4util|libxfce4util-runtime
        -> test:test-chunk|master|thunar.morph|thunar|thunar-runtime
        -> test:test-chunk|master|tumbler.morph|tumbler|tumbler-runtime
        -> test:test-chunk|master|xfce4-appfinder.morph|xfce4-appfinder|xfce4-appfinder-runtime
        -> test:test-chunk|master|xfce4-panel.morph|xfce4-panel|xfce4-panel-runtime
        -> test:test-chunk|master|xfce4-session.morph|xfce4-session|xfce4-session-runtime
        -> test:test-chunk|master|xfce4-settings.morph|xfce4-settings|xfce4-settings-runtime
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-runtime
        -> test:test-chunk|master|xfdesktop.morph|xfdesktop|xfdesktop-runtime
        -> test:test-chunk|master|xfwm4.morph|xfwm4|xfwm4-runtime
      test:test-chunk|master|gtk-xfce-engine.morph|gtk-xfce-engine|gtk-xfce-engine-runtime
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
        -> test:test-chunk|master|garcon.morph|garcon|garcon-devel
        -> test:test-chunk|master|garcon.morph|garcon|garcon-runtime
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-devel
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-runtime
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-devel
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-runtime
      test:test-chunk|master|xfce4-appfinder.morph|xfce4-appfinder|xfce4-appfinder-runtime
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
        -> test:test-chunk|master|garcon.morph|garcon|garcon-devel
        -> test:test-chunk|master|garcon.morph|garcon|garcon-runtime
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-devel
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-runtime
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-devel
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-runtime
      test:test-chunk|master|xfdesktop.morph|xfdesktop|xfdesktop-runtime
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-devel
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-runtime
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-devel
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-runtime
      test:test-chunk|master|xfwm4.morph|xfwm4|xfwm4-runtime
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-devel
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-runtime
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-devel
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-runtime
      test:test-chunk|master|xfce4-session.morph|xfce4-session|xfce4-session-runtime
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
        -> test:test-chunk|master|exo.morph|exo|exo-devel
        -> test:test-chunk|master|exo.morph|exo|exo-runtime
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-devel
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-runtime
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-devel
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-runtime
      test:test-chunk|master|xfce4-settings.morph|xfce4-settings|xfce4-settings-runtime
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
        -> test:test-chunk|master|exo.morph|exo|exo-devel
        -> test:test-chunk|master|exo.morph|exo|exo-runtime
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-devel
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-runtime
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-devel
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-runtime
      test:test-chunk|master|xfce4-panel.morph|xfce4-panel|xfce4-panel-runtime
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
        -> test:test-chunk|master|exo.morph|exo|exo-devel
        -> test:test-chunk|master|exo.morph|exo|exo-runtime
        -> test:test-chunk|master|garcon.morph|garcon|garcon-devel
        -> test:test-chunk|master|garcon.morph|garcon|garcon-runtime
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-devel
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-runtime
      test:test-chunk|master|garcon.morph|garcon|garcon-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
        -> test:test-chunk|master|libxfce4util.morph|libxfce4util|libxfce4util-devel
        -> test:test-chunk|master|libxfce4util.morph|libxfce4util|libxfce4util-runtime
      test:test-chunk|master|tumbler.morph|tumbler|tumbler-runtime
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
      test:test-chunk|master|thunar.morph|thunar|thunar-runtime
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
        -> test:test-chunk|master|exo.morph|exo|exo-devel
        -> test:test-chunk|master|exo.morph|exo|exo-runtime
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-devel
        -> test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-runtime
      test:test-chunk|master|exo.morph|exo|exo-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
        -> test:test-chunk|master|libxfce4util.morph|libxfce4util|libxfce4util-devel
        -> test:test-chunk|master|libxfce4util.morph|libxfce4util|libxfce4util-runtime
      test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-devel
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-runtime
      test:test-chunk|master|garcon.morph|garcon|garcon-runtime
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
        -> test:test-chunk|master|libxfce4util.morph|libxfce4util|libxfce4util-devel
        -> test:test-chunk|master|libxfce4util.morph|libxfce4util|libxfce4util-runtime
      test:test-chunk|master|exo.morph|exo|exo-runtime
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
        -> test:test-chunk|master|libxfce4util.morph|libxfce4util|libxfce4util-devel
        -> test:test-chunk|master|libxfce4util.morph|libxfce4util|libxfce4util-runtime
      test:test-chunk|master|libxfce4ui.morph|libxfce4ui|libxfce4ui-runtime
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-devel
        -> test:test-chunk|master|xfconf.morph|xfconf|xfconf-runtime
      test:test-chunk|master|xfconf.morph|xfconf|xfconf-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
        -> test:test-chunk|master|libxfce4util.morph|libxfce4util|libxfce4util-devel
        -> test:test-chunk|master|libxfce4util.morph|libxfce4util|libxfce4util-runtime
      test:test-chunk|master|xfconf.morph|xfconf|xfconf-runtime
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
        -> test:test-chunk|master|libxfce4util.morph|libxfce4util|libxfce4util-devel
        -> test:test-chunk|master|libxfce4util.morph|libxfce4util|libxfce4util-runtime
      test:test-chunk|master|libxfce4util.morph|libxfce4util|libxfce4util-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
      test:test-chunk|master|libxfce4util.morph|libxfce4util|libxfce4util-runtime
        -> test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
      test:definitions|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
        -> test:test-chunk|master|cairo.morph|cairo|cairo-runtime
        -> test:test-chunk|master|dbus-glib.morph|dbus-glib|dbus-glib-runtime
        -> test:test-chunk|master|dbus.morph|dbus|dbus-runtime
        -> test:test-chunk|master|fontconfig.morph|fontconfig|fontconfig-runtime
        -> test:test-chunk|master|freetype.morph|freetype|freetype-runtime
        -> test:test-chunk|master|gdk-pixbuf.morph|gdk-pixbuf|gdk-pixbuf-runtime
        -> test:test-chunk|master|glib.morph|glib|glib-runtime
        -> test:test-chunk|master|gtk.morph|gtk|gtk-runtime
        -> test:test-chunk|master|pango.morph|pango|pango-runtime
      test:test-chunk|master|dbus-glib.morph|dbus-glib|dbus-glib-runtime
        -> test:test-chunk|master|dbus.morph|dbus|dbus-devel
        -> test:test-chunk|master|dbus.morph|dbus|dbus-runtime
        -> test:test-chunk|master|glib.morph|glib|glib-devel
        -> test:test-chunk|master|glib.morph|glib|glib-runtime
      test:test-chunk|master|gtk.morph|gtk|gtk-runtime
        -> test:test-chunk|master|cairo.morph|cairo|cairo-devel
        -> test:test-chunk|master|cairo.morph|cairo|cairo-runtime
        -> test:test-chunk|master|gdk-pixbuf.morph|gdk-pixbuf|gdk-pixbuf-devel
        -> test:test-chunk|master|gdk-pixbuf.morph|gdk-pixbuf|gdk-pixbuf-runtime
        -> test:test-chunk|master|glib.morph|glib|glib-devel
        -> test:test-chunk|master|glib.morph|glib|glib-runtime
        -> test:test-chunk|master|pango.morph|pango|pango-devel
        -> test:test-chunk|master|pango.morph|pango|pango-runtime
      test:definitions|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
        -> test:test-chunk|master|cairo.morph|cairo|cairo-devel
        -> test:test-chunk|master|dbus-glib.morph|dbus-glib|dbus-glib-devel
        -> test:test-chunk|master|dbus.morph|dbus|dbus-devel
        -> test:test-chunk|master|fontconfig.morph|fontconfig|fontconfig-devel
        -> test:test-chunk|master|freetype.morph|freetype|freetype-devel
        -> test:test-chunk|master|gdk-pixbuf.morph|gdk-pixbuf|gdk-pixbuf-devel
        -> test:test-chunk|master|glib.morph|glib|glib-devel
        -> test:test-chunk|master|gtk.morph|gtk|gtk-devel
        -> test:test-chunk|master|pango.morph|pango|pango-devel
      test:test-chunk|master|dbus-glib.morph|dbus-glib|dbus-glib-devel
        -> test:test-chunk|master|dbus.morph|dbus|dbus-devel
        -> test:test-chunk|master|dbus.morph|dbus|dbus-runtime
        -> test:test-chunk|master|glib.morph|glib|glib-devel
        -> test:test-chunk|master|glib.morph|glib|glib-runtime
      test:test-chunk|master|dbus.morph|dbus|dbus-runtime
      test:test-chunk|master|dbus.morph|dbus|dbus-devel
      test:test-chunk|master|gtk.morph|gtk|gtk-devel
        -> test:test-chunk|master|cairo.morph|cairo|cairo-devel
        -> test:test-chunk|master|cairo.morph|cairo|cairo-runtime
        -> test:test-chunk|master|gdk-pixbuf.morph|gdk-pixbuf|gdk-pixbuf-devel
        -> test:test-chunk|master|gdk-pixbuf.morph|gdk-pixbuf|gdk-pixbuf-runtime
        -> test:test-chunk|master|glib.morph|glib|glib-devel
        -> test:test-chunk|master|glib.morph|glib|glib-runtime
        -> test:test-chunk|master|pango.morph|pango|pango-devel
        -> test:test-chunk|master|pango.morph|pango|pango-runtime
      test:test-chunk|master|pango.morph|pango|pango-runtime
        -> test:test-chunk|master|fontconfig.morph|fontconfig|fontconfig-devel
        -> test:test-chunk|master|fontconfig.morph|fontconfig|fontconfig-runtime
        -> test:test-chunk|master|freetype.morph|freetype|freetype-devel
        -> test:test-chunk|master|freetype.morph|freetype|freetype-runtime
      test:test-chunk|master|gdk-pixbuf.morph|gdk-pixbuf|gdk-pixbuf-runtime
        -> test:test-chunk|master|glib.morph|glib|glib-devel
        -> test:test-chunk|master|glib.morph|glib|glib-runtime
      test:test-chunk|master|cairo.morph|cairo|cairo-runtime
      test:test-chunk|master|gdk-pixbuf.morph|gdk-pixbuf|gdk-pixbuf-devel
        -> test:test-chunk|master|glib.morph|glib|glib-devel
        -> test:test-chunk|master|glib.morph|glib|glib-runtime
      test:test-chunk|master|glib.morph|glib|glib-runtime
      test:test-chunk|master|glib.morph|glib|glib-devel
      test:test-chunk|master|pango.morph|pango|pango-devel
        -> test:test-chunk|master|fontconfig.morph|fontconfig|fontconfig-devel
        -> test:test-chunk|master|fontconfig.morph|fontconfig|fontconfig-runtime
        -> test:test-chunk|master|freetype.morph|freetype|freetype-devel
        -> test:test-chunk|master|freetype.morph|freetype|freetype-runtime
      test:test-chunk|master|fontconfig.morph|fontconfig|fontconfig-runtime
      test:test-chunk|master|freetype.morph|freetype|freetype-runtime
      test:test-chunk|master|cairo.morph|cairo|cairo-devel
      test:test-chunk|master|fontconfig.morph|fontconfig|fontconfig-devel
      test:test-chunk|master|freetype.morph|freetype|freetype-devel
    EOF
    diff "$DATADIR"/xfce-system-dependencies "$DATADIR"/out-show-dependencies