Import libappimage_1.0.4-5.orig.tar.gz
authorPino Toscano <pino@debian.org>
Mon, 2 Jan 2023 07:20:13 +0000 (08:20 +0100)
committerPino Toscano <pino@debian.org>
Mon, 2 Jan 2023 07:20:13 +0000 (08:20 +0100)
commite04bcc7dbb2c198a2986815f435241d4863dde13
treef4154618ebdee11e63e01f79cb2590dc1c9bbb5d
Import libappimage_1.0.4-5.orig.tar.gz

[dgit import orig libappimage_1.0.4-5.orig.tar.gz]
166 files changed:
.github/workflows/main.yml [new file with mode: 0644]
.gitignore [new file with mode: 0644]
.gitmodules [new file with mode: 0644]
CMakeLists.txt [new file with mode: 0644]
LICENSE [new file with mode: 0644]
README.md [new file with mode: 0644]
ci/Dockerfile.bionic-i386 [new file with mode: 0644]
ci/Dockerfile.bionic-x86_64 [new file with mode: 0644]
ci/Dockerfile.xenial-i386 [new file with mode: 0644]
ci/Dockerfile.xenial-x86_64 [new file with mode: 0644]
ci/build-and-test.sh [new file with mode: 0755]
ci/build-docker-image.sh [new file with mode: 0755]
ci/build-in-docker.sh [new file with mode: 0755]
ci/install-deps.sh [new file with mode: 0755]
cmake/CodeCoverage.cmake [new file with mode: 0644]
cmake/Modules/Findsquashfuse.cmake [new file with mode: 0644]
cmake/dependencies.cmake [new file with mode: 0644]
cmake/imported_dependencies.cmake.in [new file with mode: 0644]
cmake/libappimage.pc.in [new file with mode: 0644]
cmake/libappimageConfig.cmake.in [new file with mode: 0644]
cmake/libappimageConfigVersion.cmake.in [new file with mode: 0644]
cmake/reproducible_builds.cmake [new file with mode: 0644]
cmake/scripts.cmake [new file with mode: 0644]
cmake/tools.cmake [new file with mode: 0644]
docs/.gitignore [new file with mode: 0644]
docs/Makefile [new file with mode: 0644]
docs/conf.py [new file with mode: 0644]
docs/index.rst [new file with mode: 0644]
docs/make.bat [new file with mode: 0644]
docs/make.sh [new file with mode: 0755]
docs/requirements.txt [new file with mode: 0644]
include/appimage/appimage++.h [new file with mode: 0644]
include/appimage/appimage.h [new file with mode: 0644]
include/appimage/appimage_legacy.h [new file with mode: 0644]
include/appimage/appimage_shared.h [new file with mode: 0644]
include/appimage/core/AppImage.h [new file with mode: 0644]
include/appimage/core/AppImageFormat.h [new file with mode: 0644]
include/appimage/core/PayloadEntryType.h [new file with mode: 0644]
include/appimage/core/PayloadIterator.h [new file with mode: 0644]
include/appimage/core/exceptions.h [new file with mode: 0644]
include/appimage/desktop_integration/IntegrationManager.h [new file with mode: 0644]
include/appimage/desktop_integration/exceptions.h [new file with mode: 0644]
include/appimage/utils/ResourcesExtractor.h [new file with mode: 0644]
include/appimage/utils/logging.h [new file with mode: 0644]
lib/CMakeLists.txt [new file with mode: 0644]
src/CMakeLists.txt [new file with mode: 0644]
src/libappimage/CMakeLists.txt [new file with mode: 0644]
src/libappimage/appimage_handler.h [new file with mode: 0644]
src/libappimage/config.h.in [new file with mode: 0644]
src/libappimage/core/AppImage.cpp [new file with mode: 0644]
src/libappimage/core/CMakeLists.txt [new file with mode: 0644]
src/libappimage/core/PayloadIterator.cpp [new file with mode: 0644]
src/libappimage/core/Traversal.cpp [new file with mode: 0644]
src/libappimage/core/Traversal.h [new file with mode: 0644]
src/libappimage/core/impl/PayloadIStream.h [new file with mode: 0644]
src/libappimage/core/impl/StreambufType1.cpp [new file with mode: 0644]
src/libappimage/core/impl/StreambufType1.h [new file with mode: 0644]
src/libappimage/core/impl/StreambufType2.cpp [new file with mode: 0644]
src/libappimage/core/impl/StreambufType2.h [new file with mode: 0644]
src/libappimage/core/impl/TraversalType1.cpp [new file with mode: 0644]
src/libappimage/core/impl/TraversalType1.h [new file with mode: 0644]
src/libappimage/core/impl/TraversalType2.cpp [new file with mode: 0644]
src/libappimage/core/impl/TraversalType2.h [new file with mode: 0644]
src/libappimage/desktop_integration/CMakeLists.txt [new file with mode: 0644]
src/libappimage/desktop_integration/IntegrationManager.cpp [new file with mode: 0644]
src/libappimage/desktop_integration/Thumbnailer.cpp [new file with mode: 0644]
src/libappimage/desktop_integration/Thumbnailer.h [new file with mode: 0644]
src/libappimage/desktop_integration/constants.h [new file with mode: 0644]
src/libappimage/desktop_integration/integrator/DesktopEntryEditError.h [new file with mode: 0644]
src/libappimage/desktop_integration/integrator/DesktopEntryEditor.cpp [new file with mode: 0644]
src/libappimage/desktop_integration/integrator/DesktopEntryEditor.h [new file with mode: 0644]
src/libappimage/desktop_integration/integrator/Integrator.cpp [new file with mode: 0644]
src/libappimage/desktop_integration/integrator/Integrator.h [new file with mode: 0644]
src/libappimage/libappimage.c [new file with mode: 0644]
src/libappimage/libappimage.cpp [new file with mode: 0644]
src/libappimage/libappimage_legacy.cpp [new file with mode: 0644]
src/libappimage/type1.c [new file with mode: 0644]
src/libappimage/type2.c [new file with mode: 0644]
src/libappimage/utils/CMakeLists.txt [new file with mode: 0644]
src/libappimage/utils/DLHandle.h [new file with mode: 0644]
src/libappimage/utils/ElfFile.cpp [new file with mode: 0644]
src/libappimage/utils/ElfFile.h [new file with mode: 0644]
src/libappimage/utils/IconHandle.cpp [new file with mode: 0644]
src/libappimage/utils/IconHandle.h [new file with mode: 0644]
src/libappimage/utils/IconHandleCairoRsvg.cpp [new file with mode: 0644]
src/libappimage/utils/IconHandleCairoRsvg.h [new file with mode: 0644]
src/libappimage/utils/IconHandleDLOpenCairoRsvg.cpp [new file with mode: 0644]
src/libappimage/utils/IconHandleDLOpenCairoRsvg.h [new file with mode: 0644]
src/libappimage/utils/IconHandlePriv.h [new file with mode: 0644]
src/libappimage/utils/Logger.cpp [new file with mode: 0644]
src/libappimage/utils/Logger.h [new file with mode: 0644]
src/libappimage/utils/MagicBytesChecker.cpp [new file with mode: 0644]
src/libappimage/utils/MagicBytesChecker.h [new file with mode: 0644]
src/libappimage/utils/StringSanitizer.cpp [new file with mode: 0644]
src/libappimage/utils/StringSanitizer.h [new file with mode: 0644]
src/libappimage/utils/UrlEncoder.cpp [new file with mode: 0644]
src/libappimage/utils/UrlEncoder.h [new file with mode: 0644]
src/libappimage/utils/hashlib.cpp [new file with mode: 0644]
src/libappimage/utils/hashlib.h [new file with mode: 0644]
src/libappimage/utils/light_byteswap.h [new file with mode: 0644]
src/libappimage/utils/light_elf.h [new file with mode: 0644]
src/libappimage/utils/path_utils.cpp [new file with mode: 0644]
src/libappimage/utils/path_utils.h [new file with mode: 0644]
src/libappimage/utils/resources_extractor/PayloadEntriesCache.cpp [new file with mode: 0644]
src/libappimage/utils/resources_extractor/PayloadEntriesCache.h [new file with mode: 0644]
src/libappimage/utils/resources_extractor/ResourcesExtractor.cpp [new file with mode: 0644]
src/libappimage_hashlib/CMakeLists.txt [new file with mode: 0644]
src/libappimage_hashlib/include/hashlib.h [new file with mode: 0644]
src/libappimage_hashlib/include/md5.h [new file with mode: 0644]
src/libappimage_hashlib/md5.c [new file with mode: 0644]
src/libappimage_shared/CMakeLists.txt [new file with mode: 0644]
src/libappimage_shared/digest.c [new file with mode: 0644]
src/libappimage_shared/elf.c [new file with mode: 0644]
src/libappimage_shared/hexlify.c [new file with mode: 0644]
src/libappimage_shared/light_byteswap.h [new file with mode: 0644]
src/libappimage_shared/light_elf.h [new file with mode: 0644]
src/patches/patch-squashfuse.sh.in [new file with mode: 0755]
src/patches/squashfuse.patch [new file with mode: 0644]
src/patches/squashfuse_dlopen.c [new file with mode: 0644]
src/patches/squashfuse_dlopen.h [new file with mode: 0644]
src/patches/squashfuse_dlopen.patch [new file with mode: 0644]
src/xdg-basedir/CMakeLists.txt [new file with mode: 0644]
src/xdg-basedir/xdg-basedir.c [new file with mode: 0644]
src/xdg-basedir/xdg-basedir.h [new file with mode: 0644]
tests/CMakeLists.txt [new file with mode: 0644]
tests/client_app/CMakeLists.txt [new file with mode: 0644]
tests/client_app/main.c [new file with mode: 0644]
tests/data/AppImageExtract_6-x86_64.AppImage [new file with mode: 0755]
tests/data/AppImageExtract_6_no_magic_bytes-x86_64.AppImage [new file with mode: 0755]
tests/data/Cura.desktop [new file with mode: 0644]
tests/data/Echo-no-integrate-x86_64.AppImage [new file with mode: 0755]
tests/data/Echo-test1234-x86_64.AppImage [new file with mode: 0755]
tests/data/Echo-x86_64.AppImage [new file with mode: 0755]
tests/data/appimaged-i686.AppImage [new file with mode: 0755]
tests/data/appimagetool-x86_64.AppImage [new file with mode: 0755]
tests/data/broken-desktop-file-x86_64.AppImage [new file with mode: 0755]
tests/data/elffile [new file with mode: 0755]
tests/data/minimal.iso [new file with mode: 0644]
tests/data/squashfs-root/.DirIcon [new symlink]
tests/data/squashfs-root/AppRun [new file with mode: 0755]
tests/data/squashfs-root/echo.desktop [new file with mode: 0644]
tests/data/squashfs-root/usr/bin/echo [new file with mode: 0755]
tests/data/squashfs-root/utilities-terminal.png [new file with mode: 0644]
tests/data/squashfs-root/utilities-terminal.svg [new file with mode: 0644]
tests/libappimage/CMakeLists.txt [new file with mode: 0644]
tests/libappimage/TestLibappimage++.cpp [new file with mode: 0644]
tests/libappimage/core/impl/TestTraversalType1.cpp [new file with mode: 0644]
tests/libappimage/core/impl/TestTraversalType2.cpp [new file with mode: 0644]
tests/libappimage/desktop_integration/CMakeLists.txt [new file with mode: 0644]
tests/libappimage/desktop_integration/TestIntegrationManager.cpp [new file with mode: 0644]
tests/libappimage/desktop_integration/TestThumbnailer.cpp [new file with mode: 0644]
tests/libappimage/desktop_integration/integrator/TestDesktopEntryEditor.cpp [new file with mode: 0644]
tests/libappimage/desktop_integration/integrator/TestDesktopIntegration.cpp [new file with mode: 0644]
tests/libappimage/legacy/CMakeLists.txt [new file with mode: 0644]
tests/libappimage/legacy/fixtures.h [new file with mode: 0644]
tests/libappimage/legacy/test-xdg-basedir.cpp [new file with mode: 0644]
tests/libappimage/legacy/test_getsection.cpp [new file with mode: 0644]
tests/libappimage/legacy/test_libappimage.cpp [new file with mode: 0644]
tests/libappimage/legacy/test_shared.cpp [new file with mode: 0644]
tests/libappimage/utils/StringSanitizerTest.cpp [new file with mode: 0644]
tests/libappimage/utils/TestIconHandle.cpp [new file with mode: 0644]
tests/libappimage/utils/TestLogger.cpp [new file with mode: 0644]
tests/libappimage/utils/TestMagicBytesChecker.cpp [new file with mode: 0644]
tests/libappimage/utils/TestPayloadEntriesCache.cpp [new file with mode: 0644]
tests/libappimage/utils/TestResourcesExtractor.cpp [new file with mode: 0644]
tests/libappimage/utils/TestUtilsElf.cpp [new file with mode: 0644]