Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
KurtPfeifle opened this issue Dec 17, 2017 · 3 comments

Comments

@KurtPfeifle
Copy link
Owner

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 KurtPfeifle changed the title TODO: Systematic comparison functionalities of system-installed magick and AppImage-d magick TODO: Systematically compare functionalities -- system-installed magick vs. AppImage-d magick Dec 17, 2017
@KurtPfeifle
Copy link
Owner Author

Observations:

  1. Minor differences with:

    configure
    delegate
    font
    log
    mime
    
  2. Major differences with:

    format
    locale
    module
    

@KurtPfeifle
Copy link
Owner Author

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
Copy link
Owner Author

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

@KurtPfeifle KurtPfeifle changed the title TODO: Systematically compare functionalities -- system-installed magick vs. AppImage-d magick [TODO] Systematically compare functionalities -- system-installed magick vs. AppImage-d magick Jan 10, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant