├── .gitignore ├── LICENSE ├── README.md ├── abi.sh ├── abi ├── abi_symbols ├── abi_symbols32 ├── abi_used_libs └── abi_used_libs32 ├── apps └── linux-steam-integration │ └── meta │ └── snap.yaml ├── common.sh ├── mkapp.sh ├── pkgs ├── base ├── gaming └── gui ├── round1.sh ├── runtimes └── gaming │ └── meta │ └── snap.yaml ├── support_assets └── etc │ ├── lsb-release │ └── os-release └── support_packages ├── glew16 ├── files │ └── 0001-Underp-buildsystem.patch └── package.yml ├── glibc ├── Makefile ├── files │ ├── 0001-ldd-Force-correct-RTLDLIST-for-Solus.patch │ ├── 0001-misc-Support-fallback-stateless-shells-path-in-absen.patch │ ├── 0002-sysdeps-Add-support-for-usr-lib32-as-a-system-librar.patch │ ├── 0003-elf-ldconfig-Use-a-stateless-ld.so.conf.patch │ ├── 0005-fix-binutils-2-29-build.patch │ ├── fix-x64-abi.patch │ ├── ld.so.conf │ ├── perf │ │ ├── 0001-Add-avx2-fake-capability-like-tls.patch │ │ └── fix-ld-audit-performance.patch │ └── security │ │ ├── CVE-2017-1000366.patch │ │ └── CVE-2017-8804.patch └── package.yml ├── linux-steam-integration └── package.yml ├── lsb-release ├── files │ ├── 0001-Add-support-for-SNAP-root-to-find-lsb-release-file.patch │ └── lsb-release └── package.yml ├── mesa-demos └── package.yml ├── steam ├── files │ └── 0001-Integrate-.desktop-file-with-snapd.patch └── package.yml └── zenity ├── files ├── 0001-Build-all-Zenity-resources-directly-into-the-binary.patch ├── 0002-Default-to-the-dark-variant-of-the-GTK-theme.patch └── series └── package.yml /.gitignore: -------------------------------------------------------------------------------- 1 | /WORKDIR/ 2 | *.snap 3 | squashfs-root 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/README.md -------------------------------------------------------------------------------- /abi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/abi.sh -------------------------------------------------------------------------------- /abi/abi_symbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/abi/abi_symbols -------------------------------------------------------------------------------- /abi/abi_symbols32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/abi/abi_symbols32 -------------------------------------------------------------------------------- /abi/abi_used_libs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /abi/abi_used_libs32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/linux-steam-integration/meta/snap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/apps/linux-steam-integration/meta/snap.yaml -------------------------------------------------------------------------------- /common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/common.sh -------------------------------------------------------------------------------- /mkapp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/mkapp.sh -------------------------------------------------------------------------------- /pkgs/base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/pkgs/base -------------------------------------------------------------------------------- /pkgs/gaming: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/pkgs/gaming -------------------------------------------------------------------------------- /pkgs/gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/pkgs/gui -------------------------------------------------------------------------------- /round1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/round1.sh -------------------------------------------------------------------------------- /runtimes/gaming/meta/snap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/runtimes/gaming/meta/snap.yaml -------------------------------------------------------------------------------- /support_assets/etc/lsb-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/support_assets/etc/lsb-release -------------------------------------------------------------------------------- /support_assets/etc/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/support_assets/etc/os-release -------------------------------------------------------------------------------- /support_packages/glew16/files/0001-Underp-buildsystem.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/support_packages/glew16/files/0001-Underp-buildsystem.patch -------------------------------------------------------------------------------- /support_packages/glew16/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/support_packages/glew16/package.yml -------------------------------------------------------------------------------- /support_packages/glibc/Makefile: -------------------------------------------------------------------------------- 1 | include ../Makefile.common 2 | -------------------------------------------------------------------------------- /support_packages/glibc/files/0001-ldd-Force-correct-RTLDLIST-for-Solus.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/support_packages/glibc/files/0001-ldd-Force-correct-RTLDLIST-for-Solus.patch -------------------------------------------------------------------------------- /support_packages/glibc/files/0001-misc-Support-fallback-stateless-shells-path-in-absen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/support_packages/glibc/files/0001-misc-Support-fallback-stateless-shells-path-in-absen.patch -------------------------------------------------------------------------------- /support_packages/glibc/files/0002-sysdeps-Add-support-for-usr-lib32-as-a-system-librar.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/support_packages/glibc/files/0002-sysdeps-Add-support-for-usr-lib32-as-a-system-librar.patch -------------------------------------------------------------------------------- /support_packages/glibc/files/0003-elf-ldconfig-Use-a-stateless-ld.so.conf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/support_packages/glibc/files/0003-elf-ldconfig-Use-a-stateless-ld.so.conf.patch -------------------------------------------------------------------------------- /support_packages/glibc/files/0005-fix-binutils-2-29-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/support_packages/glibc/files/0005-fix-binutils-2-29-build.patch -------------------------------------------------------------------------------- /support_packages/glibc/files/fix-x64-abi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/support_packages/glibc/files/fix-x64-abi.patch -------------------------------------------------------------------------------- /support_packages/glibc/files/ld.so.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/support_packages/glibc/files/ld.so.conf -------------------------------------------------------------------------------- /support_packages/glibc/files/perf/0001-Add-avx2-fake-capability-like-tls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/support_packages/glibc/files/perf/0001-Add-avx2-fake-capability-like-tls.patch -------------------------------------------------------------------------------- /support_packages/glibc/files/perf/fix-ld-audit-performance.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/support_packages/glibc/files/perf/fix-ld-audit-performance.patch -------------------------------------------------------------------------------- /support_packages/glibc/files/security/CVE-2017-1000366.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/support_packages/glibc/files/security/CVE-2017-1000366.patch -------------------------------------------------------------------------------- /support_packages/glibc/files/security/CVE-2017-8804.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/support_packages/glibc/files/security/CVE-2017-8804.patch -------------------------------------------------------------------------------- /support_packages/glibc/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/support_packages/glibc/package.yml -------------------------------------------------------------------------------- /support_packages/linux-steam-integration/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/support_packages/linux-steam-integration/package.yml -------------------------------------------------------------------------------- /support_packages/lsb-release/files/0001-Add-support-for-SNAP-root-to-find-lsb-release-file.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/support_packages/lsb-release/files/0001-Add-support-for-SNAP-root-to-find-lsb-release-file.patch -------------------------------------------------------------------------------- /support_packages/lsb-release/files/lsb-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/support_packages/lsb-release/files/lsb-release -------------------------------------------------------------------------------- /support_packages/lsb-release/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/support_packages/lsb-release/package.yml -------------------------------------------------------------------------------- /support_packages/mesa-demos/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/support_packages/mesa-demos/package.yml -------------------------------------------------------------------------------- /support_packages/steam/files/0001-Integrate-.desktop-file-with-snapd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/support_packages/steam/files/0001-Integrate-.desktop-file-with-snapd.patch -------------------------------------------------------------------------------- /support_packages/steam/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/support_packages/steam/package.yml -------------------------------------------------------------------------------- /support_packages/zenity/files/0001-Build-all-Zenity-resources-directly-into-the-binary.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/support_packages/zenity/files/0001-Build-all-Zenity-resources-directly-into-the-binary.patch -------------------------------------------------------------------------------- /support_packages/zenity/files/0002-Default-to-the-dark-variant-of-the-GTK-theme.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/support_packages/zenity/files/0002-Default-to-the-dark-variant-of-the-GTK-theme.patch -------------------------------------------------------------------------------- /support_packages/zenity/files/series: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/support_packages/zenity/files/series -------------------------------------------------------------------------------- /support_packages/zenity/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/solus-project/runtime-snaps/HEAD/support_packages/zenity/package.yml --------------------------------------------------------------------------------