summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rwxr-xr-xtests/setup42
-rwxr-xr-xtests/show-dependencies.script24
-rwxr-xr-xtests/show-dependencies.setup207
-rw-r--r--tests/show-dependencies.stdout1680
-rwxr-xr-xtests/trove-id.script99
5 files changed, 0 insertions, 2052 deletions
diff --git a/tests/setup b/tests/setup
deleted file mode 100755
index 9010921c..00000000
--- a/tests/setup
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/bin/sh
-#
-# Create git repositories for tests. The chunk repository will contain a
-# simple "hello, world" C program, and two branches ("master", "farrokh"),
-# with the master branch containing just a README. The two branches are there
-# so that we can test building a branch that hasn't been checked out.
-# The branches are different so that we know that if the wrong branch
-# is uses, the build will fail.
-#
-# The stratum repository contains a single branch, "master", with a
-# stratum and a system morphology that include the chunk above.
-#
-# Copyright (C) 2011-2015 Codethink Limited
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; version 2 of the License.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License along
-# with this program. If not, see <http://www.gnu.org/licenses/>.
-
-
-set -eu
-
-# The $DATADIR should be empty at the beginnig of each test.
-find "$DATADIR" -mindepth 1 -delete
-
-# Create a morph configuration file.
-cat <<EOF > "$DATADIR/morph.conf"
-[config]
-repo-alias = test=file://$DATADIR/%s#file://$DATADIR/%s
-cachedir = $DATADIR/cache
-log = $DATADIR/morph.log
-no-distcc = true
-quiet = true
-EOF
-
diff --git a/tests/show-dependencies.script b/tests/show-dependencies.script
deleted file mode 100755
index db76274d..00000000
--- a/tests/show-dependencies.script
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/bash
-#
-# Copyright (C) 2012-2013,2015 Codethink Limited
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; version 2 of the License.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License along
-# with this program. If not, see <http://www.gnu.org/licenses/>.
-
-
-## Test "show-dependencies" subcommand.
-
-set -eu
-
-"$SRCDIR/scripts/test-morph" \
- show-dependencies test:test-repo master xfce-system |
- sed 's/test://'
diff --git a/tests/show-dependencies.setup b/tests/show-dependencies.setup
deleted file mode 100755
index 487de526..00000000
--- a/tests/show-dependencies.setup
+++ /dev/null
@@ -1,207 +0,0 @@
-#!/bin/bash
-#
-# Copyright (C) 2012-2015 Codethink Limited
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; version 2 of the License.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License along
-# with this program. If not, see <http://www.gnu.org/licenses/>.
-
-set -e
-
-source "$SRCDIR/scripts/fix-committer-info"
-
-# Create a repository
-repo="$DATADIR/test-repo"
-mkdir "$repo"
-cd "$repo"
-git init --quiet
-
-echo 'version: 6' > VERSION
-git add VERSION
-git commit --quiet -m "add VERSION file"
-
-# Define a stratum for the GTK stack
-cat <<EOF > gtk-stack.morph
-name: gtk-stack
-kind: stratum
-build-depends: []
-chunks:
- - name: freetype
- repo: test:test-repo
- ref: master
- build-mode: bootstrap
- build-system: manual
- - name: fontconfig
- repo: test:test-repo
- ref: master
- build-mode: bootstrap
- build-system: manual
- - name: cairo
- repo: test:test-repo
- ref: master
- build-mode: bootstrap
- build-system: manual
- - name: pango
- repo: test:test-repo
- ref: master
- build-system: manual
- build-depends:
- - freetype
- - fontconfig
- - name: glib
- repo: test:test-repo
- ref: master
- build-mode: bootstrap
- build-system: manual
- - name: gdk-pixbuf
- repo: test:test-repo
- ref: master
- build-system: manual
- build-depends:
- - glib
- - name: gtk
- repo: test:test-repo
- ref: master
- build-system: manual
- build-depends:
- - cairo
- - gdk-pixbuf
- - glib
- - pango
- - name: dbus
- repo: test:test-repo
- ref: master
- build-mode: bootstrap
- build-system: manual
- - name: dbus-glib
- repo: test:test-repo
- ref: master
- build-system: manual
- build-depends:
- - dbus
- - glib
-EOF
-git add gtk-stack.morph
-git commit --quiet -m "add gtk-stack.morph stratum"
-
-# Define a stratum for the Xfce core
-cat <<EOF > xfce-core.morph
-name: xfce-core
-kind: stratum
-build-depends:
- - morph: gtk-stack
-chunks:
- - name: libxfce4util
- repo: test:test-repo
- ref: master
- build-system: manual
- - name: xfconf
- repo: test:test-repo
- ref: master
- build-system: manual
- build-depends:
- - libxfce4util
- - name: libxfce4ui
- repo: test:test-repo
- ref: master
- build-system: manual
- build-depends:
- - xfconf
- - name: exo
- repo: test:test-repo
- ref: master
- build-system: manual
- build-depends:
- - libxfce4util
- - name: garcon
- repo: test:test-repo
- ref: master
- build-system: manual
- build-depends:
- - libxfce4util
- - name: thunar
- repo: test:test-repo
- ref: master
- build-system: manual
- build-depends:
- - libxfce4ui
- - exo
- - name: tumbler
- repo: test:test-repo
- ref: master
- build-system: manual
- - name: xfce4-panel
- repo: test:test-repo
- ref: master
- build-system: manual
- build-depends:
- - libxfce4ui
- - exo
- - garcon
- - name: xfce4-settings
- repo: test:test-repo
- ref: master
- build-system: manual
- build-depends:
- - libxfce4ui
- - exo
- - xfconf
- - name: xfce4-session
- repo: test:test-repo
- ref: master
- build-system: manual
- build-depends:
- - libxfce4ui
- - exo
- - xfconf
- - name: xfwm4
- repo: test:test-repo
- ref: master
- build-system: manual
- build-depends:
- - libxfce4ui
- - xfconf
- - name: xfdesktop
- repo: test:test-repo
- ref: master
- build-system: manual
- build-depends:
- - libxfce4ui
- - xfconf
- - name: xfce4-appfinder
- repo: test:test-repo
- ref: master
- build-system: manual
- build-depends:
- - libxfce4ui
- - garcon
- - xfconf
- - name: gtk-xfce-engine
- repo: test:test-repo
- ref: master
- build-system: manual
- build-depends:
- - libxfce4ui
- - garcon
- - xfconf
-EOF
-git add xfce-core.morph
-git commit --quiet -m "add xfce-core.morph stratum"
-
-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 --quiet -m "add xfce-system"
diff --git a/tests/show-dependencies.stdout b/tests/show-dependencies.stdout
deleted file mode 100644
index fc50bb54..00000000
--- a/tests/show-dependencies.stdout
+++ /dev/null
@@ -1,1680 +0,0 @@
-dependency graph for test-repo|master|xfce-system.morph:
- test-repo|master|xfce-system.morph|xfce-system|xfce-system-rootfs
- -> test-repo|master|xfce-core.morph|xfce-core-devel|xfce-core-devel
- -> test-repo|master|xfce-core.morph|xfce-core-runtime|xfce-core-runtime
- test-repo|master|xfce-core.morph|xfce-core-devel|xfce-core-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-doc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-devel
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-doc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|gtk-xfce-engine.morph|gtk-xfce-engine.morph|gtk-xfce-engine.morph-devel
- -> test-repo|master|gtk-xfce-engine.morph|gtk-xfce-engine.morph|gtk-xfce-engine.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-devel
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-doc
- -> test-repo|master|thunar.morph|thunar.morph|thunar.morph-devel
- -> test-repo|master|thunar.morph|thunar.morph|thunar.morph-doc
- -> test-repo|master|tumbler.morph|tumbler.morph|tumbler.morph-devel
- -> test-repo|master|tumbler.morph|tumbler.morph|tumbler.morph-doc
- -> test-repo|master|xfce4-appfinder.morph|xfce4-appfinder.morph|xfce4-appfinder.morph-devel
- -> test-repo|master|xfce4-appfinder.morph|xfce4-appfinder.morph|xfce4-appfinder.morph-doc
- -> test-repo|master|xfce4-panel.morph|xfce4-panel.morph|xfce4-panel.morph-devel
- -> test-repo|master|xfce4-panel.morph|xfce4-panel.morph|xfce4-panel.morph-doc
- -> test-repo|master|xfce4-session.morph|xfce4-session.morph|xfce4-session.morph-devel
- -> test-repo|master|xfce4-session.morph|xfce4-session.morph|xfce4-session.morph-doc
- -> test-repo|master|xfce4-settings.morph|xfce4-settings.morph|xfce4-settings.morph-devel
- -> test-repo|master|xfce4-settings.morph|xfce4-settings.morph|xfce4-settings.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfdesktop.morph|xfdesktop.morph|xfdesktop.morph-devel
- -> test-repo|master|xfdesktop.morph|xfdesktop.morph|xfdesktop.morph-doc
- -> test-repo|master|xfwm4.morph|xfwm4.morph|xfwm4.morph-devel
- -> test-repo|master|xfwm4.morph|xfwm4.morph|xfwm4.morph-doc
- test-repo|master|gtk-xfce-engine.morph|gtk-xfce-engine.morph|gtk-xfce-engine.morph-doc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-bins
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-devel
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-doc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-libs
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-locale
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|gtk-xfce-engine.morph|gtk-xfce-engine.morph|gtk-xfce-engine.morph-devel
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-bins
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-devel
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-doc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-libs
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-locale
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfce4-appfinder.morph|xfce4-appfinder.morph|xfce4-appfinder.morph-doc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-bins
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-devel
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-doc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-libs
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-locale
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfce4-appfinder.morph|xfce4-appfinder.morph|xfce4-appfinder.morph-devel
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-bins
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-devel
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-doc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-libs
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-locale
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfdesktop.morph|xfdesktop.morph|xfdesktop.morph-doc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfdesktop.morph|xfdesktop.morph|xfdesktop.morph-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfwm4.morph|xfwm4.morph|xfwm4.morph-doc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfwm4.morph|xfwm4.morph|xfwm4.morph-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfce4-session.morph|xfce4-session.morph|xfce4-session.morph-doc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-doc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfce4-session.morph|xfce4-session.morph|xfce4-session.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-doc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfce4-settings.morph|xfce4-settings.morph|xfce4-settings.morph-doc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-doc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfce4-settings.morph|xfce4-settings.morph|xfce4-settings.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-doc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfce4-panel.morph|xfce4-panel.morph|xfce4-panel.morph-doc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-doc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-misc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-bins
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-devel
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-doc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-libs
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-locale
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- test-repo|master|xfce4-panel.morph|xfce4-panel.morph|xfce4-panel.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-doc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-misc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-bins
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-devel
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-doc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-libs
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-locale
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- test-repo|master|tumbler.morph|tumbler.morph|tumbler.morph-doc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- test-repo|master|tumbler.morph|tumbler.morph|tumbler.morph-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- test-repo|master|thunar.morph|thunar.morph|thunar.morph-doc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-doc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- test-repo|master|thunar.morph|thunar.morph|thunar.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-doc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- test-repo|master|xfce-core.morph|xfce-core-runtime|xfce-core-runtime
- -> test-repo|master|exo.morph|exo.morph|exo.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-misc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-bins
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-libs
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-locale
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|gtk-xfce-engine.morph|gtk-xfce-engine.morph|gtk-xfce-engine.morph-bins
- -> test-repo|master|gtk-xfce-engine.morph|gtk-xfce-engine.morph|gtk-xfce-engine.morph-libs
- -> test-repo|master|gtk-xfce-engine.morph|gtk-xfce-engine.morph|gtk-xfce-engine.morph-locale
- -> test-repo|master|gtk-xfce-engine.morph|gtk-xfce-engine.morph|gtk-xfce-engine.morph-misc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-bins
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-libs
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-locale
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-misc
- -> test-repo|master|thunar.morph|thunar.morph|thunar.morph-bins
- -> test-repo|master|thunar.morph|thunar.morph|thunar.morph-libs
- -> test-repo|master|thunar.morph|thunar.morph|thunar.morph-locale
- -> test-repo|master|thunar.morph|thunar.morph|thunar.morph-misc
- -> test-repo|master|tumbler.morph|tumbler.morph|tumbler.morph-bins
- -> test-repo|master|tumbler.morph|tumbler.morph|tumbler.morph-libs
- -> test-repo|master|tumbler.morph|tumbler.morph|tumbler.morph-locale
- -> test-repo|master|tumbler.morph|tumbler.morph|tumbler.morph-misc
- -> test-repo|master|xfce4-appfinder.morph|xfce4-appfinder.morph|xfce4-appfinder.morph-bins
- -> test-repo|master|xfce4-appfinder.morph|xfce4-appfinder.morph|xfce4-appfinder.morph-libs
- -> test-repo|master|xfce4-appfinder.morph|xfce4-appfinder.morph|xfce4-appfinder.morph-locale
- -> test-repo|master|xfce4-appfinder.morph|xfce4-appfinder.morph|xfce4-appfinder.morph-misc
- -> test-repo|master|xfce4-panel.morph|xfce4-panel.morph|xfce4-panel.morph-bins
- -> test-repo|master|xfce4-panel.morph|xfce4-panel.morph|xfce4-panel.morph-libs
- -> test-repo|master|xfce4-panel.morph|xfce4-panel.morph|xfce4-panel.morph-locale
- -> test-repo|master|xfce4-panel.morph|xfce4-panel.morph|xfce4-panel.morph-misc
- -> test-repo|master|xfce4-session.morph|xfce4-session.morph|xfce4-session.morph-bins
- -> test-repo|master|xfce4-session.morph|xfce4-session.morph|xfce4-session.morph-libs
- -> test-repo|master|xfce4-session.morph|xfce4-session.morph|xfce4-session.morph-locale
- -> test-repo|master|xfce4-session.morph|xfce4-session.morph|xfce4-session.morph-misc
- -> test-repo|master|xfce4-settings.morph|xfce4-settings.morph|xfce4-settings.morph-bins
- -> test-repo|master|xfce4-settings.morph|xfce4-settings.morph|xfce4-settings.morph-libs
- -> test-repo|master|xfce4-settings.morph|xfce4-settings.morph|xfce4-settings.morph-locale
- -> test-repo|master|xfce4-settings.morph|xfce4-settings.morph|xfce4-settings.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- -> test-repo|master|xfdesktop.morph|xfdesktop.morph|xfdesktop.morph-bins
- -> test-repo|master|xfdesktop.morph|xfdesktop.morph|xfdesktop.morph-libs
- -> test-repo|master|xfdesktop.morph|xfdesktop.morph|xfdesktop.morph-locale
- -> test-repo|master|xfdesktop.morph|xfdesktop.morph|xfdesktop.morph-misc
- -> test-repo|master|xfwm4.morph|xfwm4.morph|xfwm4.morph-bins
- -> test-repo|master|xfwm4.morph|xfwm4.morph|xfwm4.morph-libs
- -> test-repo|master|xfwm4.morph|xfwm4.morph|xfwm4.morph-locale
- -> test-repo|master|xfwm4.morph|xfwm4.morph|xfwm4.morph-misc
- test-repo|master|gtk-xfce-engine.morph|gtk-xfce-engine.morph|gtk-xfce-engine.morph-misc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-bins
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-devel
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-doc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-libs
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-locale
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|gtk-xfce-engine.morph|gtk-xfce-engine.morph|gtk-xfce-engine.morph-locale
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-bins
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-devel
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-doc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-libs
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-locale
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|gtk-xfce-engine.morph|gtk-xfce-engine.morph|gtk-xfce-engine.morph-libs
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-bins
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-devel
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-doc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-libs
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-locale
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|gtk-xfce-engine.morph|gtk-xfce-engine.morph|gtk-xfce-engine.morph-bins
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-bins
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-devel
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-doc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-libs
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-locale
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfce4-appfinder.morph|xfce4-appfinder.morph|xfce4-appfinder.morph-misc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-bins
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-devel
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-doc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-libs
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-locale
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfce4-appfinder.morph|xfce4-appfinder.morph|xfce4-appfinder.morph-locale
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-bins
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-devel
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-doc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-libs
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-locale
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfce4-appfinder.morph|xfce4-appfinder.morph|xfce4-appfinder.morph-libs
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-bins
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-devel
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-doc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-libs
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-locale
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfce4-appfinder.morph|xfce4-appfinder.morph|xfce4-appfinder.morph-bins
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-bins
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-devel
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-doc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-libs
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-locale
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfdesktop.morph|xfdesktop.morph|xfdesktop.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfdesktop.morph|xfdesktop.morph|xfdesktop.morph-locale
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfdesktop.morph|xfdesktop.morph|xfdesktop.morph-libs
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfdesktop.morph|xfdesktop.morph|xfdesktop.morph-bins
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfwm4.morph|xfwm4.morph|xfwm4.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfwm4.morph|xfwm4.morph|xfwm4.morph-locale
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfwm4.morph|xfwm4.morph|xfwm4.morph-libs
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfwm4.morph|xfwm4.morph|xfwm4.morph-bins
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfce4-session.morph|xfce4-session.morph|xfce4-session.morph-misc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-doc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfce4-session.morph|xfce4-session.morph|xfce4-session.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-doc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfce4-session.morph|xfce4-session.morph|xfce4-session.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-doc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfce4-session.morph|xfce4-session.morph|xfce4-session.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-doc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfce4-settings.morph|xfce4-settings.morph|xfce4-settings.morph-misc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-doc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfce4-settings.morph|xfce4-settings.morph|xfce4-settings.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-doc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfce4-settings.morph|xfce4-settings.morph|xfce4-settings.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-doc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfce4-settings.morph|xfce4-settings.morph|xfce4-settings.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-doc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfce4-panel.morph|xfce4-panel.morph|xfce4-panel.morph-misc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-doc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-misc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-bins
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-devel
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-doc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-libs
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-locale
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- test-repo|master|xfce4-panel.morph|xfce4-panel.morph|xfce4-panel.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-doc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-misc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-bins
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-devel
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-doc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-libs
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-locale
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- test-repo|master|xfce4-panel.morph|xfce4-panel.morph|xfce4-panel.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-doc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-misc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-bins
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-devel
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-doc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-libs
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-locale
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- test-repo|master|xfce4-panel.morph|xfce4-panel.morph|xfce4-panel.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-doc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-misc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-bins
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-devel
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-doc
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-libs
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-locale
- -> test-repo|master|garcon.morph|garcon.morph|garcon.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- test-repo|master|garcon.morph|garcon.morph|garcon.morph-doc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-bins
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-devel
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-doc
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-libs
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-locale
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-misc
- test-repo|master|garcon.morph|garcon.morph|garcon.morph-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-bins
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-devel
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-doc
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-libs
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-locale
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-misc
- test-repo|master|tumbler.morph|tumbler.morph|tumbler.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- test-repo|master|tumbler.morph|tumbler.morph|tumbler.morph-locale
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- test-repo|master|tumbler.morph|tumbler.morph|tumbler.morph-libs
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- test-repo|master|tumbler.morph|tumbler.morph|tumbler.morph-bins
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- test-repo|master|thunar.morph|thunar.morph|thunar.morph-misc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-doc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- test-repo|master|thunar.morph|thunar.morph|thunar.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-doc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- test-repo|master|thunar.morph|thunar.morph|thunar.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-doc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- test-repo|master|thunar.morph|thunar.morph|thunar.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-bins
- -> test-repo|master|exo.morph|exo.morph|exo.morph-devel
- -> test-repo|master|exo.morph|exo.morph|exo.morph-doc
- -> test-repo|master|exo.morph|exo.morph|exo.morph-libs
- -> test-repo|master|exo.morph|exo.morph|exo.morph-locale
- -> test-repo|master|exo.morph|exo.morph|exo.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- test-repo|master|exo.morph|exo.morph|exo.morph-doc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-bins
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-devel
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-doc
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-libs
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-locale
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-misc
- test-repo|master|exo.morph|exo.morph|exo.morph-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-bins
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-devel
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-doc
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-libs
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-locale
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-misc
- test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-doc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|garcon.morph|garcon.morph|garcon.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-bins
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-devel
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-doc
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-libs
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-locale
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-misc
- test-repo|master|garcon.morph|garcon.morph|garcon.morph-locale
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-bins
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-devel
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-doc
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-libs
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-locale
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-misc
- test-repo|master|garcon.morph|garcon.morph|garcon.morph-libs
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-bins
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-devel
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-doc
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-libs
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-locale
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-misc
- test-repo|master|garcon.morph|garcon.morph|garcon.morph-bins
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-bins
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-devel
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-doc
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-libs
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-locale
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-misc
- test-repo|master|exo.morph|exo.morph|exo.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-bins
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-devel
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-doc
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-libs
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-locale
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-misc
- test-repo|master|exo.morph|exo.morph|exo.morph-locale
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-bins
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-devel
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-doc
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-libs
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-locale
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-misc
- test-repo|master|exo.morph|exo.morph|exo.morph-libs
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-bins
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-devel
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-doc
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-libs
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-locale
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-misc
- test-repo|master|exo.morph|exo.morph|exo.morph-bins
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-bins
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-devel
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-doc
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-libs
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-locale
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-misc
- test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-locale
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-libs
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|libxfce4ui.morph|libxfce4ui.morph|libxfce4ui.morph-bins
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-doc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-bins
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-devel
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-doc
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-libs
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-locale
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-misc
- test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-bins
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-devel
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-doc
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-libs
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-locale
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-misc
- test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-bins
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-devel
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-doc
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-libs
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-locale
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-misc
- test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-locale
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-bins
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-devel
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-doc
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-libs
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-locale
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-misc
- test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-libs
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-bins
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-devel
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-doc
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-libs
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-locale
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-misc
- test-repo|master|xfconf.morph|xfconf.morph|xfconf.morph-bins
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-bins
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-devel
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-doc
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-libs
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-locale
- -> test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-misc
- test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-doc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-misc
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-locale
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-libs
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- test-repo|master|libxfce4util.morph|libxfce4util.morph|libxfce4util.morph-bins
- -> test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- test-repo|master|gtk-stack.morph|gtk-stack-runtime|gtk-stack-runtime
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-bins
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-libs
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-locale
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-misc
- -> test-repo|master|dbus-glib.morph|dbus-glib.morph|dbus-glib.morph-bins
- -> test-repo|master|dbus-glib.morph|dbus-glib.morph|dbus-glib.morph-libs
- -> test-repo|master|dbus-glib.morph|dbus-glib.morph|dbus-glib.morph-locale
- -> test-repo|master|dbus-glib.morph|dbus-glib.morph|dbus-glib.morph-misc
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-bins
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-libs
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-locale
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-misc
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-bins
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-libs
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-locale
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-misc
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-bins
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-libs
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-locale
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-misc
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-bins
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-libs
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-locale
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-misc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-bins
- -> test-repo|master|glib.morph|glib.morph|glib.morph-libs
- -> test-repo|master|glib.morph|glib.morph|glib.morph-locale
- -> test-repo|master|glib.morph|glib.morph|glib.morph-misc
- -> test-repo|master|gtk.morph|gtk.morph|gtk.morph-bins
- -> test-repo|master|gtk.morph|gtk.morph|gtk.morph-libs
- -> test-repo|master|gtk.morph|gtk.morph|gtk.morph-locale
- -> test-repo|master|gtk.morph|gtk.morph|gtk.morph-misc
- -> test-repo|master|pango.morph|pango.morph|pango.morph-bins
- -> test-repo|master|pango.morph|pango.morph|pango.morph-libs
- -> test-repo|master|pango.morph|pango.morph|pango.morph-locale
- -> test-repo|master|pango.morph|pango.morph|pango.morph-misc
- test-repo|master|dbus-glib.morph|dbus-glib.morph|dbus-glib.morph-misc
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-bins
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-devel
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-doc
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-libs
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-locale
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-misc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-bins
- -> test-repo|master|glib.morph|glib.morph|glib.morph-devel
- -> test-repo|master|glib.morph|glib.morph|glib.morph-doc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-libs
- -> test-repo|master|glib.morph|glib.morph|glib.morph-locale
- -> test-repo|master|glib.morph|glib.morph|glib.morph-misc
- test-repo|master|dbus-glib.morph|dbus-glib.morph|dbus-glib.morph-locale
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-bins
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-devel
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-doc
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-libs
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-locale
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-misc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-bins
- -> test-repo|master|glib.morph|glib.morph|glib.morph-devel
- -> test-repo|master|glib.morph|glib.morph|glib.morph-doc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-libs
- -> test-repo|master|glib.morph|glib.morph|glib.morph-locale
- -> test-repo|master|glib.morph|glib.morph|glib.morph-misc
- test-repo|master|dbus-glib.morph|dbus-glib.morph|dbus-glib.morph-libs
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-bins
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-devel
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-doc
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-libs
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-locale
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-misc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-bins
- -> test-repo|master|glib.morph|glib.morph|glib.morph-devel
- -> test-repo|master|glib.morph|glib.morph|glib.morph-doc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-libs
- -> test-repo|master|glib.morph|glib.morph|glib.morph-locale
- -> test-repo|master|glib.morph|glib.morph|glib.morph-misc
- test-repo|master|dbus-glib.morph|dbus-glib.morph|dbus-glib.morph-bins
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-bins
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-devel
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-doc
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-libs
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-locale
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-misc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-bins
- -> test-repo|master|glib.morph|glib.morph|glib.morph-devel
- -> test-repo|master|glib.morph|glib.morph|glib.morph-doc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-libs
- -> test-repo|master|glib.morph|glib.morph|glib.morph-locale
- -> test-repo|master|glib.morph|glib.morph|glib.morph-misc
- test-repo|master|gtk.morph|gtk.morph|gtk.morph-misc
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-bins
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-devel
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-doc
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-libs
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-locale
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-misc
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-bins
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-devel
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-doc
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-libs
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-locale
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-misc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-bins
- -> test-repo|master|glib.morph|glib.morph|glib.morph-devel
- -> test-repo|master|glib.morph|glib.morph|glib.morph-doc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-libs
- -> test-repo|master|glib.morph|glib.morph|glib.morph-locale
- -> test-repo|master|glib.morph|glib.morph|glib.morph-misc
- -> test-repo|master|pango.morph|pango.morph|pango.morph-bins
- -> test-repo|master|pango.morph|pango.morph|pango.morph-devel
- -> test-repo|master|pango.morph|pango.morph|pango.morph-doc
- -> test-repo|master|pango.morph|pango.morph|pango.morph-libs
- -> test-repo|master|pango.morph|pango.morph|pango.morph-locale
- -> test-repo|master|pango.morph|pango.morph|pango.morph-misc
- test-repo|master|gtk.morph|gtk.morph|gtk.morph-locale
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-bins
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-devel
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-doc
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-libs
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-locale
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-misc
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-bins
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-devel
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-doc
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-libs
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-locale
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-misc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-bins
- -> test-repo|master|glib.morph|glib.morph|glib.morph-devel
- -> test-repo|master|glib.morph|glib.morph|glib.morph-doc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-libs
- -> test-repo|master|glib.morph|glib.morph|glib.morph-locale
- -> test-repo|master|glib.morph|glib.morph|glib.morph-misc
- -> test-repo|master|pango.morph|pango.morph|pango.morph-bins
- -> test-repo|master|pango.morph|pango.morph|pango.morph-devel
- -> test-repo|master|pango.morph|pango.morph|pango.morph-doc
- -> test-repo|master|pango.morph|pango.morph|pango.morph-libs
- -> test-repo|master|pango.morph|pango.morph|pango.morph-locale
- -> test-repo|master|pango.morph|pango.morph|pango.morph-misc
- test-repo|master|gtk.morph|gtk.morph|gtk.morph-libs
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-bins
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-devel
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-doc
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-libs
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-locale
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-misc
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-bins
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-devel
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-doc
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-libs
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-locale
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-misc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-bins
- -> test-repo|master|glib.morph|glib.morph|glib.morph-devel
- -> test-repo|master|glib.morph|glib.morph|glib.morph-doc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-libs
- -> test-repo|master|glib.morph|glib.morph|glib.morph-locale
- -> test-repo|master|glib.morph|glib.morph|glib.morph-misc
- -> test-repo|master|pango.morph|pango.morph|pango.morph-bins
- -> test-repo|master|pango.morph|pango.morph|pango.morph-devel
- -> test-repo|master|pango.morph|pango.morph|pango.morph-doc
- -> test-repo|master|pango.morph|pango.morph|pango.morph-libs
- -> test-repo|master|pango.morph|pango.morph|pango.morph-locale
- -> test-repo|master|pango.morph|pango.morph|pango.morph-misc
- test-repo|master|gtk.morph|gtk.morph|gtk.morph-bins
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-bins
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-devel
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-doc
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-libs
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-locale
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-misc
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-bins
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-devel
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-doc
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-libs
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-locale
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-misc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-bins
- -> test-repo|master|glib.morph|glib.morph|glib.morph-devel
- -> test-repo|master|glib.morph|glib.morph|glib.morph-doc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-libs
- -> test-repo|master|glib.morph|glib.morph|glib.morph-locale
- -> test-repo|master|glib.morph|glib.morph|glib.morph-misc
- -> test-repo|master|pango.morph|pango.morph|pango.morph-bins
- -> test-repo|master|pango.morph|pango.morph|pango.morph-devel
- -> test-repo|master|pango.morph|pango.morph|pango.morph-doc
- -> test-repo|master|pango.morph|pango.morph|pango.morph-libs
- -> test-repo|master|pango.morph|pango.morph|pango.morph-locale
- -> test-repo|master|pango.morph|pango.morph|pango.morph-misc
- test-repo|master|gtk-stack.morph|gtk-stack-devel|gtk-stack-devel
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-devel
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-doc
- -> test-repo|master|dbus-glib.morph|dbus-glib.morph|dbus-glib.morph-devel
- -> test-repo|master|dbus-glib.morph|dbus-glib.morph|dbus-glib.morph-doc
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-devel
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-doc
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-devel
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-doc
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-devel
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-doc
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-devel
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-doc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-devel
- -> test-repo|master|glib.morph|glib.morph|glib.morph-doc
- -> test-repo|master|gtk.morph|gtk.morph|gtk.morph-devel
- -> test-repo|master|gtk.morph|gtk.morph|gtk.morph-doc
- -> test-repo|master|pango.morph|pango.morph|pango.morph-devel
- -> test-repo|master|pango.morph|pango.morph|pango.morph-doc
- test-repo|master|dbus-glib.morph|dbus-glib.morph|dbus-glib.morph-doc
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-bins
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-devel
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-doc
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-libs
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-locale
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-misc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-bins
- -> test-repo|master|glib.morph|glib.morph|glib.morph-devel
- -> test-repo|master|glib.morph|glib.morph|glib.morph-doc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-libs
- -> test-repo|master|glib.morph|glib.morph|glib.morph-locale
- -> test-repo|master|glib.morph|glib.morph|glib.morph-misc
- test-repo|master|dbus-glib.morph|dbus-glib.morph|dbus-glib.morph-devel
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-bins
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-devel
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-doc
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-libs
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-locale
- -> test-repo|master|dbus.morph|dbus.morph|dbus.morph-misc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-bins
- -> test-repo|master|glib.morph|glib.morph|glib.morph-devel
- -> test-repo|master|glib.morph|glib.morph|glib.morph-doc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-libs
- -> test-repo|master|glib.morph|glib.morph|glib.morph-locale
- -> test-repo|master|glib.morph|glib.morph|glib.morph-misc
- test-repo|master|dbus.morph|dbus.morph|dbus.morph-misc
- test-repo|master|dbus.morph|dbus.morph|dbus.morph-locale
- test-repo|master|dbus.morph|dbus.morph|dbus.morph-libs
- test-repo|master|dbus.morph|dbus.morph|dbus.morph-bins
- test-repo|master|dbus.morph|dbus.morph|dbus.morph-doc
- test-repo|master|dbus.morph|dbus.morph|dbus.morph-devel
- test-repo|master|gtk.morph|gtk.morph|gtk.morph-doc
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-bins
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-devel
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-doc
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-libs
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-locale
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-misc
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-bins
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-devel
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-doc
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-libs
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-locale
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-misc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-bins
- -> test-repo|master|glib.morph|glib.morph|glib.morph-devel
- -> test-repo|master|glib.morph|glib.morph|glib.morph-doc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-libs
- -> test-repo|master|glib.morph|glib.morph|glib.morph-locale
- -> test-repo|master|glib.morph|glib.morph|glib.morph-misc
- -> test-repo|master|pango.morph|pango.morph|pango.morph-bins
- -> test-repo|master|pango.morph|pango.morph|pango.morph-devel
- -> test-repo|master|pango.morph|pango.morph|pango.morph-doc
- -> test-repo|master|pango.morph|pango.morph|pango.morph-libs
- -> test-repo|master|pango.morph|pango.morph|pango.morph-locale
- -> test-repo|master|pango.morph|pango.morph|pango.morph-misc
- test-repo|master|gtk.morph|gtk.morph|gtk.morph-devel
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-bins
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-devel
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-doc
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-libs
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-locale
- -> test-repo|master|cairo.morph|cairo.morph|cairo.morph-misc
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-bins
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-devel
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-doc
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-libs
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-locale
- -> test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-misc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-bins
- -> test-repo|master|glib.morph|glib.morph|glib.morph-devel
- -> test-repo|master|glib.morph|glib.morph|glib.morph-doc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-libs
- -> test-repo|master|glib.morph|glib.morph|glib.morph-locale
- -> test-repo|master|glib.morph|glib.morph|glib.morph-misc
- -> test-repo|master|pango.morph|pango.morph|pango.morph-bins
- -> test-repo|master|pango.morph|pango.morph|pango.morph-devel
- -> test-repo|master|pango.morph|pango.morph|pango.morph-doc
- -> test-repo|master|pango.morph|pango.morph|pango.morph-libs
- -> test-repo|master|pango.morph|pango.morph|pango.morph-locale
- -> test-repo|master|pango.morph|pango.morph|pango.morph-misc
- test-repo|master|pango.morph|pango.morph|pango.morph-misc
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-bins
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-devel
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-doc
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-libs
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-locale
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-misc
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-bins
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-devel
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-doc
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-libs
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-locale
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-misc
- test-repo|master|pango.morph|pango.morph|pango.morph-locale
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-bins
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-devel
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-doc
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-libs
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-locale
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-misc
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-bins
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-devel
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-doc
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-libs
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-locale
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-misc
- test-repo|master|pango.morph|pango.morph|pango.morph-libs
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-bins
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-devel
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-doc
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-libs
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-locale
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-misc
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-bins
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-devel
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-doc
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-libs
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-locale
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-misc
- test-repo|master|pango.morph|pango.morph|pango.morph-bins
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-bins
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-devel
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-doc
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-libs
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-locale
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-misc
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-bins
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-devel
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-doc
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-libs
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-locale
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-misc
- test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-misc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-bins
- -> test-repo|master|glib.morph|glib.morph|glib.morph-devel
- -> test-repo|master|glib.morph|glib.morph|glib.morph-doc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-libs
- -> test-repo|master|glib.morph|glib.morph|glib.morph-locale
- -> test-repo|master|glib.morph|glib.morph|glib.morph-misc
- test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-locale
- -> test-repo|master|glib.morph|glib.morph|glib.morph-bins
- -> test-repo|master|glib.morph|glib.morph|glib.morph-devel
- -> test-repo|master|glib.morph|glib.morph|glib.morph-doc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-libs
- -> test-repo|master|glib.morph|glib.morph|glib.morph-locale
- -> test-repo|master|glib.morph|glib.morph|glib.morph-misc
- test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-libs
- -> test-repo|master|glib.morph|glib.morph|glib.morph-bins
- -> test-repo|master|glib.morph|glib.morph|glib.morph-devel
- -> test-repo|master|glib.morph|glib.morph|glib.morph-doc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-libs
- -> test-repo|master|glib.morph|glib.morph|glib.morph-locale
- -> test-repo|master|glib.morph|glib.morph|glib.morph-misc
- test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-bins
- -> test-repo|master|glib.morph|glib.morph|glib.morph-bins
- -> test-repo|master|glib.morph|glib.morph|glib.morph-devel
- -> test-repo|master|glib.morph|glib.morph|glib.morph-doc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-libs
- -> test-repo|master|glib.morph|glib.morph|glib.morph-locale
- -> test-repo|master|glib.morph|glib.morph|glib.morph-misc
- test-repo|master|cairo.morph|cairo.morph|cairo.morph-misc
- test-repo|master|cairo.morph|cairo.morph|cairo.morph-locale
- test-repo|master|cairo.morph|cairo.morph|cairo.morph-libs
- test-repo|master|cairo.morph|cairo.morph|cairo.morph-bins
- test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-doc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-bins
- -> test-repo|master|glib.morph|glib.morph|glib.morph-devel
- -> test-repo|master|glib.morph|glib.morph|glib.morph-doc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-libs
- -> test-repo|master|glib.morph|glib.morph|glib.morph-locale
- -> test-repo|master|glib.morph|glib.morph|glib.morph-misc
- test-repo|master|gdk-pixbuf.morph|gdk-pixbuf.morph|gdk-pixbuf.morph-devel
- -> test-repo|master|glib.morph|glib.morph|glib.morph-bins
- -> test-repo|master|glib.morph|glib.morph|glib.morph-devel
- -> test-repo|master|glib.morph|glib.morph|glib.morph-doc
- -> test-repo|master|glib.morph|glib.morph|glib.morph-libs
- -> test-repo|master|glib.morph|glib.morph|glib.morph-locale
- -> test-repo|master|glib.morph|glib.morph|glib.morph-misc
- test-repo|master|glib.morph|glib.morph|glib.morph-misc
- test-repo|master|glib.morph|glib.morph|glib.morph-locale
- test-repo|master|glib.morph|glib.morph|glib.morph-libs
- test-repo|master|glib.morph|glib.morph|glib.morph-bins
- test-repo|master|glib.morph|glib.morph|glib.morph-doc
- test-repo|master|glib.morph|glib.morph|glib.morph-devel
- test-repo|master|pango.morph|pango.morph|pango.morph-doc
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-bins
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-devel
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-doc
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-libs
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-locale
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-misc
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-bins
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-devel
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-doc
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-libs
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-locale
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-misc
- test-repo|master|pango.morph|pango.morph|pango.morph-devel
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-bins
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-devel
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-doc
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-libs
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-locale
- -> test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-misc
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-bins
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-devel
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-doc
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-libs
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-locale
- -> test-repo|master|freetype.morph|freetype.morph|freetype.morph-misc
- test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-misc
- test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-locale
- test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-libs
- test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-bins
- test-repo|master|freetype.morph|freetype.morph|freetype.morph-misc
- test-repo|master|freetype.morph|freetype.morph|freetype.morph-locale
- test-repo|master|freetype.morph|freetype.morph|freetype.morph-libs
- test-repo|master|freetype.morph|freetype.morph|freetype.morph-bins
- test-repo|master|cairo.morph|cairo.morph|cairo.morph-doc
- test-repo|master|cairo.morph|cairo.morph|cairo.morph-devel
- test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-doc
- test-repo|master|fontconfig.morph|fontconfig.morph|fontconfig.morph-devel
- test-repo|master|freetype.morph|freetype.morph|freetype.morph-doc
- test-repo|master|freetype.morph|freetype.morph|freetype.morph-devel
diff --git a/tests/trove-id.script b/tests/trove-id.script
deleted file mode 100755
index ee382de1..00000000
--- a/tests/trove-id.script
+++ /dev/null
@@ -1,99 +0,0 @@
-#!/bin/sh
-#
-# Copyright (C) 2012-2013,2015 Codethink Limited
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; version 2 of the License.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License along
-# with this program. If not, see <http://www.gnu.org/licenses/>.
-
-
-## Verify that trove-id (and by corollary trove-host) work properly.
-
-set -eu
-
-RAWDUMP="$DATADIR/raw-configdump"
-PROCESSEDDUMP="$DATADIR/processed-configdump"
-
-# Step 1, gather all the raw and processed repo-alias entries
-
-"$SRCDIR/scripts/test-morph" \
- --trove-host="TROVEHOST" \
- --trove-id="fudge" \
- --trove-id="github" \
- --dump-config > "$RAWDUMP"
-env MORPH_DUMP_PROCESSED_CONFIG=1 "$SRCDIR/scripts/test-morph" \
- --trove-host="TROVEHOST" \
- --trove-id="fudge" \
- --trove-id="github" \
- > "$PROCESSEDDUMP"
-
-RAW_ALIAS=$(grep repo-alias "$RAWDUMP" | cut -d\ -f3-)
-PROCESSED_ALIAS=$(grep repo-alias "$PROCESSEDDUMP" | cut -d\ -f3-)
-
-find_alias () {
- ALIASES="$1"
- WHICH="$2"
- for alias in $ALIASES; do
- alias=$(echo $alias | sed -e's/,$//')
- prefix=$(echo $alias | cut -d= -f1)
- if test "x$WHICH" = "x$prefix"; then
- echo $alias
- exit 0
- fi
- done
-}
-
-# Step 2, all raw aliases should be in processed aliases unchanged. As part of
-# this, we're also validating that the 'github' prefix we pass in does not
-# affect the alias output since it is overridden by repo-alias.
-
-for raw_alias in $RAW_ALIAS; do
- raw_alias=$(echo $raw_alias | sed -e's/,$//')
- raw_prefix=$(echo $raw_alias | cut -d= -f1)
- processed_alias=$(find_alias "$PROCESSED_ALIAS" "$raw_prefix")
- if test "x$raw_alias" != "x$processed_alias"; then
- echo >&2 "Raw $raw_alias not in processed aliases"
- fi
-done
-
-# Step 3, all aliases in the processed aliases which do not come from the raw
-# aliases should contain the trove host.
-
-for processed_alias in $PROCESSED_ALIAS; do
- processed_alias=$(echo $processed_alias | sed -e's/,$//')
- processed_prefix=$(echo $processed_alias | cut -d= -f1)
- raw_alias=$(find_alias "$RAW_ALIAS" "$processed_prefix")
- if test "x$raw_alias" = "x"; then
- grep_out=$(echo "$processed_alias" | grep TROVEHOST)
- if test "x$grep_out" = "x"; then
- echo >&2 "Processed $processed_alias does not mention TROVEHOST"
- fi
- fi
-done
-
-# Step 4, validate that the processed aliases do contain a baserock and an
-# upstream alias since those are implicit in morph's behaviour.
-
-for prefix in baserock upstream; do
- processed_alias=$(find_alias "$PROCESSED_ALIAS" "$prefix")
- if test "x$processed_alias" = "x"; then
- echo >&2 "Processed aliases lack $prefix prefix"
- fi
-done
-
-# Step 5, validate that the fudge prefix has been correctly expanded as though
-# it were fudge=fudge#ssh#ssh
-
-fudge_alias=$(find_alias "$PROCESSED_ALIAS" "fudge")
-desired_fudge="fudge=ssh://git@TROVEHOST/fudge/%s#ssh://git@TROVEHOST/fudge/%s"
-if test "x$fudge_alias" != "x$desired_fudge"; then
- echo >&2 "Fudge alias was '$fudge_alias' where we wanted '$desired_fudge'"
-fi