KurtPfeifle / ImageMagick

ImageMagick (AppImage packaging with custom AppRun script)
Other
1 stars 1 forks source link

[TODO] Systematically compare functionalities -- system-installed `magick` vs. AppImage-d `magick` #4

Open KurtPfeifle opened 6 years ago

KurtPfeifle commented 6 years ago

Do the following:

  1. Using self-installed /usr/local/bin/magick, run:

    for i in $(magick -list list) ; do
        magick -list $i > magick-system-${i}.list
    done
  2. Do the same for ImageMagick-xperimental-x86_64.AppImage. Run:

    for i in $(ImageMagick-xperimental-x86_64.AppImage -list list) ; do
        ImageMagick-xperimental-x86_64.AppImage -list $i > magick-AppImage-${i}.list
    done
  3. Then compare results:

    for i in magick-system-*.list; do
        sdiff -sbB -w 240 ${i} ${i/system/AppImage}
    done
  4. Evaluate. Draw conclusions. Fix what needs to be fixed.

KurtPfeifle commented 6 years ago

Observations:

  1. Minor differences with:

    configure
    delegate
    font
    log
    mime
  2. Major differences with:

    format
    locale
    module
KurtPfeifle commented 6 years ago

The last test build does not show this behavior any more. I tend to think that the Travis environment currently has hickups... (Because I saw, for a few builds already, all "green" sub-commands with exit codes 0, but the final message nevertheless was and still IS: "Done. Your build exited with 1."

KurtPfeifle commented 6 years ago

There are only differences left when running ./im.ai -list module...