├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── pkg-request.yml ├── issue_template.md ├── pull_request_template.md └── workflows │ ├── build.yaml │ ├── container.yaml │ ├── cycles.yaml │ └── stale.yaml ├── .gitignore ├── .mailmap ├── CONTRIBUTING.md ├── COPYING ├── Manual.md ├── README.md ├── common ├── build-helper │ ├── cmake-wxWidgets-gtk3.sh │ ├── gir.sh │ ├── meson.sh │ ├── numpy.sh │ ├── python3.sh │ ├── qemu.sh │ ├── qmake.sh │ ├── qmake6.sh │ └── rust.sh ├── build-profiles │ ├── README │ ├── aarch64-musl.sh │ ├── aarch64.sh │ ├── armv6l-musl.sh │ ├── armv6l.sh │ ├── armv7l-musl.sh │ ├── armv7l.sh │ ├── bootstrap.sh │ ├── i686-musl.sh │ ├── i686.sh │ ├── ppc-musl.sh │ ├── ppc.sh │ ├── ppc64-musl.sh │ ├── ppc64.sh │ ├── ppc64le-musl.sh │ ├── ppc64le.sh │ ├── ppcle-musl.sh │ ├── ppcle.sh │ ├── riscv64-musl.sh │ ├── riscv64.sh │ ├── x86_64-musl.sh │ └── x86_64.sh ├── build-style │ ├── R-cran.sh │ ├── README │ ├── cargo.sh │ ├── cmake.sh │ ├── configure.sh │ ├── fetch.sh │ ├── gem.sh │ ├── gemspec.sh │ ├── gnu-configure.sh │ ├── gnu-makefile.sh │ ├── go.sh │ ├── haskell-stack.sh │ ├── meson.sh │ ├── perl-ModuleBuild.sh │ ├── perl-module.sh │ ├── python2-module.sh │ ├── python3-module.sh │ ├── python3-pep517.sh │ ├── qmake.sh │ ├── raku-dist.sh │ ├── ruby-module.sh │ ├── scons.sh │ ├── sip-build.sh │ ├── slashpackage.sh │ ├── texmf.sh │ ├── void-cross.sh │ ├── waf3.sh │ └── zig-build.sh ├── chroot-style │ ├── README │ ├── bwrap.sh │ ├── ethereal.sh │ ├── uchroot.sh │ └── uunshare.sh ├── container │ ├── Containerfile │ ├── README.md │ ├── docker-bake.hcl │ ├── noextract.conf │ └── setup.sh ├── cross-profiles │ ├── README │ ├── aarch64-musl.sh │ ├── aarch64.sh │ ├── armv5te-musl.sh │ ├── armv5te.sh │ ├── armv5tel-musl.sh │ ├── armv5tel.sh │ ├── armv6hf-musl.sh │ ├── armv6hf.sh │ ├── armv6l-musl.sh │ ├── armv6l.sh │ ├── armv7hf-musl.sh │ ├── armv7hf.sh │ ├── armv7l-musl.sh │ ├── armv7l.sh │ ├── i686-musl.sh │ ├── i686.sh │ ├── mips-musl.sh │ ├── mipsel-musl.sh │ ├── mipselhf-musl.sh │ ├── mipshf-musl.sh │ ├── ppc-musl.sh │ ├── ppc.sh │ ├── ppc64-musl.sh │ ├── ppc64.sh │ ├── ppc64le-musl.sh │ ├── ppc64le.sh │ ├── ppcle-musl.sh │ ├── ppcle.sh │ ├── riscv64-musl.sh │ ├── riscv64.sh │ ├── x86_64-musl.sh │ └── x86_64.sh ├── environment │ ├── README │ ├── build-style │ │ ├── .empty │ │ ├── R-cran.sh │ │ ├── cargo.sh │ │ ├── cmake.sh │ │ ├── gem.sh │ │ ├── gemspec.sh │ │ ├── go.sh │ │ ├── haskell-stack.sh │ │ ├── meson.sh │ │ ├── perl-ModuleBuild.sh │ │ ├── perl-module.sh │ │ ├── python2-module.sh │ │ ├── python3-module.sh │ │ ├── python3-pep517.sh │ │ ├── raku-dist.sh │ │ ├── ruby-module.sh │ │ ├── scons.sh │ │ ├── texmf.sh │ │ ├── texmf │ │ │ └── ownership.txt │ │ ├── void-cross.sh │ │ ├── waf.sh │ │ ├── waf3.sh │ │ └── zig-build.sh │ ├── build │ │ ├── .empty │ │ ├── bootstrap.sh │ │ ├── ccache.sh │ │ ├── cross.sh │ │ ├── debug-debug-prefix-map.sh │ │ ├── hardening.sh │ │ └── pkg-config.sh │ ├── check │ │ ├── bootstrap.sh │ │ ├── ccache.sh │ │ ├── cross.sh │ │ ├── debug-debug-prefix-map.sh │ │ ├── hardening.sh │ │ ├── no_display.sh │ │ └── pkg-config.sh │ ├── configure │ │ ├── .empty │ │ ├── autoconf_cache │ │ │ ├── aarch64-linux │ │ │ ├── arm-common │ │ │ ├── arm-linux │ │ │ ├── common-glibc │ │ │ ├── common-linux │ │ │ ├── endian-big │ │ │ ├── endian-little │ │ │ ├── ix86-common │ │ │ ├── mips-common │ │ │ ├── mips-linux │ │ │ ├── mipsel-linux │ │ │ ├── musl-linux │ │ │ ├── powerpc-common │ │ │ ├── powerpc-linux │ │ │ ├── powerpc32-linux │ │ │ ├── powerpc64-linux │ │ │ ├── riscv64-linux │ │ │ └── x86_64-linux │ │ ├── automake │ │ │ ├── config.guess │ │ │ └── config.sub │ │ ├── bootstrap.sh │ │ ├── ccache.sh │ │ ├── cross.sh │ │ ├── debug-debug-prefix-map.sh │ │ ├── gccspecs │ │ │ ├── hardened-cc1 │ │ │ ├── hardened-ld │ │ │ └── hardened-mips-cc1 │ │ ├── gnu-configure-args.sh │ │ ├── hardening.sh │ │ └── pkg-config.sh │ ├── extract │ │ └── .empty │ ├── fetch │ │ ├── .empty │ │ ├── fetch_cmd.sh │ │ └── misc.sh │ ├── install │ │ ├── .empty │ │ ├── ccache.sh │ │ ├── cross.sh │ │ ├── debug-debug-prefix-map.sh │ │ ├── extglob.sh │ │ ├── hardening.sh │ │ └── pkg-config.sh │ ├── patch │ │ ├── bootstrap.sh │ │ ├── ccache.sh │ │ ├── cross.sh │ │ ├── debug-debug-prefix-map.sh │ │ ├── gnu-configure-args.sh │ │ ├── hardening.sh │ │ └── pkg-config.sh │ ├── pkg │ │ └── extglob.sh │ ├── setup-subpkg │ │ ├── .empty │ │ └── subpkg.sh │ └── setup │ │ ├── .empty │ │ ├── archive.sh │ │ ├── git.sh │ │ ├── install.sh │ │ ├── misc.sh │ │ ├── options.sh │ │ ├── python.sh │ │ ├── replace-interpreter.sh │ │ ├── sourcepkg.sh │ │ └── vsed.sh ├── hooks │ ├── README │ ├── do-build │ │ └── .empty │ ├── do-check │ │ └── .empty │ ├── do-configure │ │ └── .empty │ ├── do-extract │ │ ├── .empty │ │ └── 00-distfiles.sh │ ├── do-fetch │ │ ├── .empty │ │ └── 00-distfiles.sh │ ├── do-install │ │ └── .empty │ ├── do-patch │ │ ├── .empty │ │ └── 00-patches.sh │ ├── do-pkg │ │ ├── .empty │ │ └── 00-gen-pkg.sh │ ├── post-build │ │ └── .empty │ ├── post-check │ │ └── .empty │ ├── post-configure │ │ └── .empty │ ├── post-extract │ │ └── .empty │ ├── post-fetch │ │ └── .empty │ ├── post-install │ │ ├── .empty │ │ ├── 00-compress-info-files.sh │ │ ├── 00-fixup-gir-path.sh │ │ ├── 00-libdir.sh │ │ ├── 00-uncompress-manpages.sh │ │ ├── 01-remove-misc.sh │ │ ├── 02-remove-libtool-archives.sh │ │ ├── 02-remove-perl-files.sh │ │ ├── 02-remove-python-bytecode-files.sh │ │ ├── 03-remove-empty-dirs.sh │ │ ├── 04-create-xbps-metadata-scripts.sh │ │ ├── 05-generate-gitrevs.sh │ │ ├── 06-strip-and-debug-pkgs.sh │ │ ├── 10-pkglint-devel-paths.sh │ │ ├── 11-pkglint-elf-in-usrshare.sh │ │ ├── 12-rename-python3-c-bindings.sh │ │ ├── 13-pkg-config-clean-xbps-cross-base-ref.sh │ │ ├── 14-fix-permissions.sh │ │ ├── 15-qt-private-api.sh │ │ ├── 80-prepare-32bit.sh │ │ ├── 98-shlib-provides.sh │ │ └── 99-pkglint-warn-cross-cruft.sh │ ├── post-patch │ │ └── .empty │ ├── post-pkg │ │ ├── .empty │ │ └── 00-register-pkg.sh │ ├── pre-build │ │ ├── .empty │ │ └── 02-script-wrapper.sh │ ├── pre-check │ │ └── .empty │ ├── pre-configure │ │ ├── .empty │ │ ├── 00-gnu-configure-asneeded.sh │ │ ├── 01-override-config.sh │ │ └── 02-script-wrapper.sh │ ├── pre-extract │ │ └── .empty │ ├── pre-fetch │ │ └── .empty │ ├── pre-install │ │ ├── .empty │ │ ├── 00-libdir.sh │ │ ├── 02-script-wrapper.sh │ │ └── 98-fixup-gir-path.sh │ ├── pre-patch │ │ └── .empty │ └── pre-pkg │ │ ├── .empty │ │ ├── 03-rewrite-python-shebang.sh │ │ ├── 04-generate-provides.sh │ │ ├── 04-generate-runtime-deps.sh │ │ ├── 05-generate-32bit-runtime-deps.sh │ │ ├── 06-verify-python-deps.sh │ │ ├── 90-set-timestamps.sh │ │ ├── 99-pkglint-subpkgs.sh │ │ ├── 99-pkglint.sh │ │ └── 999-collected-rdeps.sh ├── options.description ├── repo-keys │ ├── 3d:b9:c0:50:41:a7:68:4c:2e:2c:a9:a2:5a:04:b7:3f.plist │ └── 60:ae:0c:d6:f0:95:17:80:bc:93:46:7a:89:af:a3:2d.plist ├── scripts │ ├── README.xbps-cycles.md │ ├── check-custom-licenses │ ├── lint-commits │ ├── lint-conflicts │ ├── lint-version-change │ ├── lint2annotations.awk │ ├── parse-py-metadata.py │ └── xbps-cycles.py ├── shlibs ├── travis │ ├── build.sh │ ├── changed_templates.sh │ ├── check-install.sh │ ├── fetch-xbps.sh │ ├── fetch-xtools.sh │ ├── license.lst │ ├── prepare.sh │ ├── set_mirror.sh │ ├── show_files.sh │ ├── verify-update-check.sh │ ├── xlint.sh │ └── xpkgdiff.sh ├── wrappers │ ├── cross-cc │ ├── date.sh │ ├── install.sh │ ├── ldconfig.sh │ ├── strip.sh │ └── uname.sh └── xbps-src │ ├── libexec │ ├── build.sh │ ├── xbps-src-dobuild.sh │ ├── xbps-src-docheck.sh │ ├── xbps-src-doconfigure.sh │ ├── xbps-src-doextract.sh │ ├── xbps-src-dofetch.sh │ ├── xbps-src-doinstall.sh │ ├── xbps-src-dopatch.sh │ ├── xbps-src-dopkg.sh │ └── xbps-src-prepkg.sh │ └── shutils │ ├── build_dependencies.sh │ ├── bulk.sh │ ├── chroot.sh │ ├── common.sh │ ├── consistency_check.sh │ ├── cross.sh │ ├── pkgtarget.sh │ ├── purge_distfiles.sh │ ├── show.sh │ ├── update_check.sh │ └── update_hash_cache.sh ├── etc ├── defaults.conf ├── defaults.virtual └── xbps.d │ ├── repos-local-x86_64-multilib.conf │ ├── repos-local.conf │ ├── repos-remote-aarch64-musl.conf │ ├── repos-remote-aarch64.conf │ ├── repos-remote-musl.conf │ ├── repos-remote-x86_64-multilib.conf │ └── repos-remote.conf ├── srcpkgs ├── 66 │ ├── INSTALL.msg │ ├── patches │ │ └── shutdown_posixsh.diff │ └── template ├── 0ad-data │ └── template ├── 0ad │ ├── files │ │ ├── nvtt-ppc-musl.patch │ │ └── nvtt-ppc64.patch │ ├── patches │ │ ├── disable-font-rendering-test.patch │ │ ├── ignore-printf-hs-test.patch │ │ ├── musl.patch │ │ ├── no-fetch.patch │ │ ├── nvtt-cmake-fixes.patch │ │ ├── premake-add-cross-pkg-config-support.patch │ │ ├── update-workspace-no-hosttype.patch │ │ └── with-system-premake.patch │ ├── template │ └── update ├── 2048-qt │ └── template ├── 2bwm │ └── template ├── 3mux │ └── template ├── 3proxy │ ├── files │ │ └── 3proxy │ │ │ └── run │ └── template ├── 64tass │ ├── patches │ │ └── fix-lines-limit.patch │ └── template ├── 66-devel ├── 66-doc ├── 66-tools │ └── template ├── 6tunnel │ └── template ├── 7kaa │ ├── patches │ │ └── default-data.patch │ └── template ├── 7zip-unrar ├── 7zip │ ├── p7zip-unrar.INSTALL.msg │ ├── p7zip.INSTALL │ ├── patches │ │ └── build_flags.patch │ ├── template │ └── update ├── 9base │ ├── files │ │ └── plan9.sh │ ├── patches │ │ └── yydebug.patch │ └── template ├── 9menu │ └── template ├── 9mount │ ├── INSTALL │ ├── patches │ │ ├── fix-trans-fd.patch │ │ └── no-ipv6-lookup.patch │ └── template ├── ADMS-qucs │ ├── template │ └── update ├── ART │ └── template ├── Adapta │ └── template ├── Aegisub │ ├── patches │ │ ├── 01-no-iconv-tests.patch │ │ └── 02-luajit-5.2.patch │ └── template ├── AlsaMixer.app │ └── template ├── Amass │ └── template ├── Apktool │ ├── files │ │ └── Apktool │ └── template ├── AppStream-compose ├── AppStream-compose-devel ├── AppStream-devel ├── AppStream-qt ├── AppStream-qt-devel ├── AppStream │ ├── template │ └── update ├── AusweisApp2 │ └── template ├── Autodia │ └── template ├── Bear │ └── template ├── Bonzomatic │ ├── patches │ │ └── fix-wayland.patch │ └── template ├── Brainfunk │ ├── patches │ │ └── deharcode-compiler.patch │ └── template ├── CImg │ ├── template │ └── update ├── CKAN │ └── template ├── CLion │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── CPU-X │ ├── patches │ │ ├── disable_tests.patch │ │ ├── fix-no-pie-check.patch │ │ └── fix_musl.patch │ └── template ├── CSFML-devel ├── CSFML │ └── template ├── CUnit-devel ├── CUnit │ ├── template │ └── update ├── Carla-bridge-win ├── Carla-devel ├── Carla │ ├── patches │ │ └── musl.patch │ └── template ├── CastXML │ └── template ├── Cataclysm-DDA-data ├── Cataclysm-DDA-tiles ├── Cataclysm-DDA │ ├── patches │ │ ├── data-core-cmake.patch │ │ ├── fsigned-char.patch │ │ ├── gcc-12.patch │ │ └── no-werror.patch │ ├── template │ └── update ├── CellWriter │ └── template ├── Cendric │ └── template ├── Chipmunk2D-devel ├── Chipmunk2D │ ├── patches │ │ └── musl-sysctl.patch │ ├── template │ └── update ├── Clight │ ├── patches │ │ └── fix-musl.patch │ └── template ├── Clightd │ ├── files │ │ └── Clightd │ │ │ └── run │ └── template ├── Clipboard │ └── template ├── Clp │ ├── patches │ │ └── disable-avx.patch │ └── template ├── ClusterSSH │ ├── patches │ │ └── 15config.diff │ └── template ├── CoinMP-devel ├── CoinMP │ ├── patches │ │ ├── fix-gcc9.1-strncpy.patch │ │ └── mips.patch │ └── template ├── Converseen │ └── template ├── CopyQ │ └── template ├── CubicSDR │ ├── patches │ │ ├── fix-build.patch │ │ └── revert-migration-to-wx3.1.patch │ └── template ├── DSView │ └── template ├── DarkRadiant │ ├── patches │ │ ├── do-no-install-test.patch │ │ ├── musl.patch │ │ └── wayland.patch │ └── template ├── DataGrip │ ├── template │ └── update ├── DirectXShaderCompiler-devel ├── DirectXShaderCompiler │ └── template ├── DisplayCAL │ ├── patches │ │ └── python-3-12.patch │ └── template ├── Dwarf-Therapist │ └── template ├── ETL │ ├── template │ └── update ├── EmptyEpsilon │ ├── patches │ │ └── musl_and_ppc.patch │ └── template ├── EmulationStation-rpi │ └── template ├── EmulationStation │ ├── patches │ │ └── missing-include.patch │ └── template ├── Endeavour │ └── template ├── EternalTerminal │ ├── files │ │ └── etserver │ │ │ └── run │ ├── patches │ │ └── fix-cflags.patch │ ├── template │ └── update ├── FAudio-devel ├── FAudio │ └── template ├── FeatherPad │ └── template ├── Field3D-devel ├── Field3D │ ├── patches │ │ ├── Field3D-openexr.patch │ │ └── boost-1.83.patch │ └── template ├── FlintQS │ └── template ├── Fonts-TLWG-otf ├── Fonts-TLWG │ └── template ├── FreeDoko │ ├── patches │ │ └── makefiles.patch │ ├── template │ └── update ├── FreeRADIUS-devel ├── FreeRADIUS │ ├── files │ │ └── FreeRADIUS │ │ │ └── run │ └── template ├── Fritzing │ ├── files │ │ └── Fritzing │ ├── patches │ │ └── libgit2.patch │ └── template ├── GCP-Guest-Environment │ ├── files │ │ ├── GCP-Guest-Initialization │ │ │ └── run │ │ ├── GCP-accounts │ │ │ └── run │ │ ├── GCP-clock-skew │ │ │ └── run │ │ └── GCP-ip-forwarding │ │ │ └── run │ └── template ├── GCP-base │ └── template ├── GPaste-devel ├── GPaste │ ├── patches │ │ └── 446.patch │ └── template ├── Gauche │ └── template ├── Ghidrathon │ └── template ├── Gifsicle ├── GoLand │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── Gokapi │ ├── files │ │ └── gokapi │ │ │ └── run │ └── template ├── Grammalecte │ └── template ├── GraphicsMagick │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── Haru-devel ├── Haru │ ├── patches │ │ └── unitialized-ptr_error.patch │ ├── template │ └── update ├── Ice-devel ├── Ice │ ├── patches │ │ └── fix-musl.patch │ └── template ├── ImageMagick │ ├── template │ └── update ├── JAI │ ├── template │ └── update ├── KDSingleApplication │ └── template ├── KDSoap-devel ├── KDSoap │ └── template ├── Komikku │ └── template ├── Kooha │ └── template ├── LACT │ ├── files │ │ └── lact │ │ │ └── run │ └── template ├── LGOGDownloader │ ├── template │ └── update ├── LabJackPython │ └── template ├── LanguageTool │ └── template ├── LibreCAD │ └── template ├── LimeSuite-devel ├── LimeSuite-doc ├── LimeSuite │ └── template ├── LuaJIT-devel ├── LuaJIT │ ├── template │ └── update ├── Lucene++-devel ├── Lucene++ │ ├── template │ └── update ├── MEGAcmd │ ├── patches │ │ ├── autotools.patch │ │ └── megaexec.patch │ └── template ├── MEGAsdk-devel ├── MEGAsdk-qt ├── MEGAsdk │ └── template ├── Maelstrom │ ├── patches │ │ ├── include-time_h.patch │ │ └── struct-button-typedef.patch │ └── template ├── MangoHud-mangoapp ├── MangoHud │ └── template ├── Marker │ ├── patches │ │ └── gcc14.patch │ ├── template │ └── update ├── MesaLib-asahi-devel ├── MesaLib-devel ├── Minder │ └── template ├── MoarVM │ └── template ├── ModemManager-devel ├── ModemManager │ ├── template │ └── update ├── Mousai │ └── template ├── MultiMarkdown │ └── template ├── Mustache │ └── template ├── NetAuth-ldap │ ├── INSTALL │ ├── files │ │ └── netauth-ldap │ │ │ └── run │ └── template ├── NetAuth-localizer │ └── template ├── NetAuth-nsscache │ └── template ├── NetAuth-pam-helper │ └── template ├── NetAuth-server ├── NetAuth-sftpgo-hook │ └── template ├── NetAuth │ ├── files │ │ └── netauthd │ │ │ └── run │ └── template ├── NetKeys │ └── template ├── NetworkManager-devel ├── NetworkManager-l2tp │ └── template ├── NetworkManager-openconnect │ └── template ├── NetworkManager-openvpn │ └── template ├── NetworkManager-pptp │ └── template ├── NetworkManager-strongswan │ └── template ├── NetworkManager-vpnc │ └── template ├── NetworkManager │ ├── files │ │ ├── 50-org.freedesktop.NetworkManager.rules │ │ ├── NetworkManager.conf │ │ └── NetworkManager │ │ │ └── run │ ├── patches │ │ ├── fix-cross-gir.patch │ │ └── no-gtk-doc.patch │ ├── template │ └── update ├── NoiseTorch │ ├── INSTALL │ └── template ├── ORBit2-devel ├── ORBit2 │ ├── patches │ │ └── patch-linc2_src_Makefile.in.diff │ └── template ├── OTPClient │ └── template ├── OpenCL-CLHPP │ └── template ├── OpenCL-Headers │ └── template ├── OpenCPN-doc ├── OpenCPN-gshhs-crude │ ├── template │ └── update ├── OpenCPN-gshhs-full ├── OpenCPN-gshhs-high ├── OpenCPN-gshhs-intermediate ├── OpenCPN-gshhs-low ├── OpenCPN-tcdata ├── OpenCPN │ ├── patches │ │ └── musl.patch │ ├── template │ └── update ├── OpenJK │ ├── files │ │ ├── OpenJK.desktop │ │ ├── OpenJKMP.desktop │ │ ├── OpenJO.desktop │ │ ├── README.voidlinux │ │ ├── openjk │ │ ├── openjk_sp │ │ ├── openjkded │ │ └── openjo │ ├── patches │ │ └── fix-sdl2-cross-compile.patch │ └── template ├── OpenLP │ ├── patches │ │ └── no_pytest_runner.patch │ └── template ├── OpenOrienteering-Mapper │ ├── patches │ │ ├── accept-transformation-authorities.patch │ │ ├── fix-proj-cmake.patch │ │ └── fix-tests-qtpaint.patch │ ├── template │ └── update ├── OpenRCT2 │ ├── patches │ │ ├── cmake-cross.patch │ │ ├── i686-FormatToken.patch │ │ └── time_t-musl.patch │ ├── template │ └── update ├── OpenSubdiv-devel ├── OpenSubdiv │ ├── template │ └── update ├── OpenTimelineIO-devel ├── OpenTimelineIO │ ├── patches │ │ ├── 0001-Use-System-rapidjson.patch │ │ ├── 0002-43de3e5065c860865ede0c0bbb879578c7b325a2.patch │ │ └── 0099-cmake.patch │ └── template ├── OpenXcom │ ├── files │ │ └── README.voidlinux │ ├── patches │ │ ├── fix-gcc6-ambigous_abs.patch │ │ └── openxcom-cmath-algorithm-fixes.patch │ └── template ├── PAmix │ ├── patches │ │ └── 4807a44c793a61bb3eb7aa110c08db51938d4502.patch │ └── template ├── PackageKit-devel ├── PackageKit │ ├── template │ └── update ├── PerWindowLayout │ └── template ├── PhotoCollage │ └── template ├── PhpStorm │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── PikoPixel.app │ └── template ├── PopCorn-Server ├── PopCorn │ ├── files │ │ ├── popcorn │ │ │ └── run │ │ ├── pqueryd │ │ │ └── run │ │ └── statrepo │ │ │ └── run │ ├── patches │ │ └── gccgo12.patch │ └── template ├── Powermanga │ └── template ├── PrismLauncher │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── ProcDump-for-Linux │ └── template ├── PyInstaller │ └── template ├── QLC+ │ └── template ├── QMPlay2-devel ├── QMPlay2 │ └── template ├── QSyncthingTray │ ├── files │ │ ├── checksum-logos.txt │ │ └── qsyncthingtray.desktop │ └── template ├── QXlsx │ └── template ├── Quaternion │ └── template ├── R-cran-R6 │ └── template ├── R-cran-RColorBrewer │ ├── template │ └── update ├── R-cran-RInside │ └── template ├── R-cran-Rcpp │ ├── patches │ │ └── 1.0.5--musl.patch │ └── template ├── R-cran-assertthat │ └── template ├── R-cran-backports │ └── template ├── R-cran-callr │ └── template ├── R-cran-cli │ └── template ├── R-cran-colorspace │ ├── template │ └── update ├── R-cran-cpp11 │ └── template ├── R-cran-crayon │ └── template ├── R-cran-data.table │ └── template ├── R-cran-desc │ └── template ├── R-cran-dichromat │ ├── template │ └── update ├── R-cran-digest │ └── template ├── R-cran-dplyr │ └── template ├── R-cran-ellipsis │ └── template ├── R-cran-evaluate │ └── template ├── R-cran-fansi │ └── template ├── R-cran-farver │ └── template ├── R-cran-generics │ └── template ├── R-cran-ggplot2 │ └── template ├── R-cran-glue │ └── template ├── R-cran-gsubfn │ └── template ├── R-cran-gtable │ └── template ├── R-cran-isoband │ └── template ├── R-cran-labeling │ └── template ├── R-cran-lazyeval │ └── template ├── R-cran-lifecycle │ └── template ├── R-cran-lubridate │ └── template ├── R-cran-magrittr │ └── template ├── R-cran-munsell │ └── template ├── R-cran-nloptr │ └── template ├── R-cran-pillar │ ├── template │ └── update ├── R-cran-pkgbuild │ └── template ├── R-cran-pkgconfig │ └── template ├── R-cran-pkgload │ └── template ├── R-cran-plyr │ └── template ├── R-cran-praise │ └── template ├── R-cran-prettyunits │ └── template ├── R-cran-processx │ └── template ├── R-cran-proto │ └── template ├── R-cran-ps │ └── template ├── R-cran-purrr │ └── template ├── R-cran-reshape2 │ └── template ├── R-cran-rlang │ └── template ├── R-cran-rprojroot │ └── template ├── R-cran-rstudioapi │ └── template ├── R-cran-scales │ └── template ├── R-cran-stringi │ └── template ├── R-cran-stringr │ └── template ├── R-cran-svglite │ └── template ├── R-cran-systemfonts │ └── template ├── R-cran-testthat │ └── template ├── R-cran-tibble │ └── template ├── R-cran-tidyselect │ └── template ├── R-cran-utf8 │ └── template ├── R-cran-vctrs │ └── template ├── R-cran-viridisLite │ └── template ├── R-cran-withr │ └── template ├── R-cran-zeallot │ └── template ├── R-cran-zoo │ ├── template │ └── update ├── R │ └── template ├── ROCm-SMI-devel ├── ROCm-SMI │ ├── patches │ │ └── cflags.patch │ ├── template │ └── update ├── RcloneBrowser │ ├── patches │ │ └── do-not-check-for-updates.patch │ └── template ├── ReDoomEd.app │ └── template ├── ReText │ ├── files │ │ ├── x-retext-markdown.xml │ │ └── x-retext-rst.xml │ ├── template │ └── update ├── RubyMine │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── RyzenAdj │ └── template ├── SDL ├── SDL-devel ├── SDL2-devel ├── SDL2 │ └── template ├── SDL2_Pango-devel ├── SDL2_Pango │ └── template ├── SDL2_gfx-devel ├── SDL2_gfx │ └── template ├── SDL2_image-devel ├── SDL2_image │ └── template ├── SDL2_mixer-devel ├── SDL2_mixer │ └── template ├── SDL2_net-devel ├── SDL2_net │ └── template ├── SDL2_ttf-devel ├── SDL2_ttf │ └── template ├── SDL3-devel ├── SDL3 │ └── template ├── SDL_gfx-devel ├── SDL_gfx │ └── template ├── SDL_image-devel ├── SDL_image │ └── template ├── SDL_mixer-devel ├── SDL_mixer │ ├── files │ │ └── README.voidlinux │ └── template ├── SDL_net-devel ├── SDL_net │ └── template ├── SDL_sound-devel ├── SDL_sound │ └── template ├── SDL_ttf-devel ├── SDL_ttf │ └── template ├── SDRPlusPlus │ ├── patches │ │ └── except.patch │ └── template ├── SFML-devel ├── SFML │ └── template ├── SIR │ └── template ├── SLADE │ ├── patches │ │ └── signed....patch │ └── template ├── SPIRV-Headers │ ├── template │ └── update ├── SPIRV-LLVM-Translator-devel ├── SPIRV-LLVM-Translator │ └── template ├── SPIRV-LLVM-Translator19-devel ├── SPIRV-LLVM-Translator19 │ └── template ├── SPIRV-Tools-devel ├── SPIRV-Tools │ ├── template │ └── update ├── SatDump │ └── template ├── Signal-Desktop │ └── template ├── SmartSim │ └── template ├── SoapyAirspy │ ├── template │ └── update ├── SoapyHackRF │ ├── template │ └── update ├── SoapyLMS7 ├── SoapyRTLSDR │ ├── template │ └── update ├── SoapySDR-devel ├── SoapySDR │ ├── template │ └── update ├── SoapyUHD │ ├── template │ └── update ├── Solaar │ ├── INSTALL.msg │ ├── patches │ │ └── fix-udev-rule.patch │ └── template ├── StyLua │ └── template ├── SuiteSparse-devel ├── SuiteSparse │ └── template ├── Sunflower │ └── template ├── Swapspace │ ├── files │ │ └── swapspace │ │ │ └── run │ └── template ├── SwayNotificationCenter │ └── template ├── SweetHome3D │ ├── files │ │ ├── SweetHome3D.desktop │ │ ├── sweethome3d │ │ └── sweethome3d.xml │ └── template ├── SystemPreferences │ └── template ├── TMSU │ └── template ├── TSC │ ├── patches │ │ ├── boost-1.80.patch │ │ └── no-scriptdocs-cross.patch │ └── template ├── Terminal │ ├── patches │ │ └── x86_64-musl-termios_h.patch │ └── template ├── TerraState │ ├── files │ │ └── terrastate │ │ │ └── run │ └── template ├── The-Powder-Toy │ ├── patches │ │ └── luacpp.patch │ └── template ├── TheForceEngine │ ├── patches │ │ └── musl.patch │ └── template ├── Thunar-devel ├── Thunar │ ├── template │ └── update ├── Trimage │ └── template ├── Tuba │ ├── template │ └── update ├── TwitchNotifier │ └── template ├── UEFITool │ ├── patches │ │ └── musl_defs.patch │ ├── template │ └── update ├── UxPlay │ ├── files │ │ └── README.voidlinux │ └── template ├── VVVVVV │ ├── patches │ │ └── data-zip-path.diff │ └── template ├── VeraCrypt │ ├── patches │ │ └── include-types.patch │ ├── template │ └── update ├── VirtualGL-devel ├── VirtualGL │ ├── template │ └── update ├── Vulkan-Headers │ ├── template │ └── update ├── Vulkan-Tools │ ├── template │ └── update ├── Vulkan-Utility-Libraries │ ├── template │ └── update ├── Vulkan-ValidationLayers │ ├── template │ └── update ├── Waybar │ ├── patches │ │ ├── fix-default-icon.patch │ │ └── fix-network-icons.patch │ ├── template │ └── update ├── WebStorm │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── WildMidi ├── WildMidi-devel ├── WindowMaker-devel ├── WindowMaker │ └── template ├── WiringPi-examples ├── WiringPi-gpio ├── WiringPi │ └── template ├── WoeUSB-cli │ ├── patches │ │ ├── offline.patch │ │ └── shebang.patch │ └── template ├── WoeUSB │ └── template ├── XMousePasteBlock │ └── template ├── XQilla-devel ├── XQilla │ ├── patches │ │ └── gcc11.patch │ └── template ├── XyGrib-maps │ └── template ├── XyGrib │ ├── patches │ │ ├── openjpeg-2.5.patch │ │ ├── proj8_port.patch │ │ └── qt5-5.15.0.patch │ └── template ├── YACReader │ └── template ├── Z80Explorer │ ├── files │ │ ├── Z80Explorer-startup.sh │ │ ├── Z80Explorer.desktop │ │ └── Z80Explorer.png │ └── template ├── ZMusic-devel ├── ZMusic │ ├── patches │ │ └── ppc-musl.patch │ └── template ├── a2jmidid │ ├── patches │ │ ├── musl-no-execinfo.patch │ │ └── musl-ppc.patch │ └── template ├── a2ps │ └── template ├── a4 │ └── template ├── a52dec ├── aalib-devel ├── aalib-utils ├── aalib │ ├── patches │ │ └── gcc14.patch │ └── template ├── aardvark-dns │ └── template ├── abGate │ └── template ├── abcde │ └── template ├── abcm2ps │ └── template ├── abcmidi │ ├── template │ └── update ├── abduco │ ├── patches │ │ ├── 0001-Use-fixed-size-integer-types-in-protocol-messages.patch │ │ ├── 0002-Fix-length-of-MSG_RESIZE-packet.patch │ │ ├── 0003-Avoid-use-of-BUFSIZ-to-guarantee-system-independent-.patch │ │ └── 0004-Correct-EOF-handling-on-client-stdin.patch │ └── template ├── abi-compliance-checker │ └── template ├── abi-dumper │ └── template ├── abireport │ └── template ├── abiword-devel ├── abiword │ ├── patches │ │ ├── enchant-2.patch │ │ ├── fix-make-check.patch │ │ ├── libxml-2.12.patch │ │ └── musl.patch │ └── template ├── abook │ ├── patches │ │ └── inline.patch │ ├── template │ └── update ├── abootimg │ ├── patches │ │ └── no-initrd.patch │ └── template ├── abseil-cpp-devel ├── abseil-cpp │ └── template ├── acbuild │ └── template ├── accounts-qml-module │ └── template ├── accountsservice-devel ├── accountsservice │ ├── patches │ │ ├── ad0365b77b583da06bcd1e8da4c1bed74129895a.patch │ │ ├── fix-build.patch │ │ ├── mocklibc-Fix-compiler-warning.patch │ │ └── musl-fgetspent_r.patch │ └── template ├── acct │ ├── files │ │ ├── locs-glibc │ │ └── locs-musl │ ├── patches │ │ └── cross.patch │ └── template ├── ace-util │ └── template ├── acfgfs │ └── template ├── ack │ └── template ├── acl-devel ├── acl-progs ├── acl │ └── template ├── aclip │ └── template ├── acme-client │ ├── files │ │ └── acme-client.conf │ └── template ├── acme.sh │ └── template ├── acmetool │ └── template ├── acpi │ └── template ├── acpi_call-dkms │ ├── template │ └── update ├── acpica-utils │ ├── template │ └── update ├── acpid │ ├── files │ │ ├── acpid │ │ │ └── run │ │ ├── anything │ │ └── handler.sh │ ├── patches │ │ ├── disable-logging-to-console.patch │ │ ├── fix-musl.patch │ │ └── no-cursor-events.patch │ └── template ├── acpilight │ └── template ├── acr │ └── template ├── act │ └── template ├── actiona │ ├── patches │ │ ├── bytearray-constdata.patch │ │ ├── no-updater.patch │ │ ├── socket-include-order.patch │ │ └── use-lrelease-qt5.patch │ └── template ├── activate-linux │ └── template ├── activityrelay │ ├── files │ │ └── activityrelay │ │ │ └── run │ ├── template │ └── update ├── ada-devel ├── ada │ ├── patches │ │ └── pkg-config.patch │ └── template ├── adapta-kde │ └── template ├── adguardian │ └── template ├── adjtimex │ ├── patches │ │ └── destdir.patch │ └── template ├── adriconf │ └── template ├── advancecomp │ └── template ├── adwaita-fonts │ └── template ├── adwaita-icon-theme │ └── template ├── adwaita-plus │ └── template ├── adwaita-qt │ ├── template │ └── update ├── adwaita-qt6 ├── aerc │ ├── patches │ │ └── makefile-only-install.patch │ └── template ├── afew │ ├── patches │ │ └── python3.12.patch │ └── template ├── afflib-devel ├── afflib │ └── template ├── afl++ │ ├── template │ └── update ├── age-plugin-yubikey │ └── template ├── age │ └── template ├── agg-devel ├── agg │ ├── patches │ │ ├── agg-2.4-depends.patch │ │ ├── agg-2.5-pkgconfig.patch │ │ └── gcc82.patch │ ├── template │ └── update ├── aggregate │ └── template ├── aha │ └── template ├── ahoviewer │ └── template ├── aide │ ├── files │ │ └── aide.conf │ └── template ├── aircrack-ng │ ├── patches │ │ ├── evalrev.patch │ │ ├── getopt.patch │ │ ├── python.patch │ │ └── sqlite3.patch │ ├── template │ └── update ├── airspy │ └── template ├── airspyhf │ ├── patches │ │ └── fix-libm-linking.patch │ └── template ├── aisleriot │ └── template ├── akonadi-calendar-devel ├── akonadi-calendar │ └── template ├── akonadi-contacts-devel ├── akonadi-contacts │ └── template ├── akonadi-import-wizard-devel ├── akonadi-import-wizard │ └── template ├── akonadi-mime-devel ├── akonadi-mime │ └── template ├── akonadi-notes-devel ├── akonadi-notes │ └── template ├── akonadi-search-devel ├── akonadi-search │ └── template ├── akonadi5-devel ├── akonadi5 │ ├── template │ └── update ├── akregator │ └── template ├── alacritty-terminfo ├── alacritty │ └── template ├── albatross-themes │ └── template ├── aldo │ └── template ├── aldumb ├── alembic-devel ├── alembic │ └── template ├── alert-after │ ├── patches │ │ └── 0001-Update-Cargo.lock.patch │ └── template ├── alertmanager │ ├── files │ │ └── alertmanager │ │ │ └── run │ └── template ├── alfred-json │ └── template ├── alfred │ ├── files │ │ ├── alfred │ │ │ ├── finish │ │ │ └── run │ │ └── batadv-vis │ │ │ └── run │ └── template ├── alienfx │ └── template ├── alkimia │ ├── template │ └── update ├── allegro4-devel ├── allegro4 │ ├── files │ │ └── TryRunResults.cmake │ ├── patches │ │ └── mesa10-uncompat.patch │ ├── template │ └── update ├── allegro5-devel ├── allegro5 │ ├── patches │ │ └── time64.patch │ ├── template │ └── update ├── aloadimage │ └── template ├── alot │ └── template ├── alpine │ ├── template │ └── update ├── alsa-firmware │ ├── patches │ │ └── musl.patch │ └── template ├── alsa-lib-devel ├── alsa-lib │ └── template ├── alsa-oss │ └── template ├── alsa-pipewire ├── alsa-plugins-ffmpeg ├── alsa-plugins-jack ├── alsa-plugins-pulseaudio ├── alsa-plugins-samplerate ├── alsa-plugins-speex ├── alsa-plugins │ ├── files │ │ └── asound.conf │ └── template ├── alsa-tools-devel ├── alsa-tools │ ├── patches │ │ └── musl-__sighandler_t.patch │ └── template ├── alsa-ucm-conf-asahi │ └── template ├── alsa-ucm-conf │ └── template ├── alsa-utils │ ├── files │ │ └── alsa │ │ │ ├── finish │ │ │ └── run │ └── template ├── alsa_rnnoise │ └── template ├── alsaequal │ └── template ├── alttab │ └── template ├── alure-devel ├── alure │ ├── patches │ │ ├── cmake-suck.patch │ │ └── include-close.patch │ └── template ├── amber │ └── template ├── amberol │ └── template ├── amdvlk │ ├── patches │ │ └── pal-define-ACCESSPERMS.patch │ ├── template │ └── update ├── amfora │ └── template ├── aminal │ └── template ├── amiri-font │ └── template ├── aml-devel ├── aml │ └── template ├── amp │ └── template ├── ampache │ ├── INSTALL.msg │ └── template ├── amsynth │ ├── template │ └── update ├── amtk-devel ├── amtk │ └── template ├── an │ └── template ├── android-file-transfer-linux-cli ├── android-file-transfer-linux-libs ├── android-file-transfer-linux │ └── template ├── android-studio │ ├── template │ └── update ├── android-tools │ ├── files │ │ └── adb │ │ │ ├── finish │ │ │ └── run │ ├── patches │ │ ├── armhf.patch │ │ ├── fix-build-ppc.patch │ │ ├── link-absl.patch │ │ └── musl.patch │ ├── template │ └── update ├── android-udev-rules │ └── template ├── angband │ ├── patches │ │ └── fix-tests.patch │ └── template ├── angle-grinder │ └── template ├── angrysearch │ └── template ├── anjuta-devel ├── anjuta │ ├── patches │ │ ├── fix-unistd_h.patch │ │ ├── fix-webkit2gtk-detection.patch │ │ ├── no-gnome-common.patch │ │ ├── python.patch │ │ ├── vala-050.patch │ │ ├── vala.patch │ │ └── vala048.patch │ └── template ├── anki │ ├── patches │ │ ├── disable_popup.patch │ │ ├── fix_distutils_not_found.patch │ │ ├── fix_float.patch │ │ ├── fix_mpv_args.patch │ │ ├── fix_profile_save.patch │ │ └── fix_unescape.patch │ └── template ├── annie ├── anope │ ├── files │ │ └── anope │ │ │ └── run │ └── template ├── ansi │ └── template ├── ansible-base ├── ansible-core │ ├── template │ └── update ├── ansible-language-server │ └── template ├── ansible │ ├── template │ └── update ├── ansifilter │ └── template ├── anthy-devel ├── anthy-unicode-devel ├── anthy-unicode │ └── template ├── anthy │ ├── template │ └── update ├── antibody │ └── template ├── antimicro ├── antimicrox │ ├── patches │ │ └── time64.patch │ └── template ├── antiword │ ├── patches │ │ └── 10_fix_buffer_overflow_wordole_c.patch │ └── template ├── antlr3-bin │ └── template ├── anubis │ ├── files │ │ └── anubis │ │ │ └── run │ ├── patches │ │ └── npm-assets.diff │ └── template ├── anydesk │ └── template ├── aoeui │ └── template ├── apache-ant-doc ├── apache-ant │ ├── files │ │ ├── README.voidlinux │ │ └── apache-ant.sh │ ├── patches │ │ └── 541a1d2448af3e95134f79a970a608403deab00a.patch │ └── template ├── apache-devel ├── apache-directory-studio ├── apache-directory-studio-bin │ ├── template │ └── update ├── apache-fop │ ├── files │ │ ├── README.void │ │ ├── README.voidlinux │ │ └── fop.conf │ ├── template │ └── update ├── apache-htpasswd ├── apache-jmeter-doc ├── apache-jmeter │ ├── template │ └── update ├── apache-kafka │ ├── files │ │ ├── apache-kafka-zookeeper │ │ │ └── run │ │ ├── apache-kafka.sh │ │ └── apache-kafka │ │ │ └── run │ ├── template │ └── update ├── apache-maven │ ├── template │ └── update ├── apache-storm │ ├── INSTALL │ ├── template │ └── update ├── apache-tomcat-doc ├── apache-tomcat-examples ├── apache-tomcat-host-manager ├── apache-tomcat-manager ├── apache-tomcat │ ├── files │ │ └── apache-tomcat │ │ │ └── run │ ├── template │ └── update ├── apache │ ├── files │ │ ├── README.voidlinux │ │ ├── apache.logrotate │ │ ├── apache │ │ │ └── run │ │ └── xbps.layout │ ├── template │ └── update ├── apcupsd │ ├── files │ │ ├── apcupsd-powerfail.sh │ │ └── apcupsd │ │ │ └── run │ ├── patches │ │ └── skip-man-txt-build.patch │ └── template ├── api-sanity-checker │ └── template ├── apk-tools │ └── template ├── apl │ ├── patches │ │ └── musl.patch │ └── template ├── apostrophe │ ├── patches │ │ └── webkit2gtk4.1.patch │ └── template ├── app-builder │ ├── patches │ │ └── go-mod-tidy.patch │ └── template ├── apparmor │ ├── files │ │ ├── README.voidlinux │ │ └── profiles │ │ │ ├── usr.bin.dhcpcd │ │ │ ├── usr.bin.nginx │ │ │ ├── usr.bin.php-fpm │ │ │ ├── usr.bin.pulseaudio │ │ │ ├── usr.bin.uuidd │ │ │ └── usr.bin.wpa_supplicant │ ├── patches │ │ ├── fix_logprofconf.patch │ │ ├── libapparmor-basename.patch │ │ └── python3.13.patch │ ├── template │ └── update ├── appmenu-gtk-module-devel ├── appmenu-gtk3-module ├── appmenu-registrar ├── appres │ └── template ├── appstream-glib-devel ├── appstream-glib │ └── template ├── apr-devel ├── apr-util-db ├── apr-util-devel ├── apr-util-gdbm ├── apr-util-ldap ├── apr-util-mysql ├── apr-util-odbc ├── apr-util-pgsql ├── apr-util-sqlite ├── apr-util │ ├── patches │ │ ├── fix-cross-libtool.patch │ │ └── implicit-int.patch │ └── template ├── apr │ ├── patches │ │ └── partial-disable-test.patch │ └── template ├── apt-devel ├── apt-doc ├── apt │ └── template ├── aptly │ └── template ├── apulse │ └── template ├── apvlv │ ├── patches │ │ ├── cxxflags_from_env.patch │ │ └── use_dist_manpdf.patch │ └── template ├── aqbanking-devel ├── aqbanking │ ├── patches │ │ └── cmake-prefix.patch │ ├── template │ └── update ├── aqemu │ ├── patches │ │ ├── stdexcept.patch │ │ └── widgets.patch │ └── template ├── aquatone │ └── template ├── arandr │ └── template ├── aravis │ ├── template │ └── update ├── arb ├── arb-devel ├── arc-icon-theme │ └── template ├── arc-theme │ └── template ├── arcan-devel ├── arcan │ ├── patches │ │ └── show-message.patch │ └── template ├── arcan_sdl ├── archiver │ └── template ├── archlabs-themes │ └── template ├── ardor │ ├── files │ │ ├── ardor-tor │ │ │ └── run │ │ └── ardor │ │ │ └── run │ └── template ├── ardour │ ├── patches │ │ ├── 0001-Unset-HAVE_GNU_FTW.patch │ │ ├── 6.0-fix-build.patch │ │ ├── 6.0-fix-runtime.patch │ │ └── 7.0-use-bundled-qm-dsp.patch │ ├── template │ └── update ├── arduino-cli │ └── template ├── arduino │ ├── patches │ │ └── astyle_fix.patch │ └── template ├── arena │ ├── template │ └── update ├── argon2 │ ├── patches │ │ ├── explicit-bzero.patch │ │ └── libdir.patch │ └── template ├── argp-standalone │ └── template ├── argtable-devel ├── argtable-doc ├── argtable │ └── template ├── argyllcms │ ├── patches │ │ └── fix-32bit.patch │ ├── template │ └── update ├── aria2 │ ├── template │ └── update ├── aribas │ ├── template │ └── update ├── ario │ └── template ├── ark │ └── template ├── armadillo-devel ├── armadillo │ └── template ├── armagetronad-dedicated ├── armagetronad │ ├── files │ │ └── armagetronad-dedicated │ │ │ └── run │ ├── patches │ │ └── python3.patch │ └── template ├── arp-scan │ └── template ├── arpack-ng-devel ├── arpack-ng │ └── template ├── arpfox │ └── template ├── arpwatch │ ├── patches │ │ ├── missing-time_h.patch │ │ └── no_getshort.patch │ └── template ├── arti │ ├── patches │ │ ├── fix-32bit-tests.patch │ │ └── fix-tests-on-machines-below-4GiB.patch │ ├── template │ └── update ├── artwiz-fonts │ ├── template │ └── update ├── artyfx │ ├── patches │ │ ├── fix-avtk-cmake-sse.patch │ │ ├── fix-lv2-1.18.patch │ │ └── respect-our-cflags.patch │ └── template ├── asahi-audio │ └── template ├── asahi-base │ ├── INSTALL │ ├── files │ │ ├── tinyramfs-hook-asahi │ │ ├── tinyramfs-hook-asahi.init │ │ └── tinyramfs-hook-asahi.init.late │ └── template ├── asahi-firmware │ └── template ├── asahi-macsmc-battery-udev ├── asahi-scripts │ ├── files │ │ └── macsmc-battery.conf │ └── template ├── asahi-uboot │ └── template ├── ascii │ └── template ├── asciidoc │ └── template ├── asciinema │ └── template ├── asciiquarium │ └── template ├── asignify-devel ├── asignify │ ├── patches │ │ ├── d6b3651fa96f05aeefc318f75503fc9ca77b1f58.patch │ │ └── musl.patch │ └── template ├── asio │ ├── template │ └── update ├── asm-lsp │ └── template ├── asm6 │ └── template ├── aspell-cs │ ├── template │ └── update ├── aspell-de │ ├── template │ └── update ├── aspell-devel ├── aspell-el │ └── template ├── aspell-en │ ├── template │ └── update ├── aspell-fr │ ├── template │ └── update ├── aspell-it │ └── template ├── aspell-nl │ └── template ├── aspell-pl │ ├── template │ └── update ├── aspell-pt_BR │ ├── template │ └── update ├── aspell-ru │ ├── template │ └── update ├── aspell-sk │ ├── template │ └── update ├── aspell │ └── template ├── assimp │ └── template ├── assimp_qt_viewer │ ├── patches │ │ └── method-spelling-change.patch │ └── template ├── ast-grep │ └── template ├── astroid │ ├── patches │ │ ├── attachements.patch │ │ ├── cpp17.patch │ │ ├── cross.patch │ │ └── webkit2gtk41.patch │ └── template ├── astromenace │ ├── INSTALL │ ├── REMOVE │ ├── patches │ │ └── gcc13.patch │ └── template ├── astyle │ ├── patches │ │ └── musl.patch │ ├── template │ └── update ├── asunder │ └── template ├── asus-kbd-backlight │ ├── files │ │ ├── asus-kbd-backlight │ │ └── asus-kbd │ │ │ └── run │ └── template ├── at-spi2-atk ├── at-spi2-atk-devel ├── at-spi2-core-devel ├── at-spi2-core │ ├── template │ └── update ├── at │ ├── INSTALL │ ├── files │ │ └── at │ │ │ └── run │ ├── patches │ │ └── isleap.patch │ └── template ├── atari800 │ ├── files │ │ └── README.voidlinux │ └── template ├── atf-devel ├── atf-libs ├── atf-rk3328-bl31 │ ├── template │ └── update ├── atf-rk3399-bl31 │ ├── template │ └── update ├── atf │ └── template ├── atinout │ └── template ├── atk ├── atk-devel ├── atkmm-devel ├── atkmm │ ├── template │ └── update ├── atlantis │ └── template ├── atomicparsley │ ├── template │ └── update ├── atomix │ └── template ├── atool │ └── template ├── atop │ ├── files │ │ └── atop │ │ │ └── run │ ├── patches │ │ ├── atop-bb-compat.patch │ │ └── musl-fix-includes.patch │ ├── template │ └── update ├── atril-dvi ├── atril │ ├── template │ └── update ├── attic │ ├── patches │ │ └── openssl.diff │ └── template ├── attica-devel ├── attica-qt5 ├── attica-qt5-devel ├── attica │ ├── template │ └── update ├── attr-devel ├── attr-progs ├── attr │ ├── patches │ │ └── 8a80d895dfd779373363c3a4b62ecce5a549efb2.patch │ └── template ├── attract │ ├── patches │ │ ├── Makefile.patch │ │ ├── fix-musl.patch │ │ ├── null.patch │ │ └── string.patch │ └── template ├── atuin │ └── template ├── aubio-devel ├── aubio │ ├── patches │ │ ├── disable-tests.patch │ │ ├── ffmpeg5.patch │ │ ├── python3.11.patch │ │ └── python3.12.patch │ └── template ├── aucatctl │ └── template ├── audacious-base-devel ├── audacious-base │ ├── template │ └── update ├── audacious-plugins │ ├── patches │ │ └── ffmpeg5.patch │ └── template ├── audacious │ └── template ├── audacity │ └── template ├── audex │ └── template ├── audiofile-devel ├── audiofile │ ├── patches │ │ ├── 004-CVE-2017-6829.patch │ │ ├── 005-CVE-2017-6827-CVE-2017-6828-CVE-2017-6832-CVE-2017-6833-CVE-2017-6835-CVE-2017-6837.patch │ │ ├── 006-CVE-2017-6839.patch │ │ ├── 007-CVE-2017-6830-CVE-2017-6834-CVE-2017-6836-CVE-2017-6838.patch │ │ ├── 009-CVE-2017-6831.patch │ │ └── fix-gcc6-shift_left.patch │ └── template ├── audit │ ├── files │ │ ├── auditctl │ │ │ ├── conf │ │ │ ├── finish │ │ │ └── run │ │ └── auditd │ │ │ └── run │ ├── patches │ │ ├── seed-random.patch │ │ └── strndupa.patch │ └── template ├── augeas-devel ├── augeas │ └── template ├── auto-auto-complete │ ├── patches │ │ └── fish-completion-vendor.patch │ └── template ├── autoconf-archive │ ├── patches │ │ └── 0001-AX_C_FLOAT_WORDS_BIGENDIAN-Fix-bug-AX_C_FLOAT_WORDS_.patch │ └── template ├── autoconf │ └── template ├── autoconf213 │ ├── patches │ │ ├── patch-aa.diff │ │ ├── patch-ab.diff │ │ └── patch-ac.diff │ └── template ├── autocutsel │ └── template ├── autofirma │ ├── files │ │ └── autofirma │ └── template ├── autofs │ ├── files │ │ └── autofs │ │ │ └── run │ ├── patches │ │ ├── implicit-function-decl.patch │ │ └── musl.patch │ └── template ├── autogen │ ├── patches │ │ ├── autogen-5.18.16-rpath.patch │ │ ├── autogen-guile-3.0.patch │ │ └── build-aux.patch │ ├── template │ └── update ├── autojump │ ├── template │ └── update ├── automake │ └── template ├── autopep8 │ └── template ├── autorandr │ └── template ├── autorestic │ └── template ├── autorunner │ └── template ├── autossh │ └── template ├── autotiling │ └── template ├── autox │ ├── files │ │ └── autox │ │ │ └── run │ ├── template │ └── update ├── avahi-autoipd ├── avahi-compat-libs ├── avahi-compat-libs-devel ├── avahi-discover │ ├── template │ └── update ├── avahi-glib-libs ├── avahi-glib-libs-devel ├── avahi-libevent-libs ├── avahi-libevent-libs-devel ├── avahi-libs ├── avahi-libs-devel ├── avahi-python-utils ├── avahi-python3 ├── avahi-python3-utils ├── avahi-qt5-libs ├── avahi-qt5-libs-devel ├── avahi-ui-libs ├── avahi-ui-libs-devel ├── avahi-ui-libs-gtk3 ├── avahi-ui-utils ├── avahi-utils ├── avahi │ ├── files │ │ └── avahi-daemon │ │ │ └── run │ └── template ├── avfs-devel ├── avfs │ └── template ├── avidemux │ ├── files │ │ └── negative-shift.patch │ ├── patches │ │ ├── ADM_x265.patch │ │ ├── musl-execinfo.patch │ │ ├── musl-memcpy.patch │ │ ├── musl-nullptr.patch │ │ └── use-realpath.patch │ ├── template │ └── update ├── avideo │ ├── template │ └── update ├── avizo │ └── template ├── avr-binutils │ ├── template │ └── update ├── avr-gcc │ ├── template │ └── update ├── avr-gdb │ ├── patches │ │ └── gdb-mips-linux-nat.patch │ └── template ├── avr-libc │ └── template ├── avra │ └── template ├── avrdude │ └── template ├── awesome-appmenu │ └── template ├── awesome │ └── template ├── awoken-icons-dark ├── awoken-icons-white ├── awoken-icons │ └── template ├── aws-cli │ └── template ├── aws-vault │ └── template ├── awsume │ ├── template │ └── update ├── ax25-tools │ ├── patches │ │ └── musl.patch │ └── template ├── axel │ └── template ├── ayatana-ido-devel ├── ayatana-ido │ └── template ├── azote │ └── template ├── azpainter │ ├── patches │ │ └── fix-compiler-environment.patch │ └── template ├── b3sum │ └── template ├── b43-firmware-classic │ ├── files │ │ └── README.voidlinux │ └── template ├── b43-firmware │ ├── files │ │ └── README.voidlinux │ └── template ├── b43-fwcutter │ └── template ├── bCNC │ ├── files │ │ └── README.voidlinux │ └── template ├── babashka │ ├── template │ └── update ├── babeld │ └── template ├── babelfish │ └── template ├── babeltrace-devel ├── babeltrace │ └── template ├── babl-devel ├── babl │ └── template ├── backblaze-b2 │ ├── files │ │ └── test_b2_command_line.py │ └── template ├── backintime-qt ├── backintime │ └── template ├── backupninja │ ├── template │ └── update ├── bacon │ ├── template │ └── update ├── bacula-common-mariadb ├── bacula-common-postgresql ├── bacula-common │ ├── files │ │ ├── bacula-dir │ │ │ └── run │ │ ├── bacula-fd │ │ │ └── run │ │ └── bacula-sd │ │ │ └── run │ ├── patches │ │ ├── fix-cross.patch │ │ └── fix-musl.patch │ ├── template │ └── update ├── bacula-console ├── bacula-dir ├── bacula-fd ├── bacula-sd ├── badvpn │ └── template ├── badwolf │ └── template ├── ballerburg │ └── template ├── baloo-widgets-devel ├── baloo-widgets │ ├── template │ └── update ├── baloo-widgets5 ├── baloo-widgets5-devel ├── balsa │ ├── patches │ │ ├── gtk-iconcache.patch │ │ ├── libwebkit2gtk41.patch │ │ └── portability.patch │ ├── template │ └── update ├── bam │ └── template ├── bamf-devel ├── bamf │ └── template ├── bandwhich │ ├── INSTALL │ └── template ├── bankstown │ └── template ├── banner │ └── template ├── baobab │ └── template ├── baresip-devel ├── baresip │ └── template ├── barrier ├── barrier-gui ├── base-chroot-cyclic-solver │ └── template ├── base-chroot │ └── template ├── base-container-full │ └── template ├── base-container │ └── template ├── base-devel │ └── template ├── base-files │ ├── INSTALL │ ├── files │ │ ├── 66-kvm.rules │ │ ├── 90-usbmon.rules │ │ ├── DIR_COLORS │ │ ├── DIR_COLORS.256color │ │ ├── DIR_COLORS.xterm │ │ ├── _vkpurge │ │ ├── blacklist.conf │ │ ├── bpf.conf │ │ ├── colorls.sh │ │ ├── crypttab │ │ ├── dot_bash_logout │ │ ├── dot_bash_profile │ │ ├── dot_bashrc │ │ ├── dot_inputrc │ │ ├── dracut.conf.d.voidlinux.conf │ │ ├── fstab │ │ ├── group │ │ ├── host.conf │ │ ├── hosts │ │ ├── inputrc │ │ ├── issue │ │ ├── ld.so.lib32.conf │ │ ├── licenses │ │ │ ├── Apache-2.0 │ │ │ ├── Artistic │ │ │ ├── BSD │ │ │ ├── GFDL-1.2 │ │ │ ├── GFDL-1.3 │ │ │ ├── GPL-1 │ │ │ ├── GPL-2 │ │ │ ├── GPL-3 │ │ │ ├── LGPL-2 │ │ │ ├── LGPL-2.1 │ │ │ ├── LGPL-3 │ │ │ ├── MPL-1.1 │ │ │ ├── MPL-2.0 │ │ │ └── OFL-1.1 │ │ ├── locale.sh │ │ ├── lsb_release │ │ ├── mozplugin.sh │ │ ├── nsswitch.conf │ │ ├── os-release │ │ ├── passwd │ │ ├── profile │ │ ├── securetty │ │ ├── subgid │ │ ├── subuid │ │ ├── sysctl-user.conf │ │ ├── sysctl.conf │ │ ├── usb-load-ehci-first │ │ ├── vkpurge │ │ └── vkpurge.8 │ └── template ├── base-minimal ├── base-system │ └── template ├── base-voidstrap ├── base91 │ ├── template │ └── update ├── bash-completion │ ├── patches │ │ └── load_compat.patch │ └── template ├── bash-devel ├── bash-language-server │ └── template ├── bash-preexec │ └── template ├── bash │ ├── files │ │ ├── bash.sh │ │ └── bashrc │ └── template ├── bashmount │ └── template ├── bastet │ ├── INSTALL │ ├── patches │ │ ├── musl.patch │ │ ├── new-boost.patch │ │ └── scorer-names-bugfix.patch │ └── template ├── basu-devel ├── basu │ ├── patches │ │ └── uid-nobody.patch │ └── template ├── bat │ └── template ├── batctl │ ├── template │ └── update ├── batctl14 │ ├── patches │ │ └── musl.patch │ └── template ├── batman-adv │ ├── files │ │ └── dkms.conf │ └── template ├── batman-adv14 │ ├── files │ │ └── dkms.conf │ ├── patches │ │ └── 0001-fix-build.diff │ └── template ├── bats-assert │ └── template ├── bats-support │ └── template ├── bats │ └── template ├── batsignal │ └── template ├── bazel │ ├── patches │ │ ├── gettid.patch │ │ ├── java.patch │ │ ├── musl.patch │ │ └── no-jdk.patch │ └── template ├── bbe │ └── template ├── bbkeys │ ├── patches │ │ └── fix-cross.patch │ └── template ├── bbswitch │ ├── patches │ │ ├── 0001-Use-proc_ops-structure-for-kernel-version-5.6.0.patch │ │ ├── 0002-Add-missing-proc_fs.h-header.patch │ │ └── 0003-kernel-5.18.patch │ └── template ├── bc-gh │ └── template ├── bc-java │ ├── template │ └── update ├── bc │ ├── patches │ │ └── read.patch │ └── template ├── bcache-tools │ ├── template │ └── update ├── bcachefs-tools │ ├── patches │ │ ├── make.patch │ │ ├── musl.patch │ │ └── pwritev2.patch │ └── template ├── bcal │ └── template ├── bcc-devel ├── bcc-tools ├── bcc │ ├── patches │ │ └── musl.patch │ └── template ├── bcg729-devel ├── bcg729 │ ├── patches │ │ └── cmake.patch │ ├── template │ └── update ├── bchunk │ └── template ├── bcmatroska2-devel ├── bcmatroska2 │ ├── patches │ │ └── cmake.patch │ ├── template │ └── update ├── bcnc ├── bctoolbox-devel ├── bctoolbox │ ├── patches │ │ ├── cmake.patch │ │ ├── disable-psa-crypto.patch │ │ └── map-use-after-free.patch │ ├── template │ └── update ├── bcunit-devel ├── bcunit │ └── template ├── bdf2psf ├── bdf2sfd │ └── template ├── bdfresize │ ├── patches │ │ ├── 01-ftbfs-gcc4.patch │ │ └── 02-minus-sign.patch │ └── template ├── bdftopcf │ └── template ├── beancount │ └── template ├── beanshell │ └── template ├── beanstalkd │ ├── files │ │ └── beanstalkd │ │ │ └── run │ └── template ├── beard │ ├── files │ │ └── beard │ │ │ └── run │ └── template ├── bearssl-devel ├── bearssl │ └── template ├── beep │ ├── INSTALL │ ├── patches │ │ └── CVE-2018-0492.patch │ └── template ├── bees │ ├── patches │ │ ├── 0001-don-t-run-tests-unless-asked.patch │ │ ├── 0002-move-sbin-into-bin.patch │ │ ├── 0003-start-work-on-cross-compilation.patch │ │ ├── pthread_getname1.patch │ │ └── series │ └── template ├── beets │ └── template ├── belcard-devel ├── belcard │ ├── patches │ │ └── cmake.patch │ ├── template │ └── update ├── belle-sip-devel ├── belle-sip │ ├── patches │ │ ├── cmake.patch │ │ └── musl.patch │ ├── template │ └── update ├── belr-devel ├── belr │ ├── patches │ │ └── cmake.patch │ ├── template │ └── update ├── bemenu-devel ├── bemenu │ └── template ├── benchmark-devel ├── benchmark │ └── template ├── berry │ ├── patches │ │ └── fix-cross.patch │ └── template ├── better-control │ └── template ├── bettercap │ └── template ├── betterlockscreen │ ├── patches │ │ └── use-loginctl.patch │ └── template ├── bff-apankrat │ └── template ├── bff │ └── template ├── bfs │ └── template ├── bftpd │ ├── files │ │ └── bftpd │ │ │ └── run │ ├── patches │ │ └── paths.patch │ └── template ├── bglibs-devel ├── bglibs │ └── template ├── bgs │ └── template ├── biber │ └── template ├── bibiman │ └── template ├── biblesync-devel ├── biblesync │ └── template ├── bibletime │ ├── patches │ │ └── fix-cflags.patch │ └── template ├── biblioteq │ └── template ├── biboumi │ ├── files │ │ └── biboumi │ │ │ └── run │ ├── patches │ │ └── remove-git.patch │ └── template ├── biew │ ├── patches │ │ └── bool.patch │ ├── template │ └── update ├── bijiben │ ├── patches │ │ ├── meson-0.61.patch │ │ └── soup3.patch │ └── template ├── bin86 ├── bind-devel ├── bind-libs ├── bind-utils ├── bind │ ├── INSTALL │ ├── files │ │ ├── 127.0.0.zone │ │ ├── localhost.zone │ │ ├── named.conf │ │ ├── named.logrotate │ │ └── named │ │ │ └── run │ ├── template │ └── update ├── bindfs │ └── template ├── binfmt-support │ ├── files │ │ └── binfmt-support │ │ │ ├── finish │ │ │ └── run │ └── template ├── binpac ├── binpac-devel ├── binutils-devel ├── binutils-doc ├── binutils-libs ├── binutils │ ├── patches │ │ └── ppc64-revert-gnu-attributes.patch │ └── template ├── binwalk │ └── template ├── biosdisk │ ├── patches │ │ └── fix-sbin.patch │ └── template ├── bird │ ├── files │ │ └── bird │ │ │ └── run │ └── template ├── bird_exporter │ ├── files │ │ └── bird_exporter │ │ │ └── run │ └── template ├── birdtray │ ├── patches │ │ └── QPainterPath.patch │ └── template ├── bish │ ├── patches │ │ ├── fix-build.patch │ │ └── fix-ldflags.patch │ └── template ├── bison │ └── template ├── bitchx │ ├── patches │ │ ├── bitchx-1.2.1-security.patch │ │ └── openssl-1.1.patch │ └── template ├── bitcoin-devel ├── bitcoin-qt ├── bitcoin │ ├── patches │ │ └── fix-test.patch │ ├── template │ └── update ├── bitfighter │ ├── template │ └── update ├── bitlbee-devel ├── bitlbee-discord │ ├── patches │ │ └── glib-2.69.patch │ └── template ├── bitlbee-facebook │ └── template ├── bitlbee-mastodon │ └── template ├── bitlbee-steam │ └── template ├── bitlbee │ ├── files │ │ └── bitlbee │ │ │ └── run │ └── template ├── bitmap │ └── template ├── bitwig-studio │ └── template ├── bitwise │ ├── patches │ │ └── tests-use-bcunit.patch │ └── template ├── bk │ ├── template │ └── update ├── bkt │ └── template ├── black │ ├── template │ └── update ├── blackbird-themes │ └── template ├── blackbox │ └── template ├── blackbox_exporter │ ├── INSTALL │ ├── files │ │ └── blackbox_exporter │ │ │ └── run │ └── template ├── blackboxwm-devel ├── blackboxwm │ ├── patches │ │ ├── d3481ee7b7d104ef53ead4d35b9a9254c64bb87a.patch │ │ └── time64.patch │ └── template ├── blanket │ └── template ├── blas ├── blas-devel ├── blazeblogger │ ├── template │ └── update ├── bleachbit │ └── template ├── blender │ ├── patches │ │ ├── 0002-fix-includes.patch │ │ ├── cross.patch │ │ └── numpy.patch │ └── template ├── blind │ └── template ├── blindfold │ └── template ├── blktrace │ └── template ├── bloaty │ ├── patches │ │ ├── cpp17.patch │ │ └── system-abseil.patch │ └── template ├── blobby2 │ ├── patches │ │ └── system-deps.patch │ └── template ├── blocky │ ├── files │ │ └── blocky │ │ │ └── run │ └── template ├── bluebird-themes │ └── template ├── bluedevil │ └── template ├── bluefish │ └── template ├── blueman │ ├── files │ │ └── README.voidlinux │ └── template ├── blueprint-compiler │ └── template ├── bluetui │ └── template ├── bluetuith │ └── template ├── bluez-alsa │ ├── files │ │ └── bluez-alsa │ │ │ └── run │ └── template ├── bluez-cups ├── bluez-deprecated ├── bluez-hid2hci ├── bluez-mesh ├── bluez-obex ├── bluez │ ├── files │ │ ├── README.voidlinux │ │ ├── bluetooth-meshd │ │ │ └── run │ │ └── bluetoothd │ │ │ └── run │ ├── patches │ │ ├── 0001-enable-dbus-without-systemd.patch │ │ ├── 0002-allow-obexd-on-non-systemd-system.patch │ │ ├── 0003-allow-mesh-on-non-systemd-system.patch │ │ ├── 0004-permission.patch │ │ ├── basename.patch │ │ └── disable-test-vcp.patch │ └── template ├── blur-effect │ └── template ├── blush │ └── template ├── bmake │ └── template ├── bmaptool │ └── template ├── bmkdep │ └── template ├── bmon │ ├── patches │ │ ├── Add_CTRL-N_CTRL-P.patch │ │ └── out_curses.patch │ └── template ├── bochs │ ├── template │ └── update ├── bogofilter │ ├── patches │ │ └── test-musl.patch │ └── template ├── boinc-devel ├── boinc-nox ├── boinc │ ├── files │ │ └── boinc │ │ │ ├── conf │ │ │ └── run │ ├── patches │ │ └── arm-not-android.patch │ ├── template │ └── update ├── boinctui │ └── template ├── bolt │ ├── files │ │ └── boltd │ │ │ └── run │ ├── patches │ │ └── gcc14.patch │ └── template ├── bombadillo │ ├── template │ └── update ├── bombardier │ └── template ├── bonnie++ │ ├── patches │ │ └── configure.patch │ └── template ├── bookworm │ ├── patches │ │ ├── libwebkit2gtk41.patch │ │ └── py3-scriptname.patch │ └── template ├── boomerang │ ├── patches │ │ ├── dont_include_toolchain-file.patch │ │ ├── fix-cflags.patch │ │ └── include-stdint.patch │ └── template ├── boost-build ├── boost-devel ├── boost-python3 ├── boost │ ├── patches │ │ ├── config-no-test-BOOST_NO_COMPLETE_VALUE_INITIALIZATION.patch │ │ ├── container-failed-static-vector.patch │ │ ├── float-double.patch │ │ ├── geometry-example-needs-extension.patch │ │ ├── gil-test-failure.patch │ │ ├── graph-skip-memory-intensive.patch │ │ ├── histogram-int--is-not-double.patch │ │ ├── install-strip-destdir.patch │ │ ├── iostream-test.patch │ │ ├── missing-include.patch │ │ ├── mpi-disable-heavy-test.patch │ │ ├── phoenix-broken-O2.patch │ │ ├── python-3.11.patch │ │ ├── regex.patch │ │ ├── revert-boost-phoenix-104.patch │ │ ├── safe-numeric-no-example.patch │ │ ├── statechart.patch │ │ ├── timer-deprecated.patch │ │ ├── unorder-fix-copy-assign.patch │ │ ├── uuid-test.patch │ │ └── wave.patch │ ├── template │ └── update ├── booster │ ├── files │ │ ├── kernel-hook-postinst │ │ └── kernel-hook-postrm │ └── template ├── bootchart │ └── template ├── bootchart2 │ ├── patches │ │ ├── python-3.9.patch │ │ └── rdinit-fix-panic.patch │ └── template ├── bootiso │ ├── patches │ │ └── new-exfat.patch │ └── template ├── bootterm │ └── template ├── borg │ ├── patches │ │ └── msgpack-1.1.1.patch │ ├── template │ └── update ├── borgmatic │ └── template ├── boringtun │ └── template ├── boswars-data ├── boswars │ ├── files │ │ ├── boswars │ │ ├── boswars.desktop │ │ └── boswars.png │ ├── patches │ │ └── python3.patch │ └── template ├── botan-devel ├── botan-doc ├── botan │ └── template ├── bottom │ └── template ├── boundary │ └── template ├── bovo │ └── template ├── box2d-devel ├── box2d │ └── template ├── boxed-cpp │ └── template ├── boxflat │ └── template ├── bpfmon │ └── template ├── bpftool ├── bpftop │ └── template ├── bpftrace │ └── template ├── bpytop │ └── template ├── brasero-devel ├── brasero │ └── template ├── breeze-amber-cursor-theme ├── breeze-blue-cursor-theme ├── breeze-contrast-cursor-theme ├── breeze-cursors │ └── template ├── breeze-gtk │ └── template ├── breeze-hacked-cursor-theme ├── breeze-icons │ ├── patches │ │ └── cross.patch │ └── template ├── breeze-obsidian-cursor-theme ├── breeze-purple-cursor-theme ├── breeze-qt5 │ ├── template │ └── update ├── breeze-qt6 │ ├── template │ └── update ├── breeze-red-cursor-theme ├── breeze │ └── template ├── brial-devel ├── brial │ └── template ├── bridge-utils │ ├── patches │ │ ├── fix-PATH_MAX-musl.patch │ │ └── fix-musl.patch │ ├── template │ └── update ├── brig │ └── template ├── brightnessctl │ └── template ├── brillo │ └── template ├── brise │ ├── INSTALL │ ├── REMOVE │ └── template ├── brisk-menu │ └── template ├── brltty-devel ├── brltty │ ├── files │ │ └── brltty │ │ │ └── run │ ├── patches │ │ ├── crosspython.patch │ │ ├── cython3.patch │ │ └── python3-bindings.patch │ ├── template │ └── update ├── bro ├── broadcom-bt-firmware │ └── template ├── broadcom-wl-dkms │ ├── files │ │ └── dkms.conf │ ├── patches │ │ ├── 001-null-pointer-fix.patch │ │ ├── 002-gcc-4.9.patch │ │ ├── 003-linux-4.3.patch │ │ ├── 004-linux-4.7.patch │ │ ├── 005-linux-4.8.patch │ │ ├── 006-linux-4.11.patch │ │ ├── 007-linux-4.12.patch │ │ ├── 008-linux-4.14.patch │ │ ├── 009-linux-4.15.patch │ │ ├── 010-linux-5.1.patch │ │ ├── 011-linux-5.6.patch │ │ ├── 012-linux-5.10.patch │ │ ├── 013-linux-5.17.patch │ │ ├── 014-linux-5.18.patch │ │ ├── 015-linux-6.0.patch │ │ ├── 016-linux-6.1.patch │ │ ├── 017-linux-6.12.patch │ │ ├── 018-linux613.patch │ │ └── 019-linux614.patch │ ├── template │ └── update ├── broot │ └── template ├── brother-brlaser │ └── template ├── brother-brscan3 │ ├── INSTALL │ ├── REMOVE │ └── template ├── brother-brscan4 │ ├── INSTALL │ ├── REMOVE │ ├── files │ │ ├── README.voidlinux │ │ └── agree.html │ └── template ├── brother-brscan5 │ ├── INSTALL │ ├── REMOVE │ ├── files │ │ └── README.voidlinux │ └── template ├── brother-dcp197c-cupswrapper │ ├── INSTALL │ ├── REMOVE │ ├── files │ │ ├── 43-cups-usb.rules │ │ └── cupswrapper.void │ └── template ├── brother-dcp197c-lpr │ ├── INSTALL │ └── template ├── brotli-devel ├── brotli │ └── template ├── browserpass │ └── template ├── browsh │ ├── patches │ │ ├── go-bindata.patch │ │ └── modules.patch │ └── template ├── bsatool ├── bsd-games │ ├── INSTALL │ ├── files │ │ └── config.params │ ├── patches │ │ ├── bad-ntohl-cast.diff │ │ ├── bsd-games-2.17-64bit.patch │ │ ├── countmail.diff │ │ ├── cross.patch │ │ ├── gamescreen.h.diff │ │ ├── getline.diff │ │ ├── null-check.diff │ │ ├── number.c.diff │ │ └── stdio.h.diff │ └── template ├── bsdbuild │ └── template ├── bsdiff │ ├── patches │ │ └── CVE-2014-9862.diff │ └── template ├── bsdtar ├── bsdunzip ├── bspwm │ ├── patches │ │ └── fix-windows-not-appearing.patch │ └── template ├── btdu │ └── template ├── btfs │ └── template ├── bti │ ├── patches │ │ └── 0db8dc6022f67a4e1f49397b8bf519b2a34f74c9.patch │ └── template ├── btop │ └── template ├── btrbk │ └── template ├── btrfs-backup │ └── template ├── btrfs-progs │ ├── template │ └── update ├── bubblewrap │ ├── patches │ │ └── fix-TEMP_FAILTURE_RETRY-musl.patch │ └── template ├── bucklespring │ └── template ├── budgie-control-center-devel ├── budgie-control-center │ ├── patches │ │ └── gcc14.patch │ └── template ├── budgie-desktop-devel ├── budgie-desktop-view │ └── template ├── budgie-desktop │ └── template ├── budgie-screensaver │ ├── patches │ │ └── fix-musl.patch │ └── template ├── buffer │ ├── patches │ │ └── musl-sem.patch │ └── template ├── buildah │ └── template ├── buku │ └── template ├── buku_run │ └── template ├── bullet-devel ├── bullet │ ├── patches │ │ └── disableExample.patch │ └── template ├── bum │ ├── patches │ │ └── mpd2-3.patch │ └── template ├── bumblebee-status │ ├── patches │ │ ├── manual-location.patch │ │ └── python3.12.patch │ └── template ├── bumblebee │ ├── files │ │ ├── README.voidlinux │ │ └── bumblebeed │ │ │ └── run │ ├── patches │ │ ├── 10-modprobe-replace-rmmod.patch │ │ └── 20-better-module-load-unload.patch │ ├── template │ └── update ├── bup │ ├── patches │ │ └── disable-git-call.patch │ └── template ├── burp2-client ├── burp2-doc ├── burp2-server │ ├── burp2-server.INSTALL.msg │ ├── files │ │ └── burp2-server │ │ │ └── run │ ├── patches │ │ └── tests-disable-failing.patch │ ├── template │ └── update ├── busybox-core ├── busybox-huge ├── busybox-static ├── busybox │ ├── files │ │ ├── busybox-klogd │ │ │ └── run │ │ ├── busybox-ntpd │ │ │ └── run │ │ ├── busybox-syslogd │ │ │ └── run │ │ ├── dotconfig │ │ └── dotconfig.d │ │ │ ├── httpd.patch │ │ │ ├── huge.patch │ │ │ ├── mdev.patch │ │ │ ├── ntpd.patch │ │ │ ├── static.patch │ │ │ ├── sysklogd.patch │ │ │ └── udhcpc.patch │ ├── patches │ │ ├── 0001-libbb-sockaddr2str-ensure-only-printable-characters-.patch │ │ ├── 0002-nslookup-sanitize-all-printed-strings-with-printable.patch │ │ ├── no-cbq.patch │ │ └── testsuite-fix-date-works.patch │ ├── template │ └── update ├── butt │ ├── patches │ │ └── 0001-limits.h-patch.patch │ └── template ├── bvi │ ├── template │ └── update ├── bwidget │ └── template ├── bwm-ng │ └── template ├── byacc │ └── template ├── byobu │ └── template ├── bzflag │ ├── patches │ │ └── bzfs-musl.patch │ ├── template │ └── update ├── bzip2-devel ├── bzip2 │ ├── files │ │ └── bzip2.pc │ ├── patches │ │ └── soname.patch │ └── template ├── bzip3-devel ├── bzip3 │ └── template ├── bzrtp-devel ├── bzrtp │ ├── patches │ │ └── cmake.patch │ ├── template │ └── update ├── c-ares-devel ├── c-ares │ └── template ├── c-blosc-devel ├── c-blosc │ ├── patches │ │ └── musl.patch │ └── template ├── c-capnproto-devel ├── c-capnproto │ └── template ├── c-client-devel ├── c-client │ ├── patches │ │ ├── 1006_openssl1.1_autoverify.patch │ │ └── c-client-2006k_GENTOO_amd64-so-fix.patch │ ├── template │ └── update ├── c │ └── template ├── cJSON-devel ├── cJSON │ ├── patches │ │ └── fix-cross.patch │ └── template ├── ca-certificates │ ├── INSTALL │ ├── REMOVE │ ├── files │ │ └── certdata2pem.c │ ├── patches │ │ ├── drop-python-dependency.patch │ │ └── update-ca-certificates-destdir.patch │ ├── template │ └── update ├── cabal-install │ ├── files │ │ └── linux-9.0.2.json │ ├── template │ └── update ├── cabbage │ ├── patches │ │ └── juce-musl.patch │ ├── template │ └── update ├── cabextract │ └── template ├── cachefilesd │ ├── files │ │ └── cachefilesd │ │ │ └── run │ └── template ├── cackey │ ├── patches │ │ └── no-rpath.patch │ └── template ├── cadaver │ └── template ├── caddy │ ├── INSTALL │ ├── files │ │ └── caddy │ │ │ └── run │ ├── patches │ │ └── fix_version_command.patch │ └── template ├── cadence │ ├── patches │ │ ├── CVE-2023-43782.patch │ │ ├── CVE-2023-43783.patch │ │ └── QPainterPath.patch │ └── template ├── caerbannog │ └── template ├── caffeine-ng │ ├── patches │ │ └── use-ayatana-appindicator.patch │ └── template ├── cage │ └── template ├── cagebreak │ └── template ├── cairo-devel ├── cairo-dock-devel ├── cairo-dock-plugins-python3 ├── cairo-dock-plugins-vala ├── cairo-dock-plugins │ ├── patches │ │ └── cairo-dock-plugins-3.4.1-time_h-confict.patch │ ├── template │ └── update ├── cairo-dock │ └── template ├── cairo │ ├── patches │ │ └── musl-stacksize.patch │ └── template ├── cairomm-devel ├── cairomm │ ├── template │ └── update ├── cairomm1.16-devel ├── cairomm1.16 │ ├── template │ └── update ├── caja-av ├── caja-dropbox │ ├── template │ └── update ├── caja-extensions │ ├── template │ └── update ├── caja-image-converter ├── caja-open-terminal ├── caja-sendto ├── caja-share ├── caja-wallpaper ├── caja-xattr-tags ├── caja │ ├── template │ └── update ├── calc │ ├── files │ │ └── musl.patch │ ├── patches │ │ └── endian-32.patch │ ├── template │ └── update ├── calcurse │ └── template ├── calendarsupport-devel ├── calendarsupport │ └── template ├── calf │ ├── template │ └── update ├── calibre │ ├── template │ └── update ├── caligula │ └── template ├── calligra-devtools ├── calligra-extras ├── calligra-filters ├── calligra-gemini ├── calligra-handbook ├── calligra-karbon ├── calligra-kexi ├── calligra-krita ├── calligra-libs ├── calligra-plan-devtools ├── calligra-plan │ ├── template │ └── update ├── calligra-plugins ├── calligra-sheets ├── calligra-stage ├── calligra-words ├── calligra │ ├── files │ │ └── gemini-webkit.patch │ ├── patches │ │ ├── 0001-Fix-some-more-warnings.patch │ │ ├── 0002-Make-show-hidden-row-s-work.patch │ │ ├── c++20.patch │ │ ├── macro-optional-find-package.patch │ │ ├── openexr3.patch │ │ ├── poppler-22.03.0-fix.patch │ │ ├── poppler-22.04.0-fix.patch │ │ └── upstream_Fix-compile-with-poppler-2405-or-higher.patch │ └── template ├── cameractrls │ └── template ├── can-utils │ └── template ├── cantarell-fonts │ ├── INSTALL │ ├── REMOVE │ └── template ├── cantata │ ├── patches │ │ └── migrate.patch │ └── template ├── canto-curses │ ├── patches │ │ └── python-3.13.patch │ └── template ├── canto-next │ ├── files │ │ └── canto-daemon │ │ │ ├── finish │ │ │ └── run │ └── template ├── caph │ ├── files │ │ └── caph.desktop │ └── template ├── capnproto-devel ├── capnproto │ ├── template │ └── update ├── caps │ ├── patches │ │ └── musl.patch │ └── template ├── caps2esc │ └── template ├── capstone-devel ├── capstone-python3 ├── capstone │ └── template ├── carapace │ └── template ├── carbons │ └── template ├── cargo-about │ └── template ├── cargo-aoc │ └── template ├── cargo-auditable-bootstrap │ └── template ├── cargo-auditable │ └── template ├── cargo-bootstrap │ └── template ├── cargo-c │ └── template ├── cargo-crev │ ├── patches │ │ └── 0001-fix-index-guix-dependency-of-crevette.patch │ └── template ├── cargo-deny │ └── template ├── cargo-flamegraph │ └── template ├── cargo-geiger │ └── template ├── cargo-license │ └── template ├── cargo-machete │ └── template ├── cargo-modules │ └── template ├── cargo-update │ └── template ├── cargo-watch │ └── template ├── cargo │ └── template ├── caribou-devel ├── caribou │ ├── patches │ │ ├── autostart-set-nodisplay.patch │ │ ├── fix-crash.patch │ │ ├── fix-font-property-in-style.css.patch │ │ └── fix-gir-vala.patch │ └── template ├── carton │ ├── template │ └── update ├── castero │ └── template ├── castget │ └── template ├── castor │ └── template ├── catatonit │ ├── patches │ │ └── 0001-configure.ac-call-AM_INIT_AUTOMAKE-only-once.patch │ └── template ├── catch2 │ └── template ├── catdoc │ ├── patches │ │ ├── 001-XLS_parsing_improvements.patch │ │ ├── 002-CVE-2017-11110.patch │ │ └── 003-Fix_OLENAMELENGTH.patch │ └── template ├── catfish │ └── template ├── catgirl │ └── template ├── catimg │ ├── patches │ │ └── fix-cflags.patch │ └── template ├── cava-gui ├── cava │ ├── cava-gui.INSTALL.msg │ ├── patches │ │ └── iniparser-pkgconfig.patch │ ├── template │ └── xava.INSTALL.msg ├── cavestory │ ├── files │ │ ├── cavestory │ │ ├── cavestory.desktop │ │ └── cavestory.png │ ├── template │ └── update ├── cbang-devel ├── cbang │ ├── patches │ │ ├── fix-include.patch │ │ └── sys_time_h.patch │ └── template ├── cbatticon-gtk2 ├── cbatticon-gtk3 ├── cbatticon │ └── template ├── cbindgen │ └── template ├── cblas ├── cblas-devel ├── cbonsai │ └── template ├── cbp2make │ ├── template │ └── update ├── cc65 │ └── template ├── ccache │ ├── patches │ │ └── ioctl.patch │ └── template ├── ccd2iso │ └── template ├── ccextractor │ ├── patches │ │ ├── 0001-fix-ffmpeg-5-and-tesseract-5-compatibility-1479.patch │ │ ├── disable_arm_neon.patch │ │ └── fix-ocr.patch │ └── template ├── cciss_vol_status │ └── template ├── ccl │ ├── patches │ │ ├── musl-fixes.patch │ │ └── nopie.patch │ └── template ├── cclive │ ├── patches │ │ ├── fix-boost-067.patch │ │ ├── fix-missing-iostream-includes.patch │ │ └── musl-strerror_r.patch │ └── template ├── ccls │ └── template ├── ccrypt │ ├── template │ └── update ├── ccsm │ ├── patches │ │ └── prefix.patch │ └── template ├── cd-discid │ └── template ├── cdb │ ├── patches │ │ ├── errno.patch │ │ └── makefile.patch │ ├── template │ └── update ├── cddlib-devel ├── cddlib │ └── template ├── cdecl │ ├── patches │ │ └── fix-reserved_keyword.patch │ ├── template │ └── update ├── cdemu-client │ └── template ├── cdemu-daemon │ └── template ├── cdetect │ └── template ├── cdm │ ├── patches │ │ └── fix-bashisms.patch │ └── template ├── cdogs-sdl │ └── template ├── cdparanoia │ ├── patches │ │ ├── autoconf-init-ac_cv_objext.patch │ │ ├── byteswap-null-check.diff │ │ ├── gcc.diff │ │ ├── makefile.in-install.patch │ │ └── musl.patch │ ├── template │ └── update ├── cdrdao │ ├── patches │ │ └── fix-uninitialized-toc-file-name.patch │ └── template ├── cdrskin ├── cdrtools ├── cec-client ├── cegui-devel ├── cegui-doc ├── cegui │ ├── files │ │ └── FindOpenGLES.cmake │ ├── patches │ │ ├── fix-ccache-rule.patch │ │ ├── fix-libxml2-2.12.patch │ │ └── musl_execinfo.patch │ ├── template │ └── update ├── celestia-glut │ ├── patches │ │ ├── NULL_notdecleared.patch │ │ ├── Z_BEST_COMPRESSION.patch │ │ ├── fix-stdint_redefine.patch │ │ ├── memcpy_notdecleared.patch │ │ └── missing_mathlib.patch │ ├── template │ └── update ├── celluloid │ └── template ├── celt-devel ├── celt │ └── template ├── cereal │ └── template ├── ceres-solver-devel ├── ceres-solver │ └── template ├── certbot-apache │ └── template ├── certbot-nginx │ └── template ├── certbot │ └── template ├── cfitsio-devel ├── cfitsio │ ├── patches │ │ └── restore_gethostbyname_declaration.patch │ ├── template │ └── update ├── cflow │ └── template ├── cfm │ └── template ├── cfssl │ └── template ├── cgal-devel ├── cgal │ ├── template │ └── update ├── cgdb │ └── template ├── cgit │ ├── template │ └── update ├── cglm │ └── template ├── cgo │ └── template ├── cgrep │ └── template ├── cgrps │ └── template ├── chafa-devel ├── chafa │ └── template ├── chars │ └── template ├── chathistorysync │ └── template ├── chatterino2 │ ├── patches │ │ └── cmake.patch │ ├── template │ └── update ├── chatty │ ├── files │ │ ├── chatty │ │ └── chatty.desktop │ ├── patches │ │ ├── config_dir.patch │ │ └── disable_version_check.patch │ └── template ├── chayang │ └── template ├── cheat │ └── template ├── check-devel ├── check │ └── template ├── checkbashisms │ ├── template │ └── update ├── checksec │ └── template ├── cheese-devel ├── cheese │ ├── patches │ │ ├── gcc14.patch │ │ └── invalid-json.patch │ └── template ├── chelf │ └── template ├── cherry-font │ └── template ├── cherrytree │ └── template ├── chess-tui │ └── template ├── chessx │ └── template ├── chez-scheme │ └── template ├── chezmoi │ └── template ├── chibi-scheme-devel ├── chibi-scheme │ └── template ├── chicken-devel ├── chicken │ └── template ├── chirp │ └── template ├── chkrootkit │ ├── patches │ │ ├── fcntl.patch │ │ └── path_max.patch │ └── template ├── chmlib │ ├── patches │ │ ├── aarch64-ppc64-aarch64.patch │ │ └── arm-ppc-32.patch │ └── template ├── chntpw │ ├── template │ └── update ├── chocolate-doom │ └── template ├── choose │ └── template ├── choosenim │ └── template ├── choqok │ ├── patches │ │ └── ftbfs.patch │ └── template ├── chroma │ └── template ├── chromaprint-devel ├── chromaprint │ ├── patches │ │ └── ffmpeg5.patch │ └── template ├── chrome-gnome-shell ├── chromium-bsu │ └── template ├── chromium-widevine │ ├── INSTALL │ ├── REMOVE │ ├── files │ │ └── LICENSE │ ├── template │ └── update ├── chromium │ ├── files │ │ ├── chromium.sh │ │ └── musl-patches │ │ │ ├── libc++-musl.patch │ │ │ ├── musl-sandbox.patch │ │ │ └── no-res-ninit-nclose.patch │ ├── patches │ │ ├── aarch64-musl-no-memory-tagging.patch │ │ ├── angle-wayland-include.patch │ │ ├── chromium-117-string-convert.patch │ │ ├── chromium-119-fix-aarch64-musl.patch │ │ ├── chromium-124-iwyu-sys-select-dawn-terminal.patch │ │ ├── chromium-126-split-threshold-for-reg-with-hint.patch │ │ ├── chromium-130-hardware_destructive_interference_size.patch │ │ ├── chromium-138-fix-rust-1.88.0.patch │ │ ├── chromium-138-musl-toolchain.patch │ │ ├── chromium-138-rust-clang_lib.patch │ │ ├── chromium-138-rust-musl-targets.patch │ │ ├── chromium-revert-drop-of-system-java.patch │ │ ├── chromium-system-nodejs.patch │ │ ├── cr138-musl-gtk-serinfo.patch │ │ ├── cr138-node-version-check.patch │ │ ├── cross-build.patch │ │ ├── fc-cache-version.patch │ │ ├── fix-aarch64-musl-memory-tagging-macros.patch │ │ ├── fix-argument_spec-isnan-isinf.patch │ │ ├── fix-missing-TEMP_FAILURE_RETRY-macro.patch │ │ ├── fix-missing-cstdint-include-musl.patch │ │ ├── fix-musl-missing-unistd_h-include.patch │ │ ├── fix-perfetto-GetThreadName-musl.patch │ │ ├── fix-swiftshader-llvm-musl-config.patch │ │ ├── libc_malloc.patch │ │ ├── llvm19.patch │ │ ├── musl-no-execinfo.patch │ │ ├── musl-no-mallinfo.patch │ │ ├── musl-no-sandbox-settls.patch │ │ ├── musl-partition-atfork.patch │ │ ├── musl-tid-caching.patch │ │ ├── no-getcontext.patch │ │ ├── node-do-not-check-version.patch │ │ ├── reenable-linux-i686-builds.patch │ │ ├── remove-sys-cdefs-includes.patch │ │ ├── revert-rust-Zdefault-visibility.patch │ │ ├── sandbox-membarrier.patch │ │ ├── sndio.patch │ │ ├── systypes.patch │ │ ├── unbundled-cross-toolchain.patch │ │ └── webrtc-size_t.patch │ ├── template │ └── update ├── chrono-date-devel ├── chrono-date │ ├── patches │ │ ├── 538_output_date_pc_for_pkg_config.patch │ │ ├── disable_buggy_libstdc++_tests.patch │ │ ├── get_info.patch │ │ └── sys_info.patch │ └── template ├── chronograf │ ├── files │ │ └── chronograf │ │ │ └── run │ ├── patches │ │ ├── lmdb.patch │ │ └── noscripts.patch │ └── template ├── chrony │ ├── REMOVE │ ├── files │ │ └── chronyd │ │ │ └── run │ └── template ├── chrony_exporter │ ├── files │ │ └── chrony_exporter │ │ │ └── run │ └── template ├── chroot-bash │ ├── patches │ │ └── gcc14-termcap.patch │ └── template ├── chroot-distcc │ ├── patches │ │ ├── dcc_gcc_rewrite_fqn-avoid-heap-corruption.patch │ │ └── gcc-10.patch │ └── template ├── chroot-gawk │ ├── patches │ │ └── fix-str2wstr.patch │ ├── template │ └── update ├── chroot-git │ ├── template │ └── update ├── chroot-grep │ ├── patches │ │ └── efgrep-remove-warning.patch │ ├── template │ └── update ├── chroot-util-linux │ ├── template │ └── update ├── chrpath │ └── template ├── chuck │ ├── patches │ │ ├── musl-glob.patch │ │ ├── musl-limits_h.patch │ │ └── musl-termios_h.patch │ └── template ├── cifs-utils │ └── template ├── cinnamon-all ├── cinnamon-control-center-devel ├── cinnamon-control-center │ └── template ├── cinnamon-desktop-devel ├── cinnamon-desktop │ ├── files │ │ └── remove-gir.patch │ └── template ├── cinnamon-menus-devel ├── cinnamon-menus │ └── template ├── cinnamon-screensaver │ ├── files │ │ └── cinnamon-screensaver.pam │ └── template ├── cinnamon-session │ ├── patches │ │ └── timeout.patch │ └── template ├── cinnamon-settings-daemon-devel ├── cinnamon-settings-daemon │ └── template ├── cinnamon-translations │ └── template ├── cinnamon │ └── template ├── circadian │ ├── files │ │ └── circadian │ │ │ └── run │ └── template ├── circleci-cli │ └── template ├── citations │ └── template ├── cjs-devel ├── cjs │ ├── patches │ │ └── ignore-encoding-test.patch │ └── template ├── ck-devel ├── ck │ ├── patches │ │ ├── cross.patch │ │ └── ppc32.patch │ └── template ├── ckb-next │ ├── files │ │ └── ckb-next-daemon │ │ │ └── run │ └── template ├── ckbcomp ├── ckmame │ ├── patches │ │ ├── gnu_source.patch │ │ └── use-mkstemp.patch │ └── template ├── cksfv │ └── template ├── clac │ └── template ├── clamav-devel ├── clamav │ ├── INSTALL │ ├── REMOVE │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── clang ├── clang-analyzer ├── clang-analyzer17 ├── clang-analyzer18 ├── clang-analyzer19 ├── clang-tools-extra ├── clang-tools-extra17 ├── clang-tools-extra18 ├── clang-tools-extra19 ├── clang17 ├── clang17-devel ├── clang17-headers ├── clang18 ├── clang18-devel ├── clang18-headers ├── clang19 ├── clang19-devel ├── clang19-headers ├── clapper-devel ├── clapper-libs ├── clapper │ └── template ├── claws-mail-devel ├── claws-mail │ ├── template │ └── update ├── clazy │ ├── patches │ │ └── 0001-Replace-Find-scripts-with-llvm-clang-provided-cmake-.patch │ └── template ├── cld2-devel ├── cld2-full ├── cld2 │ └── template ├── cldr-emoji-annotation │ └── template ├── clearine │ └── template ├── clearlooks-phenix-darkpurpy-theme │ └── template ├── clementine │ └── template ├── clens │ └── template ├── clerk │ └── template ├── clevis │ └── template ├── cli-visualizer │ ├── files │ │ └── README.voidlinux │ ├── patches │ │ └── use-system-opt.patch │ └── template ├── clib │ ├── patches │ │ └── destdir.patch │ └── template ├── clickclack │ └── template ├── cliflux │ └── template ├── clifm │ └── template ├── clinfo │ ├── template │ └── update ├── clipgrab │ ├── files │ │ └── clipgrab.desktop │ └── template ├── cliphist │ └── template ├── clipit │ └── template ├── clipman │ └── template ├── clipmenu │ └── template ├── clipnotify │ └── template ├── clipped │ └── template ├── clipper-devel ├── clipper │ └── template ├── cliquer-devel ├── cliquer │ └── template ├── clisp │ └── template ├── clj-kondo │ └── template ├── cln-devel ├── cln │ ├── files │ │ ├── floatparam.h │ │ └── intparam.h │ ├── patches │ │ ├── musl.patch │ │ └── unused.patch │ └── template ├── cloak │ └── template ├── cloc │ └── template ├── clockspeed │ ├── files │ │ ├── NOTES │ │ ├── clockctl │ │ ├── clockspeed.conf │ │ ├── clockspeed │ │ │ ├── finish │ │ │ └── run │ │ ├── clockspeed_adjust │ │ │ ├── clock_adjust.sh │ │ │ └── run │ │ └── taiclockd │ │ │ └── run │ ├── patches │ │ ├── clockspeed-0.62.cross.patch │ │ └── clockspeed-0.62.errno.patch │ └── template ├── clog │ ├── patches │ │ └── musl-limits_h.patch │ ├── template │ └── update ├── clojure-lsp │ ├── patches │ │ └── remove-pgo.patch │ ├── template │ └── update ├── clojure │ └── template ├── cloog-devel ├── cloog │ ├── patches │ │ └── install-fix.patch │ └── template ├── cloud-guest-utils │ ├── files │ │ ├── 10-resize-root.sh │ │ ├── README.voidlinux │ │ └── growpart.default │ └── template ├── cloud-hypervisor │ └── template ├── cloud-image-utils ├── cloud-utils ├── cloud-utils-ec2metadata ├── cloudflared │ └── template ├── cloudfuse │ └── template ├── clsync │ ├── patches │ │ └── fix-cross.patch │ └── template ├── clthreads-devel ├── clthreads │ └── template ├── clucene-devel ├── clucene │ ├── patches │ │ ├── clucene-core-2.3.3.4-install_contribs_lib.patch │ │ ├── clucene-core-2.3.3.4-pkgconfig.patch │ │ ├── clucene-debug.patch │ │ ├── clucene-gcc-atomics.patch │ │ ├── clucene-multimap-put.patch │ │ ├── clucene-narrowing-conversions.patch │ │ ├── clucene-pthread.patch │ │ ├── clucene-warnings.patch │ │ ├── fix-cl_test.patch │ │ ├── fix-test.patch │ │ ├── fix_zlib_detections.diff │ │ └── multithreading.patch │ └── template ├── clustalo │ └── template ├── clustalw │ └── template ├── clutter-devel ├── clutter-gst3-devel ├── clutter-gst3 │ ├── template │ └── update ├── clutter-gtk-devel ├── clutter-gtk │ └── template ├── clutter │ ├── patches │ │ └── clutter-x11-startup-error.patch │ └── template ├── clxclient-devel ├── clxclient │ └── template ├── clyrics │ └── template ├── cmake-bootstrap │ ├── patches │ │ ├── no-cpack.patch │ │ ├── no-network.patch │ │ ├── no-run-cmake-bootstrap.patch │ │ └── not-needed.patch │ ├── template │ └── update ├── cmake-gui ├── cmake-language-server │ └── template ├── cmake-vala │ └── template ├── cmake │ ├── patches │ │ ├── ignore-crape-compiler-test.patch │ │ ├── musl-test.patch │ │ ├── no-license.patch │ │ └── not-found.patch │ ├── template │ └── update ├── cmakelang │ └── template ├── cmark-devel ├── cmark-gfm-devel ├── cmark-gfm │ ├── template │ └── update ├── cmark │ └── template ├── cmatrix │ ├── patches │ │ └── unicode.patch │ ├── template │ └── update ├── cmc │ └── template ├── cmdpack │ └── template ├── cmixer │ └── template ├── cmocka-devel ├── cmocka │ ├── patches │ │ └── wordsize.patch │ └── template ├── cmst │ └── template ├── cmt │ └── template ├── cmuclmtk │ └── template ├── cmus-cdio ├── cmus-faad ├── cmus-ffmpeg ├── cmus-flac ├── cmus-jack ├── cmus-libao ├── cmus-modplug ├── cmus-mpc ├── cmus-opus ├── cmus-oss ├── cmus-pulseaudio ├── cmus-sndio ├── cmus-wavpack ├── cmus │ └── template ├── cmusfm │ └── template ├── cni-plugin-dnsname │ └── template ├── cni-plugins │ └── template ├── cni │ └── template ├── cnijfilter2 │ ├── INSTALL │ ├── patches │ │ ├── include.patch │ │ └── libusb-flag.patch │ └── template ├── cnping │ ├── INSTALL │ └── template ├── cntlm │ ├── files │ │ └── cntlm │ │ │ └── run │ └── template ├── coWPAtty │ ├── template │ └── update ├── coccigrep │ ├── patches │ │ └── python3.12.patch │ └── template ├── coccinelle │ ├── patches │ │ └── python-3.13.patch │ ├── template │ └── update ├── cocogitto │ └── template ├── cod │ └── template ├── codeberg-cli │ └── template ├── codeblocks-devel ├── codeblocks │ ├── patches │ │ ├── 000.r11991.patch │ │ ├── 000.r12008.patch │ │ ├── 000.r12012.patch │ │ ├── 000.r12532.patch │ │ ├── 000.r12580.patch │ │ ├── 000.r12707.patch │ │ ├── codeblocks-gcc11.patch │ │ ├── correct-file-access.patch │ │ ├── cross-autorevision.patch │ │ ├── wx-3.2.patch │ │ └── wxwiget-3.1-regex-is-pcre.patch │ └── template ├── codec2-devel ├── codec2 │ ├── patches │ │ └── cross.patch │ └── template ├── codecrypt │ ├── patches │ │ └── cryptopp.patch │ └── template ├── codelite │ ├── patches │ │ ├── ctags-cross.patch │ │ ├── musl.patch │ │ ├── pango144.patch │ │ └── wx-master.patch │ └── template ├── codesearch │ └── template ├── coeurl-devel ├── coeurl │ ├── patches │ │ └── fix-build.diff │ └── template ├── cogl-devel ├── cogl │ └── template ├── coin3-devel ├── coin3-doc ├── coin3 │ └── template ├── collada-dom-devel ├── collada-dom │ ├── patches │ │ └── null.patch │ └── template ├── collectd-utils ├── collectd │ ├── files │ │ └── collectd │ │ │ └── run │ ├── patches │ │ ├── gnu_source.patch │ │ ├── python-3.11-more.patch │ │ └── python-3.11.patch │ └── template ├── collectl │ └── template ├── colobot-data │ ├── template │ └── update ├── colobot │ ├── patches │ │ └── xmlstarlet-binary-name.patch │ ├── template │ └── update ├── colord-devel ├── colord-gtk-devel ├── colord-gtk │ └── template ├── colord-kde │ └── template ├── colord │ ├── files │ │ └── colord │ │ │ └── run │ ├── patches │ │ └── use-host-utils.patch │ └── template ├── colordiff │ └── template ├── commoncpp2-devel ├── commoncpp2 │ ├── patches │ │ ├── applog.patch │ │ └── ftbfs.patch │ └── template ├── compiler-rt ├── compiler-rt17 ├── compiler-rt18 ├── compiler-rt19 ├── compiz-bcop │ └── template ├── compiz-core-devel ├── compiz-core │ ├── patches │ │ ├── gcc14.patch │ │ ├── librsvg-2.51.0.patch │ │ └── libxml2-2.12.patch │ └── template ├── compiz-plugins-experimental-devel ├── compiz-plugins-experimental │ └── template ├── compiz-plugins-extra-devel ├── compiz-plugins-extra │ └── template ├── compiz-plugins-main-devel ├── compiz-plugins-main │ └── template ├── compiz-reloaded │ └── template ├── compizconfig-python │ ├── patches │ │ └── automake.patch │ └── template ├── complexity │ └── template ├── composer ├── composer8.1 │ ├── files │ │ └── composer8.1 │ └── template ├── composer8.2 │ ├── files │ │ └── composer8.2 │ └── template ├── composer8.3 │ ├── files │ │ └── composer8.3 │ └── template ├── composer8.4 │ ├── files │ │ └── composer8.4 │ └── template ├── compsize │ └── template ├── compton ├── comrak │ └── template ├── conduit │ ├── files │ │ └── conduit │ │ │ └── run │ ├── patches │ │ └── config.patch │ └── template ├── configshell-fb │ └── template ├── confuse-devel ├── confuse │ └── template ├── conky-cli ├── conky │ ├── template │ └── update ├── conmon │ └── template ├── connman-devel ├── connman-gtk │ └── template ├── connman-ncurses │ ├── patches │ │ ├── cflags.patch │ │ ├── check-null.patch │ │ └── lowercase-boolean.patch │ └── template ├── connman-ui │ └── template ├── connman │ ├── INSTALL.msg │ ├── files │ │ ├── connmand.conf │ │ ├── connmand │ │ │ └── run │ │ └── musl │ │ │ └── libresolv.patch │ ├── patches │ │ └── musl.patch │ └── template ├── conntrack-tools │ └── template ├── console-setup │ ├── patches │ │ └── config.patch │ └── template ├── conspy │ └── template ├── consul-template │ └── template ├── consul │ ├── files │ │ └── consul │ │ │ └── run │ └── template ├── containerd │ ├── files │ │ └── containerd │ │ │ └── run │ └── template ├── containers-common │ └── template ├── containers.image │ └── template ├── containers.storage │ └── template ├── containers │ └── template ├── contour-shell-integration ├── contour-terminfo ├── contour │ ├── patches │ │ └── 0000-phtread_musl.patch │ └── template ├── contractor │ └── template ├── convmv │ └── template ├── cookiecutter │ └── template ├── cool-retro-term │ └── template ├── coreboot-utils-me_cleaner ├── coreboot-utils │ ├── template │ └── update ├── corecollector-devel ├── corecollector │ ├── patches │ │ └── fix-build-phobos-2-101.patch │ └── template ├── corectrl │ └── template ├── coredns │ ├── files │ │ ├── Corefile │ │ └── coredns │ │ │ └── run │ └── template ├── coreutils │ ├── patches │ │ └── split.patch │ └── template ├── corkscrew │ └── template ├── corrosion │ └── template ├── coturn-devel ├── coturn │ ├── INSTALL │ ├── files │ │ └── coturnserver │ │ │ └── run │ └── template ├── courier-unicode-devel ├── courier-unicode │ ├── template │ └── update ├── coursera-dl │ ├── patches │ │ └── fix-upstream-issue-778.patch │ ├── template │ └── update ├── cowsay-temoc │ └── template ├── cowsay │ ├── template │ └── update ├── cowsql-devel ├── cowsql │ └── template ├── cowyo │ └── template ├── coyim │ └── template ├── cozy │ └── template ├── cpanminus │ ├── template │ └── update ├── cparser │ └── template ├── cpat │ └── template ├── cpio │ └── template ├── cpmtools │ └── template ├── cpp-hocon-devel ├── cpp-hocon │ └── template ├── cpp-utilities-devel ├── cpp-utilities │ └── template ├── cppcheck-gui ├── cppcheck │ ├── patches │ │ ├── musl-no-feenableexcept.patch │ │ └── translations-location.patch │ └── template ├── cppcms │ ├── patches │ │ └── python3.patch │ ├── template │ └── update ├── cppcodec │ ├── patches │ │ └── new-catch2.patch │ └── template ├── cppdap-devel ├── cppdap │ ├── patches │ │ ├── gtest.patch │ │ └── no-freeaddrinfo-null.patch │ └── template ├── cppdb-devel ├── cppdb │ └── template ├── cppman │ └── template ├── cpptest-devel ├── cpptest │ └── template ├── cpputest │ └── template ├── cppzmq │ └── template ├── cproto │ └── template ├── cpu_features-devel ├── cpu_features │ └── template ├── cpuburn-a53 │ └── template ├── cpuburn │ ├── patches │ │ ├── 01-variables.patch │ │ └── 02-m32.patch │ ├── template │ └── update ├── cpufetch │ └── template ├── cpufrequtils │ └── template ├── cpuid │ ├── template │ └── update ├── cpuinfo │ └── template ├── cpulimit │ ├── patches │ │ ├── basename.patch │ │ ├── define_gnu_source.patch │ │ ├── ifdef.patch │ │ └── musl_sysctl.patch │ └── template ├── cpupower ├── cpuset │ └── template ├── cqrlog │ └── template ├── crack-attack │ └── template ├── cracklib-devel ├── cracklib │ ├── INSTALL │ ├── REMOVE │ ├── template │ └── update ├── crane │ └── template ├── crash │ └── template ├── crawl-tiles │ └── template ├── crawl │ └── template ├── create_ap │ └── template ├── crex │ ├── patches │ │ └── fix-cflags.patch │ └── template ├── cri-o-devel ├── cri-o │ └── template ├── cri-tools │ └── template ├── crimson │ └── template ├── crispy-doom │ └── template ├── criu-devel ├── criu-python ├── criu │ ├── files │ │ └── criu │ │ │ └── run │ ├── patches │ │ ├── aarch64-musl.patch │ │ ├── capsetget.patch │ │ ├── ppc64-musl.patch │ │ └── sigev-musl.patch │ └── template ├── croc │ └── template ├── cronie │ ├── files │ │ ├── anacron │ │ ├── crond.pam │ │ └── cronie │ │ │ ├── log │ │ │ └── run │ │ │ └── run │ └── template ├── cronutils │ ├── template │ └── update ├── cropgui │ └── template ├── cross-aarch64-linux-gnu-libc ├── cross-aarch64-linux-gnu │ └── template ├── cross-aarch64-linux-musl-libc ├── cross-aarch64-linux-musl │ └── template ├── cross-arm-linux-gnueabi-libc ├── cross-arm-linux-gnueabi │ └── template ├── cross-arm-linux-gnueabihf-libc ├── cross-arm-linux-gnueabihf │ └── template ├── cross-arm-linux-musleabi-libc ├── cross-arm-linux-musleabi │ └── template ├── cross-arm-linux-musleabihf-libc ├── cross-arm-linux-musleabihf │ └── template ├── cross-arm-none-eabi-binutils │ └── template ├── cross-arm-none-eabi-gcc │ └── template ├── cross-arm-none-eabi-gdb │ ├── patches │ │ └── gdb-mips-linux-nat.patch │ └── template ├── cross-arm-none-eabi-libstdc++ │ └── template ├── cross-arm-none-eabi-newlib │ └── template ├── cross-arm-none-eabi │ └── template ├── cross-armv7l-linux-gnueabihf-libc ├── cross-armv7l-linux-gnueabihf │ └── template ├── cross-armv7l-linux-musleabihf-libc ├── cross-armv7l-linux-musleabihf │ └── template ├── cross-bpf-binutils │ └── template ├── cross-bpf-gcc │ └── template ├── cross-i686-linux-musl-libc ├── cross-i686-linux-musl │ └── template ├── cross-i686-pc-linux-gnu-libc ├── cross-i686-pc-linux-gnu │ └── template ├── cross-i686-w64-mingw32 ├── cross-i686-w64-mingw32-crt ├── cross-mips-linux-musl-libc ├── cross-mips-linux-musl │ └── template ├── cross-mips-linux-muslhf-libc ├── cross-mips-linux-muslhf │ └── template ├── cross-mipsel-linux-musl-libc ├── cross-mipsel-linux-musl │ └── template ├── cross-mipsel-linux-muslhf-libc ├── cross-mipsel-linux-muslhf │ └── template ├── cross-or1k-none-elf-binutils │ └── template ├── cross-or1k-none-elf-gcc │ └── template ├── cross-powerpc-linux-gnu-libc ├── cross-powerpc-linux-gnu │ └── template ├── cross-powerpc-linux-musl-libc ├── cross-powerpc-linux-musl │ └── template ├── cross-powerpc64-linux-gnu-libc ├── cross-powerpc64-linux-gnu │ └── template ├── cross-powerpc64-linux-musl-libc ├── cross-powerpc64-linux-musl │ └── template ├── cross-powerpc64le-linux-gnu-libc ├── cross-powerpc64le-linux-gnu │ └── template ├── cross-powerpc64le-linux-musl-libc ├── cross-powerpc64le-linux-musl │ └── template ├── cross-powerpcle-linux-gnu-libc ├── cross-powerpcle-linux-gnu │ └── template ├── cross-powerpcle-linux-musl-libc ├── cross-powerpcle-linux-musl │ └── template ├── cross-riscv64-linux-gnu-libc ├── cross-riscv64-linux-gnu │ └── template ├── cross-riscv64-linux-musl-libc ├── cross-riscv64-linux-musl │ ├── files │ │ ├── fix-cxxflags-passing.patch │ │ ├── libgnarl-musl.patch │ │ └── musl-ada.patch │ └── template ├── cross-vpkg-dummy │ └── template ├── cross-x86_64-linux-gnu-libc ├── cross-x86_64-linux-gnu │ └── template ├── cross-x86_64-linux-musl-libc ├── cross-x86_64-linux-musl │ └── template ├── cross-x86_64-w64-mingw32-crt ├── cross-x86_64-w64-mingw32 │ └── template ├── cross-x86_64-w64-mingw32ucrt ├── cross-x86_64-w64-mingw32ucrt-crt ├── crossguid │ ├── fix-cflags.patch │ ├── patches │ │ └── no-O3.patch │ └── template ├── crud │ └── template ├── crun │ └── template ├── cryfs │ ├── patches │ │ ├── 0001-allow-cmake-DCMAKE_BUILD_TYPE-None-for-void.patch │ │ └── 0002-de-vendor-crypto-for-void.patch │ └── template ├── crypto++-devel ├── crypto++ │ ├── patches │ │ └── musl-soname-links.patch │ ├── template │ └── update ├── cryptsetup-devel ├── cryptsetup-static ├── cryptsetup │ └── template ├── cscope │ └── template ├── csound │ ├── files │ │ └── csound.sh │ ├── patches │ │ └── arm.patch │ └── template ├── csvcut │ └── template ├── csync2 │ ├── patches │ │ ├── CVE-2019-15522.patch │ │ └── musl-strlcpy.patch │ └── template ├── ctags │ ├── patches │ │ └── disable-check-genfile.patch │ ├── template │ └── update ├── ctop │ └── template ├── ctpl-devel ├── ctpl │ └── template ├── ctwm │ └── template ├── ctzcls-cups │ └── template ├── cuetools │ ├── patches │ │ └── unicode.diff │ └── template ├── culmus │ └── template ├── cups-browsed │ ├── files │ │ └── cups-browsed │ │ │ └── run │ └── template ├── cups-devel ├── cups-filters │ ├── INSTALL │ ├── INSTALL.msg │ └── template ├── cups-pdf │ ├── patches │ │ └── print-to-home.patch │ └── template ├── cups-pk-helper │ └── template ├── cups │ ├── INSTALL │ ├── files │ │ ├── client.conf │ │ ├── cups.pam │ │ └── cupsd │ │ │ └── run │ ├── libcups.INSTALL │ └── template ├── curl │ └── template ├── curlftpfs │ ├── patches │ │ ├── curlftpfs-0.9.2-create-fix.patch │ │ ├── curlftpfs-0.9.2-memleak#591298.patch │ │ ├── curlftpfs-0.9.2-memleak-cached#591299.patch │ │ ├── curlftpfs-0.9.2-offset_64_another.patch │ │ └── fix-musl.patch │ └── template ├── curlpp-devel ├── curlpp │ └── template ├── curseradio │ └── template ├── cutechess-cli ├── cutechess-gui │ └── template ├── cutecom │ ├── patches │ │ └── QPainterPath.patch │ └── template ├── cutemarked │ ├── patches │ │ └── compatibilities.patch │ └── template ├── cutter-devel ├── cutter │ └── template ├── cvm-devel ├── cvm │ └── template ├── cvs │ ├── patches │ │ ├── CVE-2012-0804.patch │ │ ├── autoconf.patch │ │ ├── no-krb.patch │ │ ├── openat.patch │ │ ├── ssh.patch │ │ └── vasnprintf.diff │ ├── template │ └── update ├── cvsps2 │ ├── patches │ │ └── inet_addr-64bit.patch │ ├── template │ └── update ├── cwm │ └── template ├── cxxopts │ └── template ├── cyanrip │ └── template ├── cyrus-sasl-modules ├── cyrus-sasl-modules-gssapi ├── cyrus-sasl-modules-ldap ├── cyrus-sasl-modules-sql ├── cyrus-sasl-xoauth2 │ └── template ├── cyrus-sasl │ ├── patches │ └── template ├── czkawka │ └── template ├── czmq-devel ├── czmq │ └── template ├── d-feet │ ├── patches │ │ └── meson-0.61.patch │ └── template ├── d-spy-devel ├── d-spy │ └── template ├── d2 │ └── template ├── dadadodo │ └── template ├── daemonize │ ├── template │ └── update ├── daemontools │ ├── patches │ │ ├── daemontools-0.76.cross.patch │ │ └── daemontools-0.76.errno.patch │ ├── template │ └── update ├── dante │ ├── patches │ │ ├── 0002-osdep-m4-Remove-getaddrinfo-too-low-checks.patch │ │ └── ppc.patch │ └── template ├── dar │ └── template ├── darch │ ├── template │ └── update ├── darcs │ ├── files │ │ └── stack.yaml │ ├── template │ └── update ├── darkhttpd │ ├── files │ │ └── darkhttpd │ │ │ └── run │ └── template ├── darkice │ └── template ├── darkman │ └── template ├── darkplaces │ ├── files │ │ ├── README.voidlinux │ │ └── darkplaces.desktop │ ├── patches │ │ ├── alignment.patch │ │ └── musl.patch │ └── template ├── darktable │ ├── patches │ │ ├── cmake-build-type-none.patch │ │ └── ec6b2d2194963f5f17df136b490b6d21c34cc503.patch │ ├── template │ └── update ├── darktile │ └── template ├── dasel │ └── template ├── dash-libedit ├── dash │ ├── patches │ │ └── 0005-SHELL-Disable-sh-c-command-sh-c-exec-command-optimiza.diff │ ├── template │ └── update ├── dasm │ └── template ├── datamash │ ├── patches │ │ └── musl-tests.patch │ └── template ├── dateutils │ └── template ├── datovka │ └── template ├── dav │ ├── template │ └── update ├── dav1d │ └── template ├── davfs2 │ ├── patches │ │ ├── 010-main_code_fix.patch │ │ └── 100-musl-compat.patch │ └── template ├── davmail │ ├── template │ └── update ├── db-devel ├── db-doc ├── db │ ├── patches │ │ ├── gcc-atomic_compare_exchange.patch │ │ └── time64.patch │ ├── template │ └── update ├── dbeaver │ ├── files │ │ └── dbeaver.desktop │ ├── patches │ │ ├── 0001-dbeaver-dbeaver-38521-Apache-Ant-version-increment-3.patch │ │ └── force-jdk21.patch │ └── template ├── dbus-devel ├── dbus-elogind-libs ├── dbus-elogind-x11 ├── dbus-elogind │ └── template ├── dbus-glib-devel ├── dbus-glib │ ├── patches │ │ └── fix-build.patch │ └── template ├── dbus-libs ├── dbus-test-runner-devel ├── dbus-test-runner │ └── template ├── dbus-x11 ├── dbus │ ├── INSTALL │ ├── files │ │ └── dbus │ │ │ ├── check │ │ │ └── run │ ├── template │ └── update ├── dcadec-devel ├── dcadec │ └── template ├── dcfldd │ └── template ├── dclock │ └── template ├── dconf-devel ├── dconf-editor │ └── template ├── dconf │ └── template ├── dcraw │ ├── patches │ │ └── add-missing-locale_h-include.patch │ └── template ├── dcron │ ├── files │ │ └── dcron │ │ │ └── run │ ├── patches │ │ └── respect_cflags_and_ldflags.patch │ └── template ├── ddate │ └── template ├── ddcci-dkms │ ├── patches │ │ ├── linux-6.2.diff │ │ ├── linux-6.3.diff │ │ └── linux-6.4.diff │ ├── template │ └── update ├── ddclient │ ├── files │ │ └── ddclient │ │ │ └── run │ └── template ├── ddcutil-devel ├── ddcutil │ └── template ├── ddd │ └── template ├── ddgr │ └── template ├── ddgtk │ ├── fix-gtk-icon.patch │ ├── patches │ │ └── 001-changes-for-v0.1.patch │ └── template ├── ddpt │ ├── template │ └── update ├── ddrescue │ └── template ├── deadbeef-devel ├── deadbeef-fb │ ├── patches │ │ └── my-errno.patch │ ├── template │ └── update ├── deadbeef-waveform-seekbar │ └── template ├── deadbeef │ ├── patches │ │ ├── musl_strdupa.patch │ │ ├── patch_skip_glade_translations.patch │ │ └── ppc-musl.patch │ └── template ├── debootstrap │ ├── template │ └── update ├── debug-me │ ├── files │ │ └── stack.yaml │ ├── template │ └── update ├── debugedit │ └── template ├── debuginfod ├── decibels │ └── template ├── dedup │ ├── template │ └── update ├── deepfilternet-ladspa │ └── template ├── deerportal-data ├── deerportal │ └── template ├── deheader │ └── template ├── dehydrated │ └── template ├── deja-dup │ └── template ├── dejagnu │ └── template ├── dejavu-fonts-ttf │ ├── INSTALL │ ├── REMOVE │ └── template ├── delta │ └── template ├── deluge-gtk ├── deluge-web ├── deluge │ ├── files │ │ ├── deluge-web │ │ │ └── run │ │ └── deluged │ │ │ └── run │ └── template ├── delve │ └── template ├── dendrite │ ├── files │ │ └── dendrite-monolith-server │ │ │ └── run │ └── template ├── dep │ └── template ├── desed │ └── template ├── desktop-file-utils │ ├── INSTALL │ ├── REMOVE │ └── template ├── desmume │ ├── patches │ │ └── aarch64.patch │ ├── template │ └── update ├── detox │ └── template ├── deutex │ ├── template │ └── update ├── dev86 │ ├── template │ └── update ├── devedeng │ └── template ├── devhelp-devel ├── devhelp-libs ├── devhelp │ └── template ├── device-mapper ├── device-mapper-devel ├── devil-devel ├── devil │ ├── patches │ │ ├── fix-mips-variable.patch │ │ ├── fix-solib-versions.patch │ │ └── jasper-2.0.17.patch │ ├── template │ └── update ├── devilspie2 │ └── template ├── devilutionX │ ├── patches │ │ └── disable_test.patch │ └── template ├── dex │ └── template ├── dfc │ └── template ├── dfu-programmer │ ├── template │ └── update ├── dfu-util │ └── template ├── dgen-sdl │ └── template ├── dhclient ├── dhcp-helper │ └── template ├── dhcp │ ├── files │ │ ├── dhclient │ │ │ └── run │ │ ├── dhcpd4 │ │ │ └── run │ │ └── dhcpd6 │ │ │ └── run │ ├── patches │ │ ├── 0002-iproute2.patch │ │ ├── dhcp-3.0-fix-perms.patch │ │ └── fix-includes.patch │ ├── template │ └── update ├── dhcpcd-gtk │ └── template ├── dhcpcd-icons ├── dhcpcd-qt │ ├── template │ └── update ├── dhcpcd │ ├── files │ │ ├── dhcpcd-eth0 │ │ │ └── run │ │ └── dhcpcd │ │ │ └── run │ └── template ├── dhcping │ └── template ├── dhewm3 │ ├── files │ │ └── README.voidlinux │ ├── patches │ │ └── musl-temp_failure_retry.patch │ └── template ├── dhex │ └── template ├── di │ └── template ├── dia │ ├── patches │ │ ├── gcc14.patch │ │ └── isinf.patch │ └── template ├── dialog │ ├── template │ └── update ├── dialogbox │ ├── patches │ │ ├── fix-cxx11-string_literals.patch │ │ ├── fix-missing_headers.patch │ │ └── fix-qt_add_widgets.patch │ └── template ├── dict ├── dictd │ ├── files │ │ ├── colorit.conf │ │ ├── dict.conf │ │ ├── dictd.conf │ │ ├── dictd.xinetd │ │ ├── dictd │ │ │ └── run │ │ └── site.info │ └── template ├── diction │ └── template ├── dieharder-devel ├── dieharder │ ├── patches │ │ └── stdint.patch │ └── template ├── diff-pdf │ └── template ├── diffoscope │ └── template ├── diffr │ └── template ├── diffstat │ └── template ├── difftastic │ └── template ├── diffuse │ └── template ├── diffutils │ └── template ├── digikam │ ├── patches │ │ └── qstring.patch │ └── template ├── dijo │ └── template ├── dillo │ └── template ├── dina-font │ ├── template │ └── update ├── ding-libs-devel ├── ding-libs │ └── template ├── ding │ └── template ├── dinit │ └── template ├── dino │ └── template ├── diod │ ├── files │ │ └── diod │ │ │ └── run │ ├── patches │ │ └── fix-ftbfs.patch │ └── template ├── direnv │ └── template ├── direwolf │ ├── patches │ │ ├── disable-arm32-neon.patch │ │ ├── fix_desktop.patch │ │ ├── fix_scripts_install.patch │ │ └── fix_udev_install.patch │ └── template ├── dirstalk │ └── template ├── discord-ptb │ ├── INSTALL.msg │ ├── files │ │ └── LICENSE │ ├── patches │ │ └── discord-ptb.desktop.patch │ ├── template │ └── update ├── discord │ ├── files │ │ └── LICENSE │ ├── patches │ │ └── discord.desktop.patch │ ├── template │ └── update ├── discount-devel ├── discount │ ├── patches │ │ ├── cross-configure_inc.patch │ │ └── cross-makefile_in.patch │ ├── template │ └── update ├── discover │ └── template ├── disklow │ └── template ├── diskonaut │ └── template ├── diskscan │ └── template ├── diskus │ └── template ├── dislocker │ ├── patches │ │ ├── cross.patch │ │ ├── fix-cflags.patch │ │ └── mbedtls3.patch │ └── template ├── disorderfs │ ├── template │ └── update ├── dispcalGUI ├── disputils │ └── template ├── distcc-pump ├── distcc │ ├── files │ │ └── distccd │ │ │ └── run │ ├── patches │ │ ├── dcc_gcc_rewrite_fqn-avoid-heap-corruption.patch │ │ ├── gcc-10.patch │ │ └── python-3.9.patch │ └── template ├── distrobuilder │ └── template ├── ditaa │ └── template ├── dive │ └── template ├── djview │ ├── patches │ │ ├── keep-debug-symbol.patch │ │ └── sane-qmake-query.patch │ └── template ├── djvulibre-devel ├── djvulibre │ └── template ├── dk │ └── template ├── dkimproxy │ ├── files │ │ ├── dkimproxy_in │ │ │ └── run │ │ └── dkimproxy_out │ │ │ └── run │ └── template ├── dkms │ ├── files │ │ ├── dkms.default │ │ └── kernel.d │ │ │ ├── dkms.postinst │ │ │ └── dkms.prerm │ └── template ├── dlayer │ └── template ├── dlib-devel ├── dlib │ ├── patches │ │ └── pybind11cmake.patch │ └── template ├── dm-zoned-tools │ └── template ├── dma │ ├── INSTALL │ ├── patches │ │ └── musl_getprogname.patch │ └── template ├── dmd-bootstrap │ ├── files │ │ ├── musl-math.patch │ │ └── musl.patch │ ├── patches │ │ └── pic.patch │ └── template ├── dmd-doc ├── dmd │ ├── files │ │ ├── dmd.conf │ │ └── musl.patch │ └── template ├── dmd2.081-doc ├── dmd2.081 │ ├── files │ │ ├── dmd.conf │ │ └── musl.patch │ ├── patches │ │ └── backport-ld-exit.patch │ └── template ├── dmd2.091 │ ├── files │ │ └── dmd.conf │ ├── patches │ │ └── backport-ld-exit.patch │ └── template ├── dmenu-wayland │ └── template ├── dmenu │ └── template ├── dmg2img │ ├── patches │ │ └── 0001-openssl-1.1-compatibility.patch │ └── template ├── dmidecode │ └── template ├── dmraid-devel ├── dmraid │ ├── patches │ │ ├── 001-do_not_use_p_for_partition.patch │ │ ├── 002-support_virtio_devices.patch │ │ ├── 003-isw-probe-hpa.patch │ │ ├── 004-activate_multiple_raid_sets.patch │ │ ├── 005-fix_isw_sectors_calculation.patch │ │ ├── 006-musl-libc.patch │ │ └── 007-fix-loff_t-musl.patch │ ├── template │ └── update ├── dmtx-utils │ ├── patches │ │ ├── fix-compiler-warnings.patch │ │ ├── fix-getopt_check.patch │ │ └── pkg-config.patch │ └── template ├── dnscrypt-proxy │ ├── INSTALL.msg │ ├── files │ │ └── dnscrypt-proxy │ │ │ └── run │ └── template ├── dnsdist │ ├── files │ │ └── dnsdist │ │ │ └── run │ ├── template │ └── update ├── dnsmap │ └── template ├── dnsmasq │ ├── files │ │ ├── dbus.conf │ │ └── dnsmasq │ │ │ └── run │ └── template ├── dnsrecon │ ├── patches │ │ └── python3-compat.patch │ └── template ├── dnssec-anchors │ ├── files │ │ └── root.key │ └── template ├── dnstracer │ └── template ├── docbook-dsssl │ ├── template │ └── update ├── docbook-xml │ └── template ├── docbook-xsl-ns │ ├── patches │ │ └── catalog-compat.patch │ └── template ├── docbook-xsl │ ├── patches │ │ ├── 0001_non-recursive_string_subst.patch │ │ ├── 0002_docbook-xsl-mandir.patch │ │ └── 0003_catalog.xml-Compatibility-with-1.79.1-or-earlier.patch │ └── template ├── docbook │ ├── files │ │ ├── catalog241 │ │ ├── catalog30 │ │ ├── catalog31 │ │ ├── catalog40 │ │ ├── catalog41 │ │ ├── catalog42 │ │ ├── catalog43 │ │ ├── catalog44 │ │ └── catalog45 │ └── template ├── docbook2mdoc │ ├── patches │ │ └── Makefile.patch │ ├── template │ └── update ├── docbook2x │ ├── patches │ │ └── docbook2x_0.8.8-8.diff.gz │ └── template ├── docker ├── docker-buildx │ └── template ├── docker-cli │ └── template ├── docker-compose │ └── template ├── docker-credential-pass │ └── template ├── docker-gc │ └── template ├── docker-gen │ └── template ├── docker-machine-driver-kvm │ └── template ├── docker-machine-driver-kvm2 ├── docker-machine │ └── template ├── docopt.cpp-devel ├── docopt.cpp │ └── template ├── doctest-devel ├── doctest │ └── template ├── doctl │ └── template ├── docx2txt │ └── template ├── doggo │ └── template ├── dolphin-emu │ ├── patches │ │ └── musl-cstdint.patch │ └── template ├── dolphin-plugins │ └── template ├── dolphin │ └── template ├── domain_exporter │ └── template ├── dooble │ ├── patches │ │ ├── dictionaries.patch │ │ ├── translations-dooble_application.patch │ │ └── translations-dooble_settings.patch │ └── template ├── dool │ └── template ├── doom3 │ ├── files │ │ ├── README.voidlinux │ │ ├── doom3-dedicated.launcher │ │ ├── doom3.desktop │ │ └── doom3.launcher │ └── template ├── doomretro │ └── template ├── dos2unix │ └── template ├── dosbox-staging │ └── template ├── dosbox │ ├── files │ │ ├── dosbox.desktop │ │ └── dosbox.png │ ├── template │ └── update ├── dosfstools │ └── template ├── dot-xsession │ ├── files │ │ ├── dot-xsession │ │ └── dot-xsession.desktop │ └── template ├── dotconf-devel ├── dotconf │ └── template ├── dotherside-devel ├── dotherside │ └── template ├── dotool │ ├── files │ │ └── dotoold │ │ │ └── run │ └── template ├── double-conversion-devel ├── double-conversion │ └── template ├── dovecot-devel ├── dovecot-plugin-flatcurve ├── dovecot-plugin-ldap ├── dovecot-plugin-mysql ├── dovecot-plugin-pgsql ├── dovecot-plugin-pigeonhole-devel ├── dovecot-plugin-pigeonhole-ldap ├── dovecot-plugin-pigeonhole │ ├── template │ └── update ├── dovecot-plugin-sqlite ├── dovecot │ ├── files │ │ └── dovecot │ │ │ └── run │ ├── patches │ │ ├── mkcert-ssldir.patch │ │ ├── musl.patch │ │ ├── sort-order.patch │ │ └── system-account.patch │ └── template ├── downloader-cli │ ├── template │ └── update ├── doxygen │ ├── template │ └── update ├── dpdk-devel ├── dpdk-dkms ├── dpdk-doc ├── dpdk │ ├── files │ │ ├── dkms_igb_uio.conf │ │ └── dkms_rte_kni.conf │ ├── patches │ │ ├── arm.patch │ │ └── sphinx-4.0.patch │ └── template ├── dpkg-devel ├── dpkg │ └── template ├── dpp-devel ├── dpp │ ├── patches │ │ └── fix_ctime.diff │ ├── template │ └── update ├── dq │ ├── files │ │ ├── CACHESIZE │ │ ├── IP │ │ ├── ROOT │ │ └── dqcache │ │ │ └── run │ ├── template │ └── update ├── dqlite-devel ├── dqlite │ └── template ├── draco-devel ├── draco │ └── template ├── dracut-crypt-ssh │ └── template ├── dracut-network ├── dracut-uefi ├── dracut │ ├── dracut-uefi.INSTALL.msg │ ├── files │ │ ├── dracut-uefi-hook.confd │ │ ├── kernel-hook-postinst │ │ ├── kernel-hook-postrm │ │ ├── kernel-uefi-hook-postinst │ │ └── kernel-uefi-hook-postrm │ ├── patches │ │ ├── plymouth-udev-seat.patch │ │ └── revert-fw_devlink.patch │ └── template ├── dragon-player │ ├── template │ └── update ├── dragon │ └── template ├── drawterm │ ├── patches │ │ ├── gui_x11_Makefile_fix.patch │ │ ├── gui_x11_thirdbutton.patch │ │ └── posix_generic.patch │ └── template ├── drbd-utils │ ├── files │ │ └── drbd │ │ │ ├── finish │ │ │ └── run │ ├── patches │ │ └── ftbfs.patch │ ├── template │ └── update ├── dreamchess │ └── template ├── drive │ └── template ├── drivestrike │ ├── files │ │ ├── LICENSE │ │ └── drivestrike │ │ │ └── run │ ├── template │ └── update ├── drkonqi │ └── template ├── drm_info │ └── template ├── droidcam-obs-plugin │ └── template ├── droidcam │ └── template ├── drone-cli │ └── template ├── dropbear │ ├── files │ │ └── dropbear │ │ │ └── run │ ├── patches │ │ └── test-without-pip.patch │ └── template ├── dropbox │ ├── template │ └── update ├── drumkv1 │ └── template ├── drumstick-devel ├── drumstick │ └── template ├── dsda-doom │ ├── patches │ │ └── affinity-hack.patch │ └── template ├── dsh │ ├── template │ └── update ├── dssi-devel ├── dssi-example-plugins ├── dssi-vst │ └── template ├── dssi │ └── template ├── dstat │ ├── patches │ │ └── dstat.patch │ └── template ├── dsvpn │ └── template ├── dtach │ └── template ├── dtc-devel ├── dtc │ └── template ├── dte │ └── template ├── dtools │ └── template ├── dtrace-utils │ ├── patches │ │ └── configure.patch │ └── template ├── dtrx │ └── template ├── dua-cli │ └── template ├── dub │ └── template ├── duc │ └── template ├── duckdb-devel ├── duckdb │ └── template ├── duf │ └── template ├── duff │ └── template ├── dufs │ └── template ├── duiadns │ ├── INSTALL │ ├── files │ │ └── duiadns │ │ │ └── run │ └── template ├── duktape-devel ├── duktape │ ├── template │ └── update ├── dumb-devel ├── dumb-init │ └── template ├── dumb │ └── template ├── dumb_runtime_dir │ └── template ├── dumbplay ├── dumpet │ ├── patches │ │ └── endian.patch │ └── template ├── dune │ └── template ├── dune3d │ └── template ├── dunelegacy │ ├── patches │ │ └── sdl2.patch │ ├── template │ └── update ├── dunst │ └── template ├── duperemove │ ├── patches │ │ └── add_dev_t_include.patch │ └── template ├── duplicity-doc ├── duplicity │ └── template ├── durden │ └── template ├── dust │ └── template ├── dust3d │ ├── patches │ │ └── QPainterPath.patch │ └── template ├── dutree │ └── template ├── dvd+rw-tools │ ├── patches │ │ ├── dvddl.patch │ │ ├── glibc.patch │ │ ├── sysmacros.patch │ │ ├── wctomb.patch │ │ └── wexit.patch │ └── template ├── dvdauthor │ ├── patches │ │ └── freetype-pkg_config.patch │ └── template ├── dvdbackup │ ├── patches │ │ └── dvdbackup-dvdread-6.1.patch │ └── template ├── dvtm │ └── template ├── dwarffortress │ ├── files │ │ └── dwarffortress │ └── template ├── dwdiff │ └── template ├── dwm │ ├── files │ │ └── dwm.desktop │ └── template ├── dxa │ └── template ├── dynamips │ └── template ├── dzen2 │ └── template ├── e16 │ └── template ├── e2fsprogs-devel ├── e2fsprogs-libs ├── e2fsprogs │ ├── patches │ │ └── cross.patch │ ├── template │ └── update ├── e2tools │ ├── files │ │ ├── e2cp.1 │ │ ├── e2ln.1 │ │ ├── e2ls.1 │ │ ├── e2mkdir.1 │ │ ├── e2mv.1 │ │ ├── e2rm.1 │ │ ├── e2tail.1 │ │ └── e2tools.7 │ └── template ├── e3 │ └── template ├── earlyoom │ ├── files │ │ └── earlyoom │ │ │ └── run │ └── template ├── easyeffects │ ├── INSTALL.msg │ ├── template │ └── update ├── easyrpg-player │ └── template ├── easyrsa │ └── template ├── easytag │ ├── patches │ │ ├── easytag-taglib-2.patch │ │ └── id3-abi.patch │ ├── template │ └── update ├── eb │ ├── patches │ │ └── cross.patch │ └── template ├── eboard │ ├── patches │ │ ├── configure.patch │ │ └── ntext.patch │ └── template ├── ebook-tools-devel ├── ebook-tools │ └── template ├── ecdsautils │ └── template ├── ecl │ ├── files │ │ └── cross_config │ ├── patches │ │ └── fix-tests.patch │ └── template ├── eclib-devel ├── eclib │ └── template ├── eclipse │ ├── files │ │ ├── eclipse.desktop │ │ └── eclipse.sh │ ├── template │ └── update ├── ecm-devel ├── ecm-tools │ └── template ├── ecm │ ├── template │ └── update ├── ecryptfs-utils │ ├── patches │ │ ├── musl_fcntl_h.patch │ │ ├── musl_unistd_h.patch │ │ └── openssl-1.1.x.patch │ └── template ├── ed │ └── template ├── edac-utils │ ├── files │ │ └── edac │ │ │ └── run │ └── template ├── edb-debugger │ └── template ├── edbrowse │ └── template ├── editline-devel ├── editline │ └── template ├── editorconfig-core-lua ├── editorconfig-devel ├── editorconfig │ └── template ├── editres │ └── template ├── edk2-ovmf │ ├── files │ │ ├── 50-edk2-ovmf-i386-secure-4m.json │ │ ├── 50-edk2-ovmf-i386-secure.json │ │ ├── 50-edk2-ovmf-x86_64-secure-4m.json │ │ ├── 50-edk2-ovmf-x86_64-secure.json │ │ ├── 60-edk2-ovmf-aarch64.json │ │ ├── 60-edk2-ovmf-arm.json │ │ ├── 60-edk2-ovmf-i386-4m.json │ │ ├── 60-edk2-ovmf-i386.json │ │ ├── 60-edk2-ovmf-microvm-4m.json │ │ ├── 60-edk2-ovmf-microvm.json │ │ ├── 60-edk2-ovmf-x86_64-4m.json │ │ ├── 60-edk2-ovmf-x86_64.json │ │ ├── 80-edk2-ovmf-ia32-on-x86_64-secure-4m.json │ │ ├── 80-edk2-ovmf-ia32-on-x86_64-secure.json │ │ ├── 81-edk2-ovmf-ia32-on-x86_64-4m.json │ │ └── 81-edk2-ovmf-ia32-on-x86_64.json │ ├── patches │ │ └── brotli.patch │ ├── template │ └── update ├── edk2-shell ├── eduvpn-client ├── eduvpn-common │ ├── template │ └── update ├── efibootmgr │ ├── files │ │ ├── README.voidlinux │ │ ├── efibootmgr-kernel-hook.confd │ │ └── kernel.d │ │ │ ├── efibootmgr.post-install │ │ │ └── efibootmgr.post-remove │ ├── patches │ │ └── efibootmgr_default_to_grub2.patch │ └── template ├── efitools-efi ├── efitools │ ├── patches │ │ ├── 01-gnu-efi-libs-update.patch │ │ ├── 02-libressl-compatibility.patch │ │ ├── 03-makefile-enable-harden-local-files.patch │ │ ├── 04-makefile-keep-freestanding-flag.patch │ │ ├── 05-makefile-remove-useless-problematic-target.patch │ │ └── 06-makefile-cross-compile.patch │ └── template ├── efivar │ ├── patches │ │ └── build-tester.patch │ └── template ├── efl-devel ├── efl │ ├── patches │ │ ├── eina-debug.patch │ │ └── musl.patch │ └── template ├── efm-langserver │ └── template ├── efmd │ └── template ├── eggdrop │ ├── patches │ │ └── fix-cross.patch │ ├── template │ └── update ├── eid-mw-devel ├── eid-mw │ ├── template │ └── update ├── eigen │ └── template ├── eigen3.2 │ ├── template │ └── update ├── eiskaltdcpp-qt │ └── template ├── ejabberd │ └── template ├── ekushey-fonts-ttf │ └── template ├── electron24 │ ├── files │ │ ├── musl-patches │ │ │ ├── chromium-musl-sandbox.patch │ │ │ ├── chromium-musl-tid-caching.patch │ │ │ ├── chromium-no-res-ninit-nclose.patch │ │ │ └── chromium-quiche-arena-size.patch │ │ ├── patches │ │ │ ├── chromium-REVERT-roll-src-third_party-ffmpeg-m102.patch │ │ │ ├── chromium-REVERT-roll-src-third_party-ffmpeg-m102.patch.args │ │ │ ├── chromium-REVERT-roll-src-third_party-ffmpeg-m106.patch │ │ │ ├── chromium-REVERT-roll-src-third_party-ffmpeg-m106.patch.args │ │ │ ├── chromium-angle-wayland-include.patch │ │ │ ├── chromium-browser-size_t.patch │ │ │ ├── chromium-chromium-93-ffmpeg-4.4.patch │ │ │ ├── chromium-chromium-i686-vaapi-fpermissive.patch │ │ │ ├── chromium-chromium-revert-drop-of-system-java.patch │ │ │ ├── chromium-chromium-system-nodejs.patch │ │ │ ├── chromium-cross-build.patch │ │ │ ├── chromium-cursed^Uscoped_file.patch │ │ │ ├── chromium-fc-cache-version.patch │ │ │ ├── chromium-fix-aarch64-musl-memory-tagging-macros.patch │ │ │ ├── chromium-fix-argument_spec-isnan-isinf.patch │ │ │ ├── chromium-fix-constexpr-narrowing.patch │ │ │ ├── chromium-fix-dawn-platform.patch │ │ │ ├── chromium-fix-libc-version-include.patch │ │ │ ├── chromium-fix-missing-TEMP_FAILURE_RETRY-macro.patch │ │ │ ├── chromium-fix-missing-cstdint-include-musl.patch │ │ │ ├── chromium-fix-musl-missing-unistd_h-include.patch │ │ │ ├── chromium-fix-perfetto-GetThreadName-musl.patch │ │ │ ├── chromium-fix-swiftshader-llvm-musl-config.patch │ │ │ ├── chromium-libc_malloc.patch │ │ │ ├── chromium-musl-no-execinfo.patch │ │ │ ├── chromium-musl-no-mallinfo.patch │ │ │ ├── chromium-musl-partition-atfork.patch │ │ │ ├── chromium-musl-v8-monotonic-pthread-cont_timedwait.patch │ │ │ ├── chromium-no-getcontext.patch │ │ │ ├── chromium-old-clang.patch │ │ │ ├── chromium-reenable-linux-i686-builds.patch │ │ │ ├── chromium-remove-sys-cdefs-includes.patch │ │ │ ├── chromium-riscv-angle.patch │ │ │ ├── chromium-riscv-crashpad.patch │ │ │ ├── chromium-riscv-dav1d.patch │ │ │ ├── chromium-sandbox-membarrier.patch │ │ │ ├── chromium-sndio.patch │ │ │ ├── chromium-sql-relax-constraints-on-VirtualCursor-layout.patch │ │ │ ├── chromium-systypes.patch │ │ │ ├── chromium-unbundle-ffmpeg-av_stream_get_first_dts.patch │ │ │ ├── chromium-unbundled-cross-toolchain.patch │ │ │ ├── chromium-webrtc-size_t.patch │ │ │ ├── electron-Add-a-script-to-list-patch-targets.patch.patch │ │ │ ├── electron-Build-fixes.patch.patch │ │ │ ├── electron-exclude-content-test-patches.patch │ │ │ ├── electron-git-stuff.patch │ │ │ ├── electron-no-need-for-husky.patch │ │ │ └── electron-std-vector-non-const.patch │ │ ├── sndio-files │ │ │ ├── audio_manager_openbsd.cc │ │ │ ├── audio_manager_openbsd.h │ │ │ ├── sndio_input.cc │ │ │ ├── sndio_input.h │ │ │ ├── sndio_output.cc │ │ │ └── sndio_output.h │ │ └── sndio-patches │ │ │ ├── media_audio_linux_audio_manager_linux.cc.patch │ │ │ ├── src_3rdparty_chromium_media_BUILD.gn.patch │ │ │ ├── src_3rdparty_chromium_media_audio_BUILD.gn.patch │ │ │ └── src_3rdparty_chromium_media_media__options.gni.patch │ ├── patches │ │ ├── fix-include.patch │ │ └── libxml2.patch │ ├── template │ └── update ├── electron33-devel ├── electron33 │ ├── files │ │ ├── musl-patches │ │ │ ├── chromium-libc++-musl.patch │ │ │ ├── chromium-musl-no-mallinfo.patch │ │ │ ├── chromium-musl-sandbox.patch │ │ │ ├── chromium-musl-tid-caching.patch │ │ │ ├── chromium-no-res-ninit-nclose.patch │ │ │ └── chromium-no-sandbox-settls.patch │ │ └── patches │ │ │ ├── chromium-angle-wayland-include.patch │ │ │ ├── chromium-browser-size_t.patch │ │ │ ├── chromium-build-support-musl.patch │ │ │ ├── chromium-chromium-115-compiler-SkColor4f.patch │ │ │ ├── chromium-chromium-117-string-convert.patch │ │ │ ├── chromium-chromium-119-assert.patch │ │ │ ├── chromium-chromium-119-fix-aarch64-musl.patch │ │ │ ├── chromium-chromium-121-rust-clang_lib.patch │ │ │ ├── chromium-chromium-121-rust-without-profiler_builtins.patch │ │ │ ├── chromium-chromium-124-iwyu-sys-select-dawn-terminal.patch │ │ │ ├── chromium-chromium-125-disable-FFmpegAllowLists.patch │ │ │ ├── chromium-chromium-126-split-threshold-for-reg-with-hint.patch │ │ │ ├── chromium-chromium-revert-drop-of-system-java.patch │ │ │ ├── chromium-chromium-system-nodejs.patch │ │ │ ├── chromium-cross-build.patch │ │ │ ├── chromium-fc-cache-version.patch │ │ │ ├── chromium-fix-aarch64-musl-memory-tagging-macros.patch │ │ │ ├── chromium-fix-argument_spec-isnan-isinf.patch │ │ │ ├── chromium-fix-constexpr-narrowing.patch │ │ │ ├── chromium-fix-libc-version-include.patch │ │ │ ├── chromium-fix-missing-TEMP_FAILURE_RETRY-macro.patch │ │ │ ├── chromium-fix-missing-cstdint-include-musl.patch │ │ │ ├── chromium-fix-musl-missing-unistd_h-include.patch │ │ │ ├── chromium-fix-perfetto-GetThreadName-musl.patch │ │ │ ├── chromium-fix-swiftshader-llvm-musl-config.patch │ │ │ ├── chromium-libc_malloc.patch │ │ │ ├── chromium-musl-no-execinfo.patch │ │ │ ├── chromium-musl-partition-atfork.patch │ │ │ ├── chromium-musl-v8-monotonic-pthread-cont_timedwait.patch │ │ │ ├── chromium-no-getcontext.patch │ │ │ ├── chromium-reenable-linux-i686-builds.patch │ │ │ ├── chromium-remove-sys-cdefs-includes.patch │ │ │ ├── chromium-sandbox-membarrier.patch │ │ │ ├── chromium-sndio.patch │ │ │ ├── chromium-systypes.patch │ │ │ ├── chromium-unbundled-cross-toolchain.patch │ │ │ ├── chromium-wasm_canonical_rtts-is-WeakFixedArray-not-List-so-us.patch │ │ │ ├── chromium-webrtc-size_t.patch │ │ │ ├── electron-Build-fixes.patch.patch │ │ │ ├── electron-exclude-content-test-patches.patch │ │ │ └── electron-no-need-for-husky.patch │ ├── patches │ │ └── spellchecker-infinate-loop.patch │ ├── template │ └── update ├── electrum │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── elektroid │ └── template ├── element-desktop │ ├── files │ │ ├── element-desktop │ │ └── element-desktop.desktop │ └── template ├── elfinfo │ └── template ├── elfkickers │ ├── patches │ │ ├── elfkickers-3.1-AR.patch │ │ ├── elfkickers-3.1-respect-CFLAGS-LDFLAGS.patch │ │ ├── elfkickers-3.2-cross.patch │ │ └── elfkickers-3.2-install.patch │ └── template ├── elfutils-devel ├── elfutils │ ├── template │ └── update ├── elinks │ └── template ├── elisa │ └── template ├── elixir │ ├── patches │ │ └── workout-test.patch │ └── template ├── ell-devel ├── ell │ └── template ├── elog │ ├── files │ │ └── elogd │ │ │ └── run │ └── template ├── elogind-devel ├── elogind │ ├── files │ │ ├── elogind.wrapper │ │ └── elogind │ │ │ └── run │ ├── patches │ │ ├── SEEK_DATA.patch │ │ ├── getdents.patch │ │ ├── gshadow.patch │ │ ├── id-nobody.patch │ │ ├── musl-basename.patch │ │ ├── rlim-max.patch │ │ ├── rootlibexecdir.patch │ │ ├── sigfillset.patch │ │ ├── statx.patch │ │ ├── strerror_r.patch │ │ ├── strerror_r_1.patch │ │ └── tests.patch │ └── template ├── eludris │ ├── template │ └── update ├── elvish │ └── template ├── emacs-common ├── emacs-ess │ ├── patches │ │ └── emacs-28.patch │ ├── template │ └── update ├── emacs-gtk3 ├── emacs-pgtk ├── emacs-x11 ├── emacs │ └── template ├── embb-devel ├── embb-doc ├── embb │ └── template ├── embree-devel ├── embree │ ├── template │ └── update ├── emerald-devel ├── emerald-themes │ └── template ├── emerald │ ├── patches │ │ └── CCfix.patch │ └── template ├── emptty │ └── template ├── enblend-enfuse │ ├── patches │ │ ├── boost-fallthrough.patch │ │ └── no-latex.patch │ └── template ├── enca-devel ├── enca │ └── template ├── encfs │ ├── patches │ │ └── openssl-3.patch │ └── template ├── enchant2-aspell ├── enchant2-devel ├── enchant2-hunspell ├── enchant2-nuspell ├── enchant2-voikko ├── enchant2 │ └── template ├── enchive │ └── template ├── encodings │ ├── INSTALL │ ├── REMOVE │ └── template ├── endless-sky-gl21 │ ├── patches │ │ ├── fix-include.patch │ │ ├── fix-missing-limits-include.patch │ │ ├── fix-std-string.patch │ │ └── paths.patch │ └── template ├── endless-sky │ └── template ├── endlessh │ └── template ├── engrampa │ ├── template │ └── update ├── enigma-doc ├── enigma │ ├── patches │ │ └── musl-redirect.patch │ └── template ├── enlightenment-devel ├── enlightenment │ ├── files │ │ └── e-applications.menu │ ├── patches │ │ └── mips-name-clash.patch │ └── template ├── enscript │ └── template ├── ensure-access │ └── template ├── ent │ └── template ├── enter-tex │ ├── files │ │ └── README.voidlinux │ ├── patches │ │ └── fix-actions.patch │ └── template ├── entr │ ├── patches │ │ └── include-sysctl.patch │ └── template ├── envypn-font │ ├── INSTALL │ └── template ├── enyo-doom │ ├── patches │ │ └── cmake.patch │ ├── template │ └── update ├── eog-devel ├── eog-plugins │ └── template ├── eog │ └── template ├── eolie │ ├── patches │ │ ├── libsoup3.patch │ │ └── re-raw.patch │ ├── re-raw.patch │ └── template ├── eom-devel ├── eom │ ├── template │ └── update ├── epdfview │ ├── patches │ │ ├── 0001-When-using-Poppler-0.17.0-I-needed-to-swap-the-blue-.patch │ │ ├── epdfview.desktop.patch │ │ └── glib2_headers.patch │ └── template ├── eperiodique │ └── template ├── epiphany │ └── template ├── epson-inkjet-printer-escpr │ └── template ├── epson-inkjet-printer-escpr2 │ ├── patches │ │ └── fix_build_error.patch │ └── template ├── epub2txt │ └── template ├── epy │ └── template ├── eqonomize │ └── template ├── ergo │ ├── files │ │ └── ergo │ │ │ └── run │ ├── oragono.INSTALL.msg │ └── template ├── erlang-doc ├── erlang-wx ├── erlang │ ├── template │ └── update ├── erlang_ls │ └── template ├── erofs-utils │ ├── template │ └── update ├── es │ ├── template │ └── update ├── esbuild │ └── template ├── eselect │ ├── template │ └── update ├── esh │ └── template ├── esmtool ├── espeak ├── espeak-ng │ └── template ├── espeakup │ ├── files │ │ └── espeakup │ │ │ └── run │ ├── patches │ │ └── use-with-espeak-ng.patch │ └── template ├── esptool │ └── template ├── etcd │ ├── files │ │ └── etcd │ │ │ ├── conf │ │ │ └── run │ └── template ├── etcetera │ └── template ├── etckeeper │ ├── template │ └── update ├── etesync-dav │ ├── patches │ │ └── add-missing-colon.diff │ └── template ├── ethstatus │ └── template ├── ethtool │ └── template ├── etr │ └── template ├── ettercap │ ├── patches │ │ ├── allow-build-type-none.patch │ │ └── libcurl-8.patch │ ├── template │ └── update ├── eudev-libudev ├── eudev-libudev-devel ├── eudev │ ├── INSTALL │ ├── files │ │ └── udevd │ │ │ └── run │ ├── patches │ │ └── 78-sound-card.rules.patch │ └── template ├── eukleides │ ├── patches │ │ └── eukleides-1.5.4.patch │ ├── template │ └── update ├── eva │ └── template ├── evemu-devel ├── evemu │ ├── patches │ │ ├── musl.patch │ │ └── time64.patch │ └── template ├── eventviews-devel ├── eventviews │ └── template ├── evilwm │ ├── files │ │ ├── LICENSE │ │ └── evilwm.desktop │ └── template ├── evince-devel ├── evince │ └── template ├── evolution-data-server-devel ├── evolution-data-server │ ├── patches │ │ ├── gen-tables.patch │ │ ├── gir.patch │ │ └── skip-broken-tests.patch │ └── template ├── evolution-devel ├── evolution-ews │ └── template ├── evolution │ ├── patches │ │ └── cmake.patch │ └── template ├── evtest-qt │ └── template ├── evtest │ ├── patches │ │ ├── 0001-Add-missing-limits.h-include.patch │ │ └── time64.patch │ ├── template │ └── update ├── evtx │ └── template ├── eww │ └── template ├── ex-vi │ ├── patches │ │ ├── increase-tube.patch │ │ └── navkeys.patch │ ├── template │ └── update ├── exa ├── execline-devel ├── execline-doc ├── execline-man-pages │ └── template ├── execline │ └── template ├── exempi-devel ├── exempi │ └── template ├── exercism │ └── template ├── exfat-utils │ ├── patches │ │ └── musl-not-found.patch │ └── template ├── exfatprogs │ └── template ├── exiftool │ └── template ├── exiv2-devel ├── exiv2 │ ├── template │ └── update ├── exo-devel ├── exo │ └── template ├── exodriver │ ├── patches │ │ ├── destdir.patch │ │ └── link-so-correctly.patch │ ├── template │ └── update ├── expat-devel ├── expat │ ├── template │ └── update ├── expect-devel ├── expect │ ├── patches │ │ ├── 0001-init-CC.patch │ │ ├── 0002-cross-WNOHANG-requires-POSIX_SOURCE.patch │ │ ├── 0003-cross-wnohang-value.patch │ │ ├── 0004-cross-misc.patch │ │ └── 0005-fix-buf-overflow-when-logging.patch │ └── template ├── exquisite │ └── template ├── ext4magic │ ├── patches │ │ ├── fix-glibc-2.27.patch │ │ └── fix-i_dir_acl-rename.patch │ └── template ├── extension-manager │ └── template ├── extra-cmake-modules │ ├── patches │ │ ├── cross.patch │ │ ├── libexecdir.patch │ │ └── musl.patch │ └── template ├── extrace │ ├── INSTALL │ └── template ├── extractpdfmark │ └── template ├── extundelete │ ├── patches │ │ └── fix-ftbfs.patch │ └── template ├── exult │ └── template ├── eyeD3 │ ├── template │ └── update ├── eza │ └── template ├── ezcrypt │ └── template ├── f2fs-tools │ ├── patches │ │ └── fix-musl.patch │ ├── template │ └── update ├── f3 │ └── template ├── faac-devel ├── faac │ ├── template │ └── update ├── faad2-devel ├── faad2 │ ├── patches │ │ └── fix-stack_usage.patch │ ├── template │ └── update ├── faba-icon-theme │ └── template ├── facter-devel ├── facter │ ├── patches │ │ ├── shared_cpp_hcon.patch │ │ └── std-array.patch │ └── template ├── factor │ └── template ├── faenza-icon-theme │ └── template ├── faience-icon-theme │ └── template ├── fail │ └── template ├── fail2ban │ ├── files │ │ └── fail2ban │ │ │ └── run │ └── template ├── fairy-stockfish │ ├── patches │ │ └── makefile.patch │ ├── template │ └── update ├── fake-hwclock │ ├── files │ │ └── fake-hwclock │ │ │ ├── finish │ │ │ └── run │ ├── patches │ │ └── manpage.patch │ └── template ├── fakechroot │ ├── patches │ │ └── glibc-2.34.patch │ └── template ├── fakeroot │ ├── patches │ │ ├── cross-dont-run-sysv-ipc-test.patch │ │ ├── fakeroot-no64.patch │ │ └── fakeroot-stdint.patch │ └── template ├── faketime │ └── template ├── falkon │ └── template ├── fan2go │ └── template ├── fann-devel ├── fann │ └── template ├── farbfeld │ └── template ├── farstream-devel ├── farstream │ ├── patches │ │ ├── gupnp-1.2.patch │ │ ├── gupnp-igd-1.6.patch │ │ ├── make-4.3.patch │ │ └── nice-agent-keep-main-context-alive.patch │ └── template ├── fasm │ ├── template │ └── update ├── fastd │ ├── files │ │ ├── fastd.conf │ │ ├── fastd │ │ │ └── run │ │ └── secret.conf │ ├── patches │ │ └── fix-segfault.patch │ ├── template │ └── update ├── fastfetch │ └── template ├── fastjar │ ├── patches │ │ ├── 0001-Properly-zero-terminate-filename.patch │ │ ├── 0002-Fix-write-return-value-check.patch │ │ └── CVE-2010-2322.patch │ └── template ├── fastmod │ └── template ├── fastttyrec │ └── template ├── fatrace │ └── template ├── fatresize │ └── template ├── fatsort │ ├── template │ └── update ├── faust │ ├── patches │ │ ├── cstdint.patch │ │ ├── faust-musl-stacktrace.patch │ │ └── faust-voidlinux-lib_and_arch_paths.patch │ └── template ├── fava │ └── template ├── fbgrab │ └── template ├── fbida-exiftran ├── fbida-fbi ├── fbida-fbpdf ├── fbida-ida ├── fbida │ ├── patches │ │ ├── cross.patch │ │ ├── ida-desktop.patch │ │ └── no-cairo-gl.patch │ └── template ├── fbmenugen │ └── template ├── fbpdf │ └── template ├── fbreader │ ├── patches │ │ ├── arm.patch │ │ ├── cross.patch │ │ ├── narrowing.patch │ │ └── qt5.patch │ └── template ├── fbset │ ├── patches │ │ ├── 01_kernel_fb.h.patch │ │ ├── 02_fb_modes.patch │ │ ├── 03_con2fbmap.patch │ │ ├── 04_fbset_warnings.patch │ │ ├── 06_fbset_usage.patch │ │ ├── 07_new_accels.patch │ │ ├── 08_rgba_keyword.patch │ │ ├── 10_build.patch │ │ ├── 11_manpages.patch │ │ ├── add-support-for-custom-sync-flags.patch │ │ └── series │ └── template ├── fbterm │ ├── patches │ │ ├── fix-gcc6-narrowing.patch │ │ └── fix-musl.patch │ └── template ├── fbv │ ├── patches │ │ ├── giflib-5.1.patch │ │ └── libpng-1.5.13.patch │ └── template ├── fbxkb │ ├── patches │ │ └── fbxkb.patch │ └── template ├── fceux │ ├── patches │ │ ├── 2.6.6-timestamp-nonx86.patch │ │ └── isascii-musl.patch │ └── template ├── fcft-devel ├── fcft │ └── template ├── fcgi-devel ├── fcgi │ ├── template │ └── update ├── fcgiwrap │ └── template ├── fcitx ├── fcitx5-anthy │ └── template ├── fcitx5-chewing │ └── template ├── fcitx5-chinese-addons-devel ├── fcitx5-chinese-addons-pinyin-dict-manager ├── fcitx5-chinese-addons │ └── template ├── fcitx5-cloudpinyin ├── fcitx5-configtool │ └── template ├── fcitx5-gtk+2 ├── fcitx5-gtk+3 ├── fcitx5-gtk-devel ├── fcitx5-gtk │ └── template ├── fcitx5-gtk4 ├── fcitx5-hangul │ └── template ├── fcitx5-kcm ├── fcitx5-lua-devel ├── fcitx5-lua │ └── template ├── fcitx5-m17n │ └── template ├── fcitx5-migrator ├── fcitx5-mozc ├── fcitx5-qt │ ├── patches │ │ └── vtable.patch │ └── template ├── fcitx5-qt5 ├── fcitx5-qt5-devel ├── fcitx5-qt6 ├── fcitx5-qt6-devel ├── fcitx5-rime │ └── template ├── fcitx5-table-extra │ └── template ├── fcitx5-table-other │ └── template ├── fcitx5-unikey-macro-editor ├── fcitx5-unikey │ └── template ├── fcitx5-zhuyin │ └── template ├── fcitx5 │ ├── patches │ │ └── cross-config-template.patch │ └── template ├── fcount │ └── template ├── fcron │ ├── INSTALL │ ├── files │ │ ├── fcron │ │ │ └── run │ │ └── systab.orig │ ├── patches │ │ ├── fcron.patch │ │ └── force-pam.patch │ ├── template │ └── update ├── fd │ ├── patches │ │ └── drop-rust-version-patch.patch │ └── template ├── fdk-aac-devel ├── fdk-aac │ └── template ├── fdkaac │ └── template ├── fdm │ ├── files │ │ └── base64.c │ └── template ├── fdupes │ ├── template │ └── update ├── feh │ └── template ├── fehQlibs │ └── template ├── felix │ └── template ├── fend │ └── template ├── fenrir │ ├── files │ │ └── fenrir │ │ │ └── run │ └── template ├── ferium │ └── template ├── ferm │ ├── patches │ │ └── mod_makefile.patch │ └── template ├── fetchmail │ ├── template │ └── update ├── fetchmailconf ├── fex │ └── template ├── ffcall-devel ├── ffcall │ ├── files │ │ └── ppc64-be.patch │ ├── template │ └── update ├── fff │ └── template ├── fflas-ffpack │ ├── patches │ │ └── 357.patch │ └── template ├── ffmpeg-devel ├── ffmpeg │ ├── files │ │ └── altivec.patch │ ├── patches │ │ ├── intel-media-driver-32bit.patch │ │ ├── v4l2-fix-glibc.patch │ │ └── vulkan-gcc14.patch │ └── template ├── ffmpeg6-devel ├── ffmpeg6 │ ├── patches │ │ ├── 00001-vaapi_decode-multiple-slice-params-buffers.patch │ │ ├── 00002-lavc-vaapi_av1-Avoid-sending-the-same-slice-buffer-multiple-times.patch │ │ ├── 00003-v4l-config.patch │ │ ├── 00004-v4l-ioctl-musl.patch │ │ ├── binutils-2.43.patch │ │ ├── intel-media-driver-32bit.patch │ │ ├── qt6-webengine.patch │ │ ├── v4l2-fix-glibc.patch │ │ ├── vulkan-gcc14.patch │ │ └── x265-4.0.patch │ └── template ├── ffmpegthumbnailer-devel ├── ffmpegthumbnailer │ └── template ├── ffmpegthumbs │ └── template ├── ffms2 │ ├── patches │ │ └── ffmpeg5.patch │ └── template ├── ffplay ├── ffplay6 ├── ffscreencast │ └── template ├── ffsend │ └── template ├── fftw-devel ├── fftw │ ├── patches │ │ └── clock-gettime.patch │ ├── template │ └── update ├── ffuf │ └── template ├── fgit │ └── template ├── fiche │ ├── files │ │ └── fiche │ │ │ └── run │ └── template ├── fierce │ └── template ├── fifechan-devel ├── fifechan │ └── template ├── fifengine │ ├── patches │ │ ├── ftbfs.patch │ │ ├── remove_deprecated_getchildren.patch │ │ └── swig.patch │ └── template ├── fig2dev │ ├── patches │ │ └── CVE-2019-19555.patch │ └── template ├── figlet-fonts │ └── template ├── figlet │ └── template ├── figurine │ └── template ├── file-devel ├── file-roller │ ├── patches │ │ └── fix-symlink-handling-7zip.patch │ └── template ├── file │ ├── patches │ │ └── 0002-PR-571-jschleus-Some-zip-files-are-misclassified-as-data.patch │ └── template ├── filelight │ ├── patches │ │ └── musl.patch │ └── template ├── filespooler │ └── template ├── filezilla │ ├── patches │ │ ├── cross.patch │ │ └── missing-list-include.patch │ ├── template │ └── update ├── fillets-ng │ └── template ├── filter_audio-devel ├── filter_audio │ └── template ├── fim │ └── template ├── finch ├── finch-devel ├── find-cursor │ └── template ├── findutils │ └── template ├── fingerprint-gui │ ├── patches │ │ ├── fix-udev-paths.patch │ │ ├── fix-udev-rules-groups.patch │ │ ├── musl.patch │ │ └── time64.patch │ ├── template │ └── update ├── fio │ ├── patches │ │ └── musl.patch │ └── template ├── firebird3 │ ├── files │ │ └── cross-compile.patch │ ├── patches │ │ ├── Provide-sized-global-delete-operators-when-compiled.patch │ │ ├── fix-std-isnan.patch │ │ ├── honour-buildflags.patch │ │ └── musl-os_utils_h.patch │ ├── template │ └── update ├── firefox-esr-i18n-ach ├── firefox-esr-i18n-af ├── firefox-esr-i18n-an ├── firefox-esr-i18n-ar ├── firefox-esr-i18n-ast ├── firefox-esr-i18n-az ├── firefox-esr-i18n-be ├── firefox-esr-i18n-bg ├── firefox-esr-i18n-bn ├── firefox-esr-i18n-br ├── firefox-esr-i18n-bs ├── firefox-esr-i18n-ca ├── firefox-esr-i18n-ca-valencia ├── firefox-esr-i18n-cak ├── firefox-esr-i18n-cs ├── firefox-esr-i18n-cy ├── firefox-esr-i18n-da ├── firefox-esr-i18n-de ├── firefox-esr-i18n-dsb ├── firefox-esr-i18n-el ├── firefox-esr-i18n-en-CA ├── firefox-esr-i18n-en-GB ├── firefox-esr-i18n-en-US ├── firefox-esr-i18n-eo ├── firefox-esr-i18n-es-AR ├── firefox-esr-i18n-es-CL ├── firefox-esr-i18n-es-ES ├── firefox-esr-i18n-es-MX ├── firefox-esr-i18n-et ├── firefox-esr-i18n-eu ├── firefox-esr-i18n-fa ├── firefox-esr-i18n-ff ├── firefox-esr-i18n-fi ├── firefox-esr-i18n-fr ├── firefox-esr-i18n-fy-NL ├── firefox-esr-i18n-ga-IE ├── firefox-esr-i18n-gd ├── firefox-esr-i18n-gl ├── firefox-esr-i18n-gn ├── firefox-esr-i18n-gu-IN ├── firefox-esr-i18n-he ├── firefox-esr-i18n-hi-IN ├── firefox-esr-i18n-hr ├── firefox-esr-i18n-hsb ├── firefox-esr-i18n-hu ├── firefox-esr-i18n-hy-AM ├── firefox-esr-i18n-ia ├── firefox-esr-i18n-id ├── firefox-esr-i18n-is ├── firefox-esr-i18n-it ├── firefox-esr-i18n-ja ├── firefox-esr-i18n-ka ├── firefox-esr-i18n-kab ├── firefox-esr-i18n-kk ├── firefox-esr-i18n-km ├── firefox-esr-i18n-kn ├── firefox-esr-i18n-ko ├── firefox-esr-i18n-lij ├── firefox-esr-i18n-lt ├── firefox-esr-i18n-lv ├── firefox-esr-i18n-mk ├── firefox-esr-i18n-mr ├── firefox-esr-i18n-ms ├── firefox-esr-i18n-my ├── firefox-esr-i18n-nb-NO ├── firefox-esr-i18n-ne-NP ├── firefox-esr-i18n-nl ├── firefox-esr-i18n-nn-NO ├── firefox-esr-i18n-oc ├── firefox-esr-i18n-pa-IN ├── firefox-esr-i18n-pl ├── firefox-esr-i18n-pt-BR ├── firefox-esr-i18n-pt-PT ├── firefox-esr-i18n-rm ├── firefox-esr-i18n-ro ├── firefox-esr-i18n-ru ├── firefox-esr-i18n-si ├── firefox-esr-i18n-sk ├── firefox-esr-i18n-skr ├── firefox-esr-i18n-sl ├── firefox-esr-i18n-son ├── firefox-esr-i18n-sq ├── firefox-esr-i18n-sr ├── firefox-esr-i18n-sv-SE ├── firefox-esr-i18n-ta ├── firefox-esr-i18n-te ├── firefox-esr-i18n-th ├── firefox-esr-i18n-tl ├── firefox-esr-i18n-tr ├── firefox-esr-i18n-trs ├── firefox-esr-i18n-uk ├── firefox-esr-i18n-ur ├── firefox-esr-i18n-uz ├── firefox-esr-i18n-vi ├── firefox-esr-i18n-xh ├── firefox-esr-i18n-zh-CN ├── firefox-esr-i18n-zh-TW ├── firefox-esr-i18n │ ├── files │ │ └── update-lang-list │ ├── template │ └── update ├── firefox-esr │ ├── files │ │ ├── firefox-wayland │ │ ├── stab.h │ │ └── vendor.js │ ├── patches │ │ ├── big-endian-image-decoders.patch │ │ ├── firefox-i686-build.patch │ │ ├── fix-arm-opus-include.patch │ │ ├── fix-firefox-desktop.patch │ │ ├── fix-i686-build-moz-1792159.patch │ │ ├── fix-i686-ppc-musl.patch │ │ ├── fix-image-format-warning.patch │ │ ├── fix-webrtc-glibcisms.patch │ │ ├── mallinfo.patch │ │ ├── ply-python3.11.patch │ │ ├── ppc32-fix-build.patch │ │ ├── rust-configure.patch │ │ ├── rust-lto-thin.patch │ │ └── sandbox-fork.patch │ ├── template │ └── update ├── firefox-i18n-ach ├── firefox-i18n-af ├── firefox-i18n-an ├── firefox-i18n-ar ├── firefox-i18n-ast ├── firefox-i18n-az ├── firefox-i18n-be ├── firefox-i18n-bg ├── firefox-i18n-bn ├── firefox-i18n-br ├── firefox-i18n-bs ├── firefox-i18n-ca ├── firefox-i18n-ca-valencia ├── firefox-i18n-cak ├── firefox-i18n-cs ├── firefox-i18n-cy ├── firefox-i18n-da ├── firefox-i18n-de ├── firefox-i18n-dsb ├── firefox-i18n-el ├── firefox-i18n-en-CA ├── firefox-i18n-en-GB ├── firefox-i18n-en-US ├── firefox-i18n-eo ├── firefox-i18n-es-AR ├── firefox-i18n-es-CL ├── firefox-i18n-es-ES ├── firefox-i18n-es-MX ├── firefox-i18n-et ├── firefox-i18n-eu ├── firefox-i18n-fa ├── firefox-i18n-ff ├── firefox-i18n-fi ├── firefox-i18n-fr ├── firefox-i18n-fy-NL ├── firefox-i18n-ga-IE ├── firefox-i18n-gd ├── firefox-i18n-gl ├── firefox-i18n-gn ├── firefox-i18n-gu-IN ├── firefox-i18n-he ├── firefox-i18n-hi-IN ├── firefox-i18n-hr ├── firefox-i18n-hsb ├── firefox-i18n-hu ├── firefox-i18n-hy-AM ├── firefox-i18n-ia ├── firefox-i18n-id ├── firefox-i18n-is ├── firefox-i18n-it ├── firefox-i18n-ja ├── firefox-i18n-ka ├── firefox-i18n-kab ├── firefox-i18n-kk ├── firefox-i18n-km ├── firefox-i18n-kn ├── firefox-i18n-ko ├── firefox-i18n-lij ├── firefox-i18n-lt ├── firefox-i18n-lv ├── firefox-i18n-mk ├── firefox-i18n-mr ├── firefox-i18n-ms ├── firefox-i18n-my ├── firefox-i18n-nb-NO ├── firefox-i18n-ne-NP ├── firefox-i18n-nl ├── firefox-i18n-nn-NO ├── firefox-i18n-oc ├── firefox-i18n-pa-IN ├── firefox-i18n-pl ├── firefox-i18n-pt-BR ├── firefox-i18n-pt-PT ├── firefox-i18n-rm ├── firefox-i18n-ro ├── firefox-i18n-ru ├── firefox-i18n-si ├── firefox-i18n-sk ├── firefox-i18n-skr ├── firefox-i18n-sl ├── firefox-i18n-son ├── firefox-i18n-sq ├── firefox-i18n-sr ├── firefox-i18n-sv-SE ├── firefox-i18n-ta ├── firefox-i18n-te ├── firefox-i18n-th ├── firefox-i18n-tl ├── firefox-i18n-tr ├── firefox-i18n-trs ├── firefox-i18n-uk ├── firefox-i18n-ur ├── firefox-i18n-uz ├── firefox-i18n-vi ├── firefox-i18n-xh ├── firefox-i18n-zh-CN ├── firefox-i18n-zh-TW ├── firefox-i18n │ ├── files │ │ └── update-lang-list │ ├── template │ └── update ├── firefox │ ├── files │ │ ├── firefox-wayland │ │ ├── firefox.desktop │ │ ├── stab.h │ │ └── vendor.js │ ├── patches │ │ ├── big-endian-image-decoders.patch │ │ ├── clang-sysroot-toolchain-fix.patch │ │ ├── firefox-i686-build.patch │ │ ├── fix-arm-opus-include.patch │ │ ├── fix-i686-build-moz-1792159.patch │ │ ├── fix-i686-ppc-musl.patch │ │ ├── fix-image-format-warning.patch │ │ ├── fix-webrtc-glibcisms.patch │ │ ├── mallinfo.patch │ │ ├── ply-python3.11.patch │ │ ├── ppc32-fix-build.patch │ │ ├── rust-configure.patch │ │ └── rust-lto-thin.patch │ ├── template │ └── update ├── firehol │ ├── files │ │ └── firehol │ │ │ ├── finish │ │ │ └── run │ └── template ├── firejail │ ├── patches │ │ ├── musl.patch │ │ └── profiles-fix-xkeyboard-config.patch │ └── template ├── firewalld-applet ├── firewalld-config ├── firewalld │ ├── files │ │ └── firewalld │ │ │ ├── check │ │ │ ├── conf │ │ │ └── run │ └── template ├── fish-shell │ ├── patches │ │ └── test-args.patch │ ├── template │ └── update ├── five-or-more │ └── template ├── flac │ └── template ├── flacon │ ├── files │ │ └── README.voidlinux │ └── template ├── flake8 │ ├── template │ └── update ├── flamelens │ └── template ├── flameshot │ └── template ├── flamp │ └── template ├── flang17 ├── flang17-devel ├── flang18 ├── flang18-devel ├── flang19 ├── flang19-devel ├── flann-devel ├── flann │ ├── patches │ │ └── cmake.patch │ └── template ├── flannel │ ├── files │ │ └── flannel │ │ │ └── run │ └── template ├── flare-engine │ └── template ├── flare-game │ └── template ├── flashrom-devel ├── flashrom │ ├── template │ └── update ├── flatbuffers-devel ├── flatbuffers │ ├── patches │ │ └── init-var.patch │ └── template ├── flatpak-builder │ ├── files │ │ └── hard-disable-rofiles-fuse.patch │ ├── patches │ │ └── fix-temp-failure-retry.patch │ ├── template │ └── update ├── flatpak-devel ├── flatpak-kcm │ └── template ├── flatpak │ ├── INSTALL │ ├── template │ └── update ├── flavours │ └── template ├── fldigi │ ├── patches │ │ └── nullptr-def.patch │ └── template ├── flex │ ├── patches │ │ ├── disable-tests.patch │ │ └── no-help2man.patch │ └── template ├── flexprop │ └── template ├── flightgear-data ├── flightgear │ ├── patches │ │ ├── musl-fenv.patch │ │ ├── musl-fix_error_h.patch │ │ ├── musl-fix_feenableexcept.patch │ │ ├── musl-fix_fpos_t.patch │ │ └── musl-include-fcntl.patch │ ├── template │ └── update ├── flinks │ └── template ├── flint │ └── template ├── flintlib-devel ├── flintlib │ ├── template │ └── update ├── flite-devel ├── flite │ ├── template │ └── update ├── fllog │ └── template ├── flmsg │ └── template ├── flnet │ └── template ├── flowblade │ ├── files │ │ └── flowblade-wayland │ └── template ├── flrig │ └── template ├── fltk-devel ├── fltk │ ├── template │ └── update ├── fluidsynth-devel ├── fluidsynth │ └── template ├── flutejava │ └── template ├── fluxbox │ ├── files │ │ └── fluxbox.desktop │ ├── patches │ │ └── 22866c4d30f5b289c429c5ca88d800200db4fc4f.patch │ └── template ├── flvstreamer │ └── template ├── fmit │ └── template ├── fmt-devel ├── fmt │ └── template ├── fmtools │ └── template ├── fnott │ └── template ├── fntsample │ ├── template │ └── update ├── focuswriter │ └── template ├── foliate │ └── template ├── folks-devel ├── folks │ └── template ├── font-3270 │ └── template ├── font-FixedMisc │ ├── template │ └── update ├── font-Hasklig │ └── template ├── font-Siji │ └── template ├── font-adobe-100dpi │ └── template ├── font-adobe-75dpi │ └── template ├── font-adobe-source-code-pro │ ├── template │ └── update ├── font-adobe-source-sans-pro-v2 │ ├── template │ └── update ├── font-adobe-source-serif-pro │ ├── template │ └── update ├── font-adobe-utopia-100dpi │ └── template ├── font-adobe-utopia-75dpi │ └── template ├── font-adobe-utopia-type1 │ └── template ├── font-alef │ ├── template │ └── update ├── font-alias │ └── template ├── font-atkinson-hyperlegible-otf ├── font-atkinson-hyperlegible-ttf │ └── template ├── font-awesome │ ├── template │ └── update ├── font-awesome5 │ └── template ├── font-awesome6 │ └── template ├── font-b612 │ └── template ├── font-bh-100dpi │ └── template ├── font-bh-75dpi │ └── template ├── font-bh-lucidatypewriter-100dpi │ └── template ├── font-bh-lucidatypewriter-75dpi │ └── template ├── font-bh-ttf │ └── template ├── font-bh-type1 │ └── template ├── font-bitstream-100dpi │ └── template ├── font-bitstream-75dpi │ └── template ├── font-bitstream-type1 │ └── template ├── font-cozette │ └── template ├── font-crosextra-caladea-ttf │ └── template ├── font-crosextra-carlito-ttf │ └── template ├── font-cursor-misc │ └── template ├── font-daewoo-misc │ └── template ├── font-dec-misc │ └── template ├── font-emoji-one-color │ └── template ├── font-fantasque-sans-ttf │ └── template ├── font-fira-otf │ └── template ├── font-fira-ttf ├── font-firacode │ └── template ├── font-fontin │ └── template ├── font-go-ttf │ └── template ├── font-hack-ttf │ └── template ├── font-hanazono │ ├── template │ └── update ├── font-hermit-otf │ ├── template │ └── update ├── font-ibm-plex-otf ├── font-ibm-plex-ttf │ └── template ├── font-ibm-type1 │ └── template ├── font-inconsolata-otf │ ├── files │ │ └── conf.avail │ └── template ├── font-inter-variable ├── font-inter │ └── template ├── font-ionicons-ttf │ └── template ├── font-iosevka │ └── template ├── font-isas-misc │ └── template ├── font-jis-misc │ └── template ├── font-kacst │ └── template ├── font-kakwafont │ ├── template │ └── update ├── font-latinmodern-math │ ├── template │ └── update ├── font-latinmodern │ ├── template │ └── update ├── font-liberation-narrow-ttf │ └── template ├── font-libertine-graphite-ttf │ └── template ├── font-libertine-otf ├── font-libertine-ttf │ └── template ├── font-libre-hebrew │ └── template ├── font-manjari │ ├── template │ └── update ├── font-material-design-icons-ttf │ └── template ├── font-micro-misc │ └── template ├── font-misc-misc │ └── template ├── font-mplus-ttf │ └── template ├── font-mutt-misc │ └── template ├── font-open-dyslexic-ttf │ └── template ├── font-reem-kufi-ttf │ └── template ├── font-sarasa-gothic │ └── template ├── font-schumacher-misc │ └── template ├── font-sil-abyssinica │ ├── template │ └── update ├── font-sil-alkalami │ └── template ├── font-sil-andika │ └── template ├── font-sil-annapurna │ └── template ├── font-sil-awami-nastaliq │ └── template ├── font-sil-charis │ └── template ├── font-sil-doulos │ └── template ├── font-sil-ezra │ ├── template │ └── update ├── font-sil-galatia │ └── template ├── font-sil-gentium-basic │ ├── template │ └── update ├── font-sil-gentium │ ├── template │ └── update ├── font-sil-harmattan │ └── template ├── font-sil-lateef │ └── template ├── font-sil-mingzat │ ├── template │ └── update ├── font-sil-mondulkiri │ └── template ├── font-sil-namdhinggo │ └── template ├── font-sil-nuosu │ └── template ├── font-sil-padauk │ ├── template │ └── update ├── font-sil-scheherazade │ └── template ├── font-sil-sophia-nubian │ └── template ├── font-sil-tai-heritage-pro │ └── template ├── font-sony-misc │ └── template ├── font-sourcecodepro ├── font-spleen │ └── template ├── font-sun-misc │ └── template ├── font-symbola │ └── template ├── font-tamsyn │ └── template ├── font-tamzen │ └── template ├── font-unifont-bdf │ ├── template │ └── update ├── font-util │ └── template ├── font-vazir-code │ └── template ├── font-vazir │ └── template ├── font-vollkorn-ttf │ ├── template │ └── update ├── font-weather-icons │ └── template ├── fontconfig-devel ├── fontconfig-doc ├── fontconfig │ ├── INSTALL │ ├── template │ └── update ├── fontforge │ ├── patches │ │ └── l10n.patch │ └── template ├── fontmanager │ └── template ├── fontmatrix │ └── template ├── fonts-croscore-ttf │ ├── template │ └── update ├── fonts-droid-ttf │ └── template ├── fonts-nanum-ttf-extra ├── fonts-nanum-ttf │ └── template ├── fonts-roboto-ttf │ └── template ├── fonttools │ └── template ├── fonttosfnt │ ├── patches │ │ └── 5d446a02a7422d3a61f74b8d1c28b7b551ea06fd.diff │ └── template ├── foobillard++ │ ├── patches │ │ ├── data-dir.patch │ │ └── strsound.patch │ ├── template │ └── update ├── fool │ └── template ├── foomatic-db-engine │ ├── patches │ │ └── patch-foomatic-getpjloptions.in.diff │ └── template ├── foomatic-db-nonfree │ ├── template │ └── update ├── foomatic-db │ ├── template │ └── update ├── foot-terminfo ├── foot │ └── template ├── fooyin │ ├── patches │ │ └── fix-cmake-sndfile.patch │ └── template ├── forego │ ├── template │ └── update ├── foremost │ ├── patches │ │ └── foremost-1.4-config-location.patch │ └── template ├── forkstat │ └── template ├── fortune-mod-anarchism │ ├── template │ └── update ├── fortune-mod-de │ └── template ├── fortune-mod-void │ ├── files │ │ └── void │ └── template ├── fortune-mod │ ├── patches │ │ └── cross.patch │ └── template ├── fossil │ ├── patches │ │ └── cross.patch │ ├── template │ └── update ├── fotocx │ ├── patches │ │ └── musl.patch │ ├── template │ └── update ├── fotoxx ├── four-in-a-row │ └── template ├── fox-devel ├── fox-utils ├── fox │ ├── template │ └── update ├── fpc-src │ └── template ├── fpc │ ├── files │ │ └── musl-__libc_csu.patch │ ├── patches │ │ └── ppc64.patch │ ├── template │ └── update ├── fping │ ├── INSTALL │ └── template ├── fplll-devel ├── fplll │ └── template ├── fprint_demo │ ├── patches │ │ └── ftbfs-libfprint-080.patch │ └── template ├── fprintd │ └── template ├── fractal │ └── template ├── fragments │ └── template ├── frame-devel ├── frame │ ├── patches │ │ └── fix-gcc6-uninitialized.patch │ └── template ├── frameworkintegration-devel ├── frameworkintegration │ ├── template │ └── update ├── frankenwm │ └── template ├── freealut-devel ├── freealut │ └── template ├── freecad │ ├── patches │ │ ├── includes.patch │ │ ├── occ790.patch │ │ └── pyregex.patch │ └── template ├── freecdb │ └── template ├── freecell-solver │ ├── template │ └── update ├── freeciv-gtk2 ├── freeciv-gtk3 ├── freeciv-qt5 ├── freeciv-qt6 ├── freeciv-sdl ├── freeciv-xaw ├── freeciv │ └── template ├── freecol │ └── template ├── freedroidClassic │ ├── patches │ │ ├── patch-SDL_rotozoom.c.diff │ │ └── patch-configure.ac.diff │ └── template ├── freedroidRPG │ ├── template │ └── update ├── freefall ├── freefont-ttf │ ├── files │ │ └── conf.avail │ └── template ├── freeimage-devel ├── freeimage-plus ├── freeimage-plus-devel ├── freeimage │ ├── patches │ │ ├── disable_arm_neon.patch │ │ ├── fix-musl.patch │ │ ├── ftbfs-big-endian.patch │ │ └── no-windows.patch │ ├── template │ └── update ├── freeipmi-devel ├── freeipmi │ ├── files │ │ ├── bmc-watchdog │ │ │ ├── finish │ │ │ └── run │ │ ├── ipmidetectd │ │ │ └── run │ │ └── ipmiseld │ │ │ └── run │ ├── patches │ │ ├── fix-build-musl-non-x86.patch │ │ └── fix-build-with-C99-compilers.patch │ └── template ├── freeorion │ ├── patches │ │ ├── fix-cflags.patch │ │ └── fix-gigi-config-file-finding.patch │ └── template ├── freepats │ ├── files │ │ └── timidity-freepats.cfg │ ├── template │ └── update ├── freeplane │ ├── files │ │ └── freeplane.desktop │ ├── patches │ │ ├── jdk11-default.patch │ │ └── remove_mac.patch │ └── template ├── freerdp-devel ├── freerdp-server ├── freerdp-server-devel ├── freerdp │ ├── patches │ │ └── gcc14.patch │ └── template ├── freerdp3-devel ├── freerdp3-server ├── freerdp3 │ ├── patches │ │ └── fix-cross.patch │ └── template ├── freerouting │ ├── files │ │ ├── freerouting.desktop │ │ ├── freerouting.sh │ │ ├── freerouting.svg │ │ └── freerouting.xml │ └── template ├── freetds-devel ├── freetds-doc ├── freetds │ └── template ├── freetype-devel ├── freetype │ ├── patches │ │ └── enable-subpixel-rendering.patch │ └── template ├── freexl-devel ├── freexl │ └── template ├── frei0r-plugins │ └── template ├── fribidi-devel ├── fribidi │ └── template ├── frobby-devel ├── frobby │ ├── patches │ │ └── Makefile.patch │ └── template ├── frotz │ └── template ├── frozen │ └── template ├── frp │ ├── files │ │ ├── frpc │ │ │ └── run │ │ └── frps │ │ │ └── run │ └── template ├── frr-devel ├── frr-flush ├── frr-reload ├── frr │ ├── INSTALL │ ├── files │ │ ├── babeld │ │ │ ├── check │ │ │ └── run │ │ ├── bfdd │ │ │ ├── check │ │ │ └── run │ │ ├── bgpd │ │ │ ├── check │ │ │ └── run │ │ ├── eigrpd │ │ │ ├── check │ │ │ └── run │ │ ├── fabricd │ │ │ ├── check │ │ │ └── run │ │ ├── frr-flush │ │ ├── frr-generic │ │ │ ├── check │ │ │ └── run │ │ ├── isisd │ │ │ ├── check │ │ │ └── run │ │ ├── ldpd │ │ │ ├── check │ │ │ └── run │ │ ├── nhrpd │ │ │ ├── check │ │ │ └── run │ │ ├── ospf6d │ │ │ ├── check │ │ │ └── run │ │ ├── ospfd │ │ │ ├── check │ │ │ └── run │ │ ├── pbrd │ │ │ ├── check │ │ │ └── run │ │ ├── pimd │ │ │ ├── check │ │ │ └── run │ │ ├── ripd │ │ │ ├── check │ │ │ └── run │ │ ├── ripngd │ │ │ ├── check │ │ │ └── run │ │ ├── sharpd │ │ │ ├── check │ │ │ └── run │ │ ├── staticd │ │ │ ├── check │ │ │ └── run │ │ └── zebra │ │ │ ├── check │ │ │ └── run │ ├── patches │ │ └── python-3.13.patch │ └── template ├── fs-repo-migrations │ └── template ├── fs-uae │ ├── template │ └── update ├── fs-utils │ ├── patches │ │ └── fix-sysctl_h.patch │ ├── template │ └── update ├── fsarchiver │ └── template ├── fsbext │ ├── template │ └── update ├── fscrypt │ ├── files │ │ └── pam_config │ └── template ├── fsearch │ └── template ├── fselect │ └── template ├── fsharp │ └── template ├── fstl │ └── template ├── fstrcmp-doc ├── fstrcmp │ └── template ├── fstrm-devel ├── fstrm │ └── template ├── fsv │ ├── files │ │ └── fsv.desktop │ └── template ├── fswatch │ └── template ├── fswebcam │ └── template ├── ftgl-devel ├── ftgl │ └── template ├── ftjam │ ├── patches │ │ └── gcc-14.patch │ └── template ├── furnace │ └── template ├── fuse-9pfs │ └── template ├── fuse-archivemount │ ├── template │ └── update ├── fuse-devel ├── fuse-emulator │ ├── patches │ │ └── be.patch │ ├── template │ └── update ├── fuse-erofs ├── fuse-exfat │ └── template ├── fuse-mp3fs │ └── template ├── fuse-overlayfs │ └── template ├── fuse-sshfs │ ├── template │ └── update ├── fuse-zip │ └── template ├── fuse │ ├── patches │ │ ├── aarch64.patch │ │ ├── fix-compat-glibc-2.34.patch │ │ ├── fuse-headers.patch │ │ └── fusermount.patch │ ├── template │ └── update ├── fuse2fs ├── fuse3-devel ├── fuse3 │ ├── template │ └── update ├── fuzzel │ └── template ├── fuzzypkg │ └── template ├── fvwm │ ├── template │ └── update ├── fvwm3 │ └── template ├── fwknop │ ├── files │ │ └── fwknopd │ │ │ └── run │ └── template ├── fwknopd ├── fwup │ └── template ├── fwupd-devel ├── fwupd-efi │ └── template ├── fwupd-tests ├── fwupd │ └── template ├── fx │ └── template ├── fyi │ └── template ├── fzf │ └── template ├── fzy │ └── template ├── g810-led │ └── template ├── gajim-omemo ├── gajim │ ├── files │ │ └── README.voidlinux │ └── template ├── galculator-gtk2 ├── galculator-gtk3 ├── galculator │ └── template ├── galene │ ├── files │ │ └── galene │ │ │ └── run │ └── template ├── gallery-dl │ └── template ├── gambit │ └── template ├── gameconqueror ├── gamemode │ └── template ├── gamescope │ ├── patches │ │ ├── 0001-Include-limits.h-in-Process.cpp.patch │ │ └── 0002-version-string.patch │ ├── template │ └── update ├── gamin-devel ├── gamin │ ├── patches │ │ ├── 0001-Poll-files-on-nfs4.patch │ │ ├── 0002-Fix-compilation-of-recent-glib-removing-G_CONST_RETU.patch │ │ ├── 0004-fix-possible-server-deadlock-in-ih_sub_cancel.patch │ │ ├── disable-tests-for-cross-build.patch │ │ ├── gamin-manape.patch │ │ └── musl.patch │ └── template ├── gammaray-devel ├── gammaray │ ├── files │ │ └── README.voidlinux │ └── template ├── gammastep-indicator ├── gammastep │ └── template ├── gammu-devel ├── gammu-smsd ├── gammu │ ├── patches │ │ └── fix-musl.patch │ └── template ├── ganv-devel ├── ganv │ └── template ├── gap-devel ├── gap │ ├── patches │ │ └── atlasrep-dont_use_network_by_default.patch │ └── template ├── garage │ ├── patches │ │ └── build-on-macos.patch │ └── template ├── garcon-devel ├── garcon │ └── template ├── garden │ └── template ├── gargoyle │ └── template ├── gatling │ ├── patches │ │ └── gatling.c.patch │ └── template ├── gaupol │ └── template ├── gavl-devel ├── gavl │ ├── patches │ │ ├── cross-test.patch │ │ └── musl-sched_h.patch │ └── template ├── gawk │ ├── patches │ │ └── fix-str2wstr.patch │ └── template ├── gazou │ └── template ├── gbdfed │ ├── patches │ │ ├── Makefile.in.patch │ │ └── num_signals.patch │ ├── template │ └── update ├── gbinder-python │ └── template ├── gc-devel ├── gc │ └── template ├── gcab-devel ├── gcab │ ├── template │ └── update ├── gcal │ ├── patches │ │ └── fseeko.patch │ └── template ├── gcalcli │ └── template ├── gcc-ada ├── gcc-fortran ├── gcc-go ├── gcc-go-tools ├── gcc-multilib │ ├── patches │ │ ├── fix-inline_vfprintf.patch │ │ └── fix-libiberty_pic.patch │ ├── template │ └── update ├── gcc-objc ├── gcc-objc++ ├── gcc-objc-multilib ├── gcc │ ├── files │ │ ├── c89.1 │ │ ├── c89.sh │ │ ├── c99.1 │ │ ├── c99.sh │ │ ├── gccgo-musl.patch │ │ ├── libgnarl-musl.patch │ │ └── libssp-musl.patch │ ├── patches │ │ ├── ada-shared.patch │ │ ├── consistent-library-paths.patch │ │ ├── fix-cxxflags-passing.patch │ │ ├── fix-musl-execinfo.patch │ │ ├── fix-vtv-link-order.patch │ │ ├── force-override-clocale.patch │ │ ├── libatomic-autolink.patch │ │ ├── libatomic-configure.patch │ │ ├── libgcc-ibm128-no-tag.patch │ │ ├── mips-sgidefs_h.patch │ │ ├── mips-soft-float.patch │ │ ├── musl-ada.patch │ │ └── musl-generic-locale.patch │ ├── template │ └── update ├── gcc6-gcj ├── gcc6-gcj-ecj ├── gcc6-gcj-jdk-compat ├── gcc6 │ ├── files │ │ └── 303-gcc-6.1-musl-libssp.patch │ ├── patches │ │ ├── 001_all_default-ssp-strong.patch │ │ ├── 002_all_default-relro.patch │ │ ├── 003_all_default-fortify-source.patch │ │ ├── 005_all_default-as-needed.patch │ │ ├── 020_all_msgfmt-libstdc++-link.patch │ │ ├── 050_all_libiberty-asprintf.patch │ │ ├── 051_all_libiberty-pic.patch │ │ ├── 053_all_libitm-no-fortify-source.patch │ │ ├── 090-musl.patch │ │ ├── 201-cilkrts.patch │ │ ├── 203-libgcc_s.patch │ │ ├── 204-linux_libc_has_function.patch │ │ ├── 301-libgcc-always-build-gcceh.a.patch │ │ ├── 302-gcc-4.9-musl-fortify.patch │ │ ├── 310-boehm-gc-musl.patch │ │ ├── 311-boehm-gc-musl-mips.patch │ │ ├── 320-libffi-gnulinux.patch │ │ ├── 401-gcc-pure64.patch │ │ ├── 501-fix-gcj-stdgnu14-link.patch │ │ ├── 502-fix-gcj-musl.patch │ │ ├── 503-fix-gcj-iconv-musl.patch │ │ ├── 504-fix-gcj-arm-thumb.patch │ │ ├── 901-fix-cxxflags-passing.patch │ │ ├── 998-ldbl128-config.patch │ │ └── 999-libgcc-ldbl128-config.patch │ └── template ├── gccmakedep │ └── template ├── gcdemu │ └── template ├── gcolor2 │ ├── patches │ │ └── gcolor2-0.4-amd64.patch │ └── template ├── gcolor3 │ ├── patches │ │ └── libportal5.patch │ └── template ├── gcompat │ └── template ├── gcompris-qt │ └── template ├── gcovr │ └── template ├── gcr-devel ├── gcr │ ├── files │ │ └── 10-gcr-memlock.conf │ ├── patches │ │ └── Fix-FTBFS-on-x32.patch │ └── template ├── gcr4-devel ├── gcr4 │ ├── template │ └── update ├── gcsf │ └── template ├── gd-devel ├── gd-progs ├── gd │ └── template ├── gdash │ ├── template │ └── update ├── gdb-common ├── gdb-multiarch ├── gdb │ ├── patches │ │ └── gdb-mips-linux-nat.patch │ └── template ├── gdbm-devel ├── gdbm │ └── template ├── gdcalc │ └── template ├── gdk-pixbuf-devel ├── gdk-pixbuf-xlib-devel ├── gdk-pixbuf-xlib │ └── template ├── gdk-pixbuf │ ├── patches │ │ └── largejpeg-oom-test.patch │ └── template ├── gdl-devel ├── gdl │ └── template ├── gdm-devel ├── gdm-settings │ └── template ├── gdm │ ├── INSTALL │ ├── REMOVE │ ├── files │ │ └── gdm │ │ │ └── run │ ├── patches │ │ └── pam-turnstile-elogind.patch │ └── template ├── gdmap │ ├── patches │ │ └── gtk-fix.patch │ └── template ├── gdown │ └── template ├── gdu │ └── template ├── geany-devel ├── geany-plugins-extra ├── geany-plugins │ ├── patches │ │ └── gcc14.patch │ ├── template │ └── update ├── geany │ └── template ├── gearlever │ └── template ├── geary │ ├── patches │ │ └── libucontext.patch │ └── template ├── geckodriver │ └── template ├── gede │ └── template ├── gedit-devel ├── gedit-plugins │ └── template ├── gedit │ └── template ├── geeqie │ ├── patches │ │ └── disable-ancillary-files-test.patch │ └── template ├── gef │ └── template ├── gegl-devel ├── gegl │ └── template ├── geis-devel ├── geis-python3 ├── geis │ ├── patches │ │ ├── fix-gcc6-indentation.patch │ │ └── gcc-7.patch │ └── template ├── gemget │ └── template ├── gemserv │ ├── files │ │ └── gemserv │ │ │ └── run │ └── template ├── gendesk │ └── template ├── genext2fs │ └── template ├── gengetopt │ └── template ├── genius │ └── template ├── geoclue2-devel ├── geoclue2 │ ├── template │ └── update ├── geocode-glib-common ├── geocode-glib-devel ├── geocode-glib │ └── template ├── geoip-devel ├── geoip │ └── template ├── geoipupdate │ └── template ├── geomyidae │ ├── files │ │ └── geomyidae │ │ │ └── run │ ├── template │ └── update ├── geonkick │ └── template ├── geos-devel ├── geos │ ├── template │ └── update ├── gerbera │ ├── files │ │ └── gerbera │ │ │ └── run │ └── template ├── gerbil │ ├── files │ │ └── gerbil.sh │ ├── patches │ │ └── gxtags.patch │ └── template ├── getdns-devel ├── getdns │ ├── patches │ │ └── libidn2.patch │ └── template ├── geteltorito │ └── template ├── gettext-devel ├── gettext-devel-examples ├── gettext-devel-tools ├── gettext-libs ├── gettext-stub-devel ├── gettext-stub │ └── template ├── gettext-tiny-devel ├── gettext-tiny │ └── template ├── gettext │ ├── patches │ │ └── musl-realpath.patch │ └── template ├── gf2x-devel ├── gf2x │ ├── patches │ │ └── gcc14.patch │ ├── template │ └── update ├── gfan │ ├── patches │ │ ├── cstdint.patch │ │ ├── fix-build.patch │ │ ├── int128.patch │ │ ├── make_tests_return_error.patch │ │ ├── new-cddlib-header-location.patch │ │ └── uint64.patch │ ├── template │ └── update ├── gfeeds │ ├── patches │ │ ├── fix-for-blueprint-0.8.patch │ │ └── upgrade-blueprint-0.8-syntax.patch │ └── template ├── gflags-devel ├── gflags │ └── template ├── gforth │ └── template ├── gftp │ ├── patches │ │ ├── cross.patch │ │ ├── ftbfs.patch │ │ └── musl.patch │ └── template ├── gfuzz │ ├── patches │ │ ├── helper-gofuzz.patch │ │ └── main-gofuzz.patch │ └── template ├── ghc-bin │ ├── template │ └── update ├── ghc-doc ├── ghc │ ├── patches │ │ ├── Disable-unboxed-arrays.patch │ │ ├── fix-build-sphinx7.patch │ │ ├── libffi-autogen.patch │ │ └── ppc64-be-elfv2.patch │ ├── template │ └── update ├── ghdl-llvm ├── ghdl-mcode ├── ghdl │ ├── files │ │ └── ghdl │ └── template ├── ghex-devel ├── ghex │ └── template ├── ghi │ └── template ├── ghidra │ ├── patches │ │ ├── honor_source_date_epoch.patch │ │ └── protoc.patch │ ├── template │ └── update ├── ghostscript-devel ├── ghostscript │ ├── template │ └── update ├── ghostty-terminfo ├── ghostty │ └── template ├── ghostwriter │ ├── files │ │ └── README.voidlinux │ └── template ├── ghq │ └── template ├── gi-docgen │ ├── template │ └── update ├── giac-devel ├── giac-doc ├── giac │ ├── template │ └── update ├── giada │ ├── patches │ │ └── add-missing-include.patch │ └── template ├── giblib-devel ├── giblib │ └── template ├── giflib-devel ├── giflib-tools ├── giflib │ ├── patches │ │ ├── CVE-2021-40633.patch │ │ ├── correct-document-page-install.patch │ │ └── restore-deprecated-utility-functions.patch │ └── template ├── gifsicle │ ├── template │ └── update ├── gifski │ └── template ├── giggle-devel ├── giggle │ ├── patches │ │ ├── 0001-Fix-628184-Giggle-does-not-display-diff-for-files-th.patch │ │ ├── 0002-include-gtksource.h-instead-of-gtksourceview.h.patch │ │ ├── 0004-Port-to-vte-2.91-API.patch │ │ ├── 0005-Fixed-bug-of-GUI-not-remembering-settings.patch │ │ └── cross.patch │ └── template ├── gimme │ └── template ├── gimp-devel ├── gimp │ ├── INSTALL │ ├── patches │ │ ├── atol.patch │ │ ├── brushes.patch │ │ └── cross.patch │ ├── template │ └── update ├── gip │ └── template ├── gir-freedesktop ├── girara-devel ├── girara │ └── template ├── gist │ └── template ├── gister │ └── template ├── git-absorb │ └── template ├── git-all ├── git-annex │ ├── files │ │ └── stack.yaml │ ├── template │ └── update ├── git-brws │ └── template ├── git-cal │ └── template ├── git-cliff │ └── template ├── git-cola │ └── template ├── git-crypt │ └── template ├── git-cvs ├── git-delete-merged-branches │ └── template ├── git-extras │ └── template ├── git-filter-repo │ └── template ├── git-gui ├── git-lfs │ └── template ├── git-libsecret ├── git-mediate │ └── template ├── git-merge-changelog ├── git-netrc ├── git-remote-gcrypt │ └── template ├── git-remote-hg │ └── template ├── git-review │ ├── template │ └── update ├── git-revise │ └── template ├── git-scalar ├── git-secret │ └── template ├── git-sizer │ └── template ├── git-svn ├── git-team │ └── template ├── git-toolbelt │ └── template ├── git │ └── template ├── gitbatch │ └── template ├── gitea │ ├── INSTALL │ ├── files │ │ └── gitea │ │ │ └── run │ ├── patches │ │ └── config.patch │ ├── template │ └── update ├── gitflow │ └── template ├── gitg │ └── template ├── github-cli │ ├── template │ └── update ├── github-opml │ └── template ├── gitk ├── gitlab-runner │ ├── files │ │ └── gitlab-runner │ │ │ └── run │ ├── template │ └── update ├── gitolite │ └── template ├── gitoxide │ ├── template │ └── update ├── gitui │ └── template ├── givaro-devel ├── givaro │ └── template ├── gjs-devel ├── gjs │ ├── patches │ │ └── ignore-encoding-test.patch │ ├── template │ └── update ├── gkill │ └── template ├── gkrellm │ └── template ├── gl2ps-devel ├── gl2ps │ └── template ├── glab │ ├── template │ └── update ├── glabels │ └── template ├── glade3-devel ├── glade3 │ ├── patches │ │ ├── meson.build.patch │ │ └── webkit2gtk41.patch │ ├── template │ └── update ├── glances │ ├── patches │ │ └── no-check-update.patch │ └── template ├── glava │ └── template ├── gleam │ └── template ├── glew-devel ├── glew │ ├── template │ └── update ├── glfw-devel ├── glfw-wayland ├── glfw │ ├── template │ └── update ├── glib-bootstrap │ ├── patches │ ├── template │ └── update ├── glib-devel ├── glib-networking │ ├── template │ └── update ├── glib │ ├── files │ │ ├── gi-tool-emulator-wrapper │ │ └── gi-xbps-qemuwrapper │ ├── patches │ │ ├── 0001-Relocate-the-repository-directory-for-native-builds.patch │ │ ├── aee0664e6f1a29e0d5f301979f6d168b08435a61.patch │ │ ├── glib-compile-schemas-remove-deprecated-warnings.patch │ │ ├── gobject_init_on_demand.patch │ │ └── quark_init_on_demand.patch │ ├── template │ └── update ├── glibc-devel ├── glibc-locales ├── glibc │ ├── files │ │ ├── glibc-patches │ │ ├── libc-locales │ │ └── nscd │ │ │ └── run │ ├── glibc-locales.INSTALL │ ├── patches │ │ ├── 2.41-math.patch │ │ ├── 30992cb5e9d713ab0f4135dd8776a201f7a53f24.patch │ │ ├── 33bfd9020fdad925297c9e133055bd8804028f32.patch │ │ ├── 746ef8e93964a99db3e3fa4b8a7aba179185ef0a.patch │ │ ├── 98c712855d6606d078aaabaa7ef24b695c3f0349.patch │ │ ├── cb7f20653724029be89224ed3a35d627cc5b4163.patch │ │ ├── ce9b765522f014daa0392099dd9ba1f7ddcc511d.patch │ │ ├── e22c132484ea49be0478e4dcbd108d433d70f64c.patch │ │ └── ppcle-floatn_h.patch │ └── template ├── glibmm-devel ├── glibmm │ ├── template │ └── update ├── glibmm2.68-devel ├── glibmm2.68 │ ├── template │ └── update ├── glide │ └── template ├── glider │ ├── files │ │ └── glider │ │ │ └── run │ └── template ├── glirc │ └── template ├── glm │ ├── files │ │ └── glm.pc │ ├── patches │ │ └── be.patch │ └── template ├── glmark2 │ └── template ├── global │ └── template ├── glock │ └── template ├── glog-devel ├── glog │ └── template ├── gloobus-preview │ └── template ├── gloox-devel ├── gloox │ ├── patches │ │ ├── fix-missing-ctime-include.patch │ │ └── gloox-musl.patch │ └── template ├── glow │ └── template ├── glpk-devel ├── glpk │ └── template ├── glslViewer │ ├── patches │ │ └── liblo.patch │ └── template ├── glslang-devel ├── glslang │ └── template ├── gltron │ ├── patches │ │ ├── gltron-0.70-configure.patch │ │ ├── gltron-0.70-debian.patch │ │ ├── gltron-0.70-prototypes.patch │ │ └── stdint.patch │ └── template ├── glu-devel ├── glu │ └── template ├── glusterfs-devel ├── glusterfs-server ├── glusterfs │ ├── files │ │ ├── glusterd │ │ │ └── run │ │ └── glusterfsd │ │ │ └── run │ ├── patches │ │ └── patch-xlators_cloudsync_ssl.patch │ └── template ├── glxinfo ├── glycin-devel ├── glycin-gtk4 ├── glycin-gtk4-devel ├── glycin-loaders ├── glycin │ └── template ├── glyphy-devel ├── glyphy │ └── template ├── glyr-devel ├── glyr │ ├── patches │ │ ├── fix-cflags.patch │ │ └── musl-execinfo.patch │ └── template ├── gmic-devel ├── gmic-gimp ├── gmic-krita │ ├── patches │ │ └── conflict.patch │ ├── template │ └── update ├── gmic-zart ├── gmic │ ├── patches │ │ └── 03-plugindir-and-no-wget.patch │ └── template ├── gmime-devel ├── gmime │ ├── files │ │ ├── iconv-detect.h │ │ └── musl-iconv-detect.h │ └── template ├── gmime3 ├── gmime3-devel ├── gmio-devel ├── gmio │ └── template ├── gmp-devel ├── gmp │ └── template ├── gmpxx ├── gmpxx-devel ├── gmrun │ └── template ├── gmsh-doc ├── gmsh │ ├── patches │ │ ├── 32bitpointers.patch │ │ └── string-time.patch │ └── template ├── gmsl │ └── template ├── gmtk-devel ├── gmtk │ ├── template │ └── update ├── gmtp │ └── template ├── gmusicbrowser │ └── template ├── gn │ └── template ├── gnome-2048 │ ├── patches │ │ └── meson-0.61.patch │ └── template ├── gnome-app-list │ └── template ├── gnome-apps ├── gnome-authenticator │ ├── template │ └── update ├── gnome-autoar-devel ├── gnome-autoar │ └── template ├── gnome-backgrounds │ └── template ├── gnome-bluetooth-devel ├── gnome-bluetooth │ ├── files │ │ └── 61-gnome-bluetooth-rfkill.rules │ └── template ├── gnome-bluetooth1-devel ├── gnome-bluetooth1 │ ├── patches │ │ └── meson-0.61.patch │ ├── template │ └── update ├── gnome-boxes │ └── template ├── gnome-browser-connector │ └── template ├── gnome-builder │ └── template ├── gnome-calculator │ └── template ├── gnome-calendar │ └── template ├── gnome-characters │ └── template ├── gnome-chess │ └── template ├── gnome-clocks │ └── template ├── gnome-color-manager │ └── template ├── gnome-colors-icon-theme │ └── template ├── gnome-connections │ └── template ├── gnome-console │ └── template ├── gnome-contacts │ └── template ├── gnome-control-center-devel ├── gnome-control-center │ ├── patches │ │ └── grd-systemd.patch │ └── template ├── gnome-core │ └── template ├── gnome-desktop-devel ├── gnome-desktop │ └── template ├── gnome-dictionary │ ├── patches │ │ └── meson-0.61.patch │ └── template ├── gnome-disk-utility │ └── template ├── gnome-epub-thumbnailer │ ├── template │ └── update ├── gnome-flashback │ ├── files │ │ └── gnome-flashback.pam │ ├── patches │ │ └── fix-non-systemd.patch │ └── template ├── gnome-font-viewer │ └── template ├── gnome-games-collection ├── gnome-icon-theme-extras │ └── template ├── gnome-icon-theme-symbolic │ └── template ├── gnome-icon-theme-xfce │ └── template ├── gnome-icon-theme │ └── template ├── gnome-initial-setup │ └── template ├── gnome-keyring │ ├── patches │ │ └── sys-select-h.patch │ └── template ├── gnome-klotski │ └── template ├── gnome-latex ├── gnome-mahjongg │ └── template ├── gnome-maps │ └── template ├── gnome-menus-devel ├── gnome-menus │ └── template ├── gnome-mines │ └── template ├── gnome-mplayer │ ├── template │ └── update ├── gnome-mpv ├── gnome-multi-writer │ └── template ├── gnome-music │ └── template ├── gnome-nettool │ ├── patches │ │ └── meson-drop-unused-positional-arguments.patch │ └── template ├── gnome-network-displays │ └── template ├── gnome-nibbles │ └── template ├── gnome-online-accounts-devel ├── gnome-online-accounts │ └── template ├── gnome-panel-devel ├── gnome-panel │ ├── patches │ │ └── revert-5ce96e7a5608a7a4b96e2de1c6f8be7037f2c391.patch │ └── template ├── gnome-pass-search-provider │ └── template ├── gnome-passbook │ ├── template │ └── update ├── gnome-passwordsafe ├── gnome-photos │ └── template ├── gnome-podcasts │ ├── template │ └── update ├── gnome-power-manager │ └── template ├── gnome-remote-desktop │ └── template ├── gnome-robots │ └── template ├── gnome-screensaver │ ├── patches │ │ └── build.patch │ └── template ├── gnome-screenshot │ ├── patches │ │ └── meson-0.61.patch │ └── template ├── gnome-secrets │ ├── template │ └── update ├── gnome-session │ └── template ├── gnome-settings-daemon-devel ├── gnome-settings-daemon │ └── template ├── gnome-shell-extensions │ └── template ├── gnome-shell │ ├── patches │ │ └── no-exe-introspection.patch │ └── template ├── gnome-software-devel ├── gnome-software │ └── template ├── gnome-sound-recorder │ └── template ├── gnome-ssh-askpass │ ├── template │ └── update ├── gnome-subtitles │ └── template ├── gnome-sudoku │ └── template ├── gnome-system-log │ └── template ├── gnome-system-monitor │ └── template ├── gnome-taquin │ ├── patches │ │ └── meson-0.61.patch │ └── template ├── gnome-terminal │ ├── patches │ │ └── fix-W_EXITCODE.patch │ ├── template │ └── update ├── gnome-tetravex │ ├── patches │ │ └── meson-0.61.patch │ └── template ├── gnome-text-editor │ └── template ├── gnome-themes-extra-gtk ├── gnome-themes-extra │ └── template ├── gnome-themes-standard ├── gnome-themes-standard-metacity │ ├── template │ └── update ├── gnome-todo ├── gnome-tour │ └── template ├── gnome-tweak-tool ├── gnome-tweaks │ └── template ├── gnome-twitch │ └── template ├── gnome-usage │ └── template ├── gnome-user-docs │ └── template ├── gnome-video-effects │ └── template ├── gnome-weather │ └── template ├── gnome │ └── template ├── gnote │ └── template ├── gns3-gui │ └── template ├── gns3-net-converter │ └── template ├── gns3-server │ └── template ├── gnu-efi-libs │ ├── patches │ │ ├── musl-wchar.patch │ │ └── no-werror.patch │ ├── template │ └── update ├── gnubg │ ├── template │ └── update ├── gnucash-devel ├── gnucash │ ├── files │ │ └── README.voidlinux │ ├── patches │ │ └── disabletests.patch │ ├── template │ └── update ├── gnuchess │ └── template ├── gnucobol-libs ├── gnucobol │ ├── patches │ │ ├── cross.patch │ │ ├── errno.patch │ │ └── move-packed-decimal.patch │ └── template ├── gnugo │ └── template ├── gnulib │ └── template ├── gnumeric-devel ├── gnumeric │ └── template ├── gnunet-devel ├── gnunet │ ├── files │ │ ├── gnunet.conf │ │ └── gnunet │ │ │ └── run │ └── template ├── gnupg │ ├── files │ │ ├── 60-scdaemon.rules │ │ └── gnupg2-scdaemon-README.voidlinux │ ├── gnupg2-scdaemon.INSTALL.msg │ ├── patches │ │ ├── 0001-use-versioned-pcsclite-library-on-musl-libc-as-well.patch │ │ └── 0002-Revert-gpg-Merge-rfc4880bis-features-into-gnupg.patch │ ├── template │ └── update ├── gnupg1 │ ├── patches │ │ ├── 0001-avoid-looking-for-git-info-during-autoreconf.patch │ │ ├── 0003-change-package-name-to-gnupg1.patch │ │ ├── 0004-doc-Enable-SOURCE_DATE_EPOCH-for-reproducibility.patch │ │ └── 0005-gpg-Change-default-digest-algorithm-to-SHA256.patch │ ├── template │ └── update ├── gnupg2 ├── gnupg2-scdaemon ├── gnuplot-common ├── gnuplot-qt ├── gnuplot-wx ├── gnuplot │ ├── template │ └── update ├── gnupod │ ├── patches │ │ ├── incdir.patch │ │ └── perl-5.22.patch │ └── template ├── gnuradio-devel ├── gnuradio-doc ├── gnuradio-nrsc5-devel ├── gnuradio-nrsc5 │ └── template ├── gnuradio-osmosdr-devel ├── gnuradio-osmosdr │ └── template ├── gnuradio-rds-devel ├── gnuradio-rds │ └── template ├── gnuradio │ ├── patches │ │ └── fix-x11-library-call.patch │ └── template ├── gnurobbo │ ├── files │ │ └── gnurobbo.desktop │ └── template ├── gnushogi │ ├── patches │ │ └── gcc-10-globals.patch │ └── template ├── gnustep-back │ └── template ├── gnustep-base-devel ├── gnustep-base │ ├── patches │ │ └── use-va_copy.patch │ └── template ├── gnustep-gui-devel ├── gnustep-gui │ └── template ├── gnustep-make │ └── template ├── gnutls-devel ├── gnutls-tools ├── gnutls │ ├── patches │ │ └── tests-certtool-no-prompt.patch │ └── template ├── go-bindata │ └── template ├── go-capnproto2 │ └── template ├── go-for-it │ ├── patches │ │ └── vala-0.56.patch │ └── template ├── go-ipfs ├── go-jira │ └── template ├── go-md2man │ └── template ├── go-mtpfs │ └── template ├── go-review │ └── template ├── go │ ├── template │ └── update ├── go1.17-bootstrap │ └── template ├── go1.20 │ ├── patches │ │ ├── fix-32bit-tests.patch │ │ ├── fix-musl-tests.patch │ │ └── fix-tests.patch │ ├── template │ └── update ├── go1.22-bootstrap │ └── template ├── goaccess │ ├── template │ └── update ├── goatcounter │ ├── files │ │ ├── README.voidlinux │ │ └── goatcounter │ │ │ └── run │ └── template ├── gob2 │ └── template ├── gobject-introspection-bootstrap │ ├── files │ ├── patches │ ├── template │ └── update ├── gobject-introspection │ ├── files │ │ ├── g-ir-compiler-wrapper │ │ ├── g-ir-scanner-lddwrapper │ │ ├── g-ir-scanner-qemuwrapper │ │ └── g-ir-scanner-wrapper │ ├── patches │ │ ├── 0002-Relocate-the-repository-directory-for-native-builds.patch │ │ ├── 0006-giscanner-ignore-error-return-codes-from-ldd-wrapper.patch │ │ └── 0011-giscanner-ld-library-path.patch │ ├── template │ └── update ├── gobuster │ └── template ├── gocloc │ └── template ├── gocryptfs │ └── template ├── godef │ └── template ├── godot │ ├── INSTALL.msg │ ├── patches │ │ ├── 10-fix-musl.patch │ │ ├── 20-fix-musl.patch │ │ └── fix-glslang.patch │ ├── template │ └── update ├── goffice-devel ├── goffice │ └── template ├── gogglesmm │ ├── patches │ │ └── endian.patch │ └── template ├── gohufont │ └── template ├── goimapnotify │ └── template ├── golangci-lint │ ├── patches │ │ └── 0002-nilnil-use-32bit-compatible-test-values.patch │ └── template ├── goldendict-ng │ └── template ├── goldendict │ ├── patches │ │ ├── QAction.patch │ │ ├── QIcon.patch │ │ ├── endian.patch │ │ └── musl.patch │ └── template ├── golly │ └── template ├── gom-devel ├── gom │ └── template ├── gomatrix │ └── template ├── gomuks │ └── template ├── gonic │ ├── files │ │ └── gonic │ │ │ └── run │ ├── patches │ │ └── audiotags-deps.patch │ └── template ├── goocanvas-devel ├── goocanvas │ └── template ├── goodvibes │ └── template ├── google-authenticator-libpam │ └── template ├── google-chrome │ ├── files │ │ └── google-chrome-eula.md │ ├── template │ └── update ├── google-earth-pro │ └── template ├── google-fonts-ttf │ ├── files │ │ └── dup.lst │ └── template ├── googler │ └── template ├── goomwwm │ └── template ├── gopass-jsonapi │ └── template ├── gopass │ └── template ├── gopls │ ├── template │ └── update ├── gopm │ └── template ├── gops │ └── template ├── goreleaser │ └── template ├── gorm │ └── template ├── gosu-devel ├── gosu │ ├── patches │ │ └── stdexcept.patch │ └── template ├── got │ ├── patches │ │ └── landlock.patch │ └── template ├── gotify-cli │ └── template ├── gotify-server │ ├── files │ │ └── gotify-server │ │ │ └── run │ └── template ├── gotop │ └── template ├── gotty │ └── template ├── gource │ ├── template │ └── update ├── goversion │ └── template ├── goxel │ └── template ├── gp2c │ └── template ├── gpa │ └── template ├── gpart │ ├── patches │ │ ├── 0001-Fix-crash-on-a-non-disk-device.patch │ │ ├── 0002-gpart-avoid-superfluous-seek-calls.patch │ │ ├── 0003-gpart-use-posix_fadvise-to-increase-reading-speed.patch │ │ ├── 0004-Speed-up-by-reading-larger-chunks.patch │ │ ├── 0005-Add-LVM2-and-btrfs-to-list-of-supported-modules.patch │ │ └── musl_loff_t.patch │ └── template ├── gparted │ ├── files │ │ ├── README.voidlinux │ │ ├── gparted-pkexec │ │ └── org.void.pkexec.gparted.policy │ └── template ├── gperf │ └── template ├── gperftools-devel ├── gperftools │ ├── patches │ │ ├── armv6.patch │ │ ├── elf-mem-image-musl.patch │ │ ├── ppc-musl.patch │ │ └── sigev_notify_thread_id.patch │ └── template ├── gpgme-devel ├── gpgme-python3 ├── gpgme-qt6-devel ├── gpgme-qt6 │ ├── patches │ ├── template │ └── update ├── gpgme │ ├── patches │ │ └── cmake-crossbuild-support.patch │ └── template ├── gpgmepp ├── gpgmepp-devel ├── gpgmeqt ├── gpgmeqt-devel ├── gphoto2 │ └── template ├── gpick │ ├── patches │ │ ├── cmake.patch │ │ └── revert-cpp-lua.patch │ └── template ├── gpicview │ ├── patches │ │ └── 0001-fix-segfault-when-using-under-wayland.patch │ └── template ├── gping │ └── template ├── gpm-devel ├── gpm │ ├── files │ │ ├── gpm.sh │ │ └── gpm │ │ │ └── run │ ├── patches │ │ ├── musl-gpm_h.patch │ │ ├── musl-includes.patch │ │ ├── musl-linux_major_h.patch │ │ ├── musl-select.patch │ │ └── musl-sigaction.patch │ ├── template │ └── update ├── gpodder │ └── template ├── gpredict │ ├── template │ └── update ├── gprolog │ ├── template │ └── update ├── gpsbabel │ ├── patches │ │ ├── configure.patch │ │ └── enigma.patch │ ├── template │ └── update ├── gpscorrelate │ └── template ├── gpsd-devel ├── gpsd-python ├── gpsd-qt ├── gpsd-qt-devel ├── gpsd-xgps ├── gpsd │ ├── files │ │ └── gpsd │ │ │ └── run │ ├── patches │ │ └── fix-ncurses.patch │ ├── template │ └── update ├── gpsim-devel ├── gpsim │ ├── template │ └── update ├── gptfdisk │ └── template ├── gputils │ ├── template │ └── update ├── gqrx │ └── template ├── grabc │ └── template ├── gradle │ ├── files │ │ └── gradle │ └── template ├── grafana │ ├── INSTALL │ ├── files │ │ └── grafana │ │ │ └── run │ └── template ├── grafx2 │ ├── template │ └── update ├── grail-devel ├── grail │ └── template ├── gramps │ ├── patches │ │ └── 1411.patch │ └── template ├── granite-devel ├── granite │ └── template ├── granite7-devel ├── granite7 │ └── template ├── grantlee5-devel ├── grantlee5 │ └── template ├── grap │ └── template ├── graphene-devel ├── graphene │ └── template ├── graphite-devel ├── graphite │ ├── template │ └── update ├── graphviz-devel ├── graphviz-libs ├── graphviz │ ├── INSTALL │ ├── REMOVE │ ├── graphviz-gtk.INSTALL │ ├── graphviz-gtk.REMOVE │ ├── graphviz-x11.INSTALL │ ├── graphviz-x11.REMOVE │ └── template ├── graphwar │ ├── files │ │ ├── graphwar │ │ ├── graphwar-globalServer │ │ └── graphwar-roomServer │ └── template ├── grass-devel ├── grass │ ├── patches │ │ ├── generic-installdir.patch │ │ └── musl.patch │ └── template ├── grc │ ├── files │ │ └── conf.socklog │ └── template ├── greetd │ ├── files │ │ ├── README.voidlinux │ │ ├── greetd.pam │ │ └── greetd │ │ │ └── run │ ├── patches │ │ ├── change-default-vt.patch │ │ └── fix-system-user.patch │ └── template ├── greg │ └── template ├── grep │ ├── patches │ │ └── efgrep-remove-warning.patch │ └── template ├── grepcidr │ └── template ├── grex │ └── template ├── greybird-themes │ └── template ├── grilo-devel ├── grilo-plugins │ └── template ├── grilo │ ├── patches │ │ └── fix-pc-file.patch │ └── template ├── grim │ └── template ├── grimshot │ └── template ├── grip │ ├── patches │ │ └── werkzeug-3.0.patch │ └── template ├── grive2 │ ├── patches │ │ └── missing-include.patch │ └── template ├── grml-rescueboot │ ├── files │ │ └── README.voidlinux │ └── template ├── grml-zsh-config │ ├── template │ └── update ├── groff-doc ├── groff │ ├── files │ │ └── site.tmac │ └── template ├── gromit-mpx │ └── template ├── gron │ └── template ├── growlight │ └── template ├── grpc-devel ├── grpc │ ├── patches │ │ ├── cmake.patch │ │ └── revert-find-protobuf.patch │ ├── template │ └── update ├── grpcurl │ └── template ├── grpn │ ├── patches │ │ └── gcc14.patch │ └── template ├── grub-arm64-efi ├── grub-btrfs-runit ├── grub-btrfs │ ├── files │ │ └── grub-btrfs │ │ │ ├── conf │ │ │ └── run │ ├── patches │ │ └── no-root-please.patch │ └── template ├── grub-customizer │ ├── files │ │ └── grub.cfg │ ├── patches │ │ └── musl-string.patch │ └── template ├── grub-i386-coreboot ├── grub-i386-efi ├── grub-powerpc-ieee1275 ├── grub-terminus │ ├── files │ │ └── grub-terminus.template │ └── template ├── grub-utils ├── grub-x86_64-efi ├── grub-xen ├── grub │ ├── files │ │ ├── grub.default │ │ └── kernel.d │ │ │ └── grub.post │ ├── patches │ │ ├── 0004-add-GRUB_COLOR_variables.patch │ │ ├── devicetree-loading.patch │ │ ├── fix-compat-binutils-2.36.patch │ │ ├── grub-install-pvxen-paths.patch │ │ ├── ieee1275-clear-reset.patch │ │ ├── install_powerpc_machtypes.patch │ │ ├── os-prober-osx86.patch │ │ ├── ppc64el-disable-vsx.patch │ │ ├── revert-fwsetup-2.12.patch │ │ └── xfs.patch │ └── template ├── grype │ └── template ├── gsasl-devel ├── gsasl │ └── template ├── gscan2pdf │ ├── patches │ │ └── tesseract.patch │ └── template ├── gscope3 │ ├── patches │ │ └── musl.patch │ └── template ├── gscreenshot │ └── template ├── gsettings-desktop-schemas-devel ├── gsettings-desktop-schemas │ └── template ├── gsfonts │ ├── template │ └── update ├── gsimplecal-gtk2 ├── gsimplecal-gtk3 │ ├── patches │ │ └── invalid-cast.patch │ └── template ├── gsl-devel ├── gsl-ucg │ ├── patches │ │ └── riscv64.patch │ └── template ├── gsl │ ├── patches │ │ └── ppc-musl.patch │ └── template ├── gsmartcontrol │ ├── files │ │ └── README.voidlinux │ └── template ├── gsoap-devel ├── gsoap │ ├── patches │ │ ├── libressl.patch │ │ ├── libtool.patch │ │ └── musl.patch │ └── template ├── gsound-devel ├── gsound │ └── template ├── gspell-devel ├── gspell │ └── template ├── gssdp-devel ├── gssdp │ └── template ├── gst-libav │ ├── template │ └── update ├── gst-plugins-bad1-devel ├── gst-plugins-bad1 │ ├── template │ └── update ├── gst-plugins-base1-devel ├── gst-plugins-base1 │ ├── patches │ │ └── sndio.patch │ ├── template │ └── update ├── gst-plugins-good1-qt5 ├── gst-plugins-good1 │ ├── template │ └── update ├── gst-plugins-rs1 │ ├── patches │ │ └── 0002-dylib.patch │ └── template ├── gst-plugins-ugly1 │ ├── template │ └── update ├── gst-rtsp-server-devel ├── gst-rtsp-server │ └── template ├── gst1-editing-services-devel ├── gst1-editing-services │ ├── template │ └── update ├── gst1-python3 │ ├── template │ └── update ├── gst123 │ ├── patches │ │ └── fix-configure_ac.patch │ └── template ├── gstreamer-vaapi │ ├── template │ └── update ├── gstreamer1-aravis ├── gstreamer1-devel ├── gstreamer1-pipewire ├── gstreamer1 │ ├── template │ └── update ├── gstreamermm-devel ├── gstreamermm │ ├── patches │ │ ├── fix-build-with-gstreamer1.12.patch │ │ └── gstreamermm-1.10.0-no-volatile.patch │ └── template ├── gtest-devel ├── gtest │ ├── template │ └── update ├── gthumb-devel ├── gthumb │ ├── files │ │ └── README.voidlinux │ ├── patches │ │ └── build-order.patch │ └── template ├── gtk+-demo ├── gtk+-devel ├── gtk+ │ ├── files │ │ └── gtkrc │ ├── template │ └── update ├── gtk+3-demo ├── gtk+3-devel ├── gtk+3 │ ├── patches │ │ └── fix-instrospection.patch │ ├── template │ └── update ├── gtk-doc │ └── template ├── gtk-engine-equinox │ ├── template │ └── update ├── gtk-engine-murrine │ ├── template │ └── update ├── gtk-layer-shell-devel ├── gtk-layer-shell │ └── template ├── gtk-lshw ├── gtk-session-lock-devel ├── gtk-session-lock │ └── template ├── gtk-sharp │ ├── patches │ │ └── ftbfs.patch │ └── template ├── gtk-straw-viewer ├── gtk-theme-config │ ├── patches │ │ └── no_cc_for_vala.patch │ └── template ├── gtk-theme-united-gnome │ └── template ├── gtk-update-icon-cache ├── gtk-vnc-devel ├── gtk-vnc │ └── template ├── gtk-youtube-viewer ├── gtk2-engines │ ├── template │ └── update ├── gtk2fontsel │ └── template ├── gtk3-nocsd │ └── template ├── gtk4-demo ├── gtk4-devel ├── gtk4-doc ├── gtk4-layer-shell-devel ├── gtk4-layer-shell │ ├── patches │ │ └── remove-failing-tests.patch │ └── template ├── gtk4-update-icon-cache ├── gtk4 │ ├── patches │ │ └── remove-failing-tests.patch │ ├── template │ └── update ├── gtkd-devel ├── gtkd │ └── template ├── gtkdatabox3-devel ├── gtkdatabox3 │ ├── template │ └── update ├── gtkedit │ ├── files │ │ └── gtkedit.desktop │ └── template ├── gtkglarea-devel ├── gtkglarea │ └── template ├── gtkglext-devel ├── gtkglext │ ├── patches │ │ ├── Removing_deprecated_flags.patch │ │ ├── kill-pangox.patch │ │ └── name_conflict.patch │ └── template ├── gtkgreet │ └── template ├── gtkhotkey-devel ├── gtkhotkey │ └── template ├── gtkimageview-devel ├── gtkimageview │ └── template ├── gtklock │ └── template ├── gtklp │ └── template ├── gtkmm-devel ├── gtkmm │ └── template ├── gtkmm2-devel ├── gtkmm2 │ ├── template │ └── update ├── gtkmm4-devel ├── gtkmm4 │ ├── patches │ │ └── setlocale-sigsegv.patch │ ├── template │ └── update ├── gtkpod │ ├── patches │ │ ├── fix-libxml2-2.12.patch │ │ ├── musl.patch │ │ └── python3.patch │ └── template ├── gtksourceview-devel ├── gtksourceview │ ├── template │ └── update ├── gtksourceview2-devel ├── gtksourceview2 │ ├── patches │ │ └── python3.patch │ ├── template │ └── update ├── gtksourceview4-devel ├── gtksourceview4 │ ├── template │ └── update ├── gtksourceview5-devel ├── gtksourceview5 │ ├── template │ └── update ├── gtksourceviewmm-devel ├── gtksourceviewmm │ └── template ├── gtkspell-devel ├── gtkspell │ ├── patches │ │ └── enchant-2.patch │ └── template ├── gtkspell3-devel ├── gtkspell3 │ └── template ├── gtkwave │ └── template ├── gtranslator │ └── template ├── gts-devel ├── gts │ ├── patches │ │ └── cross.patch │ └── template ├── gtypist │ ├── patches │ │ └── ncurses.patch │ └── template ├── guake │ ├── INSTALL │ ├── REMOVE │ ├── patches │ │ └── Makefile.patch │ └── template ├── gucci │ └── template ├── gucharmap-devel ├── gucharmap │ ├── template │ └── update ├── gufw │ ├── patches │ │ └── gi-requires-webkit41.patch │ ├── template │ └── update ├── guidelines-support-library │ └── template ├── guile-devel ├── guile-wisp │ ├── patches │ │ └── escape.patch │ ├── template │ └── update ├── guile │ ├── patches │ │ ├── cross.patch │ │ ├── musl-longlong.patch │ │ ├── revert-logand.patch │ │ ├── test-hashing.patch │ │ └── zfs.patch │ └── template ├── guilt │ ├── template │ └── update ├── guitarix2 │ ├── patches │ │ ├── boost-1.69.patch │ │ └── python-3.11.patch │ └── template ├── gum │ └── template ├── gumbo-parser-devel ├── gumbo-parser │ └── template ├── gummi │ └── template ├── gummiboot ├── gummiboot-efistub ├── gupnp-av-devel ├── gupnp-av │ ├── patches │ │ └── 9557768121d54fdcedabe7544863515d6a813354.patch │ └── template ├── gupnp-devel ├── gupnp-dlna-devel ├── gupnp-dlna │ └── template ├── gupnp-igd-devel ├── gupnp-igd │ └── template ├── gupnp-tools │ ├── patches │ │ └── f675ac7e0afe67a86f3f1191d3274d6ffbd4e5d7.patch │ └── template ├── gupnp │ ├── patches │ │ └── fix-tests.patch │ └── template ├── gutenberg ├── gutenprint-devel ├── gutenprint │ ├── template │ └── update ├── guvcview │ ├── patches │ │ └── 0001-fix-building-with-musl-libc.patch │ └── template ├── gv │ └── template ├── gvfs-afc ├── gvfs-afp ├── gvfs-cdda ├── gvfs-devel ├── gvfs-goa ├── gvfs-gphoto2 ├── gvfs-mtp ├── gvfs-smb ├── gvfs │ ├── template │ └── update ├── gvim ├── gvim-huge ├── gwe │ ├── patches │ │ └── use-ayatana-appindicator.patch │ └── template ├── gwenhywfar-devel ├── gwenhywfar-gtk3 ├── gwenhywfar-qt5 ├── gwenhywfar │ ├── patches │ │ ├── cmake-prefix.patch │ │ └── qt5-cross.patch │ ├── template │ └── update ├── gwenview │ └── template ├── gxemul │ ├── patches │ │ └── patch-src_include_refcount__ptr.h.patch │ ├── template │ └── update ├── gxi ├── gxkb │ └── template ├── gxmessage │ └── template ├── gxml-devel ├── gxml │ └── template ├── gyazo │ └── template ├── gzdoom │ ├── patches │ │ ├── fix-build.patch │ │ ├── gzdoom-musl-fix-build.patch │ │ └── pk3location.patch │ ├── template │ └── update ├── gzip │ └── template ├── h2o-devel ├── h2o │ ├── files │ │ ├── h2o.conf │ │ └── h2o │ │ │ └── run │ ├── patches │ │ ├── fix-libressl-2.7.patch │ │ ├── link-against-system-libyaml.patch │ │ ├── tests-force-TLSv1.2-on-s_client-invocations.patch │ │ └── use-etc-ssl-certs.patch │ └── template ├── hackrf │ ├── patches │ │ └── fix-device-acess-via-elogind.patch │ └── template ├── halfempty │ └── template ├── halibut │ └── template ├── halloy │ ├── patches │ │ └── dynamic-liblzma.patch │ └── template ├── hamlib-devel ├── hamlib │ ├── patches │ │ └── fix-cross-perl.patch │ └── template ├── handbrake-cli ├── handbrake │ ├── patches │ │ ├── fix-missing-x265-link-flag.patch │ │ ├── gtk-meson.patch │ │ ├── i686.patch │ │ ├── libhb-vpl-include.patch │ │ ├── muxavformat_check_for_presence_of_AV_PKT_DATA_FALLBACK_TRACK.patch │ │ ├── remove-dvdnav-dup.patch │ │ ├── remove-faac-dependency.patch │ │ └── x265-pic_out.patch │ ├── template │ └── update ├── handlr │ └── template ├── hans │ └── template ├── haproxy │ ├── files │ │ ├── haproxy.cfg │ │ └── haproxy │ │ │ └── run │ ├── template │ └── update ├── harfbuzz-devel ├── harfbuzz │ └── template ├── hashcat-utils │ └── template ├── hashcat │ ├── template │ └── update ├── hashdeep │ ├── patches │ │ └── 6ef69a26126ee4e69a25392fd456b8a66c51dffd.patch │ └── template ├── haskell-language-server │ └── template ├── hatari │ └── template ├── hatch-fancy-pypi-readme │ └── template ├── hatch-jupyter-builder │ └── template ├── hatch-nodejs-version │ └── template ├── hatch-vcs │ └── template ├── hatch │ └── template ├── hatchling │ └── template ├── haveged │ ├── files │ │ └── haveged │ │ │ └── run │ └── template ├── havoc │ └── template ├── hblock │ └── template ├── hcloud │ └── template ├── hcxdumptool │ └── template ├── hcxtools │ └── template ├── hd-idle │ └── template ├── hdapsd │ └── template ├── hddtemp │ ├── files │ │ └── hddtemp │ │ │ └── run │ ├── template │ └── update ├── hdf5-devel ├── hdf5 │ ├── patches │ │ ├── 0af668f4091f1c35f621d2acdeadd34db6756976.patch │ │ └── workaround-broken-test-i686.patch │ └── template ├── hdparm │ └── template ├── heaptrack-gui ├── heaptrack │ ├── patches │ │ ├── fix-gcc14.patch │ │ └── fix-musl.patch │ └── template ├── hebcal │ └── template ├── hedgewars │ ├── patches │ │ ├── 0001-Add-support-for-ffmpeg-6.0.patch │ │ ├── cmake-build-type-none.patch │ │ └── i686.patch │ ├── template │ └── update ├── heimdall │ └── template ├── heirloom-sh │ └── template ├── heisenbridge │ ├── files │ │ └── heisenbridge │ │ │ └── run │ └── template ├── helden-software │ ├── patches │ │ ├── 0001-fix-file-locations.patch │ │ └── 0002-translate-comment.patch │ └── template ├── helix │ ├── patches │ │ └── skip_grammar_fetch.patch │ └── template ├── hello │ └── template ├── helm │ ├── patches │ │ ├── fix-musl.patch │ │ ├── fix_sigemptyset.patch │ │ ├── gcc9.patch │ │ └── kill-simdflags.patch │ └── template ├── help2man │ └── template ├── helvum │ └── template ├── herbe │ └── template ├── herbstluftwm │ └── template ├── hex-a-hop │ └── template ├── hex │ └── template ├── hex2hcd │ └── template ├── hexchat-devel ├── hexchat-lua ├── hexchat-perl ├── hexchat-python3 ├── hexchat │ ├── patches │ │ ├── url-percent-escape.patch │ │ ├── url_delim.patch │ │ └── whox_colon.patch │ └── template ├── hexd │ └── template ├── hexedit │ └── template ├── hexer │ ├── patches │ │ └── fix-cross.patch │ └── template ├── hexter │ ├── template │ └── update ├── hexyl │ └── template ├── hey │ └── template ├── heyu │ ├── patches │ │ └── muslc.patch │ └── template ├── hfsprogs │ ├── files │ │ └── APSL-2.0 │ ├── patches │ │ ├── fix-binary-and.patch │ │ ├── fix-pie-and-cross.patch │ │ ├── fix-potential-buffer-overflow.patch │ │ ├── fix-stdarg.patch │ │ ├── musl-compat.patch │ │ └── use-inttypes_h-formats.patch │ ├── template │ └── update ├── hfsutils │ └── template ├── hg-evolve │ └── template ├── hg-git │ ├── template │ └── update ├── hiawatha │ ├── files │ │ └── hiawatha │ │ │ └── run │ └── template ├── hicolor-icon-theme │ └── template ├── hidapi-devel ├── hidapi │ └── template ├── hidrd-devel ├── hidrd │ ├── patches │ │ └── 0001-Replace-use-of-tempfile-with-mktemp-in-tests.patch │ └── template ├── higan │ ├── patches │ │ ├── higan-paths.patch │ │ ├── makefile-fixes.patch │ │ └── makefile-root.patch │ └── template ├── highlight-perl ├── highlight │ ├── template │ └── update ├── highway-devel ├── highway │ └── template ├── himalaya │ └── template ├── hiredis-devel ├── hiredis │ ├── patches │ │ ├── fix-cflags.patch │ │ └── fix-pkgconfig.patch │ └── template ├── hitch │ ├── files │ │ ├── README.voidlinux │ │ └── hitch │ │ │ └── run │ ├── patches │ │ └── cross-compile.diff │ └── template ├── hitori │ └── template ├── hivemind │ └── template ├── hivex │ └── template ├── hledger-ui ├── hledger-web ├── hledger │ ├── files │ │ └── stack.yaml │ └── template ├── hlint │ ├── patches │ │ └── data.patch │ └── template ├── hnb │ └── template ├── hobbits │ └── template ├── homebank │ └── template ├── hoogle │ └── template ├── hooktftp │ └── template ├── hopper │ ├── template │ └── update ├── horizon │ └── template ├── horst │ └── template ├── hostaliases │ └── template ├── hostapd │ ├── files │ │ └── hostapd │ │ │ └── run │ ├── patches │ │ └── patch-src_utils_eloop_c.diff │ └── template ├── hostfw │ └── template ├── hostmux │ └── template ├── hosts-update │ ├── patches │ │ └── disable-systemd.patch │ └── template ├── hotspot │ └── template ├── hplip-gui ├── hplip-plugin │ ├── template │ └── update ├── hplip │ ├── INSTALL │ ├── REMOVE │ ├── hplip-gui.INSTALL │ ├── hplip-gui.REMOVE │ ├── patches │ │ ├── configure.patch │ │ ├── cups.patch │ │ ├── disable_upgrade.patch │ │ ├── gzip_text.patch │ │ ├── remove-imageprocessing-install.patch │ │ └── types-musl.patch │ └── template ├── hsetroot │ └── template ├── hsqldb1.8.0 │ ├── patches │ │ ├── 001-java-6.patch │ │ ├── 002-avoid-execution-in-script-or-log.patch │ │ ├── 003-bitxor.patch │ │ ├── 004-fix-lock.patch │ │ ├── 005-i104901.patch │ │ ├── 006-java-7.patch │ │ ├── 007-java-11.patch │ │ ├── 008-multiple-result-set.patch │ │ └── 009-no-implmenetation-vendor.patch │ └── template ├── hstr │ ├── patches │ │ └── cross.patch │ └── template ├── ht │ ├── patches │ │ └── fix-build.patch │ └── template ├── html-xml-utils │ ├── patches │ │ └── musl.patch │ └── template ├── htmlcxx-devel ├── htmlcxx │ └── template ├── htop │ └── template ├── http-parser-devel ├── http-parser │ ├── patches │ │ └── cve_2020_8287.patch │ └── template ├── httpdirfs │ ├── patches │ │ └── musl.patch │ └── template ├── httpie │ └── template ├── httpry │ └── template ├── httpstat │ └── template ├── httptunnel │ └── template ├── httrack-devel ├── httrack │ └── template ├── hub │ └── template ├── hugin │ ├── patches │ │ ├── 0001-disable-vigra-links-exr-check.patch │ │ └── fix-cflags.patch │ ├── template │ └── update ├── hugo │ └── template ├── hunspell-af ├── hunspell-an ├── hunspell-ar ├── hunspell-be ├── hunspell-bg ├── hunspell-bn ├── hunspell-bo ├── hunspell-br ├── hunspell-bs ├── hunspell-ca_ES ├── hunspell-ckb ├── hunspell-cs ├── hunspell-da_DK ├── hunspell-de ├── hunspell-devel ├── hunspell-el_GR ├── hunspell-en ├── hunspell-en_GB-all ├── hunspell-en_GB-ize │ └── template ├── hunspell-eo ├── hunspell-es ├── hunspell-et ├── hunspell-fa ├── hunspell-fr_FR-reforme1990 ├── hunspell-fr_FR-toutesvariantes ├── hunspell-fr_FR │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── hunspell-gd ├── hunspell-gl ├── hunspell-gu ├── hunspell-gug ├── hunspell-he ├── hunspell-hi ├── hunspell-hr ├── hunspell-hu ├── hunspell-id ├── hunspell-is ├── hunspell-it_IT ├── hunspell-kmr ├── hunspell-ko ├── hunspell-lo ├── hunspell-lt ├── hunspell-lv ├── hunspell-mn ├── hunspell-ne ├── hunspell-nl_NL ├── hunspell-no ├── hunspell-oc ├── hunspell-pl ├── hunspell-pt_BR ├── hunspell-pt_PT ├── hunspell-pt_PT-preao │ └── template ├── hunspell-qtwebengine-dict │ └── template ├── hunspell-ro_RO ├── hunspell-ru_RU ├── hunspell-ru_RU-ieyo │ └── template ├── hunspell-si ├── hunspell-sk ├── hunspell-sl ├── hunspell-sq ├── hunspell-sr ├── hunspell-sv ├── hunspell-sw ├── hunspell-te ├── hunspell-th ├── hunspell-tr ├── hunspell-uk ├── hunspell-vi ├── hunspell │ ├── patches │ │ └── search_path.patch │ └── template ├── hurl │ └── template ├── hut │ └── template ├── hwids │ └── template ├── hwinfo-devel ├── hwinfo │ ├── files │ │ ├── ids.patch │ │ └── isdn.patch │ └── template ├── hwloc │ ├── template │ └── update ├── hxl │ └── template ├── hxtools │ ├── patches │ │ └── loff_t.patch │ └── template ├── hydrogen │ └── template ├── hydroxide │ └── template ├── hydrus │ └── template ├── hyperfine │ └── template ├── hyperrogue │ └── template ├── hyphen-af ├── hyphen-be ├── hyphen-bg ├── hyphen-ca ├── hyphen-cs ├── hyphen-da ├── hyphen-de ├── hyphen-devel ├── hyphen-el ├── hyphen-en ├── hyphen-eo ├── hyphen-es ├── hyphen-et ├── hyphen-fr ├── hyphen-gl ├── hyphen-hr ├── hyphen-hu ├── hyphen-id ├── hyphen-is ├── hyphen-it_IT ├── hyphen-lt ├── hyphen-lv ├── hyphen-mn ├── hyphen-nl_NL ├── hyphen-no ├── hyphen-pl ├── hyphen-pt_BR ├── hyphen-pt_PT ├── hyphen-ro ├── hyphen-ru ├── hyphen-sk ├── hyphen-sl ├── hyphen-sq ├── hyphen-sr ├── hyphen-sv ├── hyphen-te ├── hyphen-th ├── hyphen-tools ├── hyphen-uk ├── hyphen-zu ├── hyphen │ └── template ├── hyprpicker │ ├── patches │ │ ├── build-no-git.patch │ │ └── fix-musl.patch │ └── template ├── hyx │ └── template ├── i2c-tools-devel ├── i2c-tools │ ├── files │ │ └── 45-i2c-tools.rules │ └── template ├── i2pd-devel ├── i2pd │ ├── files │ │ └── i2pd │ │ │ └── run │ └── template ├── i3-devel ├── i3-gaps ├── i3 │ └── template ├── i3blocks-blocklets │ └── template ├── i3blocks │ ├── files │ │ └── README.voidlinux │ └── template ├── i3cat │ └── template ├── i3ipc-glib-devel ├── i3ipc-glib │ └── template ├── i3lock-color │ └── template ├── i3lock-fancy │ └── template ├── i3lock │ └── template ├── i3lockr │ └── template ├── i3status-rust │ └── template ├── i3status │ ├── INSTALL │ └── template ├── i3wsr │ └── template ├── i8kutils │ ├── files │ │ └── i8kmon │ │ │ └── run │ └── template ├── iagno │ ├── patches │ │ └── dont-write-gtkchild.patch │ └── template ├── iaito │ └── template ├── iamb │ └── template ├── iana-etc │ ├── files │ │ ├── protocols │ │ ├── services │ │ └── update.sh │ ├── template │ └── update ├── iat │ ├── template │ └── update ├── ibus-anthy │ ├── template │ └── update ├── ibus-array │ └── template ├── ibus-avro │ ├── patches │ │ └── autocorrect.patch │ └── template ├── ibus-bamboo │ └── template ├── ibus-chewing │ └── template ├── ibus-devel ├── ibus-gtk+ ├── ibus-gtk+3 ├── ibus-gtk4 ├── ibus-hangul │ ├── template │ └── update ├── ibus-libpinyin │ └── template ├── ibus-libthai │ └── template ├── ibus-m17n │ ├── files │ │ └── README.voidlinux │ └── template ├── ibus-mozc ├── ibus-rime │ └── template ├── ibus-sunpinyin ├── ibus │ └── template ├── icann-rdap-cli │ └── template ├── icdiff │ ├── patches │ │ └── tests-disable-format-and-lint.patch │ ├── template │ └── update ├── ice-ssb │ └── template ├── iceauth │ └── template ├── icecast │ ├── INSTALL │ ├── REMOVE │ ├── patches │ │ └── no-group.patch │ └── template ├── icedtea-sound-doc ├── icedtea-sound │ └── template ├── icedtea-web │ └── template ├── icewm │ └── template ├── icinga2 │ ├── INSTALL │ ├── files │ │ └── icinga2 │ │ │ └── run │ ├── patches │ │ └── cmake-3.15.patch │ └── template ├── ico │ └── template ├── icon-naming-utils │ └── template ├── icoutils │ └── template ├── ictree │ └── template ├── icu-devel ├── icu-libs ├── icu │ ├── patches │ │ └── standardize-vtzone-output.patch │ ├── template │ └── update ├── id3 │ ├── template │ └── update ├── id3lib-devel ├── id3lib │ ├── patches │ │ ├── 10-fix-compilation-with-cpp-headers.patch │ │ ├── 30-fix-utf16.patch │ │ ├── 50-remove-outdated-check.patch │ │ ├── 60-id3lib-missing-nullpointer-check.patch │ │ ├── 61-fix_vbr_stack_smash.patch │ │ ├── CVE-2007-4460.patch │ │ ├── fix-abi.patch │ │ └── test-fix.patch │ ├── template │ └── update ├── id3ted │ ├── patches │ │ └── id3ted-1.0-fix-build-taglib2.patch │ └── template ├── id3v2 │ └── template ├── identity │ └── template ├── idesk │ ├── patches │ │ └── pkg-config.patch │ └── template ├── ideviceinstaller │ └── template ├── idjc │ └── template ├── idle-python ├── idle-python2 ├── idle-python3 ├── idle3-tools │ └── template ├── ifenslave │ ├── files │ │ ├── ifenslave.8 │ │ └── ifenslave.c │ └── template ├── ifstatus │ ├── patches │ │ └── ifstatus-1.1.0-tinfo.patch │ └── template ├── iftop │ └── template ├── ifupdown-ng │ ├── patches │ │ └── fix-tests.patch │ └── template ├── ifupdown │ ├── files │ │ └── 15-ifupdown.sh │ ├── patches │ │ ├── fix-musl.patch │ │ └── installdirs.patch │ └── template ├── ifuse │ └── template ├── igraph-devel ├── igraph │ └── template ├── igt-gpu-tools │ ├── patches │ │ └── musl.patch │ └── template ├── ii │ └── template ├── iio-sensor-proxy │ ├── files │ │ └── iio-sensor-proxy │ │ │ └── run │ └── template ├── ijq │ └── template ├── imagescan-plugin-networkscan │ └── template ├── imagescan │ ├── files │ │ └── imagescan.desktop │ ├── patches │ │ ├── boost-1.80.patch │ │ ├── makefile_in-sane_dll_d.patch │ │ └── sane.patch │ └── template ├── imagewriter │ ├── patches │ │ └── musl.patch │ └── template ├── imake │ └── template ├── imapfilter │ └── template ├── imath-devel ├── imath-python3 ├── imath-python3-devel ├── imath │ ├── patches │ │ └── split-pyimath-cmake-target.patch │ └── template ├── img │ └── template ├── img2pdf │ └── template ├── imgbrd-grabber │ ├── patches │ │ └── QPainterPath.patch │ └── template ├── imgp │ └── template ├── imhex-patterns ├── imhex │ ├── patches │ │ └── cross.patch │ └── template ├── iml-devel ├── iml │ └── template ├── imlib2-devel ├── imlib2-tools ├── imlib2-webp ├── imlib2 │ └── template ├── immer │ └── template ├── immortal │ └── template ├── impacket │ └── template ├── impala │ └── template ├── imsprog │ └── template ├── imv │ └── template ├── imwheel │ ├── patches │ │ ├── fix-jax-intptr_t.patch │ │ └── no-imwheel-gpm.patch │ └── template ├── inadyn │ ├── files │ │ ├── inadyn.conf │ │ └── inadyn │ │ │ └── run │ └── template ├── incidenceeditor-devel ├── incidenceeditor │ └── template ├── include-what-you-use │ ├── patches │ │ └── remove_offload_openmp_test.patch │ ├── template │ └── update ├── incron │ ├── files │ │ └── incron │ │ │ └── run │ ├── patches │ │ └── incron-0.5.12-prevent-zombies.patch │ ├── template │ └── update ├── incus-client ├── incus-tools ├── incus │ ├── files │ │ ├── README.voidlinux │ │ ├── incus-user │ │ │ └── run │ │ └── incus │ │ │ ├── check │ │ │ ├── control │ │ │ └── t │ │ │ └── run │ └── template ├── indent │ ├── patches │ │ └── fix-locale_h.patch │ └── template ├── indic-otf │ └── template ├── indicator-doom-cpu │ ├── patches │ │ ├── python3.patch │ │ └── use-ayatana-appindicator.patch │ └── template ├── inetutils-dnsdomainname ├── inetutils-ftp ├── inetutils-hostname ├── inetutils-ifconfig ├── inetutils-inetd ├── inetutils-ping ├── inetutils-rcp ├── inetutils-rexec ├── inetutils-rlogin ├── inetutils-rsh ├── inetutils-syslog ├── inetutils-talk ├── inetutils-telnet ├── inetutils-tftp ├── inetutils-traceroute ├── inetutils-uucpd ├── inetutils-whois ├── inetutils │ ├── files │ │ ├── dnsdomainname │ │ ├── rexec.xinetd │ │ ├── rlogin.xinetd │ │ ├── rsh.xinetd │ │ ├── talk.xinetd │ │ ├── telnet.xinetd │ │ ├── tftp.xinetd │ │ └── uucp.xinetd │ ├── patches │ │ ├── procnet-dev.patch │ │ └── tgetent.patch │ └── template ├── influxdb │ ├── files │ │ └── influxdb │ │ │ └── run │ └── template ├── inih-devel ├── inih │ ├── template │ └── update ├── iniparser-devel ├── iniparser-doc ├── iniparser │ └── template ├── injeqt-devel ├── injeqt │ ├── patches │ │ └── gcc7-fix.patch │ └── template ├── inkscape-silhouette │ ├── patches │ │ └── udev-install.patch │ └── template ├── inkscape │ ├── patches │ │ └── fix_poppler_25.06.0.patch │ ├── template │ └── update ├── innoextract │ └── template ├── inotify-tools-devel ├── inotify-tools │ └── template ├── input-leap-gui ├── input-leap │ ├── patches │ │ └── back-compat.patch │ └── template ├── input-utils │ ├── patches │ │ └── time64.patch │ ├── template │ └── update ├── inspectrum │ ├── patches │ │ └── QPainterPath.patch │ └── template ├── inspircd │ ├── files │ │ ├── README.voidlinux │ │ └── inspircd │ │ │ └── run │ └── template ├── instaloader │ └── template ├── instead │ └── template ├── intel-gmmlib-devel ├── intel-gmmlib │ └── template ├── intel-gpu-tools ├── intel-media-driver-devel ├── intel-media-driver │ ├── template │ └── update ├── intel-ucode │ ├── template │ └── update ├── intel-undervolt │ ├── patches │ │ ├── configurable-compiler.patch │ │ └── fix-musl.patch │ └── template ├── intel-video-accel │ └── template ├── intellij-idea-community-edition │ ├── template │ └── update ├── intellij-idea-ultimate-edition │ ├── files │ │ └── EULA │ ├── template │ └── update ├── interbench │ ├── files │ │ └── Makefile │ ├── patches │ │ └── musl-compat.patch │ └── template ├── interception-tools │ ├── files │ │ └── udevmon │ │ │ └── run │ └── template ├── intermodal │ └── template ├── intltool │ ├── patches │ │ ├── avoid-process-race.patch │ │ └── perl522.patch │ └── template ├── invada-studio-plugins-lv2 │ ├── patches │ │ └── invada-studio-fixes.patch │ ├── template │ └── update ├── invada-studio-plugins │ ├── template │ └── update ├── inxi │ ├── template │ └── update ├── io.elementary.calculator │ └── template ├── io.elementary.calendar │ ├── patches │ │ └── 00-musl.patch │ └── template ├── io.elementary.code │ └── template ├── io.elementary.files │ └── template ├── io.elementary.icons │ └── template ├── io.elementary.music │ ├── patches │ │ └── hardcode-theme.patch │ └── template ├── io.elementary.photos │ ├── patches │ │ └── rm-publishing.patch │ └── template ├── io.elementary.print │ └── template ├── io.elementary.stylesheet │ └── template ├── io.elementary.terminal │ ├── patches │ │ └── meson-0.61.patch │ └── template ├── io.elementary.videos │ └── template ├── iodine │ └── template ├── ion │ └── template ├── ioping │ └── template ├── ioprof │ ├── template │ └── update ├── iotop-c │ └── template ├── iotop │ ├── patches │ │ └── python3.patch │ └── template ├── iouyap │ ├── patches │ │ └── musl.patch │ └── template ├── ipafont-fonts-otf │ └── template ├── ipcalc │ └── template ├── ipe-devel ├── ipe │ ├── patches │ │ ├── c++20.patch │ │ ├── poppler-22.03.0-fix.patch │ │ └── poppler-22.09.0-fix.patch │ └── template ├── iperf │ ├── patches │ │ ├── fix-udphdr-musl.patch │ │ └── skip-ip6-tests-if-not-available.patch │ ├── template │ └── update ├── iperf3-devel ├── iperf3 │ ├── template │ └── update ├── ipfs-cluster │ └── template ├── ipgrep │ └── template ├── ipmitool │ ├── patches │ │ └── ipmitool-openssl-1.1.patch │ └── template ├── ipmiutil-devel ├── ipmiutil │ └── template ├── ipp-usb │ ├── files │ │ ├── README.voidlinux │ │ └── ipp-usb │ │ │ └── run │ ├── patches │ │ └── udev_runit.patch │ └── template ├── ippusbxd │ ├── files │ │ └── 55-ippusbxd.rules │ ├── patches │ │ └── fix-cflags.patch │ └── template ├── iprange │ └── template ├── iproute2-tc-ipt ├── iproute2 │ └── template ├── iprutils │ └── template ├── ipset │ ├── template │ └── update ├── ipsvd │ ├── patches │ │ └── cross.patch │ └── template ├── iptables-devel ├── iptables-nft ├── iptables │ ├── files │ │ ├── empty-filter.rules │ │ ├── empty-mangle.rules │ │ ├── empty-nat.rules │ │ ├── empty-raw.rules │ │ ├── empty-security.rules │ │ ├── empty.rules │ │ ├── ip6tables │ │ │ ├── finish │ │ │ └── run │ │ ├── iptables-flush.scripts │ │ ├── iptables │ │ │ ├── finish │ │ │ └── run │ │ └── simple_firewall.rules │ └── template ├── iptraf-ng │ └── template ├── iptstate │ └── template ├── iputils │ ├── INSTALL │ └── template ├── ipv6calc │ ├── patches │ │ └── use-bash-for-scripts.patch │ └── template ├── ipvsadm │ ├── files │ │ └── ipvsadm │ │ │ ├── finish │ │ │ └── run │ └── template ├── ipw2100-firmware │ ├── template │ └── update ├── ipw2200-firmware │ ├── template │ └── update ├── ircdog │ └── template ├── ired │ └── template ├── ironbar │ └── template ├── irqbalance │ ├── files │ │ └── irqbalance │ │ │ └── run │ └── template ├── irrlicht-devel ├── irrlicht │ └── template ├── irssi-devel ├── irssi-otr ├── irssi-perl ├── irssi │ └── template ├── iscan-data │ ├── INSTALL │ ├── REMOVE │ └── template ├── iscan-plugin-gt-s650 │ ├── INSTALL │ ├── REMOVE │ └── template ├── iscan │ ├── files │ │ └── README.voidlinux │ ├── patches │ │ ├── c99.patch │ │ ├── jpegstream.cc.patch │ │ ├── libpng15.patch │ │ └── uchar.patch │ ├── sane-epkowa.REMOVE │ └── template ├── ischroot ├── iselect │ └── template ├── isl-devel ├── isl │ └── template ├── isl15-devel ├── isl15 │ ├── template │ └── update ├── iso-codes │ └── template ├── isoimagewriter │ └── template ├── ispc │ ├── patches │ │ └── cmake-build-type-none.patch │ └── template ├── isync │ └── template ├── ite8291r3-ctl │ └── template ├── itstool │ ├── patches │ │ ├── fix-segfault.patch │ │ └── python312.patch │ └── template ├── iucode-tool │ ├── patches │ │ └── musl-limits_h.patch │ └── template ├── ivan │ ├── template │ └── update ├── iverilog │ ├── patches │ │ └── format-security.patch │ ├── template │ └── update ├── iw │ └── template ├── iwd │ ├── files │ │ ├── ead │ │ │ └── run │ │ └── iwd │ │ │ └── run │ ├── patches │ │ ├── fix-name-request.patch │ │ ├── musl.patch │ │ └── resolvconf-default.patch │ └── template ├── iwgtk │ └── template ├── j │ ├── files │ │ └── profilex_template.ijs │ ├── patches │ │ └── 9.5.1-noexecstack.patch │ └── template ├── j4-dmenu-desktop │ ├── template │ └── update ├── j4status-devel ├── j4status │ └── template ├── jaaa │ └── template ├── jack-devel ├── jack │ ├── files │ │ ├── 40-hpet-permissions.rules │ │ └── jack-limitsd.conf │ ├── patches │ │ ├── fix-execinfo.patch │ │ ├── waf-escape-seq.patch │ │ └── waf-imp.patch │ └── template ├── jack_capture │ └── template ├── jack_mixer │ └── template ├── jadx │ └── template ├── jalv │ └── template ├── jamulus │ ├── template │ └── update ├── janet-devel ├── janet │ └── template ├── jansson-devel ├── jansson │ └── template ├── japa │ └── template ├── jaq │ └── template ├── jasper-devel ├── jasper │ ├── template │ └── update ├── java-commons-io │ ├── template │ └── update ├── java-commons-lang │ ├── template │ └── update ├── javahelp2 │ ├── template │ └── update ├── jbig2dec-devel ├── jbig2dec │ ├── patches │ │ └── 2002_abi_compat.patch │ └── template ├── jbig2enc-devel ├── jbig2enc │ └── template ├── jbigkit-devel ├── jbigkit-libs ├── jbigkit │ └── template ├── jc │ └── template ├── jcal │ └── template ├── jcat-tests ├── jcat-tool ├── jd │ └── template ├── jdupes │ └── template ├── jedit │ ├── files │ │ ├── build.properties │ │ └── jedit │ ├── patches │ │ └── system-docbook.patch │ ├── template │ └── update ├── jellyfin-media-player │ ├── patches │ │ └── no-update-check.patch │ └── template ├── jemalloc-devel ├── jemalloc │ └── template ├── jenkins │ ├── files │ │ ├── LICENSE │ │ └── jenkins │ │ │ └── run │ ├── template │ └── update ├── jep │ └── template ├── jet │ └── template ├── jetbrains-jdk-bin │ ├── template │ └── update ├── jeti-filemanager │ └── template ├── jf │ └── template ├── jfsutils │ ├── patches │ │ ├── flush-before-read-musl.patch │ │ ├── jfsutils-1.1.15-sysmacros.patch │ │ └── portability.patch │ ├── template │ └── update ├── jgmenu │ └── template ├── jhead │ └── template ├── jid │ └── template ├── jigdo │ ├── patches │ │ ├── md5sum.patch │ │ ├── sizewidth.patch │ │ └── string.patch │ └── template ├── jimtcl-devel ├── jimtcl │ └── template ├── jinja-lsp │ └── template ├── jitterentropy-devel ├── jitterentropy-rngd │ ├── template │ └── update ├── jitterentropy │ ├── template │ └── update ├── jj-fzf │ └── template ├── jj │ └── template ├── jless │ └── template ├── jmol │ ├── files │ │ └── jmol.desktop │ ├── template │ └── update ├── jmtpfs │ └── template ├── jnettop │ └── template ├── jo │ └── template ├── jobflow │ └── template ├── joe │ └── template ├── john │ ├── patches │ │ └── 8152ac071bce1ebc98fac6bed962e90e9b92d8cf.patch │ ├── template │ └── update ├── joker │ └── template ├── jose-devel ├── jose │ └── template ├── jp │ └── template ├── jp2a │ └── template ├── jpeginfo │ └── template ├── jpegoptim │ └── template ├── jpm │ └── template ├── jq-devel ├── jq │ └── template ├── jreen-devel ├── jreen-qt5 ├── jreen-qt5-devel ├── jreen │ └── template ├── jrnl │ ├── template │ └── update ├── json-c++ │ └── template ├── json-c-devel ├── json-c │ ├── template │ └── update ├── json-glib-devel ├── json-glib │ └── template ├── json2tsv │ └── template ├── jsoncpp-devel ├── jsoncpp │ └── template ├── jsonnet-devel ├── jsonnet-language-server │ └── template ├── jsonnet │ ├── patches │ │ └── Makefile.patch │ └── template ├── jsonrpc-glib-devel ├── jsonrpc-glib │ └── template ├── juCi++ │ └── template ├── judy-devel ├── judy │ ├── patches │ │ └── e95874a4.patch │ └── template ├── jujutsu │ └── template ├── juk │ └── template ├── juliaup │ └── template ├── julius │ └── template ├── jump │ └── template ├── jupp │ ├── template │ └── update ├── jupyterlab │ └── template ├── just │ └── template ├── justbuild │ └── template ├── jwm │ ├── files │ │ └── jwm.desktop │ ├── template │ └── update ├── jxrlib-devel ├── jxrlib │ ├── patches │ │ └── usecmake.patch │ └── template ├── k3b │ └── template ├── k3d │ └── template ├── k9s │ └── template ├── kColorPicker-devel ├── kColorPicker-qt5-devel ├── kColorPicker-qt5 │ ├── patches │ │ └── rename-qt5.patch │ └── template ├── kColorPicker │ └── template ├── kImageAnnotator-devel ├── kImageAnnotator-qt5-devel ├── kImageAnnotator-qt5 │ ├── patches │ │ └── rename-qt5.patch │ └── template ├── kImageAnnotator │ └── template ├── kaboom │ └── template ├── kaccounts-integration-devel ├── kaccounts-integration │ ├── patches │ │ └── 23.04.0--exchange-desktop-file-for-cross-compilation.patch │ └── template ├── kaccounts-providers │ └── template ├── kactivities5-devel ├── kactivities5-stats-devel ├── kactivities5-stats │ ├── template │ └── update ├── kactivities5 │ ├── template │ └── update ├── kactivitymanagerd │ └── template ├── kaddressbook-devel ├── kaddressbook │ └── template ├── kaffeine │ ├── template │ └── update ├── kafkacat ├── kaitai-struct-compiler │ └── template ├── kak-lsp │ └── template ├── kakasi │ ├── patches │ │ └── cross.patch │ └── template ├── kakoune │ ├── template │ └── update ├── kalarm │ └── template ├── kalendar ├── kamera │ └── template ├── kamoso │ └── template ├── kanshi │ └── template ├── kapacitor │ ├── files │ │ └── kapacitor │ │ │ └── run │ └── template ├── kapidox │ └── template ├── kapman │ └── template ├── kapow │ └── template ├── karchive-devel ├── karchive │ ├── template │ └── update ├── kasts │ └── template ├── katarakt │ ├── patches │ │ └── not-an-octal-number.patch │ └── template ├── kate │ ├── template │ └── update ├── kate5 ├── kauth-devel ├── kauth │ ├── patches │ │ └── crossbuild-support.patch │ ├── template │ └── update ├── kbd │ ├── patches │ │ ├── fix-euro-symbol-es-keymap.patch │ │ └── kbd-2.0.2-backspace-1.patch │ └── template ├── kbdd │ └── template ├── kbdlight │ └── template ├── kbfs ├── kblocks │ └── template ├── kbookmarks-devel ├── kbookmarks │ ├── template │ └── update ├── kbounce │ └── template ├── kcachegrind │ ├── patches │ │ └── python3.patch │ └── template ├── kcalc │ └── template ├── kcalutils-devel ├── kcalutils │ └── template ├── kcat │ └── template ├── kcgi │ ├── template │ └── update ├── kcharselect │ └── template ├── kcm-wacomtablet │ ├── template │ └── update ├── kcmutils-devel ├── kcmutils │ ├── template │ └── update ├── kcodecs-devel ├── kcodecs │ ├── template │ └── update ├── kcolorchooser │ └── template ├── kcompletion-devel ├── kcompletion │ ├── patches │ │ └── cross.patch │ ├── template │ └── update ├── kconfig-devel ├── kconfig │ ├── patches │ │ └── add-crossbuild-support-for-its-tools.patch │ ├── template │ └── update ├── kconfigwidgets-devel ├── kconfigwidgets │ ├── patches │ │ └── cross.patch │ ├── template │ └── update ├── kcontacts-devel ├── kcontacts │ ├── template │ └── update ├── kcoreaddons-devel ├── kcoreaddons │ ├── patches │ │ └── desktoptojson-usage-crossbuild.patch │ ├── template │ └── update ├── kcov │ ├── patches │ │ ├── cmake.patch │ │ └── musl.patch │ └── template ├── kcrash-devel ├── kcrash │ ├── template │ └── update ├── kcron │ └── template ├── kdb-devel ├── kdb │ ├── patches │ │ ├── Find-also-Python3-with-find_package-PythonInterp.patch │ │ ├── kdb-fix-build.patch │ │ ├── kdb-mkspecs-path.patch │ │ └── postgresql12.patch │ └── template ├── kdbusaddons-devel ├── kdbusaddons │ ├── template │ └── update ├── kde-baseapps │ └── template ├── kde-cli-tools │ └── template ├── kde-gtk-config │ ├── template │ └── update ├── kde-gtk-config5 ├── kde-plasma │ └── template ├── kde5 ├── kde5-baseapps ├── kdeclarative-devel ├── kdeclarative │ ├── template │ └── update ├── kdeconnect │ ├── template │ └── update ├── kded-devel ├── kded │ ├── template │ └── update ├── kdegraphics-mobipocket ├── kdegraphics-thumbnailers │ └── template ├── kdelibs4support-devel ├── kdelibs4support │ ├── patches │ │ └── 0001-fix-test-build.patch │ ├── template │ └── update ├── kdenlive │ └── template ├── kdepim-addons │ └── template ├── kdepim-runtime │ └── template ├── kdeplasma-addons │ └── template ├── kdeplasma-addons5 ├── kdesignerplugin-devel ├── kdesignerplugin │ ├── patches │ │ └── kdesignerplugin-on-crossbuild.patch │ ├── template │ └── update ├── kdevelop-devel ├── kdevelop-pg-qt │ └── template ├── kdevelop-php │ ├── template │ └── update ├── kdevelop-python │ ├── patches │ │ └── kdev-python-1.7.0-py3-doc-syntax.patch │ ├── template │ └── update ├── kdevelop │ ├── files │ │ └── README.voidlinux │ └── template ├── kdewebkit-devel ├── kdewebkit │ ├── patches │ │ └── revert-bc67535891d6bfba5c8fce71acaec70c02d6df50.patch │ ├── template │ └── update ├── kdiagram-devel ├── kdiagram │ ├── template │ └── update ├── kdiagram6-devel ├── kdiagram6 │ └── template ├── kdialog │ └── template ├── kdiff3 │ └── template ├── kdoctools-devel ├── kdoctools │ ├── patches │ │ └── cross.patch │ ├── template │ └── update ├── kdsoap-ws-discovery-client-devel ├── kdsoap-ws-discovery-client │ └── template ├── kea │ ├── files │ │ ├── kea-dhcp-ddns │ │ │ └── run │ │ ├── kea-dhcp4 │ │ │ └── run │ │ └── kea-dhcp6 │ │ │ └── run │ ├── patches │ │ └── fix-musl-ethaddr.patch │ ├── template │ └── update ├── keditbookmarks │ └── template ├── keepalived │ ├── files │ │ └── keepalived │ │ │ └── run │ └── template ├── keepassxc │ └── template ├── kemoticons-devel ├── kemoticons │ ├── template │ └── update ├── kernel-libc-headers │ ├── patches │ │ ├── 1-4-glibc-specific-inclusion-of-sysinfo.h-in-kernel.h.patch │ │ └── 1-8-if_tunnel.h.patch │ ├── template │ └── update ├── kernelshark │ ├── patches │ │ └── musl.patch │ ├── template │ └── update ├── kew │ └── template ├── kexec-tools │ ├── patches │ │ └── ppc64-elfv2.patch │ └── template ├── kexi │ ├── patches │ │ ├── 3280c5ec9940f329dc75b2b8d9a52285b20209f0.patch │ │ ├── 79894e151a53c1afed55003c2e1faf23ea463ec7.patch │ │ ├── ftbfs.patch │ │ └── musl.patch │ └── template ├── keybase-desktop │ └── template ├── keybase │ ├── kbfs.INSTALL │ └── template ├── keychain │ ├── INSTALL.msg │ └── template ├── keyd │ ├── files │ │ └── keyd │ │ │ └── run │ └── template ├── keylaunch │ └── template ├── keynav │ ├── patches │ │ ├── fix-cursor-passthrough.patch │ │ └── fix-overlapping-screens.patch │ └── template ├── keypunch │ └── template ├── keystone-devel ├── keystone-python3 ├── keystone │ └── template ├── keyutils-devel ├── keyutils │ ├── patches │ │ ├── relative-lib.patch │ │ └── request-key.conf.patch │ └── template ├── kf6-akonadi-devel ├── kf6-akonadi │ ├── template │ └── update ├── kf6-attica-devel ├── kf6-attica │ └── template ├── kf6-baloo-devel ├── kf6-baloo │ └── template ├── kf6-bluez-qt-devel ├── kf6-bluez-qt │ └── template ├── kf6-frameworkintegration-devel ├── kf6-frameworkintegration │ └── template ├── kf6-grantleetheme-devel ├── kf6-grantleetheme │ └── template ├── kf6-kaccounts-integration-devel ├── kf6-kaccounts-integration │ ├── patches │ │ └── cmake-parse-args.patch │ └── template ├── kf6-karchive-devel ├── kf6-karchive │ └── template ├── kf6-kauth-devel ├── kf6-kauth-tools ├── kf6-kauth │ ├── patches │ │ └── cross.patch │ └── template ├── kf6-kbookmarks-devel ├── kf6-kbookmarks │ └── template ├── kf6-kcalendarcore-devel ├── kf6-kcalendarcore │ └── template ├── kf6-kcmutils-devel ├── kf6-kcmutils │ └── template ├── kf6-kcodecs-devel ├── kf6-kcodecs │ └── template ├── kf6-kcolorscheme-devel ├── kf6-kcolorscheme │ └── template ├── kf6-kcompletion-devel ├── kf6-kcompletion │ └── template ├── kf6-kconfig-devel ├── kf6-kconfig │ └── template ├── kf6-kconfigwidgets-devel ├── kf6-kconfigwidgets │ └── template ├── kf6-kcontacts-devel ├── kf6-kcontacts │ └── template ├── kf6-kcoreaddons-devel ├── kf6-kcoreaddons │ └── template ├── kf6-kcrash-devel ├── kf6-kcrash │ └── template ├── kf6-kdav-devel ├── kf6-kdav │ └── template ├── kf6-kdbusaddons-devel ├── kf6-kdbusaddons │ └── template ├── kf6-kdeclarative-devel ├── kf6-kdeclarative │ └── template ├── kf6-kdecoration-devel ├── kf6-kdecoration │ └── template ├── kf6-kded-devel ├── kf6-kded │ └── template ├── kf6-kdesu-devel ├── kf6-kdesu │ └── template ├── kf6-kdnssd-devel ├── kf6-kdnssd │ └── template ├── kf6-kdoctools-devel ├── kf6-kdoctools │ ├── patches │ │ └── cross.patch │ └── template ├── kf6-kfilemetadata-devel ├── kf6-kfilemetadata │ └── template ├── kf6-kglobalaccel-devel ├── kf6-kglobalaccel │ └── template ├── kf6-kguiaddons-devel ├── kf6-kguiaddons-geo-uri-handler ├── kf6-kguiaddons │ └── template ├── kf6-kholidays-devel ├── kf6-kholidays │ └── template ├── kf6-ki18n-devel ├── kf6-ki18n │ └── template ├── kf6-kiconthemes-devel ├── kf6-kiconthemes │ └── template ├── kf6-kidletime-devel ├── kf6-kidletime │ └── template ├── kf6-kimageformats │ └── template ├── kf6-kio-devel ├── kf6-kio │ ├── patches │ │ └── test.patch │ └── template ├── kf6-kirigami-devel ├── kf6-kirigami │ └── template ├── kf6-kitemmodels-devel ├── kf6-kitemmodels │ └── template ├── kf6-kitemviews-devel ├── kf6-kitemviews │ └── template ├── kf6-kjobwidgets-devel ├── kf6-kjobwidgets │ └── template ├── kf6-knewstuff-devel ├── kf6-knewstuff │ └── template ├── kf6-knotifications-devel ├── kf6-knotifications │ └── template ├── kf6-knotifyconfig-devel ├── kf6-knotifyconfig │ └── template ├── kf6-kpackage-devel ├── kf6-kpackage │ └── template ├── kf6-kparts-devel ├── kf6-kparts │ └── template ├── kf6-kpeople-devel ├── kf6-kpeople │ └── template ├── kf6-kplotting-devel ├── kf6-kplotting │ └── template ├── kf6-kpty-devel ├── kf6-kpty │ └── template ├── kf6-kquickcharts-devel ├── kf6-kquickcharts │ └── template ├── kf6-krunner-devel ├── kf6-krunner │ └── template ├── kf6-kservice-devel ├── kf6-kservice │ └── template ├── kf6-kstatusnotifieritem-devel ├── kf6-kstatusnotifieritem │ └── template ├── kf6-ksvg-devel ├── kf6-ksvg │ └── template ├── kf6-ktexteditor-devel ├── kf6-ktexteditor │ └── template ├── kf6-ktexttemplate-devel ├── kf6-ktexttemplate │ └── template ├── kf6-ktextwidgets-devel ├── kf6-ktextwidgets │ └── template ├── kf6-kunitconversion-devel ├── kf6-kunitconversion │ └── template ├── kf6-kuserfeedback-devel ├── kf6-kuserfeedback │ └── template ├── kf6-kwallet-devel ├── kf6-kwallet │ ├── patches │ │ └── cross-kwalletd.patch │ └── template ├── kf6-kwayland-devel ├── kf6-kwayland │ └── template ├── kf6-kwidgetsaddons-devel ├── kf6-kwidgetsaddons │ └── template ├── kf6-kwindowsystem-devel ├── kf6-kwindowsystem │ └── template ├── kf6-kxmlgui-devel ├── kf6-kxmlgui │ └── template ├── kf6-modemmanager-qt-devel ├── kf6-modemmanager-qt │ └── template ├── kf6-networkmanager-qt-devel ├── kf6-networkmanager-qt │ └── template ├── kf6-prison-devel ├── kf6-prison │ └── template ├── kf6-purpose-devel ├── kf6-purpose │ └── template ├── kf6-qqc2-desktop-style-devel ├── kf6-qqc2-desktop-style │ └── template ├── kf6-solid-devel ├── kf6-solid │ └── template ├── kf6-sonnet-devel ├── kf6-sonnet │ └── template ├── kf6-syndication-devel ├── kf6-syndication │ └── template ├── kf6-syntax-highlighting-devel ├── kf6-syntax-highlighting │ └── template ├── kf6-threadweaver-devel ├── kf6-threadweaver │ └── template ├── kfilemetadata5-devel ├── kfilemetadata5 │ ├── template │ └── update ├── kfind │ └── template ├── kgamma │ └── template ├── kgamma5 ├── kgendesignerplugin ├── kget │ └── template ├── kglobalaccel-devel ├── kglobalaccel │ ├── template │ └── update ├── kglobalacceld-devel ├── kglobalacceld │ └── template ├── kgpg │ └── template ├── kguiaddons-devel ├── kguiaddons │ ├── template │ └── update ├── khal │ ├── patches │ │ └── 01-remove-unecessary-dependcy.patch │ └── template ├── khard │ └── template ├── khelpcenter │ └── template ├── khmer-fonts-ttf │ └── template ├── kholidays-devel ├── kholidays │ ├── template │ └── update ├── khotkeys ├── khtml-devel ├── khtml │ ├── template │ └── update ├── ki18n-devel ├── ki18n │ ├── template │ └── update ├── kibi │ └── template ├── kicad-doc │ ├── template │ └── update ├── kicad-footprints ├── kicad-library ├── kicad-packages3D ├── kicad-symbols ├── kicad-templates ├── kicad │ ├── patches │ │ ├── aarch64-musl-ice.patch │ │ └── fix-linking.patch │ ├── template │ └── update ├── kickassembler │ └── template ├── kickshaw │ ├── files │ │ └── kickshaw.desktop │ └── template ├── kiconthemes-devel ├── kiconthemes │ ├── patches │ │ └── cross.patch │ ├── template │ └── update ├── kid3 │ └── template ├── kidentitymanagement-devel ├── kidentitymanagement │ └── template ├── kidletime-devel ├── kidletime │ ├── template │ └── update ├── kig │ └── template ├── kimap-devel ├── kimap │ └── template ├── kindd │ └── template ├── kinfocenter │ └── template ├── kinit-devel ├── kinit │ ├── INSTALL │ ├── patches │ │ └── musl.patch │ ├── template │ └── update ├── kio-devel ├── kio-extras │ └── template ├── kio-gdrive │ └── template ├── kio │ ├── patches │ │ └── musl.patch │ ├── template │ └── update ├── kirc │ └── template ├── kirigami-addons-devel ├── kirigami-addons │ └── template ├── kirigami2-devel ├── kirigami2 │ ├── template │ └── update ├── kismet │ ├── INSTALL │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── kitemmodels-devel ├── kitemmodels │ ├── template │ └── update ├── kitemviews-devel ├── kitemviews │ ├── patches │ │ └── cross.patch │ ├── template │ └── update ├── kitinerary-devel ├── kitinerary │ └── template ├── kitty-kitten ├── kitty-shell-integration ├── kitty-terminfo ├── kitty │ └── template ├── kiwix-lib-devel ├── kiwix-lib │ └── template ├── kiwix-tools │ ├── patches │ │ ├── 01-meson.patch │ │ ├── 02-meson.patch │ │ └── addr.patch │ └── template ├── kjobwidgets-devel ├── kjobwidgets │ ├── template │ └── update ├── kjs-devel ├── kjs │ ├── template │ └── update ├── klavaro │ └── template ├── kldap-devel ├── kldap │ └── template ├── kleopatra │ ├── files │ │ └── README.voidlinux │ └── template ├── klibc-devel ├── klibc │ ├── files │ │ └── initramfs-tools-hooks │ ├── patches │ │ ├── klibc-kbuild-include-provided-kcflags-in-klibccflags.patch │ │ └── sysinfo.patch │ └── template ├── klystrack │ └── template ├── kmag │ └── template ├── kmahjongg │ └── template ├── kmail-account-wizard │ └── template ├── kmail │ └── template ├── kmailtransport-devel ├── kmailtransport │ └── template ├── kmbox-devel ├── kmbox │ └── template ├── kmenuedit │ └── template ├── kmime6-devel ├── kmime6 │ ├── template │ └── update ├── kmines │ └── template ├── kmix │ └── template ├── kmod │ ├── INSTALL │ ├── files │ │ └── depmod-search.conf │ ├── patches │ │ ├── basename.patch │ │ ├── stdout.patch │ │ └── strndupa.patch │ └── template ├── kmonad │ ├── files │ │ └── 60-kmonad.rules │ └── template ├── kmplot │ └── template ├── kmscon │ └── template ├── kmymoney-devel ├── kmymoney │ ├── template │ └── update ├── knewstuff-devel ├── knewstuff │ ├── template │ └── update ├── knights │ └── template ├── knit │ └── template ├── knot-resolver-devel ├── knot-resolver │ ├── INSTALL │ ├── files │ │ ├── kres-cache-gc │ │ │ └── run │ │ └── kresd │ │ │ └── run │ ├── patches │ │ └── fix-cross-build.patch │ └── template ├── knot-utils ├── knot │ ├── files │ │ └── knotd │ │ │ └── run │ └── template ├── knotes │ └── template ├── knotifications-devel ├── knotifications │ ├── template │ └── update ├── knotifyconfig-devel ├── knotifyconfig │ ├── template │ └── update ├── kobodeluxe │ ├── INSTALL │ ├── REMOVE │ ├── patches │ │ ├── fix-const_strchr.patch │ │ └── fix-pipe12_name.patch │ ├── template │ └── update ├── kodi-addon-game-libretro │ └── template ├── kodi-addon-inputstream-adaptive │ └── template ├── kodi-addon-inputstream-rtmp │ └── template ├── kodi-addon-peripheral-joystick │ └── template ├── kodi-addon-pvr-hts │ ├── patches │ │ └── gcc12.patch │ └── template ├── kodi-addon-pvr-iptvsimple │ └── template ├── kodi-addon-pvr-zattoo │ ├── template │ └── update ├── kodi-addon-vfs-rar │ └── template ├── kodi-addon-vfs-sftp │ └── template ├── kodi-binary-addons │ └── template ├── kodi-devel ├── kodi-platform-devel ├── kodi-platform │ └── template ├── kodi-rpi ├── kodi │ ├── patches │ │ ├── cross-udfread.patch │ │ ├── cstdint.patch │ │ ├── fix_pipewire_1.4.0_compilation_error.patch │ │ ├── musl.patch │ │ └── no-werror.patch │ ├── template │ └── update ├── koi │ └── template ├── kolourpaint │ └── template ├── kompare │ └── template ├── kompose │ └── template ├── kona │ ├── template │ └── update ├── konqueror-devel ├── konqueror │ └── template ├── konquest │ └── template ├── konsole │ └── template ├── konsole5 ├── kontact │ └── template ├── kontactinterface-devel ├── kontactinterface │ └── template ├── konversation │ └── template ├── kopia │ └── template ├── kops │ └── template ├── kore │ ├── makefile.patch │ ├── patches │ │ ├── musl.patch │ │ ├── ppc64.patch │ │ ├── python-3.11.patch │ │ └── python-3.13.patch │ ├── template │ └── update ├── korganizer │ └── template ├── kotlin-bin │ ├── template │ └── update ├── kpackage-devel ├── kpackage │ ├── template │ └── update ├── kparts-devel ├── kparts │ ├── template │ └── update ├── kpartx │ ├── template │ └── update ├── kpat │ └── template ├── kpcli │ ├── template │ └── update ├── kpeople-devel ├── kpeople │ ├── template │ └── update ├── kpeoplevcard-devel ├── kpeoplevcard │ └── template ├── kpimtextedit-devel ├── kpimtextedit │ └── template ├── kpipewire-devel ├── kpipewire │ └── template ├── kpkpass-devel ├── kpkpass │ └── template ├── kplotting-devel ├── kplotting │ ├── patches │ │ └── cross.patch │ ├── template │ └── update ├── kpmcore-devel ├── kpmcore │ └── template ├── kproperty-devel ├── kproperty │ └── template ├── kqtquickcharts-devel ├── kqtquickcharts │ └── template ├── kquickimageeditor-devel ├── kquickimageeditor │ └── template ├── krdc-devel ├── krdc │ └── template ├── krdp │ └── template ├── krename │ ├── patches │ │ ├── e7dd767a.patch │ │ └── podofo-0.10.patch │ └── template ├── kreport-devel ├── kreport │ ├── patches │ │ └── symbol-loss.patch │ └── template ├── krfb │ └── template ├── kristall │ └── template ├── krita-devel ├── krita │ ├── patches │ │ ├── musl.patch │ │ └── sip68.patch │ └── template ├── kronometer │ └── template ├── kross-devel ├── kross │ ├── template │ └── update ├── kruler │ └── template ├── krunner-devel ├── krunner │ ├── template │ └── update ├── krusader │ └── template ├── ksanecore6-devel ├── ksanecore6 │ ├── template │ └── update ├── kscreen │ └── template ├── kscreenlocker-devel ├── kscreenlocker │ └── template ├── kservice-devel ├── kservice │ ├── template │ └── update ├── ksh-devel ├── ksh │ └── template ├── kshdb │ └── template ├── ksmtp-devel ├── ksmtp │ └── template ├── ksnip │ ├── patches │ │ └── 76f4b381.patch │ └── template ├── ksolid-devel ├── ksolid │ ├── template │ └── update ├── ksql │ └── template ├── ksshaskpass │ └── template ├── kstars │ └── template ├── ksuperkey │ └── template ├── ksysguard ├── ksystemlog │ └── template ├── ksystemstats │ └── template ├── kteatime │ └── template ├── ktextaddons-devel ├── ktextaddons │ └── template ├── ktexteditor-devel ├── ktexteditor │ ├── template │ └── update ├── ktextwidgets-devel ├── ktextwidgets │ ├── template │ └── update ├── ktnef-devel ├── ktnef │ └── template ├── ktoblzcheck-devel ├── ktoblzcheck │ └── template ├── ktorrent │ ├── files │ │ └── README.voidlinux │ └── template ├── ktouch │ └── template ├── ktuberling │ └── template ├── kturtle │ └── template ├── kubecfg │ └── template ├── kubectl ├── kubefwd │ └── template ├── kubernetes-helm │ └── template ├── kubernetes-kind │ └── template ├── kubernetes │ ├── files │ │ ├── environ │ │ │ ├── apiserver │ │ │ ├── config │ │ │ ├── controller-manager │ │ │ ├── kubelet │ │ │ ├── proxy │ │ │ └── scheduler │ │ ├── kube-apiserver │ │ │ └── run │ │ ├── kube-controller-manager │ │ │ └── run │ │ ├── kube-proxy │ │ │ └── run │ │ ├── kube-scheduler │ │ │ └── run │ │ └── kubelet │ │ │ └── run │ └── template ├── kubetail │ └── template ├── kubo │ ├── files │ │ └── ipfs │ │ │ └── run │ └── template ├── kunitconversion-devel ├── kunitconversion │ ├── template │ └── update ├── kup │ ├── patches │ │ └── musl.patch │ └── template ├── kupfer │ └── template ├── kurly │ ├── patches │ │ └── gomodsum.patch │ └── template ├── kvantum │ ├── patches │ │ └── lib32.patch │ └── template ├── kvirc │ ├── files │ │ └── TryRunResults.cmake │ ├── patches │ │ ├── python3.patch │ │ └── qt5.15.patch │ └── template ├── kwallet-cli │ ├── patches │ │ └── GNUmakefile.patch │ └── template ├── kwallet-devel ├── kwallet-pam │ └── template ├── kwallet │ ├── template │ └── update ├── kwalletmanager │ └── template ├── kwave │ └── template ├── kwayland-devel ├── kwayland-integration │ └── template ├── kwayland │ ├── template │ └── update ├── kwebapp │ ├── template │ └── update ├── kwidgetsaddons-devel ├── kwidgetsaddons │ ├── template │ └── update ├── kwin-devel ├── kwin-effects-forceblur │ └── template ├── kwin │ ├── patches │ │ └── cross.patch │ └── template ├── kwindowsystem-devel ├── kwindowsystem │ ├── template │ └── update ├── kworkspace ├── kwrite ├── kwrited │ └── template ├── kxmlgui-devel ├── kxmlgui │ ├── template │ └── update ├── kyua-tests ├── kyua │ └── template ├── l-smash │ └── template ├── labwc-menu-generator │ └── template ├── labwc │ └── template ├── ladspa-bs2b │ └── template ├── ladspa-sdk-doc ├── ladspa-sdk-example-plugins ├── ladspa-sdk-progs ├── ladspa-sdk │ ├── patches │ │ ├── fix-cross.patch │ │ └── fix-pie.patch │ ├── template │ └── update ├── lager │ └── template ├── lagrange │ └── template ├── lame-devel ├── lame │ ├── patches │ │ └── translit.patch │ ├── template │ └── update ├── lapack-devel ├── lapack │ └── template ├── lapacke ├── lapacke-devel ├── lapce │ ├── patches │ │ └── desktop-icon.patch │ ├── template │ └── update ├── laptop-mode │ ├── files │ │ └── laptop-mode │ │ │ ├── finish │ │ │ └── run │ ├── template │ └── update ├── lastpass-cli │ └── template ├── latencytop │ ├── patches │ │ └── use_cc.patch │ └── template ├── latte-dock │ └── template ├── lavalauncher │ └── template ├── layer-shell-qt-devel ├── layer-shell-qt │ └── template ├── lazarus │ └── template ├── lazydocker │ └── template ├── lazygit │ └── template ├── lbreakout2 │ ├── files │ │ ├── lbreakout2.desktop │ │ └── lbreakout2.png │ └── template ├── lbreakouthd │ ├── patches │ │ └── uint.patch │ └── template ├── lbzip2 │ ├── patches │ │ └── fseterr.patch │ └── template ├── lc0 │ ├── patches │ │ └── fix-32bit-build.patch │ └── template ├── lc3-tools ├── lcalc-devel ├── lcalc │ └── template ├── lcms-devel ├── lcms │ ├── template │ └── update ├── lcms2-devel ├── lcms2-tools ├── lcms2 │ └── template ├── lcov │ ├── patches │ │ ├── fix-undef-behaviour.patch │ │ └── handle-equals-signs.patch │ └── template ├── ldacBT-devel ├── ldacBT │ └── template ├── ldapdomaindump │ └── template ├── ldapvi │ ├── patches │ │ ├── Cast-the-trailing-NULL-on-execl-calls.patch │ │ └── renamed-getline.patch │ └── template ├── ldb-devel ├── ldb-python3 ├── ldb │ ├── patches │ │ ├── disable-compile-error-test.patch │ │ └── strtoull.patch │ └── template ├── ldc-runtime ├── ldc │ └── template ├── ldm │ ├── files │ │ └── ldm │ │ │ └── run │ └── template ├── ldns │ └── template ├── leafpad │ └── template ├── leatherman-devel ├── leatherman │ ├── patches │ │ ├── catch.patch │ │ ├── fix-include.patch │ │ └── reduce-vendor.patch │ └── template ├── ledger │ ├── patches │ │ └── cmake_wtf.patch │ └── template ├── leftwm │ └── template ├── legendary │ └── template ├── lego │ └── template ├── leiningen │ └── template ├── lel │ └── template ├── lemoa │ └── template ├── lemonbar-xft │ └── template ├── lemonbar │ └── template ├── lemurs │ └── template ├── lensfun-devel ├── lensfun │ ├── patches │ │ └── setuptools-root.patch │ ├── template │ └── update ├── leocad-data ├── leocad │ └── template ├── leptonica-devel ├── leptonica-examples ├── leptonica │ ├── template │ └── update ├── less │ ├── template │ └── update ├── lesspass │ └── template ├── lesspipe │ ├── files │ │ ├── lesspipe.csh │ │ └── lesspipe.sh │ └── template ├── lets │ └── template ├── letsconnect-client ├── leveldb-devel ├── leveldb │ └── template ├── lf │ ├── template │ └── update ├── lfe │ └── template ├── lfm │ └── template ├── lft │ ├── template │ └── update ├── lftp │ └── template ├── lftpfs │ └── template ├── lgi ├── lhasa-devel ├── lhasa │ └── template ├── lib2geom-devel ├── lib2geom │ └── template ├── libCello │ └── template ├── libClp ├── libClp-devel ├── libHX-devel ├── libHX │ └── template ├── libICE-devel ├── libICE │ └── template ├── libIDL-devel ├── libIDL │ └── template ├── libIce ├── libORBit2 ├── libQuotient-devel ├── libQuotient │ ├── patches │ │ └── testolmaccount.patch │ └── template ├── libSM-devel ├── libSM │ └── template ├── libX11-devel ├── libX11 │ └── template ├── libXScrnSaver-devel ├── libXScrnSaver │ └── template ├── libXau-devel ├── libXau │ └── template ├── libXaw-devel ├── libXaw │ └── template ├── libXaw3d-devel ├── libXaw3d │ └── template ├── libXcomposite-devel ├── libXcomposite │ └── template ├── libXcursor-devel ├── libXcursor │ └── template ├── libXdamage-devel ├── libXdamage │ └── template ├── libXdmcp-devel ├── libXdmcp │ └── template ├── libXext-devel ├── libXext │ └── template ├── libXfixes-devel ├── libXfixes │ └── template ├── libXfont2-devel ├── libXfont2 │ └── template ├── libXft-devel ├── libXft │ └── template ├── libXi-devel ├── libXi │ └── template ├── libXinerama-devel ├── libXinerama │ └── template ├── libXmu-devel ├── libXmu │ └── template ├── libXp-devel ├── libXp │ └── template ├── libXpm-devel ├── libXpm │ └── template ├── libXpresent-devel ├── libXpresent │ └── template ├── libXrandr-devel ├── libXrandr │ └── template ├── libXrender-devel ├── libXrender │ └── template ├── libXres-devel ├── libXres │ └── template ├── libXt-devel ├── libXt │ └── template ├── libXtst-devel ├── libXtst │ └── template ├── libXv-devel ├── libXv │ └── template ├── libXvMC-devel ├── libXvMC │ └── template ├── libXxf86dga-devel ├── libXxf86dga │ └── template ├── libXxf86vm-devel ├── libXxf86vm │ └── template ├── liba52-devel ├── liba52 │ ├── patches │ │ ├── cflags.patch │ │ └── disable-globals-test.patch │ ├── template │ └── update ├── libaacs-devel ├── libaacs │ └── template ├── libaal-devel ├── libaal │ └── template ├── libabigail-devel ├── libabigail-tools ├── libabigail │ ├── patches │ │ ├── musl.patch │ │ └── xbps.patch │ └── template ├── libabiword ├── libabw-devel ├── libabw-tools ├── libabw │ ├── patches │ │ └── boost.patch │ ├── template │ └── update ├── libaccounts-glib-devel ├── libaccounts-glib │ └── template ├── libaccounts-qt │ ├── patches │ │ └── cross.patch │ ├── template │ └── update ├── libaccounts-qt5 ├── libaccounts-qt5-devel ├── libaccounts-qt6 ├── libaccounts-qt6-devel ├── libada ├── libada-devel ├── libadwaita-demo ├── libadwaita-devel ├── libadwaita │ └── template ├── libaio-devel ├── libaio │ └── template ├── libairspy ├── libairspy-devel ├── libairspyhf ├── libairspyhf-devel ├── libalkimia ├── libalkimia-devel ├── libanthy ├── libanthy-unicode ├── libantlr3c │ └── template ├── libao-devel ├── libao-pulse ├── libao-sndio ├── libao │ ├── files │ │ └── libao.conf │ ├── patches │ │ └── nanosleep-missing-include.patch │ └── template ├── libaom-devel ├── libaom-tools ├── libaom │ ├── patches │ │ └── libaom-3.4.0-posix-c-source-ftello.patch │ ├── template │ └── update ├── libapparmor ├── libapparmor-devel ├── libaravis ├── libaravis-devel ├── libarchive-devel ├── libarchive │ ├── patches │ │ └── filter-xz-enable-threads.patch │ └── template ├── libargon2 ├── libargon2-devel ├── libaria2 ├── libaria2-devel ├── libart-devel ├── libart │ ├── template │ └── update ├── libaspell ├── libass-devel ├── libass │ └── template ├── libassimp ├── libassimp-devel ├── libassuan-devel ├── libassuan │ └── template ├── libasyncns-devel ├── libasyncns │ └── template ├── libatasmart-devel ├── libatasmart │ ├── patches │ │ └── libatasmart-strpool-cross-flags.patch │ ├── template │ └── update ├── libatomic ├── libatomic-devel ├── libatomic_ops-devel ├── libatomic_ops │ └── template ├── libatril ├── libatril-devel ├── libaubio ├── libaudit ├── libaudit-common ├── libaudit-devel ├── libauparse ├── libauparse-devel ├── libavc1394-devel ├── libavc1394 │ └── template ├── libavcodec ├── libavcodec6 ├── libavdevice ├── libavdevice6 ├── libavfilter ├── libavfilter6 ├── libavformat ├── libavformat6 ├── libavfs ├── libavif-devel ├── libavif │ └── template ├── libavresample ├── libavresample6 ├── libavutil ├── libavutil6 ├── libax25-devel ├── libax25 │ ├── patches │ │ └── musl.patch │ ├── template │ └── update ├── libayatana-appindicator-devel ├── libayatana-appindicator │ └── template ├── libayatana-indicator-devel ├── libayatana-indicator │ └── template ├── libb2-devel ├── libb2 │ └── template ├── libb64-devel ├── libb64 │ ├── patches │ │ ├── 01-cflags.patch │ │ ├── 02-bufsiz.patch │ │ ├── 03-internal-linkage.patch │ │ └── 04-initialise-coder-state.patch │ └── template ├── libbaseencode-devel ├── libbaseencode │ ├── patches │ │ └── fix-cflags.patch │ └── template ├── libbfb ├── libbfb-devel ├── libbitcoin-secp256k1 ├── libblkid ├── libblkid-devel ├── libblockdev-devel ├── libblockdev │ ├── template │ └── update ├── libbluetooth ├── libbluetooth-devel ├── libbluray-devel ├── libbluray-tools ├── libbluray │ └── template ├── libboost_atomic ├── libboost_chrono ├── libboost_container ├── libboost_context ├── libboost_contract ├── libboost_coroutine ├── libboost_date_time ├── libboost_fiber ├── libboost_filesystem ├── libboost_graph ├── libboost_graph_parallel ├── libboost_iostreams ├── libboost_json ├── libboost_locale ├── libboost_log ├── libboost_log_setup ├── libboost_math_c99 ├── libboost_math_c99f ├── libboost_math_c99l ├── libboost_math_tr1 ├── libboost_math_tr1f ├── libboost_math_tr1l ├── libboost_mpi ├── libboost_mpi-python3 ├── libboost_nowide ├── libboost_prg_exec_monitor ├── libboost_program_options ├── libboost_random ├── libboost_regex ├── libboost_serialization ├── libboost_stacktrace_addr2line ├── libboost_stacktrace_basic ├── libboost_stacktrace_noop ├── libboost_sync ├── libboost_system ├── libboost_thread ├── libboost_timer ├── libboost_type_erasure ├── libboost_unit_test_framework ├── libboost_url ├── libboost_wave ├── libboost_wserialization ├── libbpf-devel ├── libbpf │ └── template ├── libbraiding-devel ├── libbraiding │ └── template ├── libbreeze-icons ├── libbreeze-icons-devel ├── libbs2b-devel ├── libbs2b │ └── template ├── libbsd-devel ├── libbsd │ └── template ├── libbson ├── libbson-devel ├── libbtrfs ├── libbtrfs-devel ├── libbtrfsutil ├── libbtrfsutil-devel ├── libburn-devel ├── libburn │ └── template ├── libbytesize-devel ├── libbytesize-python3 ├── libbytesize │ └── template ├── libcaca-devel ├── libcaca │ └── template ├── libcacard-devel ├── libcacard │ └── template ├── libcaja ├── libcaja-devel ├── libcalc ├── libcalc-devel ├── libcamera-devel ├── libcamera │ └── template ├── libcanberra-devel ├── libcanberra-gtk3 ├── libcanberra-utils ├── libcanberra │ ├── patches │ │ └── 0001-gtk-Don-t-assume-all-GdkDisplays-are-GdkX11Displays.patch │ └── template ├── libcap-devel ├── libcap-ng-devel ├── libcap-ng-progs ├── libcap-ng-python ├── libcap-ng-python3 ├── libcap-ng │ ├── patches │ │ └── pid_t-portability.patch │ └── template ├── libcap-pam ├── libcap-progs ├── libcap │ └── template ├── libcaribou ├── libcbor-devel ├── libcbor │ └── template ├── libcddb-devel ├── libcddb │ ├── patches │ │ └── gcc14.patch │ └── template ├── libcdio-devel ├── libcdio-paranoia-devel ├── libcdio-paranoia │ └── template ├── libcdio │ ├── patches │ │ └── gcc14.patch │ └── template ├── libcdparanoia ├── libcdparanoia-devel ├── libcdr-devel ├── libcdr-tools ├── libcdr │ ├── template │ └── update ├── libcec-devel ├── libcec │ ├── patches │ │ ├── no-fqdn.patch │ │ ├── python-3.13.patch │ │ └── return-right.patch │ └── template ├── libcgroup-devel ├── libcgroup-utils ├── libcgroup │ ├── files │ │ └── cgred │ │ │ └── run │ ├── libcgroup-utils.INSTALL │ ├── template │ └── update ├── libchafa ├── libchamplain-devel ├── libchamplain │ └── template ├── libchardet-devel ├── libchardet │ └── template ├── libcheese ├── libchewing-devel ├── libchewing │ ├── patches │ │ └── cross-compile.patch │ └── template ├── libchicken ├── libchipcard-devel ├── libchipcard │ └── template ├── libchmlib ├── libchmlib-devel ├── libcinnamon-control-center ├── libclang ├── libclang-cpp ├── libclang-cpp17 ├── libclang-cpp18 ├── libclang-cpp19 ├── libclang17 ├── libclang18 ├── libclang19 ├── libclc │ └── template ├── libclc19 ├── libcli-devel ├── libcli │ └── template ├── libcloudproviders-devel ├── libcloudproviders │ └── template ├── libcmis-devel ├── libcmis-tools ├── libcmis │ └── template ├── libcmuclmtk ├── libcmuclmtk-devel ├── libcollectdclient ├── libcollectdclient-devel ├── libcolord ├── libcommuni-devel ├── libcommuni │ └── template ├── libcompizconfig-devel ├── libcompizconfig │ └── template ├── libconfig++ ├── libconfig++-devel ├── libconfig-devel ├── libconfig │ └── template ├── libcotp-devel ├── libcotp │ └── template ├── libcppunit-devel ├── libcppunit-examples ├── libcppunit │ ├── template │ └── update ├── libcprops-devel ├── libcprops │ ├── patches │ │ └── musl.patch │ └── template ├── libcpufreq ├── libcpufreq-devel ├── libcpuid-devel ├── libcpuid │ └── template ├── libcpupower ├── libcpupower-devel ├── libcracklib ├── libcroco-devel ├── libcroco │ └── template ├── libcrypto1.1 ├── libcrypto3 ├── libcryptsetup ├── libcryptui-devel ├── libcryptui │ ├── patches │ │ ├── daemon-fix-conflict-return-type.patch │ │ ├── daemon-port-to-gcr-3.patch │ │ ├── fix-logic-flaw-in-the-prompt-recipients-dialog.patch │ │ ├── musl-locale.patch │ │ └── support-new-gpg-versions.patch │ └── template ├── libcss-devel ├── libcss │ └── template ├── libcue-devel ├── libcue │ └── template ├── libcups ├── libcups-filters ├── libcups-filters-devel ├── libcupsfilters-devel ├── libcupsfilters │ └── template ├── libcurl ├── libcurl-devel ├── libcxx ├── libcxx-devel ├── libcxxabi ├── libcxxabi-devel ├── libdaemon-devel ├── libdaemon │ ├── patches │ │ └── libdaemon-0001-testd-use-unistd-h-instead-of-sys-unistd-h.patch │ └── template ├── libdar ├── libdar-devel ├── libdatachannel-devel ├── libdatachannel │ └── template ├── libdatovka-devel ├── libdatovka │ └── template ├── libdatrie-devel ├── libdatrie │ └── template ├── libdav1d ├── libdav1d-devel ├── libdav1d6 ├── libdaxctl ├── libdaxctl-devel ├── libdazzle-devel ├── libdazzle │ └── template ├── libdb ├── libdb-cxx ├── libdbdmysql ├── libdbdpgsql ├── libdbdsqlite ├── libdbi-devel ├── libdbi-doc ├── libdbi-drivers-devel ├── libdbi-drivers │ └── template ├── libdbi │ └── template ├── libdbus-c++-devel ├── libdbus-c++ │ ├── patches │ │ └── cross-tools.patch │ └── template ├── libdbusmenu-glib-devel ├── libdbusmenu-glib │ ├── patches │ │ └── python3.patch │ ├── template │ └── update ├── libdbusmenu-gtk3 ├── libdbusmenu-gtk3-devel ├── libdbusmenu-lxqt-devel ├── libdbusmenu-lxqt │ └── template ├── libdbusmenu-qt5-devel ├── libdbusmenu-qt5 │ └── template ├── libdca-devel ├── libdca │ └── template ├── libde265-devel ├── libde265-tools ├── libde265 │ └── template ├── libdebuginfod ├── libdecor-devel ├── libdecor │ └── template ├── libdeflate-devel ├── libdeflate │ └── template ├── libdex-devel ├── libdex │ ├── template │ └── update ├── libdiff │ ├── files │ │ ├── configure.glibc │ │ └── configure.musl │ └── template ├── libdill-devel ├── libdill │ ├── patches │ │ └── gcc9.patch │ └── template ├── libdiscid-devel ├── libdiscid │ └── template ├── libdispatch-devel ├── libdispatch │ ├── patches │ │ ├── musl.patch │ │ └── werror.patch │ └── template ├── libdisplay-info-devel ├── libdisplay-info │ └── template ├── libdjvulibre ├── libdmapsharing-devel ├── libdmapsharing │ └── template ├── libdmtx-devel ├── libdmtx │ └── template ├── libdmx-devel ├── libdmx │ └── template ├── libdnet-devel ├── libdnet │ └── template ├── libdockapp-devel ├── libdockapp │ └── template ├── libdom-devel ├── libdom │ └── template ├── libdri2-devel-git ├── libdri2-git │ └── template ├── libdrm-devel ├── libdrm-test-progs ├── libdrm │ ├── patches │ │ └── dont-build-noveau-tests.patch │ ├── template │ └── update ├── libdshconfig-devel ├── libdshconfig │ └── template ├── libdvbpsi-devel ├── libdvbpsi │ └── template ├── libdvdcss-devel ├── libdvdcss │ └── template ├── libdvdnav-devel ├── libdvdnav │ └── template ├── libdvdread-devel ├── libdvdread │ └── template ├── libdwarf-devel ├── libdwarf-doc ├── libdwarf │ └── template ├── libe-book-devel ├── libe-book-doc ├── libe-book │ ├── patches │ │ └── icu-68.patch │ ├── template │ └── update ├── libeatmydata │ ├── patches │ │ └── musl.patch │ └── template ├── libeb ├── libeb-devel ├── libebml-devel ├── libebml │ ├── template │ └── update ├── libebur128-devel ├── libebur128 │ └── template ├── libecryptfs ├── libecryptfs-devel ├── libedac ├── libedac-devel ├── libedit-devel ├── libedit │ ├── template │ └── update ├── libee-devel ├── libee │ ├── template │ └── update ├── libefivar ├── libefivar-devel ├── libei-devel ├── libei │ └── template ├── libelf ├── libelogind ├── libenca ├── libenet-devel ├── libenet │ └── template ├── libepoxy-devel ├── libepoxy │ └── template ├── libepubgen-devel ├── libepubgen │ └── template ├── liberation-fonts-ttf │ ├── files │ │ ├── 30-0-liberation-mono.conf │ │ ├── 30-0-liberation-sans.conf │ │ └── 30-0-liberation-serif.conf │ └── template ├── libesmtp-devel ├── libesmtp │ ├── patches │ │ └── openssl.patch │ ├── template │ └── update ├── libespeak ├── libespeak-devel ├── libespeak-ng ├── libespeak-ng-devel ├── libestr-devel ├── libestr │ ├── template │ └── update ├── libetonyek-devel ├── libetonyek-tools ├── libetonyek │ └── template ├── libetpan-devel ├── libetpan │ ├── patches │ │ ├── fix-musl.patch │ │ ├── implicit-declaration.patch │ │ └── multilib.patch │ └── template ├── libev-devel ├── libev │ └── template ├── libevdev-devel ├── libevdev-tools ├── libevdev │ ├── template │ └── update ├── libevdevPlus-devel ├── libevdevPlus │ ├── patches │ │ └── time64.patch │ └── template ├── libevent-devel ├── libevent │ ├── template │ └── update ├── libevhtp │ └── template ├── libevince ├── libewf-devel ├── libewf │ └── template ├── libexecinfo-devel ├── libexecinfo │ ├── patches │ │ ├── 01-execinfo.patch │ │ ├── 02-makefile.patch │ │ ├── 03-define-gnu-source.patch │ │ └── libexecinfo_pc.patch │ └── template ├── libexif-devel ├── libexif │ └── template ├── libextractor-devel ├── libextractor │ ├── patches │ │ ├── fix-tests.diff │ │ └── noexcept-must-not-throw.patch │ └── template ├── libexttextcat-devel ├── libexttextcat-tools ├── libexttextcat │ └── template ├── libfakekey-devel ├── libfakekey │ ├── template │ └── update ├── libfastjson-devel ├── libfastjson │ └── template ├── libfbclient3 ├── libfbclient3-devel ├── libfcitx5 ├── libfcitx5-devel ├── libfdisk ├── libfdisk-devel ├── libfetch-devel ├── libfetch │ ├── patches │ │ ├── soname.patch │ │ └── use-ssl-pending.patch │ └── template ├── libffado-devel ├── libffado-python ├── libffado │ ├── patches │ │ ├── cross-build.patch │ │ └── musl-stdint_h.patch │ └── template ├── libffi-devel ├── libffi │ ├── patches │ │ ├── libffi-race-condition.patch │ │ ├── mips-soft-float.patch │ │ ├── mips.sgidefs_h.patch │ │ ├── no-toolexeclibdir.patch │ │ ├── powerpc-fix-2.patch │ │ ├── powerpc-fix.patch │ │ ├── powerpc64-fix-2.patch │ │ └── powerpc64-fix.patch │ └── template ├── libffms2 ├── libffms2-devel ├── libfftw ├── libfido2-devel ├── libfido2 │ ├── INSTALL.msg │ └── template ├── libfilezilla-devel ├── libfilezilla │ └── template ├── libfirm-devel ├── libfirm │ ├── patches │ │ └── python-3.12.patch │ └── template ├── libfishsound-devel ├── libfishsound │ └── template ├── libfixposix-devel ├── libfixposix │ └── template ├── libfko ├── libfko-devel ├── libfl-devel ├── libflac ├── libflac-devel ├── libfluidsynth ├── libfm-devel ├── libfm-extra-devel ├── libfm-extra │ ├── template │ └── update ├── libfm-gtk+3 ├── libfm-gtk+3-devel ├── libfm-qt-devel ├── libfm-qt │ └── template ├── libfm-qt5-devel ├── libfm-qt5 │ └── template ├── libfm │ └── template ├── libfontenc-devel ├── libfontenc │ └── template ├── libfprint-devel ├── libfprint-udev-rules ├── libfprint │ ├── files │ │ └── 60-fprint-autosuspend.rules │ └── template ├── libfprint0-devel ├── libfprint0 │ ├── patches │ │ └── fix-stderr-redefinition.patch │ ├── template │ └── update ├── libfreeaptx-devel ├── libfreeaptx │ └── template ├── libfreecell-solver ├── libfreecell-solver-devel ├── libfreeglut-devel ├── libfreeglut │ ├── template │ └── update ├── libfreehand-devel ├── libfreehand-doc ├── libfreehand │ ├── patches │ │ ├── remove-extra-parens.patch │ │ └── umachine.patch │ ├── template │ └── update ├── libfreerdp ├── libfreerdp-server ├── libfreerdp3 ├── libfreerdp3-server ├── libfrr ├── libfrr-devel ├── libfrrospfapiclient ├── libfrrospfapiclient-devel ├── libfstrcmp ├── libfstrcmp-devel ├── libfswatch ├── libfswatch-devel ├── libftdi1-devel ├── libftdi1 │ └── template ├── libfuzzy ├── libfuzzy-devel ├── libgadu-devel ├── libgadu │ ├── patches │ │ └── musl-sys_types.h.diff │ └── template ├── libgamemode ├── libgamemode-devel ├── libgaminggear-devel ├── libgaminggear │ └── template ├── libgbinder-devel ├── libgbinder │ └── template ├── libgbm ├── libgbm-asahi ├── libgbm-asahi-devel ├── libgbm-devel ├── libgcc ├── libgcc-devel ├── libgccjit-devel ├── libgccjit │ ├── files │ │ ├── gccgo-musl.patch │ │ ├── libgnarl-musl.patch │ │ └── libssp-musl.patch │ ├── patches │ ├── template │ └── update ├── libgcj ├── libgcj-devel ├── libgcroots-devel ├── libgcroots │ └── template ├── libgcrypt-devel ├── libgcrypt │ └── template ├── libgda-devel ├── libgda-tools ├── libgda │ ├── template │ └── update ├── libgdal-devel ├── libgdal-python3 ├── libgdal-tools ├── libgdal │ ├── patches │ │ ├── 20-userfaultfd-detection.patch │ │ ├── 30-license.patch │ │ └── 40-fix-setup-py-cc.patch │ ├── template │ └── update ├── libgdata-devel ├── libgdata │ └── template ├── libgdiplus-devel ├── libgdiplus │ └── template ├── libgdlmm-devel ├── libgdlmm │ ├── template │ └── update ├── libgdm ├── libgedit-amtk-devel ├── libgedit-amtk │ └── template ├── libgedit-gfls-devel ├── libgedit-gfls │ └── template ├── libgedit-gtksourceview-devel ├── libgedit-gtksourceview │ └── template ├── libgedit-tepl-devel ├── libgedit-tepl │ └── template ├── libgee-devel ├── libgee │ ├── template │ └── update ├── libgee08 ├── libgee08-devel ├── libgensio-devel ├── libgensio │ └── template ├── libgeoip ├── libgeotiff-devel ├── libgeotiff │ └── template ├── libgepub-devel ├── libgepub │ ├── template │ └── update ├── libgexiv2-devel ├── libgexiv2 │ ├── template │ └── update ├── libgfortran ├── libgfortran-devel ├── libgfshare-devel ├── libgfshare-tools ├── libgfshare │ ├── patches │ │ └── cross.patch │ └── template ├── libgiac ├── libgiggle ├── libgimp ├── libgirepository ├── libgirepository-devel ├── libgit2-1.8-devel ├── libgit2-1.8 │ ├── patches │ │ └── disable-test-validate_current_user_ownership.patch │ ├── template │ └── update ├── libgit2-1.9-devel ├── libgit2-1.9 │ ├── patches │ │ └── disable-test-validate_current_user_ownership.patch │ ├── template │ └── update ├── libgit2-devel ├── libgit2-glib-devel ├── libgit2-glib │ └── template ├── libgit2 │ ├── patches │ │ └── disable-test-validate_current_user_ownership.patch │ └── template ├── libglabels30 ├── libglabels30-devel ├── libgladeui3 ├── libgldi ├── libglib-devel ├── libglibutil-devel ├── libglibutil │ └── template ├── libglob-devel ├── libglob │ └── template ├── libgltf-devel ├── libgltf │ └── template ├── libglusterfs ├── libglvnd-devel ├── libglvnd │ ├── patches │ │ └── musl-noasm-use-o0.patch │ └── template ├── libgme-devel ├── libgme │ ├── patches │ │ └── ppc-musl.patch │ ├── template │ └── update ├── libgmic ├── libgnome-games-support-devel ├── libgnome-games-support │ ├── template │ └── update ├── libgnome-games-support2-devel ├── libgnome-games-support2 │ ├── template │ └── update ├── libgnomecanvas-devel ├── libgnomecanvas │ └── template ├── libgnomecanvasmm-devel ├── libgnomecanvasmm │ └── template ├── libgnomekbd-devel ├── libgnomekbd │ └── template ├── libgnt-devel ├── libgnt │ ├── patches │ │ ├── cross-fix.diff │ │ └── fix-ncurses6.5.patch │ └── template ├── libgo ├── libgo-devel ├── libgomp ├── libgomp-devel ├── libgpaste ├── libgpg-error-devel ├── libgpg-error │ └── template ├── libgpgme ├── libgphoto2-devel ├── libgphoto2-udev-rules ├── libgphoto2 │ ├── patches │ │ └── gcc14-compat.patch │ └── template ├── libgpiod-devel ├── libgpiod-python3 ├── libgpiod-tools ├── libgpiod │ └── template ├── libgpm ├── libgpod-devel ├── libgpod │ ├── patches │ │ ├── 0001-323-Segmentation-fault-when-opening-ipod.patch │ │ └── libgpod-0.8.2-pkgconfig_overlinking.patch │ └── template ├── libgraphicsmagick ├── libgraphicsmagick-devel ├── libgravatar-devel ├── libgravatar │ └── template ├── libgrpc ├── libgs ├── libgsasl ├── libgsf-devel ├── libgsf │ └── template ├── libgsm-devel ├── libgsm │ ├── patches │ │ ├── gsm-1.0.12-64bit.patch │ │ ├── gsm-1.0.12-memcpy.patch │ │ └── gsm-1.0.13-shared.patch │ ├── template │ └── update ├── libgssglue-devel ├── libgssglue │ ├── files │ │ └── gssapi_mech.conf │ └── template ├── libgstreamerd ├── libgstreamerd-devel ├── libgta-devel ├── libgta │ ├── template │ └── update ├── libgtkdgl ├── libgtkdgl-devel ├── libgtkdsv ├── libgtkdsv-devel ├── libgtkhex ├── libgtop-devel ├── libgtop │ └── template ├── libgudev-devel ├── libgudev │ ├── template │ └── update ├── libguess-devel ├── libguess │ └── template ├── libguestfs-devel ├── libguestfs │ ├── files │ │ └── update-libguestfs-appliance │ ├── template │ └── update ├── libguile ├── libgusb-devel ├── libgusb │ └── template ├── libgweather-devel ├── libgweather │ ├── patches │ │ ├── a0834413ad51a2e461f9a1aeb813490dc48f2e22.patch │ │ ├── cross.patch │ │ └── vdsa.patch │ ├── template │ └── update ├── libgxps-devel ├── libgxps │ └── template ├── libhackrf ├── libhackrf-devel ├── libhandy-demo ├── libhandy-devel ├── libhandy │ ├── template │ └── update ├── libhandy1-demo ├── libhandy1-devel ├── libhandy1 │ ├── patches │ │ └── fix-tests.patch │ ├── template │ └── update ├── libhangul-devel ├── libhangul │ └── template ├── libharfbuzz ├── libhaveged ├── libhaveged-devel ├── libheif-devel ├── libheif-tools ├── libheif │ └── template ├── libhistory8 ├── libhomfly-devel ├── libhomfly │ ├── template │ └── update ├── libhtp-devel ├── libhtp │ └── template ├── libhubbub-devel ├── libhubbub │ └── template ├── libhugetlbfs-devel ├── libhugetlbfs-tools ├── libhugetlbfs │ ├── patches │ │ ├── 0001-Makefile-Fix-version-discovery.patch │ │ ├── 0002-Append-version-to-soname.patch │ │ └── 0003-glibc-2.34.patch │ └── template ├── libhunspell1.7 ├── libhwloc ├── libhwloc-devel ├── libiberty-devel ├── libibmad ├── libibmad-devel ├── libibus ├── libical-devel ├── libical │ ├── patches │ │ └── fix-cross.patch │ └── template ├── libicns-devel ├── libicns │ └── template ├── libiconv-devel ├── libiconv-utils ├── libiconv │ └── template ├── libid3tag-devel ├── libid3tag │ ├── files │ │ └── id3tag.pc │ ├── patches │ │ ├── CVE-2004-2779.patch │ │ ├── CVE-2008-2109.patch │ │ ├── CVE-2017-11550.patch │ │ ├── CVE-2017-11551.patch │ │ └── libid3tag-gperf.patch │ └── template ├── libidn-devel ├── libidn │ └── template ├── libidn2-devel ├── libidn2 │ └── template ├── libiec61883-devel ├── libiec61883 │ └── template ├── libieee1284-devel ├── libieee1284 │ ├── patches │ │ └── musl.patch │ └── template ├── libiio-devel ├── libiio-tools ├── libiio │ └── template ├── libiir1-devel ├── libiir1 │ └── template ├── libijs ├── libilbc-devel ├── libilbc │ └── template ├── libimagequant-devel ├── libimagequant │ └── template ├── libime-devel ├── libime-jyutping-devel ├── libime-jyutping-tools ├── libime-jyutping │ └── template ├── libime-migration ├── libime-utils ├── libime │ └── template ├── libimobiledevice-devel ├── libimobiledevice │ ├── patches │ │ ├── 00.cython3.patch │ │ ├── 01.cython3.patch │ │ └── python3.patch │ └── template ├── libinotify-tools ├── libinput-debug-gui │ ├── template │ └── update ├── libinput-devel ├── libinput-gestures │ └── template ├── libinput │ ├── template │ └── update ├── libinstpatch-devel ├── libinstpatch │ └── template ├── libio.elementary.calendar ├── libio.elementary.calendar-devel ├── libio.elementary.code ├── libio.elementary.code-devel ├── libio.elementary.files ├── libio.elementary.files-devel ├── libio.elementary.music ├── libio.elementary.music-devel ├── libiodbc-devel ├── libiodbc │ ├── patches │ │ └── musl-remove-wchar_t-check.patch │ └── template ├── libipset ├── libipset-devel ├── libiptcdata-devel ├── libiptcdata │ └── template ├── libircclient-devel ├── libircclient │ ├── files │ │ └── libircclient.pc │ └── template ├── libiscsi-devel ├── libiscsi-tools ├── libiscsi │ └── template ├── libisns ├── libisns-devel ├── libisofs-devel ├── libisofs │ └── template ├── libite-devel ├── libite │ └── template ├── libitm ├── libitm-devel ├── libixion-devel ├── libixion │ ├── template │ └── update ├── libjack ├── libjack-pipewire ├── libjasper ├── libjaylink-devel ├── libjaylink │ └── template ├── libjbig2dec ├── libjbig2enc ├── libjcat-devel ├── libjcat │ └── template ├── libjodycode-devel ├── libjodycode │ └── template ├── libjose ├── libjpeg-turbo-devel ├── libjpeg-turbo-tools ├── libjpeg-turbo │ └── template ├── libjxl-devel ├── libjxl-plugins ├── libjxl-tools ├── libjxl │ └── template ├── libkate ├── libkcddb-devel ├── libkcddb │ ├── patches │ │ └── 21.08.1 online test.patch │ └── template ├── libkcddb6-devel ├── libkcddb6 │ ├── template │ └── update ├── libkdcraw-qt6-devel ├── libkdcraw-qt6 │ ├── template │ └── update ├── libkdcraw5-devel ├── libkdcraw5 │ ├── template │ └── update ├── libkdegames-devel ├── libkdegames │ └── template ├── libkdepim-devel ├── libkdepim │ └── template ├── libkdumpfile-devel ├── libkdumpfile │ ├── patches │ │ └── config.patch │ └── template ├── libkea ├── libkea-devel ├── libkexiv2-devel ├── libkexiv2 │ ├── template │ └── update ├── libkexiv25-devel ├── libkexiv25 │ ├── template │ └── update ├── libkeybinder3-devel ├── libkeybinder3 │ ├── template │ └── update ├── libkeyfinder-devel ├── libkeyfinder │ ├── patches │ │ └── test.patch │ └── template ├── libkeyutils ├── libkf6screen-devel ├── libkf6screen │ ├── template │ └── update ├── libkgapi-devel ├── libkgapi │ ├── patches │ │ └── musl.patch │ └── template ├── libkleo-devel ├── libkleo │ └── template ├── libkmahjongg-devel ├── libkmahjongg │ └── template ├── libkml │ ├── patches │ │ └── NOUNCRYPT.patch │ └── template ├── libkmod ├── libkmod-devel ├── libknet1-devel ├── libknet1 │ └── template ├── libknot ├── libknot-devel ├── libkomparediff2-devel ├── libkomparediff2 │ └── template ├── libksane6-devel ├── libksane6 │ ├── template │ └── update ├── libksba-devel ├── libksba │ ├── template │ └── update ├── libkshark ├── libkshark-devel ├── libksieve-devel ├── libksieve │ └── template ├── libksolid ├── libksysguard-devel ├── libksysguard │ └── template ├── libktorrent-devel ├── libktorrent │ └── template ├── liblangtag-devel ├── liblangtag │ └── template ├── liblastfm-qt5-devel ├── liblastfm-qt5 │ └── template ├── liblastlog2 ├── liblastlog2-devel ├── liblc3-devel ├── liblc3 │ └── template ├── liblcf-devel ├── liblcf │ └── template ├── libldap ├── libldap-devel ├── libldns ├── libldns-devel ├── libledger ├── libledger-devel ├── libliftoff-devel ├── libliftoff │ └── template ├── liblightdm-gobject ├── liblightdm-qt5 ├── liblilv ├── liblldb17 ├── liblldb18 ├── liblldb19 ├── libllvm ├── libllvm17 ├── libllvm18 ├── libllvm19 ├── liblo-devel ├── liblo │ └── template ├── liblogging-devel ├── liblogging │ └── template ├── liblouis-devel ├── liblouis │ └── template ├── liblqr-devel ├── liblqr │ └── template ├── liblrdf-devel ├── liblrdf │ └── template ├── liblsmash ├── liblsmash-devel ├── libltc-devel ├── libltc │ └── template ├── libltdl ├── libltdl-devel ├── libluksmeta ├── libluv-devel ├── libluv │ ├── template │ └── update ├── liblxc ├── liblxqt-devel ├── liblxqt │ └── template ├── liblz4 ├── liblz4-devel ├── liblzf-devel ├── liblzma ├── liblzma-devel ├── libmaa-devel ├── libmaa │ └── template ├── libmad-devel ├── libmad │ ├── patches │ │ ├── CVE-2017-8372.patch │ │ ├── CVE-2017-8374.patch │ │ ├── amd64-64bit.diff │ │ ├── libmad.patch │ │ ├── mips-mode_di.patch │ │ └── optimize.diff │ └── template ├── libmagic ├── libmagick ├── libmagick-devel ├── libmagick-perl ├── libmanette-devel ├── libmanette │ └── template ├── libmarco ├── libmarco-devel ├── libmariadbclient ├── libmariadbclient-devel ├── libmarkdown2-devel ├── libmarkdown2 │ ├── patches │ │ ├── cross-configure_inc.patch │ │ └── cross-makefile_in.patch │ └── template ├── libmate-panel ├── libmate-panel-devel ├── libmatekbd-devel ├── libmatekbd │ ├── template │ └── update ├── libmatemixer-devel ├── libmatemixer │ ├── template │ └── update ├── libmateweather-devel ├── libmateweather │ ├── patches │ │ └── libsoup-3.0.patch │ ├── template │ └── update ├── libmatroska-devel ├── libmatroska │ ├── template │ └── update ├── libmaxminddb-devel ├── libmaxminddb │ └── template ├── libmbim-devel ├── libmbim │ └── template ├── libmcpp ├── libmcrypt-devel ├── libmcrypt │ ├── patches │ │ ├── 01-rotate-mask.patch │ │ ├── 02-autoconf-2.70.patch │ │ ├── 03-uninitialized.patch │ │ ├── 04-prototypes.patch │ │ └── 05-c99.patch │ └── template ├── libmd-devel ├── libmd │ └── template ├── libmd4c ├── libmd4c-devel ├── libmd4c-html ├── libmdb ├── libmdnsd ├── libmdnsd-devel ├── libmed ├── libmed-devel ├── libmediaart-devel ├── libmediaart │ └── template ├── libmediainfo-devel ├── libmediainfo │ ├── template │ └── update ├── libmemcached-devel ├── libmemcached-doc ├── libmemcached │ ├── patches │ │ ├── libmemcached-fix-linking-with-libpthread.patch │ │ ├── memflush.patch │ │ └── musl-fixes.patch │ └── template ├── libmgba ├── libmgba-devel ├── libmicrodns-devel ├── libmicrodns │ └── template ├── libmicrohttpd-devel ├── libmicrohttpd │ └── template ├── libmikmod-devel ├── libmikmod │ └── template ├── libmill-devel ├── libmill │ ├── patches │ │ └── gcc9.patch │ └── template ├── libmilter-devel ├── libmilter │ ├── files │ │ └── site.config.m4 │ ├── patches │ │ ├── enabled-shared-library.patch │ │ ├── glibc230.patch │ │ ├── musl-fix.patch │ │ └── thread-stacksize.patch │ └── template ├── libmirage-devel ├── libmirage │ ├── patches │ │ └── girpath.patch │ └── template ├── libmitlm ├── libmitlm-devel ├── libmj ├── libmj-devel ├── libmm-glib ├── libmms-devel ├── libmms │ └── template ├── libmng-devel ├── libmng │ └── template ├── libmnl-devel ├── libmnl │ └── template ├── libmodplug-devel ├── libmodplug │ └── template ├── libmodule-devel ├── libmodule │ └── template ├── libmosquitto ├── libmosquitto-devel ├── libmosquittopp ├── libmosquittopp-devel ├── libmount ├── libmount-devel ├── libmowgli-devel ├── libmowgli │ ├── patches │ │ ├── aarch64.patch │ │ └── fix-memory-leak.patch │ └── template ├── libmp3splt-devel ├── libmp3splt │ └── template ├── libmp4v2-devel ├── libmp4v2 │ ├── patches │ │ └── gcc7-fix-char_ptr.patch │ ├── template │ └── update ├── libmpack-devel ├── libmpack │ └── template ├── libmpc-devel ├── libmpc │ ├── template │ └── update ├── libmpcdec-devel ├── libmpcdec │ ├── template │ └── update ├── libmpdclient-devel ├── libmpdclient │ └── template ├── libmpeg2-devel ├── libmpeg2 │ ├── patches │ │ └── global-symbol-test.patch │ └── template ├── libmpg123 ├── libmrss-devel ├── libmrss │ └── template ├── libmsitools ├── libmspack-devel ├── libmspack │ └── template ├── libmspub-devel ├── libmspub-tools ├── libmspub │ ├── patches │ │ └── fix-MSPUBMetaData_cstdint.patch │ └── template ├── libmt32emu-devel ├── libmt32emu │ └── template ├── libmtp-devel ├── libmtp │ ├── patches │ │ └── fix-warning.patch │ └── template ├── libmulticobex ├── libmulticobex-devel ├── libmusicbrainz5-devel ├── libmusicbrainz5 │ ├── patches │ │ └── libxml2-2.12.patch │ ├── template │ └── update ├── libmwaw-devel ├── libmwaw-doc ├── libmwaw │ └── template ├── libmygpo-qt-devel ├── libmygpo-qt │ ├── patches │ │ └── fix-cflags.patch │ └── template ├── libmygui-devel ├── libmygui │ ├── template │ └── update ├── libmypaint-devel ├── libmypaint │ └── template ├── libmysofa-devel ├── libmysofa │ └── template ├── libmysqlclient ├── libmysqlclient-devel ├── libnatpmp-devel ├── libnatpmp │ └── template ├── libnautilus ├── libndctl ├── libndctl-devel ├── libndp-devel ├── libndp │ ├── patches │ │ └── musl-sendto.patch │ └── template ├── libnemo ├── libnest2d-devel ├── libnest2d │ ├── patches │ │ ├── allow-disallowed-areas.patch │ │ ├── boost-geometry-need-cxx-14.patch │ │ ├── fix-cmake.patch │ │ ├── new-catch2.patch │ │ └── soversion.patch │ └── template ├── libnet-devel ├── libnet-snmp ├── libnet │ ├── patches │ │ └── musl-build-fix.patch │ └── template ├── libnetfilter_acct-devel ├── libnetfilter_acct │ └── template ├── libnetfilter_conntrack-devel ├── libnetfilter_conntrack │ └── template ├── libnetfilter_cthelper-devel ├── libnetfilter_cthelper │ └── template ├── libnetfilter_cttimeout-devel ├── libnetfilter_cttimeout │ └── template ├── libnetfilter_log-devel ├── libnetfilter_log │ └── template ├── libnetfilter_queue-devel ├── libnetfilter_queue │ └── template ├── libnetpbm ├── libnetpbm-devel ├── libnetpgp ├── libnetpgp-devel ├── libnetwork-ups-tools ├── libnfc-devel ├── libnfc │ ├── patches │ │ └── fix-musl.patch │ └── template ├── libnfnetlink-devel ├── libnfnetlink │ └── template ├── libnfs-devel ├── libnfs │ ├── patches │ │ └── fix-musl.patch │ └── template ├── libnfsidmap ├── libnfsidmap-devel ├── libnftables ├── libnftables-devel ├── libnftnl-devel ├── libnftnl │ └── template ├── libnice-devel ├── libnice │ └── template ├── libnih-devel ├── libnih │ ├── patches │ │ └── musl.patch │ └── template ├── libnilfs ├── libnitrokey-devel ├── libnitrokey │ └── template ├── libnl3-devel ├── libnl3-progs ├── libnl3 │ ├── template │ └── update ├── libnm ├── libnma-devel ├── libnma │ └── template ├── libnotify-devel ├── libnotify │ ├── patches │ │ └── stylesheet_url.patch │ └── template ├── libnotmuch ├── libnotmuch-devel ├── libnova-devel ├── libnova │ └── template ├── libnozzle1 ├── libnozzle1-devel ├── libnpupnp-devel ├── libnpupnp │ └── template ├── libnsbmp-devel ├── libnsbmp │ └── template ├── libnsgif-devel ├── libnsgif │ └── template ├── libnsl-devel ├── libnsl │ └── template ├── libnss-cache │ ├── template │ └── update ├── libnsutils-devel ├── libnsutils │ └── template ├── libnuma ├── libnuma-devel ├── libnumbertext-devel ├── libnumbertext │ └── template ├── libnuspell ├── libnuspell-devel ├── libnvidia-container-devel ├── libnvidia-container │ ├── patches │ │ ├── fix-go1.24.patch │ │ ├── fix_rpc_flags.patch │ │ └── nogit.patch │ └── template ├── libnvme-devel ├── libnvme-doc ├── libnvme │ └── template ├── libnxml-devel ├── libnxml │ └── template ├── liboauth-devel ├── liboauth │ └── template ├── libobexftp ├── libobexftp-devel ├── libobjc ├── libobjc-devel ├── libodbc ├── libode-devel ├── libode │ ├── patches │ │ ├── patch1-96154db.patch │ │ ├── patch2-3262016.patch │ │ └── patch3-ea98ff1.patch │ ├── template │ └── update ├── libodfgen-devel ├── libodfgen │ └── template ├── libofx-devel ├── libofx │ └── template ├── libogdf-devel ├── libogdf │ ├── patches │ │ ├── libdir.patch │ │ └── no-march-native-werror.patch │ └── template ├── libogg-devel ├── libogg │ └── template ├── liboggz-devel ├── liboggz │ └── template ├── libogre-devel ├── libogre-doc ├── libogre │ ├── patches │ │ └── musl_str_l.patch │ ├── template │ └── update ├── liboil-devel ├── liboil │ └── template ├── libokular ├── libokular-devel ├── libomemo-c-devel ├── libomemo-c │ └── template ├── libomp ├── libomp-devel ├── libomp17 ├── libomp17-devel ├── libomp18 ├── libomp18-devel ├── libomp19 ├── libomp19-devel ├── libomxil-bellagio-devel ├── libomxil-bellagio │ ├── patches │ │ ├── fedora-fixes.patch │ │ ├── fix-malloc-size.patch │ │ └── memcpy-bounds.patch │ └── template ├── libopenal-devel ├── libopenal │ ├── template │ └── update ├── libopenaptx-devel ├── libopenaptx │ ├── template │ └── update ├── libopenbox ├── libopencv ├── libopencv-devel ├── libopencv-python3 ├── libopencv4 ├── libopencv4-devel ├── libopencv4-python3 ├── libopenexr ├── libopenexr-devel ├── libopenglrecorder-devel ├── libopenglrecorder │ ├── patches │ │ └── fix-cflags.patch │ └── template ├── libopenjpeg ├── libopenjpeg-devel ├── libopenjpeg2 ├── libopenjpeg2-devel ├── libopenmpi ├── libopenmpt-devel ├── libopenmpt │ ├── template │ └── update ├── libopenraw-devel ├── libopenraw-pixbuf-loader ├── libopenraw │ └── template ├── libopenrazer-devel ├── libopenrazer │ └── template ├── libopensc ├── libopenshot-audio-devel ├── libopenshot-audio │ ├── patches │ │ └── fix-musl.patch │ └── template ├── libopenshot-devel ├── libopenshot │ ├── patches │ │ └── musl.patch │ └── template ├── libopensmtpd-devel ├── libopensmtpd │ └── template ├── liboping-devel ├── liboping-perl ├── liboping │ └── template ├── libopkg ├── libopkg-devel ├── libopts ├── libopusenc-devel ├── libopusenc │ └── template ├── liborcus-devel ├── liborcus │ ├── template │ └── update ├── libosinfo-devel ├── libosinfo │ ├── patches │ │ └── meson-force-cross.patch │ └── template ├── libosmgpsmap-devel ├── libosmgpsmap-doc ├── libosmgpsmap │ ├── patches │ │ └── libsoup-3.patch │ └── template ├── libosmocore-devel ├── libosmocore │ ├── template │ └── update ├── libostree ├── libostree-devel ├── libotf-devel ├── libotf │ └── template ├── libotr-devel ├── libotr-progs ├── libotr │ ├── patches │ │ └── missing-include.patch │ └── template ├── libowfat │ ├── patches │ │ ├── fix-cross.patch │ │ ├── fix-glibc.patch │ │ └── fix-scan_longlong.patch │ └── template ├── libpagemaker-devel ├── libpagemaker-tools ├── libpagemaker │ ├── template │ └── update ├── libpam-mount ├── libpam-mount-devel ├── libpam-policycache │ └── template ├── libpanel-devel ├── libpanel │ ├── template │ └── update ├── libpano13-devel ├── libpano13 │ └── template ├── libpaper-devel ├── libpaper │ └── template ├── libpapers ├── libpapers-devel ├── libpar2-devel ├── libpar2 │ └── template ├── libparserutils-devel ├── libparserutils │ └── template ├── libparted ├── libparted-devel ├── libpcap-devel ├── libpcap │ └── template ├── libpciaccess-devel ├── libpciaccess │ └── template ├── libpcre ├── libpcre2 ├── libpcrecpp ├── libpcsclite ├── libpdal-devel ├── libpdal │ └── template ├── libpeas-devel ├── libpeas │ ├── template │ └── update ├── libpeas2-devel ├── libpeas2 │ ├── template │ └── update ├── libpeasd ├── libpeasd-devel ├── libpfm4-devel ├── libpfm4 │ ├── patches │ │ └── build-params.patch │ └── template ├── libpgf-devel ├── libpgf │ ├── patches │ │ └── CVE-2015-6673.patch │ └── template ├── libphobos ├── libphobos2.081 ├── libphonenumber-devel ├── libphonenumber │ ├── patches │ │ └── 32bit.patch │ └── template ├── libphorward ├── libphorward-devel ├── libpicosat ├── libpinyin-common ├── libpinyin-common-devel ├── libpinyin-devel ├── libpinyin-utils ├── libpinyin │ └── template ├── libpipeline-devel ├── libpipeline │ └── template ├── libpipewire ├── libpkgconf ├── libplacebo-devel ├── libplacebo │ └── template ├── libplasma-devel ├── libplasma │ └── template ├── libplist++ ├── libplist-devel ├── libplist-python3 ├── libplist │ └── template ├── libplplot ├── libpng-devel ├── libpng-progs ├── libpng │ ├── template │ └── update ├── libpocketsphinx ├── libpocketsphinx-devel ├── libpodofo ├── libpodofo-devel ├── libpodofo0.9.7-devel ├── libpodofo0.9.7 │ ├── template │ └── update ├── libpoppler ├── libportal-devel ├── libportal-gtk3 ├── libportal-gtk3-devel ├── libportal-gtk4 ├── libportal-gtk4-devel ├── libportal-qt5 ├── libportal-qt5-devel ├── libportal │ └── template ├── libpostproc ├── libpostproc6 ├── libpotrace ├── libppd-devel ├── libppd │ └── template ├── libpqxx-devel ├── libpqxx │ └── template ├── libprotobuf ├── libprotobuf-lite ├── libprotobuf-vala ├── libprotoc ├── libprotoc-devel ├── libproxy-devel ├── libproxy-python3 ├── libproxy │ ├── patches │ │ └── libproxy-0.4.7-unistd.patch │ └── template ├── libpsl-devel ├── libpsl │ └── template ├── libpst-devel ├── libpst-utils ├── libpst │ └── template ├── libpstoedit ├── libptytty-devel ├── libptytty │ └── template ├── libpulseaudio ├── libpurple ├── libpurple-devel ├── libpurple-facebook │ ├── template │ └── update ├── libpurple-mattermost │ └── template ├── libpurple-skypeweb │ └── template ├── libpurple-steam │ └── template ├── libpurple-telegram │ └── template ├── libpwquality-devel ├── libpwquality-python3 ├── libpwquality │ └── template ├── libpyldb-util ├── libpyside6 ├── libpyside6-devel ├── libpytalloc-util ├── libqaccessibilityclient-devel ├── libqaccessibilityclient │ └── template ├── libqalculate-devel ├── libqalculate │ └── template ├── libqb-devel ├── libqb │ └── template ├── libqhull ├── libqhull-devel ├── libqmi-devel ├── libqmi │ └── template ├── libqmobipocket-devel ├── libqmobipocket │ └── template ├── libqmobipocket6-devel ├── libqmobipocket6 │ ├── template │ └── update ├── libqpdf ├── libqpdf-devel ├── libqrencode ├── libqrtr-glib-devel ├── libqrtr-glib │ └── template ├── libqt5xdg-devel ├── libqt5xdg │ └── template ├── libqt6shadertools ├── libqtxdg-devel ├── libqtxdg │ └── template ├── libquadmath ├── libquadmath-devel ├── libquvi-devel ├── libquvi-scripts │ ├── template │ └── update ├── libquvi │ ├── template │ └── update ├── libqxp-devel ├── libqxp-tools ├── libqxp │ ├── template │ └── update ├── libraptor ├── libraqm-devel ├── libraqm │ └── template ├── librasqal ├── libratbag-devel ├── libratbag │ ├── files │ │ └── ratbagd │ │ │ └── run │ └── template ├── libraw-devel ├── libraw-progs ├── libraw │ ├── template │ └── update ├── libraw1394-devel ├── libraw1394-progs ├── libraw1394 │ └── template ├── librdf ├── librdkafka-devel ├── librdkafka │ └── template ├── libre-graph-api-cpp-qt-client │ └── template ├── libre2.10 │ └── template ├── libreadline8 │ ├── patches │ │ ├── accept-ncursesw.patch │ │ └── no-rpath-and-link.patch │ ├── template │ └── update ├── librec-devel ├── librec1 ├── librecode ├── libredwg-devel ├── libredwg-tools ├── libredwg │ ├── template │ └── update ├── librefl-devel ├── libreoffice-base ├── libreoffice-calc ├── libreoffice-common ├── libreoffice-dictionaries │ ├── template │ └── update ├── libreoffice-draw ├── libreoffice-fonts ├── libreoffice-gnome ├── libreoffice-i18n-af ├── libreoffice-i18n-am ├── libreoffice-i18n-ar ├── libreoffice-i18n-as ├── libreoffice-i18n-ast ├── libreoffice-i18n-be ├── libreoffice-i18n-bg ├── libreoffice-i18n-bn ├── libreoffice-i18n-bn-IN ├── libreoffice-i18n-bo ├── libreoffice-i18n-br ├── libreoffice-i18n-brx ├── libreoffice-i18n-bs ├── libreoffice-i18n-ca ├── libreoffice-i18n-ca-valencia ├── libreoffice-i18n-ckb ├── libreoffice-i18n-cs ├── libreoffice-i18n-cy ├── libreoffice-i18n-da ├── libreoffice-i18n-de ├── libreoffice-i18n-dgo ├── libreoffice-i18n-dsb ├── libreoffice-i18n-dz ├── libreoffice-i18n-el ├── libreoffice-i18n-en-GB ├── libreoffice-i18n-en-US ├── libreoffice-i18n-en-ZA ├── libreoffice-i18n-eo ├── libreoffice-i18n-es ├── libreoffice-i18n-et ├── libreoffice-i18n-eu ├── libreoffice-i18n-fa ├── libreoffice-i18n-fi ├── libreoffice-i18n-fr ├── libreoffice-i18n-fur ├── libreoffice-i18n-fy ├── libreoffice-i18n-ga ├── libreoffice-i18n-gd ├── libreoffice-i18n-gl ├── libreoffice-i18n-gu ├── libreoffice-i18n-gug ├── libreoffice-i18n-he ├── libreoffice-i18n-hi ├── libreoffice-i18n-hr ├── libreoffice-i18n-hsb ├── libreoffice-i18n-hu ├── libreoffice-i18n-id ├── libreoffice-i18n-is ├── libreoffice-i18n-it ├── libreoffice-i18n-ja ├── libreoffice-i18n-ka ├── libreoffice-i18n-kab ├── libreoffice-i18n-kk ├── libreoffice-i18n-km ├── libreoffice-i18n-kmr-Latn ├── libreoffice-i18n-kn ├── libreoffice-i18n-ko ├── libreoffice-i18n-kok ├── libreoffice-i18n-ks ├── libreoffice-i18n-lb ├── libreoffice-i18n-lo ├── libreoffice-i18n-lt ├── libreoffice-i18n-lv ├── libreoffice-i18n-mai ├── libreoffice-i18n-mk ├── libreoffice-i18n-ml ├── libreoffice-i18n-mn ├── libreoffice-i18n-mni ├── libreoffice-i18n-mr ├── libreoffice-i18n-my ├── libreoffice-i18n-nb ├── libreoffice-i18n-ne ├── libreoffice-i18n-nl ├── libreoffice-i18n-nn ├── libreoffice-i18n-nr ├── libreoffice-i18n-nso ├── libreoffice-i18n-oc ├── libreoffice-i18n-om ├── libreoffice-i18n-or ├── libreoffice-i18n-pa-IN ├── libreoffice-i18n-pl ├── libreoffice-i18n-pt ├── libreoffice-i18n-pt-BR ├── libreoffice-i18n-ro ├── libreoffice-i18n-ru ├── libreoffice-i18n-rw ├── libreoffice-i18n-sa-IN ├── libreoffice-i18n-sat ├── libreoffice-i18n-sd ├── libreoffice-i18n-si ├── libreoffice-i18n-sid ├── libreoffice-i18n-sk ├── libreoffice-i18n-sl ├── libreoffice-i18n-sq ├── libreoffice-i18n-sr ├── libreoffice-i18n-sr-Latn ├── libreoffice-i18n-ss ├── libreoffice-i18n-st ├── libreoffice-i18n-sv ├── libreoffice-i18n-sw-TZ ├── libreoffice-i18n-szl ├── libreoffice-i18n-ta ├── libreoffice-i18n-te ├── libreoffice-i18n-tg ├── libreoffice-i18n-th ├── libreoffice-i18n-tn ├── libreoffice-i18n-tr ├── libreoffice-i18n-ts ├── libreoffice-i18n-tt ├── libreoffice-i18n-ug ├── libreoffice-i18n-uk ├── libreoffice-i18n-uz ├── libreoffice-i18n-ve ├── libreoffice-i18n-vec ├── libreoffice-i18n-vi ├── libreoffice-i18n-xh ├── libreoffice-i18n-zh-CN ├── libreoffice-i18n-zh-TW ├── libreoffice-i18n-zu ├── libreoffice-impress ├── libreoffice-kde ├── libreoffice-kit ├── libreoffice-libgtk ├── libreoffice-math ├── libreoffice-postgresql ├── libreoffice-qt6 ├── libreoffice-writer ├── libreoffice-xtensions ├── libreoffice │ ├── patches │ │ ├── 001-build-option-java.patch │ │ ├── 002-libjvm-path-musl.patch │ │ ├── 003-musl-java.patch │ │ ├── 005-no-slowcheck.patch │ │ ├── 006-cross-flag.patch │ │ ├── 007-cross-python.patch │ │ ├── 008-zxing.patch │ │ ├── 010-gpgmepp.patch │ │ └── 011-fix_build_with_poppler_25.05.patch │ ├── template │ └── update ├── librepcb │ └── template ├── librespeed-cli │ └── template ├── libressl-netcat ├── libresvg-devel ├── libresvg0 ├── libretro-mupen64plus-rpi ├── libretro-mupen64plus │ ├── patches │ │ ├── add-string.patch │ │ ├── gl-typedefs.patch │ │ └── types.patch │ └── template ├── librevenge-devel ├── librevenge │ └── template ├── librhythmbox ├── librime-devel ├── librime │ ├── INSTALL │ └── template ├── librist-devel ├── librist │ └── template ├── librlog-devel ├── librlog │ ├── template │ └── update ├── librpm ├── librpm-devel ├── librpmbuild ├── librpmio ├── librpmsign ├── librsvg-devel ├── librsvg-utils ├── librsvg │ ├── template │ └── update ├── librsync-devel ├── librsync │ ├── files │ │ └── disableRuntimeTests.cmake │ └── template ├── librtas-devel ├── librtas │ ├── patches │ │ └── fix-endian_h.patch │ └── template ├── librtlsdr-devel ├── librtlsdr │ └── template ├── librtmp ├── librtmp-devel ├── librttopo-devel ├── librttopo │ └── template ├── librubberband ├── librygel ├── libsamplerate-devel ├── libsamplerate │ └── template ├── libsane ├── libsanitizer ├── libsanitizer-devel ├── libsasl-devel ├── libsasl │ ├── patches │ │ ├── cross-makemd5.patch │ │ └── gcc14.patch │ ├── template │ └── update ├── libsass-devel ├── libsass │ └── template ├── libscanmem ├── libscanmem-devel ├── libscfg-devel ├── libscfg │ └── template ├── libscrypt-devel ├── libscrypt │ └── template ├── libsearpc-codegen ├── libsearpc-devel ├── libsearpc-python3 ├── libsearpc │ └── template ├── libseat ├── libseat-devel ├── libseccomp-devel ├── libseccomp │ └── template ├── libsecp256k1-devel ├── libsecp256k1 │ └── template ├── libsecret-devel ├── libsecret │ ├── patches │ │ └── remove-test-collection.diff │ └── template ├── libselinux-devel ├── libselinux │ ├── patches │ │ ├── fts.patch │ │ └── musl.patch │ └── template ├── libsensors ├── libsensors-devel ├── libsepol-devel ├── libsepol │ └── template ├── libserd ├── libserialport-devel ├── libserialport │ ├── patches │ │ └── 0001-Remove-termiox-as-it-has-been-removed-from-recent-ke.patch │ ├── template │ └── update ├── libsfdo-devel ├── libsfdo │ └── template ├── libsgutils ├── libsharpyuv ├── libsharpyuv-devel ├── libshiboken6 ├── libshiboken6-devel ├── libshout-devel ├── libshout-idjc-devel ├── libshout-idjc │ └── template ├── libshout │ └── template ├── libshumate-devel ├── libshumate │ └── template ├── libsidplayfp-devel ├── libsidplayfp │ ├── template │ └── update ├── libsigc++-devel ├── libsigc++ │ ├── template │ └── update ├── libsigc++3-devel ├── libsigc++3 │ ├── template │ └── update ├── libsignal-protocol-c-devel ├── libsignal-protocol-c │ └── template ├── libsigrok-devel ├── libsigrok │ └── template ├── libsigrokdecode-devel ├── libsigrokdecode │ ├── patches │ │ └── python-3.10.patch │ └── template ├── libsigsegv-devel ├── libsigsegv │ ├── patches │ │ └── ppc-musl.patch │ └── template ├── libsixel-devel ├── libsixel-util ├── libsixel │ └── template ├── libskk-devel ├── libskk │ └── template ├── libslirp-devel ├── libslirp │ └── template ├── libsmartcols ├── libsmartcols-devel ├── libsmbclient │ └── template ├── libsmbios-devel ├── libsmbios-utils ├── libsmbios │ ├── patches │ │ └── fix-musl.patch │ └── template ├── libsnapper ├── libsndfile-devel ├── libsndfile-progs ├── libsndfile │ └── template ├── libsndio ├── libsodium-devel ├── libsodium │ └── template ├── libsonic ├── libsonic-devel ├── libsord ├── libsoup-devel ├── libsoup-gnome ├── libsoup-gnome-devel ├── libsoup │ ├── template │ └── update ├── libsoup3-devel ├── libsoup3 │ ├── template │ └── update ├── libsource-highlight ├── libsoxr-devel ├── libsoxr-doc ├── libsoxr │ ├── template │ └── update ├── libspa-alsa ├── libspa-audioconvert ├── libspa-audiomixer ├── libspa-bluetooth ├── libspa-control ├── libspa-jack ├── libspa-v4l2 ├── libspa-videoconvert ├── libspa-vulkan ├── libspatialindex-devel ├── libspatialindex │ └── template ├── libspatialite-devel ├── libspatialite │ └── template ├── libspdlog ├── libspectre-devel ├── libspectre │ └── template ├── libspectrum-devel ├── libspectrum │ └── template ├── libspeex ├── libspelling-devel ├── libspelling │ └── template ├── libspiro-devel ├── libspiro │ └── template ├── libspnav-devel ├── libspnav │ └── template ├── libsqsh ├── libsqsh-devel ├── libsrt ├── libsrtp-devel ├── libsrtp │ ├── files │ │ └── libsrtp.pc │ └── template ├── libssh-devel ├── libssh │ ├── template │ └── update ├── libssh2-devel ├── libssh2 │ └── template ├── libssl1.1 │ ├── template │ └── update ├── libssl3 ├── libstaroffice-devel ├── libstaroffice-tools ├── libstaroffice │ └── template ├── libstatgrab-devel ├── libstatgrab │ └── template ├── libstdc++ ├── libstdc++-devel ├── libstemmer ├── libstemmer-devel ├── libstk ├── libstk-devel ├── libstrophe-devel ├── libstrophe │ └── template ├── libsunpinyin ├── libsunpinyin-devel ├── libsvn ├── libsvt-av1 ├── libsvt-av1-devel ├── libsword ├── libswresample ├── libswresample6 ├── libswscale ├── libswscale6 ├── libswtpm ├── libswtpm-devel ├── libsynctex ├── libsysfs ├── libsysfs-devel ├── libsysprof ├── libsysstat-devel ├── libsysstat │ └── template ├── libt1 ├── libt3config-devel ├── libt3config │ └── template ├── libt3highlight-devel ├── libt3highlight │ └── template ├── libt3key-devel ├── libt3key │ ├── patches │ │ └── fix-cross.patch │ └── template ├── libt3widget-devel ├── libt3widget │ └── template ├── libt3window-devel ├── libt3window │ └── template ├── libtar-devel ├── libtar │ ├── patches │ │ └── CVE-2013-4420.patch │ └── template ├── libtasn1-devel ├── libtasn1-tools ├── libtasn1 │ └── template ├── libtcd-devel ├── libtcd │ └── template ├── libtd-devel ├── libtd │ └── template ├── libtdb ├── libteckit ├── libteckit-devel ├── libtecla-devel ├── libtecla │ ├── patches │ │ ├── fix-destdir.patch │ │ └── musl-build.patch │ └── template ├── libtermkey-devel ├── libtermkey │ └── template ├── libtermrec ├── libtermrec-devel ├── libtexpdf ├── libtexpdf-devel ├── libthai-devel ├── libthai │ └── template ├── libtheora-devel ├── libtheora │ ├── template │ └── update ├── libticables2-devel ├── libticables2 │ ├── patches │ │ └── ppc64le.patch │ └── template ├── libticalcs2-devel ├── libticalcs2 │ └── template ├── libtickit-devel ├── libtickit │ └── template ├── libticonv-devel ├── libticonv │ └── template ├── libtidy5 ├── libtidy5-devel ├── libtifiles2-devel ├── libtifiles2 │ └── template ├── libtimezonemap-devel ├── libtimezonemap │ ├── patches │ │ ├── libsoup3.patch │ │ └── use-after-free.patch │ └── template ├── libtinysparql ├── libtirpc-devel ├── libtirpc │ ├── template │ └── update ├── libtls-devel ├── libtls │ ├── patches │ │ ├── dynlink.patch │ │ └── fix-cert-perm.patch │ ├── template │ └── update ├── libtomcrypt-devel ├── libtomcrypt │ ├── patches │ │ └── libtomcrypt_1.17-2.diff │ ├── template │ └── update ├── libtommath-devel ├── libtommath │ └── template ├── libtool │ ├── patches │ │ ├── 0001-trailingslash.patch │ │ ├── 0002-rename-with-sysroot.patch │ │ ├── 0004-use-sysroot-in-libpath.patch │ │ └── fix-tests-grep-3.8.patch │ └── template ├── libtorrent-devel ├── libtorrent-rasterbar-devel ├── libtorrent-rasterbar-examples ├── libtorrent-rasterbar-python3 ├── libtorrent-rasterbar │ ├── template │ └── update ├── libtorrent │ ├── patches │ │ └── fix-sysroot-handling.patch │ └── template ├── libtotem ├── libtotem-plparser-mini ├── libtpm2-totp ├── libtpms-devel ├── libtpms │ ├── patches │ │ └── 806141196296150c03e5d826ab7e6c3602f41b98.patch │ └── template ├── libtracecmd ├── libtracecmd-devel ├── libtraceevent-devel ├── libtraceevent │ └── template ├── libtracefs-devel ├── libtracefs │ ├── patches │ │ ├── musl-limits_h.patch │ │ └── musl.patch │ └── template ├── libtracker ├── libtracker3 ├── libtranscript-devel ├── libtranscript │ └── template ├── libtree │ └── template ├── libtsm-devel ├── libtsm │ ├── patches │ │ └── build-type-none.patch │ └── template ├── libtxc_dxtn │ ├── template │ └── update ├── libu2f-host-devel ├── libu2f-host │ ├── patches │ │ ├── disable-help2man.patch │ │ └── lowercase-boolean.patch │ └── template ├── libu2f-server-devel ├── libu2f-server │ ├── patches │ │ ├── lowercase-boolean.patch │ │ ├── no-help2man.patch │ │ └── src-no-help.patch │ └── template ├── libuInputPlus-devel ├── libuInputPlus │ └── template ├── libucl-devel ├── libucl │ └── template ├── libucontext-devel ├── libucontext │ └── template ├── libudev0-shim │ └── template ├── libuecc-devel ├── libuecc │ └── template ├── libuev-devel ├── libuev │ └── template ├── libui-devel ├── libui │ ├── template │ └── update ├── libumockdev ├── libumockdev-devel ├── libump-git-devel ├── libump-git │ └── template ├── libunarr-devel ├── libunarr │ └── template ├── libunbound ├── libunibreak-devel ├── libunibreak │ ├── template │ └── update ├── libunicode-devel ├── libunicode │ └── template ├── libuninameslist-devel ├── libuninameslist │ └── template ├── libuninum-devel ├── libuninum │ ├── patches │ │ └── fix-unicode.patch │ └── template ├── libunistring-devel ├── libunistring │ └── template ├── libunrar ├── libunrar-devel ├── libunshield ├── libunshield-devel ├── libunwind-devel ├── libunwind │ ├── patches │ │ ├── mips-musl.patch │ │ ├── mips-read_write_s32.patch │ │ ├── mips-registers.patch │ │ └── ppc64-musl.patch │ └── template ├── libupnp-devel ├── libupnp │ ├── template │ └── update ├── libupnpp-devel ├── libupnpp │ └── template ├── libupower-glib3 ├── libupstart ├── libupstart-devel ├── liburcu-devel ├── liburcu │ ├── template │ └── update ├── liburing-devel ├── liburing │ ├── patches │ │ └── no-stack-protector.patch │ └── template ├── libusb-compat-devel ├── libusb-compat │ ├── patches │ │ └── fix-musl.patch │ └── template ├── libusb-devel ├── libusb │ └── template ├── libusbip ├── libusbip-devel ├── libusbmuxd-devel ├── libusbmuxd │ ├── patches │ │ └── musl.patch │ ├── template │ └── update ├── libutempter-devel ├── libutempter │ ├── INSTALL │ └── template ├── libutf8proc-devel ├── libutf8proc │ └── template ├── libuuid ├── libuuid-devel ├── libuv-devel ├── libuv │ ├── patches │ │ ├── disable-fs-chown.patch │ │ └── disable-setuid-test.patch │ └── template ├── libva-devel ├── libva-glx-devel ├── libva-glx │ ├── template │ └── update ├── libva-intel-driver │ └── template ├── libva-utils │ └── template ├── libva-vdpau-driver │ ├── patches │ │ ├── CreateSurfaceFromV4L2Buf.patch │ │ ├── fix-aarch64-musl.patch │ │ ├── libva-vdpau-driver-0.7.4-VAEncH264VUIBufferType.patch │ │ ├── libva-vdpau-driver-0.7.4-glext-missing-definition.patch │ │ └── libva-vdpau-driver-0.7.4-libvdpau-0.8.patch │ └── template ├── libva │ └── template ├── libvala ├── libvaladoc ├── libvamp-plugin-sdk ├── libvarlink-devel ├── libvarlink │ └── template ├── libvarnishapi ├── libvarnishapi-devel ├── libvde2 ├── libvdpau-devel ├── libvdpau-sunxi │ └── template ├── libvdpau-va-gl │ └── template ├── libvdpau │ ├── patches │ │ └── dlclose.patch │ ├── template │ └── update ├── libvdt-devel ├── libvdt │ └── template ├── libversion-devel ├── libversion │ └── template ├── libvidstab-devel ├── libvidstab │ ├── patches │ │ └── fix-cflags.patch │ ├── template │ └── update ├── libvips ├── libvips-devel ├── libvips-doc ├── libvips-heif ├── libvips-jxl ├── libvips-magick ├── libvips-poppler ├── libvirt-devel ├── libvirt-glib-devel ├── libvirt-glib │ ├── patches │ │ └── fix-cross.diff │ └── template ├── libvirt-python3 │ ├── template │ └── update ├── libvirt │ ├── files │ │ ├── libvirt-generic │ │ │ └── run │ │ ├── libvirtd │ │ │ └── run │ │ ├── musl-fork-nofree.patch │ │ ├── virtinterfaced │ │ │ └── run │ │ ├── virtlockd │ │ │ └── run │ │ ├── virtlogd │ │ │ └── run │ │ ├── virtlxcd │ │ │ └── run │ │ ├── virtnetworkd │ │ │ └── run │ │ ├── virtnodedevd │ │ │ └── run │ │ ├── virtnwfilterd │ │ │ └── run │ │ ├── virtproxyd │ │ │ └── run │ │ ├── virtqemud │ │ │ └── run │ │ ├── virtsecretd │ │ │ └── run │ │ ├── virtstoraged │ │ │ └── run │ │ ├── virtvboxd │ │ │ └── run │ │ └── virtxend │ │ │ └── run │ └── template ├── libvisio-devel ├── libvisio-tools ├── libvisio │ └── template ├── libvisual-devel ├── libvisual-plugins │ └── template ├── libvisual │ └── template ├── libvlc ├── libvncserver-devel ├── libvncserver │ └── template ├── libvoikko-devel ├── libvoikko │ └── template ├── libvorbis-devel ├── libvorbis │ └── template ├── libvpd-devel ├── libvpd │ └── template ├── libvpl-devel ├── libvpl-examples ├── libvpl │ ├── patches │ │ └── cross-pc.patch │ └── template ├── libvpx-devel ├── libvpx-tools ├── libvpx │ └── template ├── libvted ├── libvted-devel ├── libvterm-devel ├── libvterm │ ├── template │ └── update ├── libvtv ├── libvtv-devel ├── libwacom-devel ├── libwacom │ ├── patches │ │ └── e9777a0a979b4a760ca253cdb6ff1af9589d9e05.patch │ └── template ├── libwapcaplet-devel ├── libwapcaplet │ └── template ├── libwavpack ├── libwaylandpp-devel ├── libwaylandpp-doc ├── libwaylandpp │ ├── patches │ │ └── cstdint.patch │ └── template ├── libwebkit2gtk41-devel ├── libwebkit2gtk41 │ ├── patches │ │ ├── fix_armv6l.patch │ │ ├── prefer-pthread.patch │ │ ├── reproducible.patch │ │ └── x86-no-sse2.patch │ ├── template │ └── update ├── libwebkitgtk60 ├── libwebkitgtk60-devel ├── libwebp-devel ├── libwebp-tools ├── libwebp │ ├── template │ └── update ├── libwebsockets-devel ├── libwebsockets │ └── template ├── libwhich │ └── template ├── libwildmidi ├── libwildmidi-devel ├── libwireshark ├── libwireshark-devel ├── libwiringPi ├── libwiringPi-dev ├── libwkhtmltopdf ├── libwm │ ├── patches │ │ └── wm-reg-event.patch │ └── template ├── libwmf-devel ├── libwmf │ ├── patches │ │ ├── 01_player.c-integer-overflow-cve-2006-3376.patch │ │ ├── 02_font.c-always-check-generated-fontmap.patch │ │ ├── 03_font.c-compare-fonts-by-name.patch │ │ ├── 04_gd-gd_clip.c-use-after-free-cve-2009-1364.patch │ │ ├── CVE-2015-0848_CVE-2015-4588_CVE-2015-4695_CVE-2015-4696.patch │ │ ├── CVE-2016-9011.patch │ │ └── fix-gdk-pixbuf-loaders-location.patch │ └── template ├── libwnck-devel ├── libwnck │ ├── patches │ │ └── 0001-handle-avoid-segfault-in-invalidate_icons.patch │ └── template ├── libwoff2common1.0.2 ├── libwoff2dec1.0.2 ├── libwoff2enc1.0.2 ├── libwpd-devel ├── libwpd-tools ├── libwpd │ ├── patches │ │ └── fix-compat-gcc12.patch │ └── template ├── libwpe-devel ├── libwpe │ └── template ├── libwpg-devel ├── libwpg-tools ├── libwpg │ └── template ├── libwps-devel ├── libwps-tools ├── libwps │ └── template ├── libwv ├── libx86-devel ├── libx86 │ ├── template │ └── update ├── libx86emu-devel ├── libx86emu │ ├── patches │ │ └── makefile.patch │ └── template ├── libxapian ├── libxatracker ├── libxbps ├── libxbps-devel ├── libxcb-devel ├── libxcb │ └── template ├── libxcrypt-compat ├── libxcrypt-devel ├── libxcrypt │ └── template ├── libxcvt-devel ├── libxcvt │ ├── template │ └── update ├── libxdg-basedir-devel ├── libxdg-basedir │ ├── patches │ │ └── overflow-bug.patch │ └── template ├── libxerces-c ├── libxerces-c-devel ├── libxfce4panel ├── libxfce4ui-devel ├── libxfce4ui-glade ├── libxfce4ui │ ├── patches │ │ └── vapi-deps.patch │ └── template ├── libxfce4util-devel ├── libxfce4util │ └── template ├── libxfce4windowing-devel ├── libxfce4windowing │ └── template ├── libxine ├── libxkbcommon-devel ├── libxkbcommon-tools ├── libxkbcommon-x11 ├── libxkbcommon │ ├── patches │ │ └── remove-fuzzing.patch │ ├── template │ └── update ├── libxkbfile-devel ├── libxkbfile │ └── template ├── libxkbregistry ├── libxkbui-devel ├── libxkbui │ └── template ├── libxklavier-devel ├── libxklavier │ └── template ├── libxls-devel ├── libxls │ └── template ├── libxlsxwriter-devel ├── libxlsxwriter │ ├── template │ └── update ├── libxml++-devel ├── libxml++ │ ├── template │ └── update ├── libxml++3.0-devel ├── libxml++3.0 │ ├── template │ └── update ├── libxml2-devel ├── libxml2-python3 ├── libxml2 │ └── template ├── libxmlb-devel ├── libxmlb │ └── template ├── libxmp-devel ├── libxmp │ └── template ├── libxo-devel ├── libxo-progs ├── libxo │ ├── patches │ │ └── fix-musl.patch │ ├── template │ └── update ├── libxreader ├── libxreader-devel ├── libxshmfence-devel ├── libxshmfence │ └── template ├── libxslt-devel ├── libxslt-python3 ├── libxslt │ └── template ├── libxxHash ├── libyaml-devel ├── libyaml │ ├── template │ └── update ├── libyang-devel ├── libyang-tools ├── libyang │ └── template ├── libyara ├── libykcs11 ├── libykcs11-devel ├── libykneomgr ├── libykneomgr-devel ├── libykpers ├── libykpers-devel ├── libykpiv ├── libykpiv-devel ├── libyubikey-devel ├── libyubikey-utils ├── libyubikey │ └── template ├── libz3 ├── libzahl │ └── template ├── libzbar ├── libzbar-devel ├── libzbar-qt ├── libzeitgeist-devel ├── libzeitgeist │ └── template ├── libzeitgeist2 ├── libzen-devel ├── libzen │ ├── files │ │ └── proper-mt-fix.patch │ ├── template │ └── update ├── libzfs ├── libzfs-lts ├── libzhuyin ├── libzhuyin-devel ├── libzim-devel ├── libzim-tools ├── libzim │ ├── patches │ │ └── disable-check.patch │ └── template ├── libzinnia ├── libzinnia-devel ├── libzint ├── libzip-devel ├── libzip │ └── template ├── libzmf-devel ├── libzmf │ └── template ├── libzstd ├── libzstd-devel ├── licensechecker │ └── template ├── licensor │ └── template ├── lifelines │ ├── patches │ │ └── fix-musl.patch │ └── template ├── liferea │ ├── patches │ │ ├── fix-libxml2-2.12.patch │ │ └── libwebkit2gtk41.patch │ └── template ├── light-locker │ └── template ├── light │ └── template ├── lightdm-devel ├── lightdm-gtk-greeter-settings │ └── template ├── lightdm-gtk-greeter │ └── template ├── lightdm-gtk3-greeter ├── lightdm-mini-greeter │ └── template ├── lightdm-slick-greeter │ └── template ├── lightdm-webkit-greeter ├── lightdm-webkit2-greeter │ ├── patches │ │ ├── 01-conf.patch │ │ ├── 02-musl.patch │ │ ├── 03-void.patch │ │ └── 04-do-not-print-any-non-critical-errors-as-erros.patch │ └── template ├── lightdm │ ├── REMOVE │ ├── files │ │ ├── lightdm.rules │ │ ├── lightdm │ │ │ └── run │ │ └── xsession │ ├── patches │ │ ├── 1.32.0--adjust-PATH-for-usrmerge.patch │ │ ├── minimum-uid-is-1000.patch │ │ ├── musl-language.patch │ │ ├── musl-updwtmpx.patch │ │ └── pam-turnstile-elogind.patch │ └── template ├── lightsoff │ └── template ├── lighttpd │ ├── files │ │ ├── lighttpd.conf │ │ └── lighttpd │ │ │ └── run │ ├── template │ └── update ├── lightzone │ ├── patches │ │ └── ppc.patch │ └── template ├── lilo │ ├── files │ │ └── kernel.d │ │ │ ├── lilo.post-install │ │ │ └── lilo.post-remove │ ├── patches │ │ └── remove___GLIBC__.patch │ └── template ├── lilv-bash-completion ├── lilv-devel ├── lilv │ └── template ├── lily-devel ├── lily │ └── template ├── lilypond-doc │ ├── template │ └── update ├── lilypond │ └── template ├── lilyterm │ ├── patches │ │ ├── lilyterm-musl.patch │ │ └── no-empty-environment-variables.patch │ └── template ├── limine-devel ├── limine │ └── template ├── linbox-devel ├── linbox │ ├── patches │ │ ├── 292.patch │ │ ├── 294.patch │ │ └── gcc14.patch │ └── template ├── lingot │ └── template ├── linit │ └── template ├── links-x11 │ ├── template │ └── update ├── links │ └── template ├── linphone-console ├── linphone-daemon ├── linphone-desktop │ ├── patches │ │ ├── 0001-System-rootca.patch │ │ ├── 0002-cmake-cleanup.patch │ │ ├── 0003-Replace-ispell-with-Sonnet.patch │ │ └── cmake.patch │ ├── template │ └── update ├── linphone-devel ├── linphone-gui ├── linphone-tools ├── linphone │ ├── patches │ │ └── cmake.patch │ ├── template │ └── update ├── linssid │ ├── patches │ │ ├── project.patch │ │ ├── qt-6.5.patch │ │ ├── qwt-6.2.patch │ │ └── time64.patch │ └── template ├── linux-asahi-dbg ├── linux-asahi-headers ├── linux-asahi │ ├── files │ │ ├── arm64-dotconfig │ │ └── mv-debug │ └── template ├── linux-base │ ├── files │ │ └── 50-bootsize.postinst │ └── template ├── linux-driver-management-devel ├── linux-driver-management │ ├── patches │ │ └── fix-ftbfs-dep_usb.patch │ └── template ├── linux-firmware-amd ├── linux-firmware-broadcom ├── linux-firmware-dvb │ └── template ├── linux-firmware-intel ├── linux-firmware-network ├── linux-firmware-nvidia ├── linux-firmware-qualcomm ├── linux-firmware │ ├── patches │ │ └── ath12k.patch │ └── template ├── linux-headers ├── linux-lts-headers ├── linux-lts │ ├── template │ └── update ├── linux-mainline-headers ├── linux-mainline │ ├── template │ └── update ├── linux-tools │ ├── files │ │ ├── freefall │ │ │ └── run │ │ └── usbipd │ │ │ └── run │ ├── patches │ │ ├── musl-basename.patch │ │ ├── musl.patch │ │ ├── perf.patch │ │ └── ppc-bpf.patch │ ├── template │ └── update ├── linux-vt-setcolors │ ├── patches │ │ └── 8.diff │ └── template ├── linux-wifi-hotspot │ ├── patches │ │ └── makefile.patch │ └── template ├── linux │ ├── template │ └── update ├── linux5.10-dbg ├── linux5.10-headers ├── linux5.10 │ ├── files │ │ ├── DocBook │ │ │ └── Makefile │ │ ├── arm64-dotconfig │ │ ├── i386-dotconfig │ │ ├── mv-debug │ │ ├── ppc-dotconfig │ │ ├── ppc64-dotconfig │ │ ├── ppc64le-dotconfig │ │ └── x86_64-dotconfig │ ├── patches │ │ ├── amdgpu-dcn30-ppc64.patch │ │ ├── musl.patch │ │ ├── ppc-stack-traces-early-boot.patch │ │ ├── ppc-vas-on-4k.patch │ │ ├── ppc32-cpu-hotplug.patch │ │ ├── ppc64-be-elfv2.patch │ │ ├── ppc64le-fix-static-keys.patch │ │ ├── ppcle-broken-vdso.patch │ │ ├── ppcle-enable.patch │ │ └── ppcle-ll-compat-sys.patch │ └── template ├── linux5.15-dbg ├── linux5.15-headers ├── linux5.15 │ ├── files │ │ ├── arm64-dotconfig │ │ ├── i386-dotconfig │ │ ├── mv-debug │ │ ├── ppc-dotconfig │ │ ├── ppc64-dotconfig │ │ ├── ppc64le-dotconfig │ │ └── x86_64-dotconfig │ ├── patches │ │ ├── btusb-quirk-HCI_FLT_CLEAR_ALL.patch │ │ ├── fix-musl-objtool.patch │ │ ├── ppc-vas-on-4k.patch │ │ └── ppc64-be-elfv2.patch │ └── template ├── linux5.4-dbg ├── linux5.4-headers ├── linux5.4 │ ├── files │ │ ├── DocBook │ │ │ └── Makefile │ │ ├── arm-dotconfig │ │ ├── arm64-dotconfig │ │ ├── i386-dotconfig │ │ ├── mv-debug │ │ ├── ppc-dotconfig │ │ ├── ppc64-dotconfig │ │ ├── ppc64le-dotconfig │ │ └── x86_64-dotconfig │ ├── patches │ │ ├── amdgpu-ppc64-enable-navi.patch │ │ ├── navi-enable-reset.patch │ │ ├── ppc64-be-elfv2.patch │ │ ├── ppc64-enable-amdgpu.patch │ │ ├── ppc64le-fix-static-keys.patch │ │ ├── ppcle-broken-vdso.patch │ │ ├── ppcle-enable.patch │ │ └── ppcle-ll-compat-sys.patch │ └── template ├── linux6.1-dbg ├── linux6.1-headers ├── linux6.1 │ ├── files │ │ ├── arm64-dotconfig │ │ ├── i386-dotconfig │ │ ├── mv-debug │ │ ├── ppc-dotconfig │ │ ├── ppc64-dotconfig │ │ ├── ppc64le-dotconfig │ │ └── x86_64-dotconfig │ ├── patches │ │ ├── fix-musl-objtool.patch │ │ ├── fixdep-largefile.patch │ │ └── ppc-vas-on-4k.patch │ └── template ├── linux6.12-dbg ├── linux6.12-headers ├── linux6.12 │ ├── files │ │ ├── arm64-dotconfig │ │ ├── i386-dotconfig │ │ ├── mv-debug │ │ └── x86_64-dotconfig │ ├── patches │ │ ├── fix-musl-btf-ids.patch │ │ ├── fix-musl-objtool.patch │ │ ├── fixdep-largefile.patch │ │ └── x13s-camera.patch │ └── template ├── linux6.13-dbg ├── linux6.13-headers ├── linux6.13 │ ├── files │ │ ├── arm64-dotconfig │ │ ├── i386-dotconfig │ │ ├── mv-debug │ │ └── x86_64-dotconfig │ ├── patches │ │ ├── fix-musl-btf-ids.patch │ │ ├── fix-musl-objtool.patch │ │ ├── fixdep-largefile.patch │ │ └── x13s-camera.patch │ └── template ├── linux6.14-dbg ├── linux6.14-headers ├── linux6.14 │ ├── files │ │ ├── arm64-dotconfig │ │ ├── i386-dotconfig │ │ ├── mv-debug │ │ └── x86_64-dotconfig │ ├── patches │ │ ├── fix-musl-btf-ids.patch │ │ ├── fix-musl-objtool.patch │ │ ├── fixdep-largefile.patch │ │ └── x13s-camera.patch │ └── template ├── linux6.15-dbg ├── linux6.15-headers ├── linux6.15 │ ├── files │ │ ├── arm64-dotconfig │ │ ├── i386-dotconfig │ │ ├── mv-debug │ │ └── x86_64-dotconfig │ ├── patches │ │ ├── fix-musl-btf-ids.patch │ │ ├── fix-musl-objtool.patch │ │ ├── fixdep-largefile.patch │ │ └── x13s-camera.patch │ └── template ├── linux6.6-dbg ├── linux6.6-headers ├── linux6.6 │ ├── files │ │ ├── arm64-dotconfig │ │ ├── i386-dotconfig │ │ ├── mv-debug │ │ └── x86_64-dotconfig │ ├── patches │ │ ├── fix-musl-btf-ids.patch │ │ ├── fix-musl-objtool.patch │ │ └── fixdep-largefile.patch │ └── template ├── linuxconsoletools │ └── template ├── linuxwave │ └── template ├── liquid-dsp-devel ├── liquid-dsp │ ├── patches │ │ ├── fix-portable-typo.patch │ │ └── ppc64.patch │ └── template ├── liquidwar │ ├── patches │ │ ├── liquidwar-5.6.4-underlink.patch │ │ ├── liquidwar-5.6.5-ovflfix.patch │ │ └── python3-conversion.patch │ └── template ├── listres │ └── template ├── lite-xl │ └── template ├── litecli │ └── template ├── liteide │ ├── template │ └── update ├── litterbox │ └── template ├── live555-devel ├── live555-progs ├── live555 │ ├── template │ └── update ├── lksctp-tools-devel ├── lksctp-tools │ └── template ├── lld ├── lld-devel18 ├── lld17 ├── lld17-devel ├── lld18 ├── lld18-devel ├── lld19 ├── lld19-devel ├── lldb ├── lldb17 ├── lldb17-devel ├── lldb18 ├── lldb18-devel ├── lldb19 ├── lldb19-devel ├── lldpd │ ├── files │ │ └── lldpd │ │ │ └── run │ └── template ├── llhttp-devel ├── llhttp │ ├── patches │ │ └── allow-build-type-none.patch │ └── template ├── lltag │ ├── patches │ │ └── fix_flac_tracknumber_reading.patch │ └── template ├── llvm-bolt17 ├── llvm-bolt18 ├── llvm-bolt19 ├── llvm-libunwind ├── llvm-libunwind-devel ├── llvm │ └── template ├── llvm17-cross-tools ├── llvm17-devel ├── llvm17-doc ├── llvm17 │ ├── files │ │ └── llvm-Config-llvm-config.h │ ├── patches │ │ ├── 0001-Clang-Fix-build-with-GCC-14-on-ARM.patch │ │ ├── SmallVector.patch │ │ ├── always-set-a-larger-stack-size-explicitly.patch │ │ ├── clang-001-fix-unwind-chain-inclusion.patch │ │ ├── clang-002-add-musl-triples.patch │ │ ├── clang-003-ppc64-dynamic-linker-path.patch │ │ ├── compiler-rt-sanitizer-ppc64-musl.patch │ │ ├── compiler-rt-sanitizer-supported-arch.patch │ │ ├── libcxx-armv67.patch │ │ ├── libcxx-musl.patch │ │ ├── libcxx-ssp-nonshared.patch │ │ ├── libcxxabi-dl.patch │ │ ├── libomp-soname.patch │ │ ├── llvm-001-musl.patch │ │ ├── llvm-004-override-opt.patch │ │ ├── llvm-005-ppc-bigpic.patch │ │ └── llvm-006-aarch64-mf_exec.patch │ ├── template │ └── update ├── llvm18-cross-tools ├── llvm18-devel ├── llvm18-doc ├── llvm18 │ ├── files │ │ └── llvm-Config-llvm-config.h │ ├── patches │ │ ├── SmallVector.patch │ │ ├── always-set-a-larger-stack-size-explicitly.patch │ │ ├── clang-001-fix-unwind-chain-inclusion.patch │ │ ├── clang-002-add-musl-triples.patch │ │ ├── clang-003-ppc64-dynamic-linker-path.patch │ │ ├── compiler-rt-sanitizer-ppc64-musl.patch │ │ ├── compiler-rt-sanitizer-supported-arch.patch │ │ ├── libcxx-armv67.patch │ │ ├── libcxx-musl.patch │ │ ├── libcxx-ssp-nonshared.patch │ │ ├── libcxxabi-dl.patch │ │ ├── libomp-soname.patch │ │ ├── llvm-001-musl.patch │ │ ├── llvm-004-override-opt.patch │ │ ├── llvm-005-ppc-bigpic.patch │ │ ├── llvm-006-aarch64-mf_exec.patch │ │ ├── openmp-stdint.patch │ │ └── z3-libs.patch │ ├── template │ └── update ├── llvm19-bootstrap │ ├── patches │ └── template ├── llvm19-cross-tools ├── llvm19-devel ├── llvm19-doc ├── llvm19 │ ├── files │ │ └── llvm-Config-llvm-config.h │ ├── patches │ │ ├── SmallVector.patch │ │ ├── always-set-a-larger-stack-size-explicitly.patch │ │ ├── clang-001-fix-unwind-chain-inclusion.patch │ │ ├── clang-003-ppc64-dynamic-linker-path.patch │ │ ├── compiler-rt-getauxval-aarch64.patch │ │ ├── compiler-rt-sanitizer-ppc64-musl.patch │ │ ├── disable-lldb-docs.patch │ │ ├── flang-cross.patch │ │ ├── flang-musl-bessel.patch │ │ ├── libcxx-armv67.patch │ │ ├── libcxx-musl.patch │ │ ├── libcxx-ssp-nonshared.patch │ │ ├── libcxxabi-dl.patch │ │ ├── llvm-001-musl.patch │ │ ├── llvm-004-override-opt.patch │ │ ├── llvm-005-ppc-bigpic.patch │ │ ├── llvm-006-aarch64-mf_exec.patch │ │ └── z3-libs.patch │ ├── template │ └── update ├── lm_sensors │ ├── files │ │ └── fancontrol │ │ │ └── run │ ├── template │ └── update ├── lmdb++ │ └── template ├── lmdb-devel ├── lmdb │ ├── patches │ │ └── soname.patch │ ├── template │ └── update ├── lmms │ ├── patches │ │ ├── cross.patch │ │ ├── ecm.patch │ │ ├── fix-duplicate-plugin-dir.patch │ │ └── fix-qt-crash-kwidgetsaddons-5.101.0.patch │ └── template ├── lms │ ├── files │ │ └── lms │ │ │ └── run │ └── template ├── lnav │ └── template ├── loadp2 │ └── template ├── loc │ └── template ├── localsearch │ ├── patches │ │ └── sqlite-seccomp.patch │ ├── template │ └── update ├── lockdev-devel ├── lockdev │ └── template ├── log4c-devel ├── log4c │ └── template ├── log4cplus-devel ├── log4cplus │ ├── template │ └── update ├── log4cpp-devel ├── log4cpp │ └── template ├── log4cxx-devel ├── log4cxx │ └── template ├── logiops │ ├── files │ │ └── logid │ │ │ └── run │ ├── patches │ │ └── musl-fixes.patch │ └── template ├── logisim-evolution │ ├── files │ │ └── logisim-evolution │ ├── patches │ │ ├── desktop-entry.patch │ │ └── version.patch │ └── template ├── logpp │ └── template ├── logrotate │ ├── files │ │ ├── logrotate.conf │ │ └── logrotate.cron-daily │ └── template ├── logstalgia │ └── template ├── logswan │ └── template ├── logtop │ └── template ├── lok │ └── template ├── lokalize │ └── template ├── loki │ └── template ├── loksh │ └── template ├── lolcat-c │ └── template ├── lollypop │ └── template ├── loudmouth-devel ├── loudmouth │ ├── patches │ │ ├── enable-ipv6.patch │ │ └── fix-nonce_nul.patch │ └── template ├── loupe │ └── template ├── love │ ├── template │ └── update ├── lowdown-devel ├── lowdown │ ├── template │ └── update ├── lpsolve-devel ├── lpsolve │ ├── template │ └── update ├── lr │ └── template ├── lrcalc-devel ├── lrcalc │ └── template ├── lrzip │ └── template ├── lrzsz │ ├── patches │ │ └── symlinks.patch │ └── template ├── lsd │ └── template ├── lsdvd │ └── template ├── lshw │ ├── patches │ │ └── musl-basename.patch │ ├── template │ └── update ├── lsof │ └── template ├── lsp-plugins-clap ├── lsp-plugins-devel ├── lsp-plugins-doc ├── lsp-plugins-gst ├── lsp-plugins-ladspa ├── lsp-plugins-libs ├── lsp-plugins-lv2 ├── lsp-plugins-vst2 ├── lsp-plugins-vst3 ├── lsp-plugins-xdg ├── lsp-plugins │ └── template ├── lsp │ └── template ├── lsscsi │ ├── template │ └── update ├── lsvpd │ └── template ├── lsw │ └── template ├── lswt │ └── template ├── lsyncd │ ├── files │ │ └── lsyncd │ │ │ └── run │ ├── template │ └── update ├── ltrace │ ├── patches │ │ └── musl-ppc.patch │ └── template ├── ltris │ └── template ├── lttng-modules-dkms │ ├── files │ │ └── dkms.conf │ ├── template │ └── update ├── lttng-tools-devel ├── lttng-tools │ ├── patches │ │ └── musl-ino_t.patch │ └── template ├── lttng-ust-devel ├── lttng-ust │ └── template ├── lua ├── lua-cjson ├── lua-devel ├── lua-language-server │ ├── files │ │ └── lua-language-server │ ├── patches │ │ ├── enable-cross-compilation.patch │ │ ├── fix-musl.patch │ │ └── fix-stupid-broken-tests.patch │ └── template ├── lua-lpeg ├── lua-luadbi ├── lua-lualdap ├── lua-stdlib-debug ├── lua-stdlib-normalize ├── lua-zlib ├── lua51-BitOp │ ├── template │ └── update ├── lua51-MessagePack ├── lua51-bitlib │ ├── files │ │ └── Makefile │ └── template ├── lua51-cassowary ├── lua51-cjson ├── lua51-cldr ├── lua51-cliargs ├── lua51-compat53 ├── lua51-devel ├── lua51-fluent ├── lua51-lgi ├── lua51-linenoise ├── lua51-loadkit ├── lua51-lpeg ├── lua51-luadbi ├── lua51-luaepnf ├── lua51-luaexpat ├── lua51-luafilesystem ├── lua51-lualdap ├── lua51-luaposix ├── lua51-luarepl ├── lua51-luasec ├── lua51-luasocket │ └── template ├── lua51-luautf8 ├── lua51-mpack │ ├── patches │ │ └── cross.patch │ └── template ├── lua51-penlight ├── lua51-stdlib-debug ├── lua51-stdlib-normalize ├── lua51-unbound ├── lua51-vicious ├── lua51-vstruct ├── lua51-zlib ├── lua51 │ ├── files │ │ └── lua.pc │ ├── patches │ │ ├── CVE-2014-5461.patch │ │ ├── lua-5.1-cflags.diff │ │ └── lua-arch.patch │ ├── template │ └── update ├── lua52-BitOp │ ├── template │ └── update ├── lua52-MessagePack ├── lua52-cassowary ├── lua52-cjson ├── lua52-cldr ├── lua52-cliargs ├── lua52-compat53 │ └── template ├── lua52-devel ├── lua52-fluent ├── lua52-lgi ├── lua52-linenoise ├── lua52-loadkit ├── lua52-lpeg ├── lua52-luadbi ├── lua52-luaepnf ├── lua52-luaexpat ├── lua52-luafilesystem ├── lua52-lualdap ├── lua52-luaposix ├── lua52-luarepl ├── lua52-luasec ├── lua52-luasocket ├── lua52-luautf8 ├── lua52-penlight ├── lua52-stdlib-debug ├── lua52-stdlib-normalize ├── lua52-unbound ├── lua52-vicious ├── lua52-vstruct ├── lua52-zlib ├── lua52 │ ├── files │ │ └── lua.pc │ ├── patches │ │ └── liblua.so.patch │ ├── template │ └── update ├── lua53-MessagePack ├── lua53-cassowary ├── lua53-cjson ├── lua53-cldr ├── lua53-cliargs ├── lua53-devel ├── lua53-editorconfig-core │ └── template ├── lua53-fluent ├── lua53-lgi ├── lua53-linenoise ├── lua53-loadkit ├── lua53-lpeg ├── lua53-luadbi ├── lua53-luaepnf ├── lua53-luaexpat ├── lua53-luafilesystem ├── lua53-lualdap ├── lua53-luaposix ├── lua53-luarepl ├── lua53-luasec ├── lua53-luasocket ├── lua53-luautf8 ├── lua53-penlight ├── lua53-stdlib-debug ├── lua53-stdlib-normalize ├── lua53-unbound ├── lua53-vicious ├── lua53-vstruct ├── lua53-zlib ├── lua53 │ ├── files │ │ └── lua.pc │ ├── patches │ │ └── liblua.so.patch │ ├── template │ └── update ├── lua54-MessagePack │ └── template ├── lua54-cassowary │ └── template ├── lua54-cjson │ └── template ├── lua54-cldr │ └── template ├── lua54-cliargs │ └── template ├── lua54-devel ├── lua54-fluent │ └── template ├── lua54-lgi │ ├── patches │ │ └── lua54.patch │ └── template ├── lua54-linenoise │ └── template ├── lua54-loadkit │ └── template ├── lua54-lpeg │ ├── template │ └── update ├── lua54-luadbi │ └── template ├── lua54-luaepnf │ └── template ├── lua54-luaexpat │ └── template ├── lua54-luafilesystem │ ├── template │ └── update ├── lua54-lualdap │ ├── patches │ │ ├── c89-is-broken.patch │ │ └── lua54.patch │ └── template ├── lua54-luaposix │ └── template ├── lua54-luarepl │ └── template ├── lua54-luasec │ └── template ├── lua54-luasocket ├── lua54-luautf8 │ └── template ├── lua54-penlight │ └── template ├── lua54-stdlib-debug │ └── template ├── lua54-stdlib-normalize │ └── template ├── lua54-unbound │ ├── template │ └── update ├── lua54-vicious │ └── template ├── lua54-vstruct │ └── template ├── lua54-zlib │ └── template ├── lua54 │ ├── files │ │ └── lua.pc │ ├── patches │ │ └── liblua.so.patch │ ├── template │ └── update ├── luaexpat ├── luafilesystem ├── luakit │ └── template ├── luanti │ └── template ├── luaposix ├── luaposix51 ├── luaposix52 ├── luarocks ├── luarocks-lua51 ├── luarocks-lua52 ├── luarocks-lua53 │ └── template ├── luarocks-lua54 ├── luasec ├── luasocket ├── lugaru-data ├── lugaru │ └── template ├── luksmeta-devel ├── luksmeta │ └── template ├── lumina-calculator │ └── template ├── lumina-pdf │ └── template ├── lumina │ └── template ├── lurch │ └── template ├── lutok-devel ├── lutok │ └── template ├── lutris │ └── template ├── lux │ └── template ├── lv2 │ └── template ├── lvm2 │ ├── files │ │ └── dmeventd │ │ │ └── run │ ├── patches │ │ ├── 0001-lvresize-use-POSIX-shell.patch │ │ ├── fix-stdio-usage.patch │ │ ├── mlockall-default-config.patch │ │ └── newudev.patch │ ├── template │ └── update ├── lwipv6-devel ├── lwipv6 │ ├── patches │ │ ├── endian.patch │ │ ├── linux-headers-5.10.patch │ │ └── musl.patch │ └── template ├── lxappearance-obconf │ └── template ├── lxappearance │ └── template ├── lxc-devel ├── lxc │ ├── files │ │ ├── lxc-autostart │ │ │ ├── finish │ │ │ └── run │ │ ├── lxc-void │ │ └── void.common.conf │ ├── template │ └── update ├── lxcfs │ ├── files │ │ └── lxcfs │ │ │ ├── finish │ │ │ └── run │ ├── patches │ │ └── no-init-script.patch │ ├── template │ └── update ├── lxd-lts │ ├── files │ │ ├── README.voidlinux │ │ └── lxd │ │ │ └── run │ ├── template │ └── update ├── lxd │ ├── files │ │ ├── README.voidlinux │ │ └── lxd │ │ │ ├── check │ │ │ └── run │ ├── template │ └── update ├── lxde-common │ ├── patches │ │ ├── dbus-update-environment.patch │ │ └── default-config.patch │ └── template ├── lxde-icon-theme │ └── template ├── lxde │ └── template ├── lxdm-theme-vdojo │ └── template ├── lxdm │ ├── INSTALL │ ├── files │ │ ├── lxdm.pam │ │ └── lxdm │ │ │ └── run │ ├── patches │ │ ├── default-PATH.patch │ │ ├── default-config.patch │ │ ├── execinfo.patch │ │ └── fix-msghdr-usage.patch │ └── template ├── lximage-qt │ └── template ├── lxinput │ └── template ├── lxlauncher │ ├── patches │ │ └── fix-invisible-icons.patch │ └── template ├── lxmenu-data │ └── template ├── lxpanel-devel ├── lxpanel │ ├── patches │ │ └── 10-devproc-lxpanel.patch │ └── template ├── lxqt-about │ └── template ├── lxqt-admin │ ├── patches │ │ └── systemd.patch │ └── template ├── lxqt-archiver │ └── template ├── lxqt-build-tools-qt5 │ └── template ├── lxqt-build-tools │ └── template ├── lxqt-config │ └── template ├── lxqt-globalkeys-devel ├── lxqt-globalkeys │ └── template ├── lxqt-menu-data-devel ├── lxqt-menu-data │ └── template ├── lxqt-notificationd │ └── template ├── lxqt-openssh-askpass │ └── template ├── lxqt-panel │ └── template ├── lxqt-policykit │ └── template ├── lxqt-powermanagement │ └── template ├── lxqt-qt5plugin │ └── template ├── lxqt-qtplugin │ ├── patches │ │ └── qt-plugindir.patch │ └── template ├── lxqt-runner │ └── template ├── lxqt-session │ └── template ├── lxqt-sudo │ └── template ├── lxqt-themes │ └── template ├── lxqt-wayland-session │ └── template ├── lxqt │ └── template ├── lxrandr │ └── template ├── lxsession │ ├── patches │ │ └── fix-tests.patch │ └── template ├── lxtask │ └── template ├── lxterminal │ └── template ├── lychee │ └── template ├── lynis │ └── template ├── lynx │ ├── patches │ │ └── 21_do_not_strip_-g.diff │ └── template ├── lyx │ ├── files │ │ └── README.voidlinux │ └── template ├── lz4 │ └── template ├── lz4jsoncat │ └── template ├── lzf │ ├── patches │ │ └── Makefile_in-DISTDIR.patch │ └── template ├── lzfse-devel ├── lzfse │ └── template ├── lzip │ └── template ├── lziprecover │ └── template ├── lzlib-devel ├── lzlib │ └── template ├── lzo-devel ├── lzo │ └── template ├── lzop │ ├── template │ └── update ├── m17n-db │ └── template ├── m17n-lib-devel ├── m17n-lib │ └── template ├── m1n1 │ ├── files │ │ ├── kernel.d │ │ │ └── m1n1.post-install │ │ └── m1n1-kernel-hook.confd │ └── template ├── m2m-aligner │ └── template ├── m4 │ ├── patches │ │ ├── missing_S_ISDIR_reference.patch │ │ └── ppc-musl.patch │ └── template ├── m4ri-devel ├── m4ri │ ├── patches │ │ └── 28-fix-overflow-32bit.patch │ └── template ├── m4rie-devel ├── m4rie │ └── template ├── mDNSResponder │ ├── files │ │ ├── dnsextd │ │ │ └── run │ │ └── mdnsd │ │ │ └── run │ ├── patches │ │ ├── Clients-dns-sd.c.patch │ │ └── musl.patch │ └── template ├── mac-fdisk │ ├── patches │ │ ├── mac-fdisk-0.1-debian.patch │ │ ├── mac-fdisk-0.1-headers.patch │ │ ├── mac-fdisk-0.1-more-arches.patch │ │ ├── mac-fdisk-0.1_p16-ppc64.patch │ │ ├── mac-fdisk-0.1_p16-proper-inline.patch │ │ ├── mac-fdisk-amd64.patch │ │ ├── mac-fdisk-fdisk-header-musl.patch │ │ ├── mac-fdisk-large-disk-support.patch │ │ ├── mac-fdisk-largerthan2gb.patch │ │ ├── mac-fdisk-non-glibc-support.patch │ │ └── mac-fdisk-stdout-flush.patch │ └── template ├── macchanger │ ├── patches │ │ └── fix-caddr_t.patch │ └── template ├── maddy │ ├── INSTALL │ ├── files │ │ └── maddy │ │ │ └── run │ └── template ├── madonctl │ └── template ├── magic-wormhole │ └── template ├── magpie-devel ├── magpie │ ├── patches │ │ └── fixudev.patch │ └── template ├── mailcommon-devel ├── mailcommon │ └── template ├── maildrop │ ├── template │ └── update ├── mailimporter-devel ├── mailimporter │ └── template ├── mailnag-goa-plugin │ └── template ├── mailnag │ ├── files │ │ └── README.voidlinux │ └── template ├── mailx │ ├── patches │ │ ├── libressl.patch │ │ ├── mailx-12.3-pager.patch │ │ ├── mailx-12.5-collect.patch │ │ ├── mailx-12.5-fname-null.patch │ │ ├── mailx-12.5-lzw.patch │ │ ├── mailx-12.5-usage.patch │ │ └── nail-11.25-config.patch │ └── template ├── maim │ └── template ├── mairix │ ├── patches │ │ └── issue5.patch │ ├── template │ └── update ├── make-ca │ └── template ├── make │ └── template ├── makedepend │ └── template ├── makedumpfile │ ├── patches │ │ └── ppc32.patch │ ├── template │ └── update ├── makefile2graph │ └── template ├── makepasswd │ └── template ├── makeself │ ├── patches │ │ └── header.patch │ ├── template │ └── update ├── mako │ └── template ├── maliit-framework-devel ├── maliit-framework-doc ├── maliit-framework-examples ├── maliit-framework │ └── template ├── maliit-keyboard-doc ├── maliit-keyboard │ └── template ├── mame │ ├── files │ │ └── mame.sh │ ├── patches │ │ └── musl-bx.patch │ ├── template │ └── update ├── man-db │ ├── files │ │ └── man-db.cron-daily │ └── template ├── man-pages-devel ├── man-pages-posix │ └── template ├── man-pages │ └── template ├── mandown │ └── template ├── mandrel │ └── template ├── mangadesk │ └── template ├── mangl │ ├── patches │ │ └── cross.patch │ └── template ├── manpages-cs ├── manpages-da ├── manpages-de ├── manpages-el ├── manpages-es ├── manpages-fi ├── manpages-fr ├── manpages-hu ├── manpages-id ├── manpages-it ├── manpages-mk ├── manpages-nb ├── manpages-nl ├── manpages-pl ├── manpages-pt-br │ ├── template │ └── update ├── manpages-ro ├── manpages-ru ├── manpages-sr ├── manpages-sv ├── manpages-uk ├── manpages-vi ├── mantablockscreen │ └── template ├── manuskript │ └── template ├── marble5-devel ├── marble5 │ ├── patches │ │ └── soversion.diff │ ├── template │ └── update ├── marco │ ├── patches │ │ └── musl.patch │ ├── template │ └── update ├── mariadb-client ├── mariadb │ ├── INSTALL │ ├── files │ │ └── mysqld │ │ │ └── run │ ├── patches │ │ ├── fix-gcc13.patch │ │ └── fix-install-layout.patch │ └── template ├── marisa-devel ├── marisa │ └── template ├── marvin │ ├── files │ │ ├── MarvinSketch.desktop │ │ └── MarvinView.desktop │ └── template ├── mash-devel ├── mash │ ├── template │ └── update ├── masscan │ ├── template │ └── update ├── massdns │ ├── template │ └── update ├── massren │ └── template ├── master-pdf-editor │ ├── template │ └── update ├── masterpassword-cli │ ├── patches │ │ ├── fix-cflags.patch │ │ └── lowercase-boolean.patch │ └── template ├── mat2 │ ├── template │ └── update ├── matcha │ └── template ├── mate-applets │ ├── template │ └── update ├── mate-backgrounds │ ├── template │ └── update ├── mate-calc │ ├── template │ └── update ├── mate-common │ ├── template │ └── update ├── mate-control-center │ ├── template │ └── update ├── mate-desktop-devel ├── mate-desktop │ ├── template │ └── update ├── mate-extra │ └── template ├── mate-icon-theme-faenza │ └── template ├── mate-icon-theme │ ├── template │ └── update ├── mate-indicator-applet │ ├── template │ └── update ├── mate-media │ ├── template │ └── update ├── mate-menu │ └── template ├── mate-menus-devel ├── mate-menus │ ├── template │ └── update ├── mate-netbook │ ├── template │ └── update ├── mate-notification-daemon │ ├── template │ └── update ├── mate-panel-appmenu ├── mate-panel │ ├── patches │ │ └── musl-strftime.patch │ ├── template │ └── update ├── mate-polkit │ ├── template │ └── update ├── mate-power-manager │ ├── template │ └── update ├── mate-screensaver │ ├── files │ │ └── mate-screensaver.pam │ ├── template │ └── update ├── mate-sensors-applet │ ├── template │ └── update ├── mate-session-manager │ ├── template │ └── update ├── mate-settings-daemon-devel ├── mate-settings-daemon │ ├── patches │ │ └── delay-autostart.patch │ ├── template │ └── update ├── mate-system-monitor │ ├── template │ └── update ├── mate-terminal │ ├── template │ └── update ├── mate-themes │ └── template ├── mate-tweak │ └── template ├── mate-user-guide │ ├── template │ └── update ├── mate-utils │ ├── template │ └── update ├── mate │ └── template ├── mathjax │ └── template ├── mathjax2 │ ├── template │ └── update ├── matio-devel ├── matio │ └── template ├── matterbridge │ ├── files │ │ └── matterbridge │ │ │ └── run │ └── template ├── maturin │ ├── template │ └── update ├── mawk │ ├── template │ └── update ├── maxcso │ └── template ├── maxima-ecl ├── maxima-emacs ├── maxima-src ├── maxima │ ├── files │ │ └── maxima.desktop │ ├── patches │ │ ├── check-output.patch │ │ ├── handle-multiple-ldflags.patch │ │ ├── matrixexp.patch │ │ ├── maxima-sbcl-with-gmp.patch │ │ ├── musl-round.patch │ │ └── use-shared-library.patch │ └── template ├── mazter │ └── template ├── mb2md │ └── template ├── mbedtls-devel ├── mbedtls-utils ├── mbedtls │ ├── patches │ │ └── gcc14.patch │ └── template ├── mbedtls2-devel ├── mbedtls2 │ └── template ├── mblaze │ └── template ├── mbox │ └── template ├── mbpfan │ ├── files │ │ └── mbpfan │ │ │ └── run │ ├── patches │ │ └── fix_paths_and_remove_systemd.patch │ └── template ├── mbuffer │ └── template ├── mc │ ├── INSTALL.msg │ ├── files │ │ └── README.voidlinux │ ├── patches │ │ └── xbps.patch │ └── template ├── mcabber-devel ├── mcabber │ └── template ├── mcelog │ ├── files │ │ └── mcelog │ │ │ └── run │ └── template ├── mcg │ └── template ├── mcomix │ ├── patches │ │ └── bugs-150.diff │ └── template ├── mcpp-devel ├── mcpp │ ├── patches │ │ ├── gcc14.patch │ │ ├── libc-feature-macros.patch │ │ └── mbchar.patch │ ├── template │ └── update ├── mcwm │ └── template ├── md4c │ ├── template │ └── update ├── mdBook │ └── template ├── mda-lv2 │ └── template ├── mdadm │ ├── files │ │ └── mdadm │ │ │ └── run │ ├── patches │ │ ├── basename.patch │ │ ├── musl.patch │ │ └── time64.patch │ └── template ├── mdbook-linkcheck │ └── template ├── mdbook-mermaid │ └── template ├── mdbook-toc │ └── template ├── mdbtools-devel ├── mdbtools │ ├── template │ └── update ├── mdcat │ └── template ├── mdds │ ├── patches │ │ └── configure.patch │ └── template ├── mdevd-doc ├── mdevd │ └── template ├── mdf2iso │ └── template ├── mdns-scan │ └── template ├── mdnsd │ ├── files │ │ └── mdnsd │ │ │ └── run │ └── template ├── mdocml │ ├── INSTALL │ ├── files │ │ ├── cgi.h │ │ ├── makewhatis.cron.daily │ │ └── man.conf │ ├── patches │ │ ├── cgi-gz.patch │ │ ├── cgi-head.patch │ │ ├── cgi-trim.patch │ │ ├── cross.patch │ │ └── stress-ng-hang.patch │ ├── template │ └── update ├── mdp │ └── template ├── mdr │ └── template ├── med-doc ├── med │ ├── patches │ │ ├── hdf5-1.14.patch │ │ ├── hdf5-version.patch │ │ └── include-dir.patch │ ├── template │ └── update ├── media-downloader │ └── template ├── media-player-info │ └── template ├── mediainfo-cli ├── mediainfo │ ├── template │ └── update ├── mediastreamer-devel ├── mediastreamer-plugin-msqogl ├── mediastreamer │ ├── patches │ │ ├── MS2_GIT_VERSION.patch │ │ ├── cmake-deps.patch │ │ ├── cmake.patch │ │ ├── set_and_no_check.patch │ │ └── soname.patch │ ├── template │ └── update ├── mednafen │ └── template ├── mednaffe │ └── template ├── megapixels │ └── template ├── megatools │ ├── template │ └── update ├── megazeux │ ├── template │ └── update ├── mei-amt-check │ └── template ├── meld │ └── template ├── mellowplayer │ ├── patches │ │ └── no-werror.patch │ └── template ├── melonDS │ ├── patches │ │ └── align-test-case-i686.patch │ └── template ├── memcached-devel ├── memcached │ └── template ├── memray │ ├── patches │ │ └── rm-snapshopt-config.patch │ └── template ├── memtest86+ │ ├── INSTALL │ ├── REMOVE │ ├── files │ │ └── 20_memtest86+ │ ├── template │ └── update ├── memtester │ └── template ├── menu-cache-devel ├── menu-cache │ └── template ├── menulibre │ └── template ├── menumaker │ └── template ├── menutray │ └── template ├── mepo │ └── template ├── mercurial │ ├── files │ │ └── tests_blacklist │ ├── template │ └── update ├── mercury-libs ├── mercury-tools ├── mercury │ └── template ├── mergerfs │ ├── patches │ │ └── 0001-install_fix.patch │ └── template ├── mergiraf │ └── template ├── merkaartor │ ├── patches │ │ └── 75223944dc3e61fbe124a0677af709cdd7c83028.patch │ └── template ├── merkuro │ └── template ├── mesa-asahi-dri ├── mesa-asahi-opencl ├── mesa-asahi-vaapi ├── mesa-asahi-vdpau ├── mesa-asahi-vulkan-overlay-layer ├── mesa-asahi │ └── template ├── mesa-ati-dri ├── mesa-demos │ ├── patches │ │ ├── disable-nonfree.patch │ │ └── mesa-demos-data-dir.patch │ └── template ├── mesa-dri ├── mesa-etnaviv-dri ├── mesa-freedreno-dri ├── mesa-intel-dri ├── mesa-kmsro-dri ├── mesa-libgallium ├── mesa-lima-dri ├── mesa-nouveau-dri ├── mesa-opencl ├── mesa-panfrost-dri ├── mesa-tegra-dri ├── mesa-v3d-dri ├── mesa-vaapi ├── mesa-vc4-dri ├── mesa-vdpau ├── mesa-vmwgfx-dri ├── mesa-vulkan-broadcom ├── mesa-vulkan-freedreno ├── mesa-vulkan-intel ├── mesa-vulkan-lavapipe ├── mesa-vulkan-overlay-layer ├── mesa-vulkan-radeon ├── mesa │ ├── patches │ │ ├── musl-endian.patch │ │ ├── musl-stacksize.patch │ │ └── musl.patch │ ├── template │ └── update ├── meson-cmake-wrapper │ └── template ├── meson │ ├── patches │ │ └── rust-proc-macro.patch │ └── template ├── messagelib-devel ├── messagelib │ └── template ├── metacity │ └── template ├── metalog │ ├── files │ │ └── metalog │ │ │ └── run │ └── template ├── mfoc │ └── template ├── mftrace │ ├── patches │ │ └── gf2pbm.1.patch │ └── template ├── mg │ ├── patches │ │ └── pkg-config-ncurses.patch │ └── template ├── mgba-qt ├── mgba │ └── template ├── mhash-devel ├── mhash │ ├── patches │ │ ├── fix-cpp-bools.patch │ │ └── fix-tests-use-after-free.patch │ └── template ├── mhddfs │ ├── patches │ │ └── fix-build.patch │ └── template ├── micro │ └── template ├── microhookd │ └── template ├── micronucleus │ ├── patches │ │ └── libs.patch │ └── template ├── micropython │ └── template ├── migrate │ └── template ├── milkytracker │ └── template ├── miller │ └── template ├── milou │ └── template ├── mimalloc-devel ├── mimalloc │ ├── patches │ │ └── unify-library-name.patch │ └── template ├── mime-types │ ├── template │ └── update ├── mimeo │ └── template ├── mimetreeparser-devel ├── mimetreeparser │ └── template ├── mimic-devel ├── mimic │ ├── patches │ │ └── musl.patch │ └── template ├── minetest ├── minicom │ ├── template │ └── update ├── minidlna │ ├── files │ │ └── minidlnad │ │ │ └── run │ ├── patches │ │ └── config.patch │ └── template ├── miniflux │ ├── files │ │ └── miniflux │ │ │ └── run │ └── template ├── minify │ └── template ├── minigalaxy │ └── template ├── minijail │ ├── patches │ │ └── ppc.patch │ └── template ├── minikube │ ├── files │ │ └── README.voidlinux │ └── template ├── minimodem │ └── template ├── mininet │ └── template ├── minio │ ├── files │ │ ├── README.voidlinux │ │ ├── config.json │ │ ├── minio.confd │ │ └── minio │ │ │ └── run │ ├── template │ └── update ├── minipro │ └── template ├── minisat │ ├── patches │ │ └── friend.patch │ └── template ├── minised │ └── template ├── miniserve │ └── template ├── minisign │ ├── template │ └── update ├── minissdpd │ ├── files │ │ └── minissdpd │ │ │ └── run │ ├── patches │ │ └── foreground.patch │ ├── template │ └── update ├── ministat │ └── template ├── minitalk │ └── template ├── minitube │ ├── patches │ │ └── mpv-0.35.patch │ └── template ├── miniupnpc-devel ├── miniupnpc │ ├── template │ └── update ├── miniupnpd │ ├── files │ │ ├── README.voidlinux │ │ └── miniupnpd │ │ │ └── run │ ├── patches │ │ └── fix-configure-script.patch │ ├── template │ └── update ├── minizip-devel ├── minizip-ng-devel ├── minizip-ng │ └── template ├── minizip │ ├── patches │ │ └── CVE-2023-45853.patch │ ├── template │ └── update ├── mirage │ └── template ├── miruo │ ├── template │ └── update ├── mise │ └── template ├── misspell │ └── template ├── mit-krb5-client ├── mit-krb5-devel ├── mit-krb5-libs ├── mit-krb5 │ ├── files │ │ ├── kadmind │ │ │ └── run │ │ └── krb5kdc │ │ │ └── run │ ├── template │ └── update ├── mit-scheme-c │ ├── patches │ │ └── host_os-is-linux.patch │ └── template ├── mitlm │ └── template ├── mitmproxy │ └── template ├── mixxx │ ├── template │ └── update ├── mk-configure │ └── template ├── mkfontdir ├── mkfontscale │ └── template ├── mkinitcpio-dropbear │ └── template ├── mkinitcpio-encrypt ├── mkinitcpio-encryptssh ├── mkinitcpio-lvm2 ├── mkinitcpio-mdadm ├── mkinitcpio-netconf │ └── template ├── mkinitcpio-nfs-utils │ ├── files │ │ ├── initcpio-hook-net │ │ └── initcpio-install-net │ ├── patches │ │ ├── musl.patch │ │ └── nfsmount-fix-wrong-umount-path.patch │ └── template ├── mkinitcpio-tailscale │ └── template ├── mkinitcpio-utils │ ├── INSTALL.msg │ └── template ├── mkinitcpio-xbps ├── mkinitcpio-zfs ├── mkinitcpio │ ├── files │ │ ├── kernel-hook-postinst │ │ ├── kernel-hook-postrm │ │ ├── mdadm_hook │ │ ├── mdadm_install │ │ ├── xbps_install │ │ ├── zfs_hook │ │ └── zfs_install │ ├── patches │ │ ├── eudev.patch │ │ ├── quiet-rw-fsck.patch │ │ ├── udev-rules.patch │ │ └── use-rc-conf.patch │ └── template ├── mkp224o │ └── template ├── mkpasswd ├── mksh │ ├── files │ │ └── TaC-mksh.txt │ └── template ├── mktorrent │ └── template ├── mkvtoolnix-gui ├── mkvtoolnix │ └── template ├── mle │ └── template ├── mlir17 ├── mlir17-devel ├── mlir18 ├── mlir18-devel ├── mlir19 ├── mlir19-devel ├── mlmmj │ └── template ├── mlocate │ ├── INSTALL │ ├── files │ │ └── mupdatedb.cron-daily │ ├── patches │ │ └── musl_paths-h.patch │ └── template ├── mlog │ └── template ├── mlt7-data ├── mlt7-devel ├── mlt7-doc ├── mlt7-python3 ├── mlt7 │ └── template ├── mlterm │ └── template ├── mlton │ └── template ├── mm-common │ └── template ├── mmark │ └── template ├── mmc-utils │ └── template ├── mmtf-cpp │ └── template ├── mmutils │ └── template ├── mmv-go │ └── template ├── mmv-rs │ └── template ├── mmv │ └── template ├── moar │ └── template ├── mobile-broadband-provider-info │ └── template ├── mobile-config-firefox │ └── template ├── moby │ ├── files │ │ └── docker │ │ │ └── run │ └── template ├── mod_wsgi │ ├── patches │ │ └── cross-python.patch │ └── template ├── modrana │ └── template ├── modsecurity │ └── template ├── moe │ └── template ├── mog │ ├── patches │ │ ├── makefile.patch │ │ └── name_max.patch │ ├── template │ └── update ├── mokutil │ └── template ├── mold │ ├── patches │ │ └── test-target-machine.patch │ └── template ├── mon │ ├── patches │ │ ├── fix-long_long.patch │ │ └── fix-unused_result.patch │ └── template ├── mongo-c-driver-devel ├── mongo-c-driver │ └── template ├── mongoose-devel ├── mongoose-doc ├── mongoose │ ├── patches │ │ ├── fix-makefile.patch │ │ └── fix-tests.patch │ └── template ├── monit │ ├── files │ │ └── monit │ │ │ └── run │ ├── patches │ │ └── musl-fix.patch │ └── template ├── monitoring-plugins │ └── template ├── monkey-devel ├── monkey │ ├── files │ │ └── monkey │ │ │ └── run │ └── template ├── mono-basic │ └── template ├── mono-devel ├── mono │ ├── INSTALL │ ├── patches │ │ ├── fix-heapviz-import.patch │ │ ├── glibc-2.36.patch │ │ └── musl-ppc.patch │ └── template ├── monocypher-devel ├── monocypher │ └── template ├── monolith │ └── template ├── mons │ └── template ├── monsterwm-git │ └── template ├── moon-buggy │ ├── patches │ │ └── Makefile.in.patch │ └── template ├── moosefs │ ├── files │ │ ├── mfscgiserv │ │ │ └── run │ │ ├── mfschunkserver │ │ │ └── run │ │ ├── mfsmaster │ │ │ └── run │ │ └── mfsmetalogger │ │ │ └── run │ ├── patches │ │ └── fix-musl.patch │ ├── template │ └── update ├── mopidy-local │ └── template ├── mopidy-mpd │ └── template ├── mopidy-multisonic │ └── template ├── mopidy-podcast │ └── template ├── mopidy │ ├── REMOVE │ ├── files │ │ ├── README.voidlinux │ │ ├── logging.conf │ │ ├── mopidy.conf │ │ └── mopidy │ │ │ └── run │ └── template ├── moreutils │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── moserial │ └── template ├── mosh │ ├── patches │ │ └── cpp17.patch │ └── template ├── mosquitto-clients ├── mosquitto │ ├── files │ │ └── mosquitto │ │ │ └── run │ ├── patches │ │ └── fix-musl.patch │ └── template ├── most │ └── template ├── motif-devel ├── motif-mwm ├── motif-xmbind ├── motif │ ├── patches │ │ ├── 02-fix-format-security.patch │ │ ├── 03-no-demos.patch │ │ ├── 06-cast-size_t-to-int.patch │ │ ├── 07-fix_lintian_reported_manpage_typos.patch │ │ ├── 08-fix_hyphen_in_man_pages.patch │ │ ├── 09-fix_typo_in_libxm.patch │ │ ├── 10-fix_manpage-has-bad-whatis-entry.patch │ │ ├── 11-fix_underlinking.patch │ │ ├── 13-fix_hardcoded_x11rgb_path.patch │ │ ├── 15-link_uil_against_libuil.patch │ │ ├── 16-fix-undefined-use-of-sprintf.patch │ │ ├── 17-switch-to-system-iswspace.patch │ │ └── 20-cross-compile.patch │ └── template ├── motion │ ├── template │ └── update ├── mountain-backup │ └── template ├── mouseemu │ ├── files │ │ ├── 99-mouseemu.rules │ │ └── mouseemu │ │ │ ├── conf │ │ │ └── run │ ├── patches │ │ ├── 001-nofork.patch │ │ ├── 002-mod-passthrough.patch │ │ ├── 003-usage.patch │ │ ├── 004-defaults.patch │ │ ├── 005-manpage.patch │ │ ├── 006-rescan.patch │ │ ├── 007-syslog.patch │ │ ├── 008-pidfile.patch │ │ ├── 009-uinput_error_msg.patch │ │ ├── 010-initialize_device.patch │ │ ├── 011-write_error.patch │ │ ├── 012-bustype_virtual.patch │ │ ├── 013-dual_devices.patch │ │ └── 014-time64.patch │ └── template ├── mousepad │ └── template ├── mousetweaks │ └── template ├── movit-devel ├── movit │ └── template ├── mozc-base ├── mozc │ ├── patches │ │ ├── abseil.patch │ │ ├── common.patch │ │ ├── musl-getpw.patch │ │ ├── oss-musl.patch │ │ └── system-python.patch │ ├── template │ └── update ├── mozjs115-devel ├── mozjs115 │ ├── patches │ │ ├── 001-fix-soname.patch │ │ ├── 002-copy-headers.patch │ │ ├── 003-tests-timeout.patch │ │ ├── 004-icu-sources-data-py-decouple.patch │ │ ├── 005-icu-sources-data-write-command-stderr.patch │ │ ├── 006-emitter.patch │ │ ├── 007-tests-use-native-temporarydirectory.patch │ │ ├── 008-init-patch.patch │ │ ├── 009-sloppy-m4-detection.patch │ │ ├── 011-failing-tests-ppc64-s390x.patch │ │ ├── 012-fix-musl.patch │ │ ├── 013-disable-spidermonkey-jslint.patch │ │ ├── 014-rust-target.patch │ │ ├── 015-drop-rustc-validation.patch │ │ ├── 017-no-lto-readelf.patch │ │ ├── MOZ_NO_RUST_LTO.patch │ │ ├── armv6l-isb.patch │ │ ├── fix-build-ppc32.patch │ │ └── fix-i386-fdlibm.patch │ ├── template │ └── update ├── mozjs128-devel ├── mozjs128 │ ├── patches │ │ ├── 001-fix-soname.patch │ │ ├── 002-copy-headers.patch │ │ ├── 003-tests-timeout.patch │ │ ├── 004-icu-sources-data-py-decouple.patch │ │ ├── 005-icu-sources-data-write-command-stderr.patch │ │ ├── 006-emitter.patch │ │ ├── 007-tests-use-native-temporarydirectory.patch │ │ ├── 008-init-patch.patch │ │ ├── 009-sloppy-m4-detection.patch │ │ ├── 011-failing-tests-ppc64-s390x.patch │ │ ├── 013-disable-spidermonkey-jslint.patch │ │ ├── 014-rust-target.patch │ │ ├── 015-drop-rustc-validation.patch │ │ ├── 017-no-lto-readelf.patch │ │ ├── MOZ_NO_RUST_LTO.patch │ │ ├── armv6l-isb.patch │ │ ├── d535cd70e034b4ccdccf8b7d9243ffa931a46c78.patch │ │ ├── fix-build-ppc32.patch │ │ └── fix-i386-fdlibm.patch │ ├── template │ └── update ├── mozo │ ├── template │ └── update ├── mp3check │ ├── patches │ │ └── placement-new.patch │ └── template ├── mp3info-gtk ├── mp3info │ └── template ├── mp3splt │ └── template ├── mp3unicode │ ├── patches │ │ └── taglib-2.patch │ └── template ├── mp3val │ ├── patches │ │ └── fix-open-mode.patch │ └── template ├── mpDris2 │ ├── files │ │ └── mpDris2 │ │ │ └── run │ └── template ├── mpc-qt │ └── template ├── mpc │ └── template ├── mpd-sima │ ├── template │ └── update ├── mpd │ ├── INSTALL │ ├── files │ │ └── mpd │ │ │ └── run │ └── template ├── mpdas │ └── template ├── mpdcron │ └── template ├── mpdevil ├── mpdscribble │ ├── files │ │ └── mpdscribble │ │ │ └── run │ ├── patches │ │ └── fix-missing-ctime-include.patch │ └── template ├── mpdviz │ └── template ├── mpeg2dec ├── mpeg4ip ├── mpfi-devel ├── mpfi │ ├── template │ └── update ├── mpfr-devel ├── mpfr │ ├── template │ └── update ├── mpg123-devel ├── mpg123-extras │ ├── template │ └── update ├── mpg123-jack ├── mpg123-pulseaudio ├── mpg123-sdl ├── mpg123-sndio ├── mpg123 │ └── template ├── mplayer │ ├── files │ │ ├── mplayer.desktop │ │ └── mplayer.png │ ├── patches │ │ ├── altivec-gcc83.patch │ │ └── ffmpeg-invalid-assembly.patch │ └── template ├── mpop │ ├── template │ └── update ├── mpqtool │ └── template ├── mps-youtube ├── mpv-devel ├── mpv-mpris │ └── template ├── mpv │ └── template ├── mpvpaper │ └── template ├── mqttcli │ └── template ├── mruby │ └── template ├── mrxvt │ ├── patches │ │ └── mrxvt-0.5.4-001-fix-segfault-when-wd-empty.patch │ └── template ├── ms-sys │ └── template ├── msbuild-bin │ ├── template │ └── update ├── mscgen │ └── template ├── msg2 │ ├── patches │ │ └── fix-cflags.patch │ └── template ├── msgpack-cxx │ ├── template │ └── update ├── msgpack-devel ├── msgpack │ ├── template │ └── update ├── msgraph-devel ├── msgraph │ └── template ├── msitools-devel ├── msitools │ └── template ├── msmtp │ ├── template │ └── update ├── msoffcrypto-tool ├── msp430-toolchain │ ├── patches │ │ └── gcc7.patch │ └── template ├── mspdebug │ └── template ├── msr-tools │ ├── template │ └── update ├── msrc_base-devel ├── msrc_base │ └── template ├── msttcorefonts │ └── template ├── mt-st │ └── template ├── mtail │ ├── files │ │ └── mtail │ │ │ └── run │ └── template ├── mtd-utils │ └── template ├── mtdev-devel ├── mtdev │ └── template ├── mtm-terminfo ├── mtm │ └── template ├── mtools │ └── template ├── mtpaint │ ├── template │ └── update ├── mtpfs │ └── template ├── mtr-x11 ├── mtr │ ├── INSTALL │ ├── mtr-x11.INSTALL │ ├── patches │ │ └── libcap-fix.patch │ └── template ├── mtree │ ├── patches │ │ └── gcc-12.patch │ └── template ├── mtxclient-devel ├── mtxclient │ └── template ├── mu4e │ ├── patches │ │ └── fix-root-test.patch │ └── template ├── muchsync │ └── template ├── muffin-devel ├── muffin │ └── template ├── mugshot │ └── template ├── mujs-devel ├── mujs │ ├── patches │ │ └── dynlink.patch │ └── template ├── multibootusb │ └── template ├── multimon-ng │ └── template ├── multitail │ ├── template │ └── update ├── multitime │ ├── template │ └── update ├── mumble │ ├── files │ │ └── mumble-server │ │ │ └── run │ ├── patches │ │ ├── link-overlay-against-libGL.patch │ │ ├── musl-basename.patch │ │ └── struct-padding.patch │ └── template ├── munge-devel ├── munge-libs ├── munge │ ├── files │ │ ├── README.voidlinux │ │ └── munge │ │ │ └── run │ └── template ├── muon │ └── template ├── mup │ └── template ├── muparser-devel ├── muparser │ └── template ├── mupdf-devel ├── mupdf-tools ├── mupdf │ ├── files │ │ ├── mupdf.desktop │ │ └── mupdf.pc.in │ ├── patches │ │ └── 6.patch │ ├── template │ └── update ├── mupen64plus │ ├── patches │ │ ├── 0001-Fix-default-configuration-for-Logitech-F310.patch │ │ ├── 0001-Fix-wrong-pitch-argument-in-call-to-SDL_CreateRGBSur.patch │ │ └── ui-console-pic.patch │ └── template ├── murmur ├── musca │ ├── files │ │ └── Makefile │ └── template ├── muse │ ├── patches │ │ └── i686.patch │ ├── template │ └── update ├── musescore │ └── template ├── musikcube-alsa ├── musikcube-devel ├── musikcube-gme ├── musikcube-openmpt ├── musikcube-pipewire ├── musikcube-portaudio ├── musikcube-sndio ├── musikcube │ ├── patches │ │ ├── fix-install-locations.patch │ │ ├── musl.patch │ │ └── no-rpath.patch │ └── template ├── musl-bootstrap │ ├── patches │ ├── template │ └── update ├── musl-devel ├── musl-fts-devel ├── musl-fts │ └── template ├── musl-legacy-compat │ ├── files │ │ ├── cdefs.h │ │ ├── error.h │ │ ├── queue.h │ │ └── tree.h │ └── template ├── musl-nscd-devel ├── musl-nscd │ ├── files │ │ └── nscd │ │ │ └── run │ └── template ├── musl-obstack-devel ├── musl-obstack │ └── template ├── musl-rpmatch-devel ├── musl-rpmatch │ └── template ├── musl │ ├── files │ │ ├── __stack_chk_fail_local.c │ │ ├── getconf.1 │ │ ├── getconf.c │ │ ├── getent.1 │ │ ├── getent.c │ │ └── iconv.c │ ├── patches │ │ ├── iconv_0001-iconv-fix-erroneous-input-validation-in-EUC-KR-decod.patch │ │ ├── iconv_0002-iconv-harden-UTF-8-output-code-path-against-input-de.patch │ │ ├── mo_lookup.patch │ │ ├── ppcle.patch │ │ └── x86_64-O_LARGEFILE.patch │ └── template ├── musl1.1-devel ├── musl1.1 │ ├── files │ │ ├── __stack_chk_fail_local.c │ │ ├── getconf.1 │ │ ├── getconf.c │ │ ├── getent.1 │ │ ├── getent.c │ │ └── iconv.c │ ├── patches │ │ ├── 00-reallocarray.patch │ │ ├── 0001_reorder_thread_list_unlink_in_pthread_exit_after_all.patch │ │ ├── 0002_don_t_use_libc_threads_minus_1_as_relaxed_atomic_for.patch │ │ ├── 0003_cut_down_size_of_some_libc_struct_members.patch │ │ ├── 0004_restore_lock_skipping_for_processes_that_return_to_s.patch │ │ ├── 98e688a9da5e7b2925dda17a2d6820dddf1fb287.patch │ │ ├── 99d5098a885feae3ae8c32b407350d8ca85dd178.patch │ │ ├── CVE-2020-28928.patch │ │ ├── aarch64-fregs.patch │ │ ├── add-preadv2-pwritev2.patch │ │ ├── add-pthread_getname.patch │ │ ├── add-qsort_r.patch │ │ ├── add-rlimit-rttime.patch │ │ ├── add-support-for-SIGEV_THREAD_ID-timers.patch │ │ ├── avoid-set-id-setrlimit-misbehavior-and-hang-in-vfork.patch │ │ ├── c23-basename.patch │ │ ├── epoll_cp.patch │ │ ├── faccessat.patch │ │ ├── fgetws.patch │ │ ├── fix-oob-read-processing-time-zone-data.patch │ │ ├── fix-pi-mutex-cond-1.patch │ │ ├── fix-pi-mutex-cond-2.patch │ │ ├── fix-pi-mutex-cond-3.patch │ │ ├── fix-strverscmp-comparison-of-digit-sequence-with-non.patch.patch │ │ ├── gettid.patch │ │ ├── iconv_0001-iconv-fix-erroneous-input-validation-in-EUC-KR-decod.patch │ │ ├── iconv_0002-iconv-harden-UTF-8-output-code-path-against-input-de.patch │ │ ├── implement_realpath_directly_instead_of_using_procfs_readlink.patch │ │ ├── isascii.patch │ │ ├── mo_lookup.patch │ │ ├── new-syscalls.patch │ │ ├── ppc-pt_regs.patch │ │ ├── ppc64-fpregset_t.patch │ │ ├── ppcle.patch │ │ ├── pthread_0001-deduplicate-TP_ADJ-logic-out-of-each-arch-replace-wi.patch │ │ ├── pthread_0002-deduplicate-__pthread_self-thread-pointer-adjustment.patch │ │ ├── pthread_0003-remove-redundant-pthread-struct-members-repeated-for.patch │ │ ├── riscv64-ucontext.patch │ │ ├── statx.patch │ │ └── work_around_linux_bug_in_readlink_syscall_with_zero_buffer.patch │ └── template ├── mutt │ └── template ├── mutter-devel ├── mutter │ └── template ├── mxml-devel ├── mxml │ └── template ├── mymcplus │ └── template ├── mypaint-brushes │ └── template ├── mypaint │ ├── patches │ │ └── python-3.11.patch │ └── template ├── myrddin │ └── template ├── myrepos │ └── template ├── mysql ├── mysql++-devel ├── mysql++ │ ├── patches │ │ └── 01-fix-cross.patch │ └── template ├── mysql-client ├── mythes-ar ├── mythes-bg ├── mythes-ca ├── mythes-cs ├── mythes-da ├── mythes-de ├── mythes-devel ├── mythes-en ├── mythes-eo ├── mythes-es ├── mythes-fr ├── mythes-gl ├── mythes-gug ├── mythes-hu ├── mythes-id ├── mythes-is ├── mythes-it_IT ├── mythes-lv ├── mythes-ne ├── mythes-no ├── mythes-pl ├── mythes-pt_BR ├── mythes-pt_PT ├── mythes-ro ├── mythes-ru ├── mythes-sk ├── mythes-sl ├── mythes-sv ├── mythes-uk ├── mythes │ └── template ├── mytop │ └── template ├── n │ ├── files │ │ └── README.voidlinux │ └── template ├── n2n │ └── template ├── n30f │ └── template ├── nSnake │ └── template ├── nagstamon │ ├── patches │ │ ├── disable-kerberos.patch │ │ └── os-release.patch │ └── template ├── nano │ ├── template │ └── update ├── nanomsg-devel ├── nanomsg │ └── template ├── nasa-wallpaper │ └── template ├── nasm-doc ├── nasm │ ├── template │ └── update ├── nausea │ ├── template │ └── update ├── nautilus-devel ├── nautilus-dropbox ├── nautilus-gnome-console-extension ├── nautilus-gnome-terminal-extension ├── nautilus-papers-extension ├── nautilus-python │ └── template ├── nautilus │ └── template ├── nauty-devel ├── nauty │ ├── patches │ │ ├── dont-test-popcnt-if-disabled.patch │ │ └── fix-runalltests.patch │ ├── template │ └── update ├── navit │ └── template ├── nawk │ └── template ├── nbd │ ├── files │ │ ├── config │ │ └── nbd │ │ │ └── run │ └── template ├── ncdc │ └── template ├── ncdu │ ├── template │ └── update ├── ncdu2 │ ├── template │ └── update ├── ncftp │ └── template ├── ncmpc │ └── template ├── ncmpcpp │ └── template ├── ncpamixer │ └── template ├── ncspot │ └── template ├── ncurses-base ├── ncurses-devel ├── ncurses-libs ├── ncurses-libtinfo-devel ├── ncurses-libtinfo-libs ├── ncurses-term ├── ncurses │ ├── files │ │ └── base-files │ └── template ├── ndctl │ └── template ├── ndhc │ ├── INSTALL │ ├── files │ │ └── ndhc │ │ │ └── run │ ├── patches │ │ └── ldflags.patch │ └── template ├── ndisc6 │ └── template ├── ndpi-devel ├── ndpi │ └── template ├── ndppd │ ├── files │ │ └── ndppd │ │ │ └── run │ ├── patches │ │ ├── 0001-Version-bump.patch │ │ ├── 0002-Fixes-strerror_r-GNU-XSI.patch │ │ └── 0003-fix-poll-header.patch │ └── template ├── ne │ └── template ├── neard-devel ├── neard │ ├── files │ │ ├── neard │ │ │ └── run │ │ └── seeld │ │ │ └── run │ └── template ├── neatvi │ └── template ├── neatvnc-devel ├── neatvnc │ └── template ├── nebula │ ├── files │ │ └── nebula │ │ │ └── run │ ├── patches │ │ └── riscv64.patch │ └── template ├── necho │ └── template ├── nemesis │ └── template ├── nemiver │ ├── patches │ │ ├── bool-conversion.patch │ │ └── fix-nullptr.patch │ └── template ├── nemo-audio-tab │ └── template ├── nemo-compare │ └── template ├── nemo-devel ├── nemo-emblems │ └── template ├── nemo-extensions │ └── template ├── nemo-fileroller │ └── template ├── nemo-image-converter │ └── template ├── nemo-preview │ └── template ├── nemo-python │ └── template ├── nemo-terminal │ └── template ├── nemo │ └── template ├── neochat │ └── template ├── neomutt │ ├── patches │ │ └── disable-failing-test.patch │ ├── template │ └── update ├── neon-devel ├── neon │ └── template ├── neovide │ └── template ├── neovim-qt │ └── template ├── neovim-remote │ └── template ├── neovim │ ├── patches │ │ ├── cross-build.patch │ │ ├── disable-parser-download.patch │ │ └── health-check-allow-build-type-none.patch │ ├── template │ └── update ├── nerd-fonts-otf ├── nerd-fonts-symbols-ttf ├── nerd-fonts-ttf ├── nerd-fonts │ └── template ├── nerdctl │ └── template ├── nestopia │ └── template ├── net-snmp-devel ├── net-snmp │ ├── files │ │ └── snmpd │ │ │ └── run │ ├── patches │ │ ├── fix-includes.patch │ │ └── netsnmp-swinst-crash.patch │ ├── template │ └── update ├── net-tools │ └── template ├── netavark │ └── template ├── netbsd-rumpkernel-devel ├── netbsd-rumpkernel │ └── template ├── netbsd-wtf │ └── template ├── netcat │ ├── patches │ │ └── netcat-0.7.1-signed-bit-counting.patch │ └── template ├── netcdf-devel ├── netcdf │ └── template ├── netdata-plugins-go │ └── template ├── netdata-plugins-python ├── netdata │ ├── INSTALL │ ├── files │ │ ├── netdata.conf │ │ └── netdata │ │ │ └── run │ ├── patches │ │ └── cpp17.patch │ └── template ├── nethack │ ├── INSTALL │ ├── patches │ │ ├── 1-linux-hints.patch │ │ └── 2-gcc12.patch │ ├── template │ └── update ├── nethogs │ └── template ├── netns │ └── template ├── netpbm │ ├── files │ │ ├── config.mk │ │ └── netpbm-security-code.patch │ ├── template │ └── update ├── netperf │ ├── patches │ │ └── include.patch │ └── template ├── netpgp │ ├── patches │ │ ├── configure.ac.patch │ │ ├── lib_keyring_c.patch │ │ ├── lib_openssl__crypto.c.patch │ │ ├── lib_reader_c.patch │ │ ├── lib_signature_c.patch │ │ └── netpgp_1.patch │ └── template ├── netpgpverify │ ├── patches │ │ └── install.patch │ └── template ├── netrek-client-cow │ └── template ├── netris │ └── template ├── netscanner │ └── template ├── netsed │ └── template ├── netsniff-ng │ └── template ├── netsurf-buildsystem │ ├── template │ └── update ├── netsurf │ ├── files │ │ ├── netsurf.desktop │ │ ├── netsurf.png │ │ └── netsurf.sh │ ├── patches │ │ └── utf8proc-path.diff │ └── template ├── nettle-devel ├── nettle-tools ├── nettle │ └── template ├── network-manager-applet │ └── template ├── network-ups-tools-devel ├── network-ups-tools │ ├── files │ │ ├── README.voidlinux │ │ ├── upsd │ │ │ └── run │ │ ├── upsdrvctl │ │ │ ├── finish │ │ │ └── run │ │ └── upsmon │ │ │ └── run │ ├── template │ └── update ├── networkmanager-qt5-devel ├── networkmanager-qt5 │ ├── template │ └── update ├── neverball │ ├── template │ └── update ├── newlisp │ ├── patches │ │ ├── build-fixes.patch │ │ └── newlisp-makefile-install-10.7.0.patch │ └── template ├── newsboat │ └── template ├── newsflash │ ├── template │ └── update ├── newsraft │ └── template ├── newt-devel ├── newt-python3 ├── newt │ └── template ├── next ├── nextcloud-client-devel ├── nextcloud-client-dolphin ├── nextcloud-client-kwallet ├── nextcloud-client │ ├── files │ │ └── kwallet │ │ │ ├── README.voidlinux │ │ │ └── nextcloud.kwallet │ ├── patches │ │ └── testfolderman-within-chroot.patch │ └── template ├── nextdns │ ├── files │ │ └── nextdns │ │ │ └── run │ ├── patches │ │ └── Don't touch files managed by xbps.patch │ └── template ├── nfdump │ └── template ├── nfs-utils │ ├── files │ │ ├── exports │ │ ├── idmapd.conf │ │ ├── nfs-server │ │ │ ├── finish │ │ │ └── run │ │ ├── nfsdcld │ │ │ └── run │ │ ├── rpcblkmapd │ │ │ └── run │ │ ├── rpcgssd │ │ │ └── run │ │ ├── rpcidmapd │ │ │ └── run │ │ ├── rpcsvcgssd │ │ │ └── run │ │ ├── start-statd │ │ └── statd │ │ │ └── run │ ├── patches │ │ ├── musl-fix_long_unsigned_int.patch │ │ ├── musl-getservbyport.patch │ │ └── musl-includes.patch │ └── template ├── nfs4-acl-tools │ ├── patches │ │ ├── jobserver-unavailable.patch │ │ └── libtool.patch │ └── template ├── nftables │ ├── files │ │ └── nftables │ │ │ ├── finish │ │ │ └── run │ ├── template │ └── update ├── ngetty │ ├── files │ │ ├── Conf │ │ └── ngetty │ │ │ └── run │ └── template ├── nghttp2-devel ├── nghttp2 │ └── template ├── nghttp3-devel ├── nghttp3 │ └── template ├── nginx-mod-http-geoip ├── nginx-mod-http-js ├── nginx-mod-http-perl ├── nginx-mod-http-xslt-filter ├── nginx-mod-stream ├── nginx-mod-stream-geoip ├── nginx-mod-stream-js ├── nginx │ ├── INSTALL.msg │ ├── files │ │ ├── nginx │ │ │ └── run │ │ ├── ngx_auto_config.h.aarch64 │ │ ├── ngx_auto_config.h.armv6l │ │ ├── ngx_auto_config.h.armv6l.patch │ │ ├── ngx_auto_config.h.riscv64 │ │ ├── njs_auto_config.h.aarch64 │ │ ├── njs_auto_config.h.armv6l │ │ ├── njs_auto_config.h.riscv64 │ │ └── njs~nginx-1.20.x-compat.patch │ ├── template │ └── update ├── ngircd │ ├── files │ │ └── ngircd │ │ │ └── run │ └── template ├── ngrep │ ├── template │ └── update ├── ngspice-devel ├── ngspice │ └── template ├── ngtcp2-devel ├── ngtcp2 │ └── template ├── nheko │ └── template ├── nickle │ └── template ├── nicotine+ │ └── template ├── nih-devel ├── nikto │ └── template ├── nilfs-utils-devel ├── nilfs-utils │ ├── template │ └── update ├── nim │ └── template ├── ninja │ └── template ├── niri │ ├── patches │ │ └── remove-session.patch │ └── template ├── nitrogen │ └── template ├── nitrokey-app │ └── template ├── nitrokey-udev-rules │ └── template ├── nitroshare │ ├── patches │ │ ├── fix-build-with-qt-5-11.patch │ │ └── python3.patch │ └── template ├── nix │ ├── files │ │ ├── nix-daemon │ │ │ └── run │ │ └── nix.sh │ ├── patches │ │ ├── 0001-manual-build-without-nix-installation.patch │ │ ├── 0002-manual-support-cross-compilation-with-qemu.patch │ │ └── respect-our-flags.patch │ ├── template │ └── update ├── njconnect │ └── template ├── nkf │ ├── template │ └── update ├── nload │ └── template ├── nlopt-devel ├── nlopt │ └── template ├── nm-tray │ └── template ├── nmap │ ├── template │ └── update ├── nmh │ └── template ├── nmon │ ├── patches │ │ └── musl-fixes.patch │ ├── template │ └── update ├── nncp │ ├── template │ └── update ├── nng-devel ├── nng │ └── template ├── nnn │ └── template ├── no-more-secrets │ ├── patches │ │ └── fix-musl.patch │ └── template ├── nocache │ ├── patches │ │ └── musl.patch │ └── template ├── node_exporter │ ├── files │ │ └── node_exporter │ │ │ └── run │ └── template ├── nodeenv │ ├── patches │ │ ├── fix-i686-and-musl.patch │ │ └── python-3.13.patch │ └── template ├── nodejs-devel ├── nodejs-lts ├── nodejs-lts-devel ├── nodejs │ ├── patches │ │ ├── cross-aarch64.patch │ │ ├── ppc32.patch │ │ ├── shared-uv.patch │ │ └── xxx-ppc-hwcap-musl.patch │ ├── template │ └── update ├── nodm │ ├── files │ │ └── nodm │ │ │ └── run │ └── template ├── noice │ ├── template │ └── update ├── noip2 │ ├── files │ │ └── noip2 │ │ │ └── run │ ├── patches │ │ ├── 01-foreground.patch │ │ ├── 02-fix_foreground.patch │ │ └── 03-prefix.patch │ └── template ├── noise-repellent │ ├── patches │ │ └── fix-cross.patch │ └── template ├── nomacs │ ├── template │ └── update ├── nomad-driver-podman │ └── template ├── nomad │ ├── files │ │ └── nomad │ │ │ └── run │ └── template ├── nootka │ ├── patches │ │ └── signed-char.patch │ └── template ├── notcurses-devel ├── notcurses-progs ├── notcurses │ └── template ├── notepadqq │ ├── files │ │ └── notepadqq │ ├── patches │ │ └── disable-stats.patch │ └── template ├── notes-up │ └── template ├── notification-daemon │ └── template ├── notify-osd │ └── template ├── notify-send.sh │ └── template ├── notion │ ├── patches │ │ └── stdout.patch │ └── template ├── notmuch-mutt ├── notmuch-python3 ├── notmuch-ruby ├── notmuch │ ├── notmuch-python3.INSTALL.msg │ ├── patches │ │ ├── 0001-configure-detect-version-by-compiler-for-build.patch │ │ ├── 0005-configure-drop-gmime-session-key-extraction-support-.patch │ │ ├── 0006-configure-drop-gmime-x509-certificate-validity-check.patch │ │ ├── 0007-configure-drop-gmime-verify-with-session-key-check.patch │ │ └── 0008-fix-cross-for-ruby-bindings.patch │ ├── template │ └── update ├── noto-fonts-cjk-sans-variable ├── noto-fonts-cjk-sans │ ├── files │ │ └── 70-noto-fonts-cjk-sans.conf │ ├── template │ └── update ├── noto-fonts-cjk-serif-variable ├── noto-fonts-cjk-serif │ ├── files │ │ └── 70-noto-fonts-cjk-serif.conf │ ├── template │ └── update ├── noto-fonts-cjk-variable ├── noto-fonts-cjk │ ├── template │ └── update ├── noto-fonts-emoji │ └── template ├── noto-fonts-ttf-extra ├── noto-fonts-ttf-variable ├── noto-fonts-ttf │ ├── template │ └── update ├── novaboot │ └── template ├── npapi-sdk │ ├── template │ └── update ├── npth-devel ├── npth │ └── template ├── nq │ └── template ├── nqp │ └── template ├── nrg2iso │ └── template ├── nrpe │ ├── files │ │ └── nrpe │ │ │ └── run │ ├── patches │ │ └── reproducible.patch │ └── template ├── nscd ├── nsd │ ├── files │ │ └── nsd │ │ │ └── run │ ├── template │ └── update ├── nsgenbind │ └── template ├── nsjail │ ├── patches │ │ ├── 32bitint.patch │ │ ├── cpp17.patch │ │ ├── ldflags.patch │ │ └── log.patch │ ├── template │ └── update ├── nspr-devel ├── nspr │ ├── patches │ │ └── ppc64-default-stack-size.diff │ ├── template │ └── update ├── nss-devel ├── nss-mdns │ └── template ├── nss-pam-ldapd │ ├── INSTALL │ ├── files │ │ └── nslcd │ │ │ └── run │ ├── template │ └── update ├── nss │ ├── patches │ │ ├── native-nsinstall-cflags.patch │ │ └── respect-ldflags.patch │ ├── template │ └── update ├── nss_wrapper │ ├── patches │ │ └── nss_wrapper-fix-for-cmocka-1.1.6.patch │ └── template ├── nsss-devel ├── nsss-doc ├── nsss │ └── template ├── nsxiv │ ├── patches │ │ └── no-rebuild-options.patch │ └── template ├── ntdsextract2 │ ├── patches │ │ └── no-cygwin-fs.patch │ └── template ├── ntfs-3g-devel ├── ntfs-3g │ └── template ├── ntfs2btrfs │ └── template ├── ntfy │ ├── files │ │ └── ntfy-server │ │ │ └── run │ ├── patches │ │ └── config.patch │ └── template ├── ntl-devel ├── ntl │ ├── template │ └── update ├── ntp-perl ├── ntp │ ├── REMOVE │ ├── files │ │ ├── isc-ntpd │ │ │ └── run │ │ └── ntp.conf │ ├── patches │ │ ├── compat-glibc-2.34.patch │ │ ├── fix_build.diff │ │ └── gcc14.patch │ ├── template │ └── update ├── ntpd-rs │ ├── files │ │ ├── ntpd-rs-metrics │ │ │ └── run │ │ └── ntpd-rs │ │ │ └── run │ ├── patches │ │ └── use-ring.patch │ └── template ├── nudoku │ └── template ├── nufraw │ ├── patches │ │ ├── 0001-nufraw-glib-2.70.patch │ │ └── exiv-0.28.x.diff │ └── template ├── nullmailer │ ├── INSTALL │ ├── REMOVE │ ├── files │ │ └── nullmailer │ │ │ └── run │ └── template ├── num-utils │ ├── template │ └── update ├── numactl │ ├── patches │ │ ├── hardening.patch │ │ ├── musl.patch │ │ └── no-perl-regex.patch │ └── template ├── numbat │ └── template ├── numconv ├── numix-themes │ ├── patches │ │ └── sassc.patch │ └── template ├── numlockx │ └── template ├── nushell │ └── template ├── nuspell │ └── template ├── nutty │ ├── patches │ │ └── use-system-speedtestcli.patch │ └── template ├── nv-codec-headers │ ├── template │ └── update ├── nv-codec-headers12.0 │ ├── template │ └── update ├── nvi │ ├── patches │ │ ├── nvi-00-create-symlinks.patch │ │ ├── nvi-01-additional_upstream_data.patch │ │ ├── nvi-03-db4.patch │ │ ├── nvi-04-confdefs.patch │ │ ├── nvi-06-default_value_escapetime.patch │ │ ├── nvi-07-flush_cache.patch │ │ ├── nvi-08-lfs.patch │ │ ├── nvi-08-safe_printf.patch │ │ ├── nvi-08-tempfile_umask.patch │ │ ├── nvi-09-casting.patch │ │ ├── nvi-10-no_one_line_visual.patch │ │ ├── nvi-11-backward_sentence_moving.patch │ │ ├── nvi-12-horiz_scroll_count.patch │ │ ├── nvi-13-widechar_horrors.patch │ │ ├── nvi-14-private_regex_fixes.patch │ │ ├── nvi-15-search_word.patch │ │ ├── nvi-16-manpage_errors.patch │ │ ├── nvi-17-tutorial_typos.patch │ │ ├── nvi-18-dbpagesize_binpower.patch │ │ ├── nvi-19-include_term_h.patch │ │ ├── nvi-20-glibc_has_grantpt.patch │ │ ├── nvi-21-exrc_writability_check.patch │ │ ├── nvi-23-debian_alternatives.patch │ │ ├── nvi-24-fallback_to_dumb_term.patch │ │ ├── nvi-25-manpage_note_dropped_F.patch │ │ ├── nvi-26-trailing_tab_segv.patch │ │ ├── nvi-27-support_C_locale.patch │ │ ├── nvi-29-file_backup.patch │ │ ├── nvi-30-regex-character-class.patch │ │ ├── nvi-31-64bit-int-crash.patch │ │ ├── nvi-39-add_function_prototypes.patch │ │ ├── nvi-50-nvi-o_path.patch │ │ └── nvi-51-path-msgcat.patch │ └── template ├── nvidia-container-toolkit │ └── template ├── nvidia-dkms ├── nvidia-docker │ └── template ├── nvidia-firmware ├── nvidia-gtklibs ├── nvidia-libs ├── nvidia-libs-32bit ├── nvidia-opencl ├── nvidia-vaapi-driver │ └── template ├── nvidia │ ├── INSTALL │ ├── files │ │ ├── dkms.conf │ │ ├── nvidia-drm-outputclass.conf │ │ ├── nvidia-powerd │ │ │ └── run │ │ ├── nvidia-resume │ │ ├── nvidia-sleep.sh │ │ ├── nvidia-suspend │ │ └── prime-run │ ├── template │ └── update ├── nvidia390-dkms ├── nvidia390-gtklibs ├── nvidia390-libs ├── nvidia390-opencl ├── nvidia390 │ ├── files │ │ ├── dkms.conf │ │ ├── gcc-14.patch │ │ ├── linux-6.12.patch │ │ ├── linux-6.4.patch │ │ ├── linux-6.5-x64.patch │ │ ├── linux-6.5-x86.patch │ │ ├── linux6.3-x64.patch │ │ ├── linux6.3-x86.patch │ │ ├── linux6.6.patch │ │ └── nvidia-470xx-fix-linux-6.2.patch │ ├── template │ └── update ├── nvidia470-dkms ├── nvidia470-gtklibs ├── nvidia470-libs ├── nvidia470-libs-32bit ├── nvidia470-opencl ├── nvidia470 │ ├── INSTALL │ ├── files │ │ ├── dkms.conf │ │ ├── nvidia-drm-outputclass.conf │ │ └── prime-run │ ├── patches │ │ ├── 0001-Fix-conftest-to-ignore-implicit-function-declaration.patch │ │ ├── 0002-Fix-conftest-to-use-a-short-wchar_t.patch │ │ ├── 0003-Fix-conftest-to-use-nv_drm_gem_vmap-which-has-the-se.patch │ │ ├── kernel-6.10.patch │ │ └── kernel-6.12.patch │ ├── template │ └── update ├── nvimpager │ └── template ├── nvme-cli │ ├── INSTALL │ ├── REMOVE │ └── template ├── nvtop │ └── template ├── nwg-bar │ └── template ├── nwg-launchers │ ├── patches │ │ └── disable-readme-generation.patch │ └── template ├── nwg-look │ └── template ├── nwipe │ └── template ├── nx-libs-devel ├── nx-libs │ ├── patches │ │ ├── fix-musl-headers-x86.patch │ │ └── xf86bigfont.patch │ └── template ├── nyx │ ├── patches │ │ └── unbreak-for-python-3.11.patch │ └── template ├── nyxt │ ├── patches │ │ └── 001-libfixposix.patch │ └── template ├── nzbget │ ├── patches │ │ └── openssl3.patch │ └── template ├── oath-toolkit-devel ├── oath-toolkit │ └── template ├── obconf-qt │ └── template ├── obconf │ ├── template │ └── update ├── obexfs │ └── template ├── obexftp │ ├── patches │ │ └── fix-cross.patch │ └── template ├── obfs4proxy │ ├── template │ └── update ├── oblibs-devel ├── oblibs │ └── template ├── obmenu-generator │ ├── files │ │ ├── README.void │ │ └── schema.pl.app │ └── template ├── obs-devel ├── obs-plugin-browser-bin │ └── template ├── obs │ ├── patches │ │ ├── fix-double-free.patch │ │ └── gcc14.patch │ └── template ├── ocaml-findlib │ ├── template │ └── update ├── ocaml-num │ └── template ├── ocaml-zarith │ ├── template │ └── update ├── ocaml │ └── template ├── ocamlbuild │ ├── template │ └── update ├── occt-devel ├── occt │ ├── files │ │ └── opencascade.sh │ ├── template │ └── update ├── ocean-sound-theme │ └── template ├── ocl-icd-devel ├── ocl-icd │ └── template ├── oclock │ └── template ├── ocs-url │ └── template ├── octave │ └── template ├── octoxbps │ ├── files │ │ └── README.voidlinux │ └── template ├── odilia │ ├── patches │ │ └── fix-lock.diff │ └── template ├── odo │ └── template ├── odt2txt │ └── template ├── offlineimap │ ├── patches │ │ ├── python3.11.patch │ │ ├── python3.12-config.patch │ │ └── python3.12-import.patch │ └── template ├── offo-hyphenation │ ├── files │ │ └── README.void │ ├── template │ └── update ├── offpunk │ └── template ├── ofono-devel ├── ofono │ ├── files │ │ └── ofonod │ │ │ └── run │ ├── patches │ │ └── fix-TEMP_FAILURE_RETRY.patch │ └── template ├── ogmrip │ ├── patches │ │ ├── enchant-2.patch │ │ └── tesseract.patch │ └── template ├── ogmtools │ ├── patches │ │ ├── fix-Makefile_am.patch │ │ ├── fix-acinclude_m4.patch │ │ ├── fix-avilib_Makefile_in.patch │ │ └── fix-configure_in.patch │ └── template ├── oh │ └── template ├── ohsnap-font │ ├── template │ └── update ├── oidentd │ ├── files │ │ └── oidentd │ │ │ └── run │ └── template ├── oil │ └── template ├── oils-for-unix │ └── template ├── ois-devel ├── ois │ └── template ├── ok.sh │ └── template ├── oksh │ ├── patches │ │ └── cross.patch │ ├── template │ └── update ├── okteta-devel ├── okteta │ ├── patches │ │ └── cmake.testing.working_dir.patch │ └── template ├── okteta5-devel ├── okteta5 │ ├── template │ └── update ├── okular │ ├── patches │ │ └── musl-vasprintf.patch │ └── template ├── ol │ └── template ├── oletools ├── olm-devel ├── olm-python3 │ ├── template │ └── update ├── olm │ └── template ├── olsrd │ ├── files │ │ └── olsrd │ │ │ └── run │ ├── patches │ │ └── bison-header.patch │ └── template ├── omxplayer ├── onboard │ ├── patches │ │ ├── 00-Fix-build-with-musl.patch │ │ ├── disable-gcc-warnings.patch │ │ ├── fix-brokenformat.patch │ │ ├── python-3.12.patch │ │ └── thread-state.patch │ └── template ├── oneVPL-devel ├── oneVPL-examples ├── oneVPL │ └── template ├── onedrive-d ├── onedrive │ └── template ├── onefetch │ └── template ├── oneko │ ├── patches │ │ ├── cursorrecover.diff │ │ ├── fix-warnings.diff │ │ └── rmshape_fixtypos.diff │ ├── template │ └── update ├── oniguruma-devel ├── oniguruma-doc ├── oniguruma │ └── template ├── oniux │ ├── patches │ │ └── 4462b6e6d5ff.patch │ └── template ├── opam │ └── template ├── open-iscsi-devel ├── open-iscsi │ ├── INSTALL │ ├── files │ │ └── iscsid │ │ │ └── run │ ├── patches │ │ └── fix-musl.patch │ └── template ├── open-isns │ └── template ├── open-vm-tools │ ├── files │ │ ├── vmtoolsd │ │ │ └── run │ │ └── vmware-vmblock-fuse │ │ │ └── run │ ├── patches │ │ ├── 0001-recognize-Void.patch │ │ ├── 0002-disable-werror.patch │ │ ├── 0003-Do-not-assume-that-linux-and-gnu-libc-are-the-same-t.patch │ │ ├── 0004-Use-configure-test-for-struct-timespec.patch │ │ ├── 0005-Fix-definition-of-ALLPERMS-and-ACCESSPERMS.patch │ │ ├── 0006-Use-configure-to-test-for-feature-instead-of-platfor.patch │ │ ├── 0007-Use-configure-test-for-sys-stat.h-include.patch │ │ ├── 0010-use-posix-strerror_r-unless-gnu.patch │ │ ├── 0011-use-off64_t-instead-of-loff_t.patch │ │ ├── 0020-configure-kernelver.patch │ │ ├── 1000-strerror_r.patch │ │ ├── 1001-pr383-rename-poll-vm_poll.patch │ │ ├── 2001-res_ninit-for-musl.patch │ │ ├── CVE-2023-34058.patch │ │ └── CVE-2023-34059.patch │ ├── template │ └── update ├── openbabel-devel ├── openbabel │ ├── patches │ │ └── c0570bfe.patch │ └── template ├── openblas-devel ├── openblas │ └── template ├── openbox-devel ├── openbox │ ├── patches │ │ ├── d41128e5a1002af41c976c8860f8299cfcd3cd72.patch │ │ ├── openbox-3.5.0-title-matching.patch │ │ ├── openbox-3.5.0-which-2.20.patch │ │ └── py3-xdg-launcher.patch │ ├── template │ └── update ├── openbsd-file │ ├── patches │ │ ├── glibc.patch │ │ ├── musl.patch │ │ └── no-x86-seccomp.patch │ └── template ├── openbsd-netcat │ ├── files │ │ └── base64.c │ ├── patches │ │ └── b64_ntop.patch │ ├── template │ └── update ├── openbsd-rs │ └── template ├── opencamlib-devel ├── opencamlib-python3 ├── opencamlib │ ├── patches │ │ └── boost-1.83.patch │ └── template ├── opencc-devel ├── opencc │ ├── template │ └── update ├── opencl2-headers ├── opencollada-devel ├── opencollada │ ├── patches │ │ ├── 001-fix-no_return_value.patch │ │ ├── 002-fix-stdint_h.patch │ │ ├── 003-musl-stdint_h.patch │ │ └── 004-fix-libpcre-8.42-compat.patch │ └── template ├── opencolorio-devel ├── opencolorio │ ├── patches │ │ └── musl.patch │ └── template ├── openconnect-devel ├── openconnect │ └── template ├── opencore-amr-devel ├── opencore-amr │ └── template ├── opencsg-devel ├── opencsg │ └── template ├── opencv │ ├── patches │ │ └── undef-altivec-macros-cpp.patch │ └── template ├── opencv4 ├── opendht-devel ├── opendht │ └── template ├── opendkim-devel ├── opendkim │ ├── files │ │ ├── opendkim │ │ │ └── run │ │ └── site.config.m4 │ ├── patches │ │ ├── openssl_1.1.0_compat.patch │ │ └── python3.diff │ ├── template │ └── update ├── opendoas │ ├── files │ │ └── doas.pam │ └── template ├── openexr │ └── template ├── openfortivpn │ └── template ├── openfst-devel ├── openfst │ ├── patches │ │ └── cross-compile.patch │ └── template ├── openh264-devel ├── openh264 │ └── template ├── openhantek │ └── template ├── openimagedenoise-devel ├── openimagedenoise │ └── template ├── openimageio-devel ├── openimageio │ ├── patches │ │ └── musl-64bit.patch │ ├── template │ └── update ├── openjade │ ├── patches │ │ ├── musl.patch │ │ ├── openjade-1.3.2-lt.patch │ │ ├── openjade-1.3.2-msggen.pl.patch │ │ ├── patch-jade_TeXFOTBuilder.cxx.diff │ │ └── patch-jade_TransformFOTBuilder.cxx.diff │ └── template ├── openjdk-common │ ├── INSTALL │ ├── INSTALL.msg │ ├── REMOVE │ ├── files │ │ ├── java.sh │ │ └── profile.sh │ └── template ├── openjdk-doc ├── openjdk-jre ├── openjdk-src ├── openjdk │ └── template ├── openjdk10-bootstrap │ ├── files │ │ ├── musl_001_build.patch │ │ ├── musl_002_aarch64.patch │ │ ├── musl_003_arm.patch │ │ ├── musl_004_ppc.patch │ │ └── musl_005_x86.patch │ ├── patches │ │ ├── aarch64.patch │ │ ├── fix-compiler-version-10+.patch │ │ ├── fix-path-exception-glibc.patch │ │ ├── fix-pointer-comparison-gcc12.patch │ │ ├── make-4.3.patch │ │ ├── xxx-fix-mem-limit.patch │ │ └── xxx-future.patch │ ├── template │ └── update ├── openjdk11-bin ├── openjdk11-doc ├── openjdk11-jmods ├── openjdk11-jre ├── openjdk11-src ├── openjdk11-static-libs ├── openjdk11 │ ├── files │ │ └── musl_patches │ │ │ ├── arm.patch │ │ │ ├── ppc.patch │ │ │ └── x86.patch │ ├── patches │ │ ├── fix-musl-detection.diff │ │ └── system-public-suffix.patch │ ├── template │ └── update ├── openjdk12-bootstrap │ ├── files │ │ └── musl_patches │ │ │ ├── aarch64.patch │ │ │ ├── arm.patch │ │ │ ├── build.patch │ │ │ ├── ppc.patch │ │ │ └── x86.patch │ ├── patches │ │ ├── make-4.3.patch │ │ └── test-glibc2.34.patch │ ├── template │ └── update ├── openjdk13-bootstrap │ ├── files │ │ └── musl_patches │ │ │ ├── aarch64.patch │ │ │ ├── arm.patch │ │ │ ├── build.patch │ │ │ ├── ppc.patch │ │ │ └── x86.patch │ ├── patches │ │ ├── make-4.3.patch │ │ └── test-glibc2.34.patch │ ├── template │ └── update ├── openjdk14-bootstrap │ ├── files │ │ ├── i686_patches │ │ │ └── JDK-8238909.patch │ │ └── musl_patches │ │ │ ├── aarch64.patch │ │ │ ├── arm.patch │ │ │ ├── build.patch │ │ │ ├── ppc.patch │ │ │ └── x86.patch │ ├── patches │ │ └── test-glibc2.34.patch │ ├── template │ └── update ├── openjdk15-bootstrap │ ├── files │ │ └── musl_patches │ │ │ ├── aarch64.patch │ │ │ ├── arm.patch │ │ │ ├── build.patch │ │ │ ├── check.patch │ │ │ ├── ppc.patch │ │ │ └── x86.patch │ ├── patches │ │ └── test-glibc2.34.patch │ ├── template │ └── update ├── openjdk16-bootstrap │ ├── files │ │ └── musl_patches │ │ │ ├── arm.patch │ │ │ ├── build.patch │ │ │ ├── ppc.patch │ │ │ └── x86.patch │ ├── patches │ │ ├── FixNullPtrCast.patch │ │ ├── fix-test-i686.patch │ │ └── test-glibc2.34.patch │ ├── template │ └── update ├── openjdk17-doc ├── openjdk17-jmods ├── openjdk17-jre ├── openjdk17-src ├── openjdk17-static-libs ├── openjdk17 │ ├── files │ │ └── musl_patches │ │ │ ├── arm.patch │ │ │ ├── build.patch │ │ │ ├── ppc.patch │ │ │ └── x86.patch │ ├── patches │ │ ├── FixNullPtrCast.patch │ │ ├── fix-test-i686.patch │ │ └── system-public-suffix.patch │ ├── template │ └── update ├── openjdk18-bootstrap │ ├── patches │ │ ├── FixNullPtrCast.patch │ │ └── cgroups.patch │ ├── template │ └── update ├── openjdk19-bootstrap │ ├── patches │ │ ├── FixNullPtrCast.patch │ │ └── cgroups.patch │ ├── template │ └── update ├── openjdk20-bootstrap │ ├── patches │ │ └── FixNullPtrCast.patch │ ├── template │ └── update ├── openjdk21-doc ├── openjdk21-jmods ├── openjdk21-jre ├── openjdk21-src ├── openjdk21-static-libs ├── openjdk21 │ ├── patches │ │ └── system-public-suffix.patch │ ├── template │ └── update ├── openjdk7-bootstrap │ ├── files │ │ ├── dist_patches_glibc.txt │ │ ├── dist_patches_musl.txt │ │ ├── icedtea-cpio.patch │ │ ├── icedtea-hotspot-musl-ppc.patch │ │ ├── icedtea-hotspot-musl.patch │ │ ├── icedtea-hotspot-noagent-musl.patch │ │ ├── icedtea-hotspot-uclibc-fixes.patch │ │ ├── icedtea-jdk-execinfo.patch │ │ ├── icedtea-jdk-fix-build.patch │ │ ├── icedtea-jdk-fix-ipv6-init.patch │ │ ├── icedtea-jdk-musl.patch │ │ ├── icedtea-jdk-no-soname.patch │ │ ├── icedtea-jdk-sysctl_h.patch │ │ ├── icedtea-jdk-xattr.patch │ │ ├── icedtea-pointer-comparison-gcc12.patch │ │ ├── icedtea-pr64174.patch │ │ └── openjdk.future.patch │ ├── patches │ │ ├── autoconf2.7.patch │ │ └── fix-xattr-include.patch │ └── template ├── openjdk8-doc ├── openjdk8-jre ├── openjdk8-src ├── openjdk8 │ ├── files │ │ ├── musl_001_hotspot.patch │ │ ├── musl_002_hotspot_ppc.patch │ │ ├── musl_003_hotspot-noagent.patch │ │ ├── musl_004_fix_libjvm_load.patch │ │ ├── musl_005_jdk.patch │ │ └── musl_006_jdk_includes.patch │ ├── patches │ │ ├── 001_8041658.patch │ │ ├── 002_8043780-pr3368.patch │ │ ├── 003_8078504-pr3094.patch │ │ ├── 004_8087218-pr2740.patch │ │ ├── 005_8158260-pr2991-rh1341258.patch │ │ ├── 007_8207057-pr3613.patch │ │ ├── 008_no_devirt.patch │ │ ├── 009_override-redirect-metacity.patch │ │ ├── 011_pr3607.patch │ │ ├── 012_pr3728.patch │ │ ├── 013_werror.patch │ │ ├── 100_jdk-execinfo.patch │ │ ├── 101_jdk-fix-ipv6-init.patch │ │ ├── 103_hotspot-mask-shift.patch │ │ ├── 104_mips-support.patch │ │ ├── 105_implicit_declaration.patch │ │ ├── 106_int_conversion.patch │ │ ├── 107_incompatible_pointer_types.patch │ │ └── 999-native-no-sysroot.patch │ ├── template │ └── update ├── openjdk9-bootstrap │ ├── files │ │ ├── musl_001_build.patch │ │ ├── musl_002_aarch64.patch │ │ ├── musl_003_arm.patch │ │ ├── musl_004_ppc.patch │ │ └── musl_005_x86.patch │ ├── patches │ │ ├── aarch64.patch │ │ ├── fix-compiler-version-10+.patch │ │ ├── fix-pointer-comparison-gcc12.patch │ │ ├── future.patch │ │ ├── make-4.3.patch │ │ └── zero-ppc32.patch │ └── template ├── openjpeg │ ├── template │ └── update ├── openjpeg2 │ ├── template │ └── update ├── openldap-tools ├── openldap │ ├── INSTALL │ ├── files │ │ └── slapd │ │ │ └── run │ ├── template │ └── update ├── openmpi-devel ├── openmpi │ ├── INSTALL.msg │ ├── patches │ │ └── fortran-flags.patch │ ├── template │ └── update ├── openmpt123 ├── openmsx │ ├── patches │ │ ├── fix-build.patch │ │ └── gcc13.patch │ ├── template │ └── update ├── openmw-cs ├── openmw │ ├── patches │ │ ├── algorithm.patch │ │ └── musl-cstdint.patch │ ├── template │ └── update ├── openntpd │ ├── files │ │ └── openntpd │ │ │ └── run │ ├── patches │ │ ├── fix-time_t-overflow.patch │ │ └── libtls.patch │ └── template ├── openobex-devel ├── openobex │ └── template ├── openocd │ └── template ├── openpgl-devel ├── openpgl │ └── template ├── openpgp-ca │ ├── template │ └── update ├── openpgp-card-tools │ ├── template │ └── update ├── openra │ ├── template │ └── update ├── openradtool │ ├── template │ └── update ├── openrazer-daemon ├── openrazer-driver-dkms ├── openrazer-meta │ └── template ├── openresolv │ └── template ├── openrgb │ ├── files │ │ ├── README.voidlinux │ │ ├── openrgb.conf │ │ └── openrgb │ │ │ └── run │ └── template ├── opensc-pkcs11 ├── opensc │ └── template ├── openscad │ ├── patches │ │ └── boost-1.80.patch │ └── template ├── openshot │ └── template ├── opensm-devel ├── opensm │ ├── patches │ │ └── fix-musl.patch │ └── template ├── opensmtpd-extras │ ├── patches │ │ └── fix-musl.patch │ └── template ├── opensmtpd-filter-dkimsign │ ├── patches │ │ └── cleanup-search-paths.patch │ └── template ├── opensmtpd-filter-rspamd │ └── template ├── opensmtpd-filter-senderscore │ └── template ├── opensmtpd │ ├── INSTALL │ ├── files │ │ ├── opensmtpd │ │ │ └── run │ │ └── smtpd.pam │ ├── patches │ │ ├── configure-cross.patch │ │ └── cross-no-varrun-check.patch │ └── template ├── opensonic │ ├── files │ │ └── opensonic.desktop │ ├── patches │ │ ├── allegro.patch │ │ └── fix-cflags.patch │ ├── template │ └── update ├── opensp-devel ├── opensp │ └── template ├── openspades │ └── template ├── openssh-sk-helper ├── openssh │ ├── files │ │ ├── sshd.pam │ │ └── sshd │ │ │ └── run │ ├── patches │ │ ├── config.patch │ │ ├── d-name-size.patch │ │ ├── ssh-musl-gssapi.patch │ │ ├── sshd_config.patch │ │ └── time_t.patch │ └── template ├── openssl-c_rehash ├── openssl-devel ├── openssl-doc ├── openssl │ └── template ├── opensurge │ └── template ├── opentofu │ └── template ├── opentoonz │ ├── patches │ │ └── musl.patch │ └── template ├── openttd-opengfx │ └── template ├── openttd-openmsx │ └── template ├── openttd-opensfx │ └── template ├── openttd │ ├── INSTALL.msg │ ├── patches │ │ └── remove-gfx-tests.patch │ └── template ├── opentyrian │ └── template ├── openvdb-devel ├── openvdb │ └── template ├── openvpn │ └── template ├── openvswitch-devel ├── openvswitch │ ├── files │ │ ├── ovs-vswitchd │ │ │ └── run │ │ └── ovsdb-server │ │ │ └── run │ ├── template │ └── update ├── openxr-devel ├── openxr │ └── template ├── opera │ ├── template │ └── update ├── operator-sdk │ └── template ├── opkg │ ├── patches │ │ └── lock-var-run.patch │ └── template ├── opmsg │ └── template ├── oprofile │ ├── patches │ │ ├── musl.patch │ │ └── system-account.patch │ └── template ├── optipng │ └── template ├── opus-devel ├── opus-tools │ ├── template │ └── update ├── opus │ └── template ├── opusfile-devel ├── opusfile │ └── template ├── opustags │ └── template ├── oracle-jre ├── orage │ └── template ├── oragono ├── oras │ └── template ├── orc-devel ├── orc │ └── template ├── orca │ └── template ├── orientdb │ ├── INSTALL │ ├── files │ │ ├── README.voidlinux │ │ └── orientdb │ │ │ └── run │ ├── template │ └── update ├── orion │ ├── patches │ │ ├── 516d280a83521ac29a1438e05e8f7a331842bcb4.patch │ │ ├── b7360bbd4a856ea45c770f882be9e63a663a9acd.patch │ │ └── c61bb86f241df9e17238833c091992c80bb1d298.patch │ └── template ├── orjail │ └── template ├── oroborus │ └── template ├── orocos-kdl-devel ├── orocos-kdl │ └── template ├── ortp-devel ├── ortp │ ├── patches │ │ └── cmake.patch │ ├── template │ └── update ├── orz │ └── template ├── os-prober │ ├── INSTALL │ ├── patches │ │ └── detect-void.patch │ └── template ├── osc │ └── template ├── osg-devel ├── osg │ ├── patches │ │ ├── ffmpeg5.patch │ │ ├── musl-endianess.patch │ │ └── musl-pthread.patch │ ├── template │ └── update ├── osinfo-db-tools │ └── template ├── osinfo-db │ └── template ├── osm2pgsql │ └── template ├── osmctools │ └── template ├── osmid │ ├── patches │ │ ├── big-endian.patch │ │ └── musl.patch │ └── template ├── ostree │ ├── patches │ │ ├── bd2a9753e5227c97bda737e00a00451d361449f3.patch │ │ └── gir-cross.patch │ └── template ├── osv-scanner │ └── template ├── otf2bdf │ └── template ├── otfcc │ ├── patches │ │ └── fix-vq_c-missing-return.patch │ ├── template │ └── update ├── othman │ └── template ├── otpw │ ├── files │ │ └── ssh-otpw │ ├── patches │ │ └── ldflags.patch │ └── template ├── otter-browser │ └── template ├── ouch │ └── template ├── oue │ └── template ├── outguess │ └── template ├── outils │ └── template ├── ov │ └── template ├── overpass-otf │ └── template ├── oversteer │ ├── patches │ │ └── python3-required-modules.patch │ └── template ├── owncloudclient-devel ├── owncloudclient-kde5 ├── owncloudclient │ ├── patches │ │ ├── 11943.patch │ │ └── skip-root-test.patch │ └── template ├── oxipng │ └── template ├── oxygen-gtk+ │ ├── template │ └── update ├── oxygen-gtk+3 │ ├── template │ └── update ├── oxygen-icons ├── oxygen-icons5 │ └── template ├── oxygen-qt5 │ ├── template │ └── update ├── oxygen-qt6 │ ├── template │ └── update ├── oxygen-sounds │ └── template ├── oxygen │ └── template ├── p0f │ ├── patches │ │ └── config.patch │ └── template ├── p11-kit-devel ├── p11-kit │ └── template ├── p7zip ├── p7zip-unrar ├── p8-platform-devel ├── p8-platform │ └── template ├── pa-applet │ ├── files │ │ └── pa-applet.desktop │ ├── patches │ │ └── fix-volume-notification.patch │ └── template ├── packer │ └── template ├── packr2 │ └── template ├── pacman │ └── template ├── padthv1 │ └── template ├── paexec │ └── template ├── pahole-devel ├── pahole │ ├── patches │ │ └── fix_always_inline.patch │ └── template ├── palapeli │ └── template ├── paleta │ └── template ├── palp │ └── template ├── pam-base │ ├── INSTALL.msg │ ├── files │ │ ├── other │ │ ├── system-auth │ │ ├── system-local-login │ │ ├── system-login │ │ ├── system-remote-login │ │ └── system-services │ └── template ├── pam-devel ├── pam-gnupg │ └── template ├── pam-krb5 │ └── template ├── pam-libs ├── pam-mount │ ├── template │ └── update ├── pam-u2f │ ├── template │ └── update ├── pam-userdb ├── pam │ ├── INSTALL.msg │ ├── patches │ │ └── no-examples.patch │ ├── template │ └── update ├── pam_netauth │ └── template ├── pam_radius_auth │ ├── template │ └── update ├── pam_rundir │ ├── patches │ │ ├── fix.patch │ │ ├── fix2.patch │ │ └── setegid.patch │ └── template ├── pam_ssh │ ├── patches │ │ └── fix-cross-compile-openssl-feature-checks.patch │ └── template ├── pam_ssh_agent_auth │ ├── patches │ │ └── openssl.patch │ └── template ├── pam_wrapper │ └── template ├── pam_yubico │ └── template ├── pamixer │ └── template ├── pan │ └── template ├── pandoc-crossref ├── pandoc-sidenote ├── pandoc │ ├── files │ │ └── pandoc-crossref.cabal │ ├── patches │ │ └── fix-musl-build.patch │ ├── template │ └── update ├── pango-devel ├── pango-view ├── pango-xft ├── pango │ ├── template │ └── update ├── pangomm-devel ├── pangomm │ └── template ├── pangomm2.48-devel ├── pangomm2.48 │ ├── template │ └── update ├── pantalaimon │ └── template ├── pantheon-agent-polkit │ └── template ├── pantheon-calculator ├── pantheon-screenshot │ ├── patches │ │ └── meson-0.61.patch │ └── template ├── pantheon-terminal ├── paper-gtk-theme │ └── template ├── paper-icon-theme │ └── template ├── paperkey │ └── template ├── papers │ └── template ├── papi-devel ├── papi │ ├── patches │ │ ├── libsde-soname.patch │ │ ├── musl.patch │ │ └── prefixed-gfortran.patch │ ├── template │ └── update ├── papirus-folders │ └── template ├── papirus-icon-theme │ └── template ├── papis │ └── template ├── paprefs │ └── template ├── paps │ ├── patches │ │ └── gcc14.patch │ └── template ├── par │ ├── patches │ │ └── par-i18n.patch │ ├── template │ └── update ├── par2cmdline │ ├── patches │ │ └── avoid-corrupt-files-in-wrkdir.patch │ └── template ├── parallel │ └── template ├── parcellite │ ├── patches │ │ └── locale.patch │ └── template ├── pari-devel ├── pari-elldata-small ├── pari-elldata │ ├── template │ └── update ├── pari-galdata │ ├── template │ └── update ├── pari-galpol-small ├── pari-galpol │ ├── template │ └── update ├── pari-nflistdata │ ├── template │ └── update ├── pari-nftables │ ├── template │ └── update ├── pari-seadata-big │ ├── template │ └── update ├── pari-seadata-small ├── pari-seadata │ ├── template │ └── update ├── pari │ ├── patches │ │ └── fix-nproc.patch │ └── template ├── parole │ └── template ├── parpd │ ├── files │ │ ├── parpd.conf │ │ └── parpd │ │ │ └── run │ ├── patches │ │ ├── 0001-fix-building-on-musl.patch │ │ └── 0002-Linux-File-compile-warnings.patch │ └── template ├── parprouted │ ├── files │ │ └── parprouted │ │ │ └── run │ └── template ├── parrot-devel ├── parrot │ └── template ├── parsec │ └── template ├── partclone │ ├── patches │ │ └── glibc-2.36.patch │ └── template ├── parted │ ├── patches │ │ └── disable-failed-tests.patch │ └── template ├── partfs │ └── template ├── partitionmanager │ └── template ├── pasmo │ ├── template │ └── update ├── pass-git-helper │ ├── template │ └── update ├── pass-import │ └── template ├── pass-otp │ └── template ├── pass-update │ └── template ├── pass │ ├── patches │ │ └── gpg.patch │ ├── template │ └── update ├── passff-host │ └── template ├── passmenu ├── passphrase2pgp │ └── template ├── passt │ ├── template │ └── update ├── passwdqc-devel ├── passwdqc │ └── template ├── passwordsafe │ ├── template │ └── update ├── pastebinit │ └── template ├── pastel │ └── template ├── pasystray │ └── template ├── patch │ ├── patches │ │ ├── 0001-Fix-swapping-fake-lines-in-pch_swap.patch │ │ ├── Allow_input_files_to_be_missing_for_ed-style_patches.patch │ │ ├── CVE-2018-1000156.patch │ │ ├── CVE-2018-6951.patch │ │ ├── CVE-2019-13636.patch │ │ └── CVE-2019-13638.patch │ └── template ├── patchage │ └── template ├── patchelf │ └── template ├── patchmatrix │ └── template ├── patchutils │ └── template ├── pavucontrol-qt │ └── template ├── pavucontrol │ └── template ├── pax-utils │ ├── template │ └── update ├── pax │ ├── patches │ │ └── musl-headers.patch │ ├── template │ └── update ├── pazi │ ├── patches │ │ └── fix-cargo-lock.patch │ └── template ├── pbbuttonsd-devel ├── pbbuttonsd │ ├── files │ │ ├── 85-pbbuttonsd.rules │ │ └── pbbuttonsd │ │ │ └── run │ ├── patches │ │ ├── 001-no-ftbfs-format-security.diff │ │ ├── 002-English-language-fixes.patch │ │ ├── 003-disable-powersave-under-gpm.patch │ │ ├── 004-disable-autorescan.patch │ │ ├── 005-cpufreq.patch │ │ ├── 006-laptopmode.patch │ │ ├── 007-bug774634.patch │ │ ├── 008-fnmode.patch │ │ ├── 009-comp_warnings.patch │ │ └── 010-rundir.patch │ └── template ├── pbzip2 │ └── template ├── pc │ └── template ├── pcaudiolib-devel ├── pcaudiolib │ └── template ├── pcc-libs ├── pcc │ ├── patches │ │ ├── build_PIC.patch │ │ ├── void.patch │ │ └── x86-build-fix.patch │ └── template ├── pchar │ ├── patches │ │ ├── fix-build.patch │ │ ├── no-SO_BSDCOMPAT-2.diff │ │ ├── no-SO_BSDCOMPAT-3.diff │ │ └── no-SO_BSDCOMPAT.diff │ └── template ├── pciutils-devel ├── pciutils │ └── template ├── pcmanfm-qt │ └── template ├── pcmanfm │ └── template ├── pcmanx-gtk2 │ └── template ├── pcodedmp ├── pcre-devel ├── pcre │ ├── patches │ │ └── ppc-icache-flush.patch │ └── template ├── pcre2-devel ├── pcre2 │ └── template ├── pcsc-acsccid │ ├── template │ └── update ├── pcsc-ccid-contrib ├── pcsc-ccid-examples ├── pcsc-ccid │ ├── template │ └── update ├── pcsc-cyberjack │ └── template ├── pcsc-tools │ └── template ├── pcsclite-devel ├── pcsclite │ ├── files │ │ ├── README.voidlinux │ │ └── pcscd │ │ │ └── run │ ├── template │ └── update ├── pcsxr │ ├── patches │ │ ├── 01_fix-i386-exec-stack.patch │ │ ├── 02_disable-ppc-auto-dynarec.patch │ │ ├── 05_format-security.patch │ │ ├── 06_warnings.patch │ │ ├── 10_cross.patch │ │ ├── cdriso-uncompress2-fix-mgorny.patch │ │ └── musl-fcntl_h.patch │ └── template ├── pd-devel ├── pd-mapper │ ├── files │ │ └── pd-mapper │ │ │ └── run │ └── template ├── pd │ ├── template │ └── update ├── pdd │ ├── patches │ │ └── fix-install.patch │ └── template ├── pdf.js │ └── template ├── pdf2djvu │ └── template ├── pdfarranger │ └── template ├── pdfcpu │ └── template ├── pdfcrack │ └── template ├── pdfgrep │ └── template ├── pdfpc │ ├── patches │ │ ├── discount-v3.patch │ │ └── vala-0.56.7.patch │ └── template ├── pdfsandwich │ ├── patches │ │ └── 00-fix-tesseract-path.patch │ └── template ├── pdftag │ └── template ├── pdftk ├── pdftk-java │ ├── files │ │ └── pdftk │ ├── template │ └── update ├── pdmenu │ └── template ├── pdsh │ ├── patches │ │ ├── fix_configure_ac.patch │ │ └── without-rresvport.patch │ └── template ├── peaclock │ └── template ├── peco │ └── template ├── peek │ └── template ├── peframe │ ├── patches │ │ └── fix-for-py3.10.patch │ └── template ├── peg │ └── template ├── pekwm │ ├── template │ └── update ├── pelican │ └── template ├── pen │ ├── template │ └── update ├── pencil2d │ └── template ├── percona-toolkit │ ├── template │ └── update ├── perf ├── perl-ACL-Lite │ └── template ├── perl-AWS-Signature4 │ └── template ├── perl-Algorithm-Diff │ └── template ├── perl-Alien-Build │ └── template ├── perl-Alien-Libxml2 │ └── template ├── perl-Alien │ └── template ├── perl-AnyEvent-I3 │ └── template ├── perl-AnyEvent │ └── template ├── perl-Apache-LogFormat-Compiler │ └── template ├── perl-AppConfig │ └── template ├── perl-Archive-Extract │ └── template ├── perl-Archive-Zip │ └── template ├── perl-Authen-SASL │ └── template ├── perl-B-Hooks-EndOfScope │ └── template ├── perl-Barcode-ZBar │ └── template ├── perl-Bit-Vector │ └── template ├── perl-Business-ISBN-Data │ └── template ├── perl-Business-ISBN │ └── template ├── perl-Business-ISMN │ └── template ├── perl-Business-ISSN │ └── template ├── perl-CGI │ └── template ├── perl-CPAN-Changes │ └── template ├── perl-CPAN-Common-Index │ └── template ├── perl-CPAN-DistnameInfo │ └── template ├── perl-CPAN-Meta-Check │ └── template ├── perl-CPAN-Requirements-Dynamic │ └── template ├── perl-Cairo-GObject │ ├── template │ └── update ├── perl-Cairo │ ├── template │ └── update ├── perl-Canary-Stability │ └── template ├── perl-Capture-Tiny │ └── template ├── perl-Carp-Clan │ └── template ├── perl-Class-Accessor │ └── template ├── perl-Class-Data-Inheritable │ └── template ├── perl-Class-Factory-Util │ └── template ├── perl-Class-Inspector │ └── template ├── perl-Class-Load │ └── template ├── perl-Class-Method-Modifiers │ └── template ├── perl-Class-MethodMaker │ └── template ├── perl-Class-Singleton │ └── template ├── perl-Class-Tiny │ └── template ├── perl-Class-XSAccessor │ └── template ├── perl-Clipboard │ └── template ├── perl-Clone-Choose │ └── template ├── perl-Clone-PP │ └── template ├── perl-Clone │ └── template ├── perl-Config-AutoConf │ └── template ├── perl-Config-General │ └── template ├── perl-Config-INI-Reader-Ordered │ └── template ├── perl-Config-INI │ └── template ├── perl-Config-IniFiles │ └── template ├── perl-Config-Simple │ └── template ├── perl-Config-Tiny │ └── template ├── perl-Convert-BinHex │ └── template ├── perl-Cookie-Baker │ └── template ├── perl-Crypt-Blowfish │ └── template ├── perl-Crypt-Blowfish_PP │ └── template ├── perl-Crypt-CAST5 │ └── template ├── perl-Crypt-CBC │ └── template ├── perl-Crypt-DES │ └── template ├── perl-Crypt-DES_EDE3 │ └── template ├── perl-Crypt-DH │ ├── patches │ │ └── force_require_bigint_gmp.patch │ └── template ├── perl-Crypt-IDEA │ └── template ├── perl-Crypt-OpenSSL-Bignum │ └── template ├── perl-Crypt-OpenSSL-Guess │ └── template ├── perl-Crypt-OpenSSL-RSA │ └── template ├── perl-Crypt-OpenSSL-Random │ └── template ├── perl-Crypt-PasswdMD5 │ └── template ├── perl-Crypt-RC4 │ └── template ├── perl-Crypt-Rijndael │ └── template ├── perl-CryptX │ └── template ├── perl-Curses-UI │ └── template ├── perl-Curses │ └── template ├── perl-DBD-Pg │ └── template ├── perl-DBD-SQLite │ └── template ├── perl-DBD-mysql │ └── template ├── perl-DBI │ └── template ├── perl-Danga-Socket │ └── template ├── perl-Data-Compare │ └── template ├── perl-Data-Dump │ └── template ├── perl-Data-Dx │ └── template ├── perl-Data-MessagePack │ └── template ├── perl-Data-OptList │ └── template ├── perl-Data-Perl │ └── template ├── perl-Data-Section-Simple │ └── template ├── perl-Data-UUID │ └── template ├── perl-Data-Uniqid │ └── template ├── perl-Data-Validate-IP │ └── template ├── perl-Date-Calc │ └── template ├── perl-Date-Manip │ └── template ├── perl-Date-Simple │ └── template ├── perl-DateTime-Calendar-Julian │ └── template ├── perl-DateTime-Format-Builder │ └── template ├── perl-DateTime-Format-Strptime │ └── template ├── perl-DateTime-Locale │ └── template ├── perl-DateTime-TimeZone │ └── template ├── perl-DateTime │ └── template ├── perl-Devel-Caller │ └── template ├── perl-Devel-CheckLib │ └── template ├── perl-Devel-GlobalDestruction │ └── template ├── perl-Devel-LexAlias │ └── template ├── perl-Devel-NYTProf │ └── template ├── perl-Devel-StackTrace-AsHTML │ └── template ├── perl-Devel-StackTrace │ └── template ├── perl-Devel-Symdump │ └── template ├── perl-Digest-HMAC │ └── template ├── perl-Digest-Perl-MD5 │ └── template ├── perl-Digest-SHA1 │ └── template ├── perl-Dist-CheckConflicts │ └── template ├── perl-Email-Address-XS │ └── template ├── perl-Email-Date-Format │ └── template ├── perl-Email-FolderType │ └── template ├── perl-Email-LocalDelivery │ └── template ├── perl-Email-MIME-ContentType │ └── template ├── perl-Email-MIME-Encodings │ └── template ├── perl-Email-MIME │ └── template ├── perl-Email-MessageID │ └── template ├── perl-Email-Simple │ └── template ├── perl-Encode-EUCJPASCII │ └── template ├── perl-Encode-HanExtra │ └── template ├── perl-Encode-JIS2K │ └── template ├── perl-Encode-Locale │ └── template ├── perl-Eval-Closure │ └── template ├── perl-Exception-Class │ └── template ├── perl-Expect │ └── template ├── perl-Exporter-Tiny │ └── template ├── perl-ExtUtils-CChecker │ └── template ├── perl-ExtUtils-Config │ └── template ├── perl-ExtUtils-CppGuess │ └── template ├── perl-ExtUtils-Depends │ ├── template │ └── update ├── perl-ExtUtils-HasCompiler │ └── template ├── perl-ExtUtils-Helpers │ ├── template │ └── update ├── perl-ExtUtils-InstallPaths │ ├── template │ └── update ├── perl-ExtUtils-LibBuilder │ └── template ├── perl-ExtUtils-MakeMaker-CPANfile │ └── template ├── perl-ExtUtils-PkgConfig │ └── template ├── perl-ExtUtils-XSpp │ └── template ├── perl-FCGI │ └── template ├── perl-FFI-CheckLib │ └── template ├── perl-File-BaseDir │ └── template ├── perl-File-Copy-Recursive │ └── template ├── perl-File-DesktopEntry │ └── template ├── perl-File-Find-Rule │ └── template ├── perl-File-Flock-Retry │ └── template ├── perl-File-HomeDir │ └── template ├── perl-File-KeePass │ └── template ├── perl-File-Listing │ └── template ├── perl-File-MimeInfo │ └── template ├── perl-File-Next │ └── template ├── perl-File-Path-Expand │ └── template ├── perl-File-Remove │ └── template ├── perl-File-Rename │ └── template ├── perl-File-ShareDir-Install │ └── template ├── perl-File-ShareDir │ └── template ├── perl-File-Slurp-Tiny │ └── template ├── perl-File-Slurp │ └── template ├── perl-File-Slurper │ └── template ├── perl-File-Which │ └── template ├── perl-File-Write-Rotate │ └── template ├── perl-File-chdir │ └── template ├── perl-File-pushd │ └── template ├── perl-Filesys-Df │ └── template ├── perl-Filesys-Notify-Simple │ └── template ├── perl-Font-TTF │ └── template ├── perl-Fuse │ ├── patches │ │ └── build-fix.patch │ └── template ├── perl-GD │ └── template ├── perl-Getopt-Compact │ └── template ├── perl-Getopt-Long-Descriptive │ └── template ├── perl-Glib-Object-Introspection │ └── template ├── perl-Glib │ ├── template │ └── update ├── perl-GnuPG-Interface │ ├── patches │ │ ├── 0001-disables-version-check.patch │ │ └── 0002-Hardcode-path-to-usr-bin-gpg.patch │ └── template ├── perl-GooCanvas2 │ └── template ├── perl-Graphics-ColorUtils │ └── template ├── perl-Gtk2 │ ├── template │ └── update ├── perl-Gtk3-ImageView │ └── template ├── perl-Gtk3-SimpleList │ └── template ├── perl-Gtk3 │ ├── template │ └── update ├── perl-HTML-Form │ └── template ├── perl-HTML-Parser │ └── template ├── perl-HTML-Tagset │ └── template ├── perl-HTML-Tree │ └── template ├── perl-HTTP-CookieJar │ └── template ├── perl-HTTP-Cookies │ └── template ├── perl-HTTP-Daemon │ └── template ├── perl-HTTP-Date │ └── template ├── perl-HTTP-Entity-Parser │ └── template ├── perl-HTTP-Headers-Fast │ └── template ├── perl-HTTP-Message │ └── template ├── perl-HTTP-MultiPartParser │ └── template ├── perl-HTTP-Negotiate │ └── template ├── perl-HTTP-Response-Encoding │ └── template ├── perl-HTTP-Server-Simple │ └── template ├── perl-HTTP-Tinyish │ └── template ├── perl-Hash-Merge │ └── template ├── perl-Hash-MultiValue │ └── template ├── perl-IO-CaptureOutput │ └── template ├── perl-IO-Compress-Brotli │ ├── patches │ │ └── no-bundled-brotli.patch │ └── template ├── perl-IO-HTML │ └── template ├── perl-IO-SessionData │ └── template ├── perl-IO-Socket-INET6 │ └── template ├── perl-IO-Socket-SSL │ └── template ├── perl-IO-Socket-Socks │ └── template ├── perl-IO-String │ └── template ├── perl-IO-Stty │ └── template ├── perl-IO-Tty │ └── template ├── perl-IO-stringy │ └── template ├── perl-IPC-Run │ └── template ├── perl-IPC-Run3 │ └── template ├── perl-IPC-System-Simple │ └── template ├── perl-Image-Sane │ └── template ├── perl-Importer │ └── template ├── perl-Inline-C │ └── template ├── perl-Inline │ └── template ├── perl-JSON-MaybeXS │ └── template ├── perl-JSON-XS │ └── template ├── perl-JSON │ └── template ├── perl-Keyword-Declare │ └── template ├── perl-Keyword-Simple │ └── template ├── perl-LWP-MediaTypes │ └── template ├── perl-LWP-Protocol-https │ └── template ├── perl-LWP-Protocol-socks │ └── template ├── perl-LWP │ ├── template │ └── update ├── perl-Lchown │ └── template ├── perl-Lingua-Translit │ └── template ├── perl-Linux-DesktopFiles │ └── template ├── perl-Linux-Distribution │ └── template ├── perl-Linux-Inotify2 │ ├── patches │ │ └── bareword.patch │ └── template ├── perl-List-AllUtils │ └── template ├── perl-List-MoreUtils-XS │ └── template ├── perl-List-MoreUtils │ └── template ├── perl-List-SomeUtils-XS │ └── template ├── perl-List-SomeUtils │ └── template ├── perl-List-UtilsBy │ └── template ├── perl-Locale-Codes │ └── template ├── perl-Locale-PO │ └── template ├── perl-Locale-gettext │ ├── template │ └── update ├── perl-Log-Log4perl │ └── template ├── perl-MIME-Charset │ └── template ├── perl-MIME-Types │ └── template ├── perl-MIME-tools │ └── template ├── perl-MP3-Info │ └── template ├── perl-MP3-Tag │ └── template ├── perl-MRO-Compat │ └── template ├── perl-Mail-AuthenticationResults │ └── template ├── perl-Mail-Box │ └── template ├── perl-Mail-DKIM │ └── template ├── perl-Mail-Message │ └── template ├── perl-Mail-POP3Client │ └── template ├── perl-Mail-Sendmail │ └── template ├── perl-Mail-Transport │ └── template ├── perl-MailTools │ └── template ├── perl-Math-BigInt-GMP │ └── template ├── perl-Math-FFT │ └── template ├── perl-Math-Int128 │ └── template ├── perl-Math-Int64 │ └── template ├── perl-Math-Prime-Util-GMP │ └── template ├── perl-Math-Prime-Util │ └── template ├── perl-Menlo-Legacy │ └── template ├── perl-Menlo │ └── template ├── perl-Mixin-Linewise │ └── template ├── perl-Module-Build-Tiny │ └── template ├── perl-Module-Build │ └── template ├── perl-Module-CPANfile │ └── template ├── perl-Module-Find │ └── template ├── perl-Module-Implementation │ └── template ├── perl-Module-Manifest │ └── template ├── perl-Module-Pluggable │ └── template ├── perl-Module-Runtime │ └── template ├── perl-Mojolicious │ └── template ├── perl-Monkey-Patch-Action │ └── template ├── perl-Moo │ └── template ├── perl-MooX-HandlesVia │ └── template ├── perl-MooX-Types-MooseLike │ └── template ├── perl-MooX-late │ └── template ├── perl-Mozilla-CA │ └── template ├── perl-MusicBrainz-DiscID │ └── template ├── perl-Net-CIDR │ └── template ├── perl-Net-DBus │ └── template ├── perl-Net-DNS-Resolver-Mock │ └── template ├── perl-Net-DNS │ └── template ├── perl-Net-HTTP │ └── template ├── perl-Net-IDN-Encode │ └── template ├── perl-Net-IMAP-Client │ └── template ├── perl-Net-IMAP-Simple │ └── template ├── perl-Net-MPD │ └── template ├── perl-Net-OpenSSH │ └── template ├── perl-Net-SFTP-Foreign │ └── template ├── perl-Net-SMTP-SSL │ └── template ├── perl-Net-SSH2 │ └── template ├── perl-Net-SSLeay │ └── template ├── perl-Net-Server │ └── template ├── perl-NetAddr-IP │ └── template ├── perl-Number-Compare │ └── template ├── perl-Number-Format │ └── template ├── perl-OLE-Storage_Lite │ └── template ├── perl-Object-MultiType │ └── template ├── perl-Object-Realize-Later │ └── template ├── perl-OpenGL │ ├── patches │ │ └── 0001-no_glversion.patch │ └── template ├── perl-PDF-API2 │ └── template ├── perl-PDF-Builder │ └── template ├── perl-POSIX-strftime-Compiler │ └── template ├── perl-PPR │ └── template ├── perl-Package-DeprecationManager │ └── template ├── perl-Package-Stash-XS │ └── template ├── perl-Package-Stash │ └── template ├── perl-PadWalker │ └── template ├── perl-Pango │ ├── template │ └── update ├── perl-Parallel-ForkManager │ └── template ├── perl-Params-Classify │ └── template ├── perl-Params-Util │ └── template ├── perl-Params-Validate │ └── template ├── perl-Params-ValidationCompiler │ └── template ├── perl-Parse-CPAN-Meta │ └── template ├── perl-Parse-PMFile │ └── template ├── perl-Parse-RecDescent │ └── template ├── perl-Parse-Yapp │ └── template ├── perl-PatchReader │ └── template ├── perl-Path-Tiny │ └── template ├── perl-Pegex │ └── template ├── perl-PerlIO-utf8-strict │ ├── template │ └── update ├── perl-Plack-Middleware-Deflater │ └── template ├── perl-Plack-Middleware-ReverseProxy │ └── template ├── perl-Plack │ └── template ├── perl-Pod-Coverage │ └── template ├── perl-Pod-Parser │ └── template ├── perl-Pod-Simple-Text-Termcap │ └── template ├── perl-Probe-Perl │ └── template ├── perl-Proc-Daemontools │ └── template ├── perl-Proc-Govern │ └── template ├── perl-Proc-PID-File │ └── template ├── perl-Proc-ProcessTable │ └── template ├── perl-Readonly │ └── template ├── perl-Ref-Util-XS │ └── template ├── perl-Ref-Util │ └── template ├── perl-Regexp-Common │ └── template ├── perl-Regexp-Grammars │ └── template ├── perl-Reply │ └── template ├── perl-Role-Hooks │ └── template ├── perl-Role-Tiny │ └── template ├── perl-SGMLSpm │ └── template ├── perl-SOAP-Lite │ └── template ├── perl-SUPER │ └── template ├── perl-SVG │ └── template ├── perl-Scope-Guard │ └── template ├── perl-Search-Xapian │ └── template ├── perl-Set-IntSpan │ └── template ├── perl-Socket-MsgHdr │ └── template ├── perl-Socket6 │ └── template ├── perl-Sort-Key │ └── template ├── perl-Sort-Naturally │ └── template ├── perl-Sort-Versions │ └── template ├── perl-Specio │ └── template ├── perl-Spiffy │ └── template ├── perl-Spreadsheet-ParseExcel │ └── template ├── perl-Spreadsheet-ParseXLSX │ └── template ├── perl-Stow ├── perl-Stream-Buffered │ └── template ├── perl-String-Escape │ └── template ├── perl-String-ShellQuote │ └── template ├── perl-Sub-Delete │ └── template ├── perl-Sub-Exporter-Progressive │ └── template ├── perl-Sub-Exporter │ └── template ├── perl-Sub-HandlesVia │ └── template ├── perl-Sub-Identify │ └── template ├── perl-Sub-Info │ └── template ├── perl-Sub-Install │ └── template ├── perl-Sub-Name │ └── template ├── perl-Sub-Override │ └── template ├── perl-Sub-Quote │ └── template ├── perl-Sub-Uplevel │ └── template ├── perl-Svsh │ └── template ├── perl-Switch │ └── template ├── perl-Syntax-Keyword-Try │ └── template ├── perl-Sys-Syscall │ └── template ├── perl-Taint-Runtime │ └── template ├── perl-Template-Toolkit │ └── template ├── perl-Term-Animation │ ├── template │ └── update ├── perl-Term-ExtendedColor │ └── template ├── perl-Term-ReadKey │ ├── template │ └── update ├── perl-Term-ReadLine-Gnu │ └── template ├── perl-Term-ShellUI │ └── template ├── perl-Test-Base │ └── template ├── perl-Test-CPAN-Meta │ └── template ├── perl-Test-Class │ └── template ├── perl-Test-Cmd │ └── template ├── perl-Test-Command │ └── template ├── perl-Test-Deep │ └── template ├── perl-Test-Differences │ └── template ├── perl-Test-DistManifest │ └── template ├── perl-Test-Exception │ └── template ├── perl-Test-FailWarnings │ └── template ├── perl-Test-Fatal │ └── template ├── perl-Test-File-ShareDir │ └── template ├── perl-Test-File │ └── template ├── perl-Test-HTTP-Server-Simple │ └── template ├── perl-Test-Inter │ └── template ├── perl-Test-LeakTrace │ └── template ├── perl-Test-MockModule │ └── template ├── perl-Test-Most │ └── template ├── perl-Test-Needs │ └── template ├── perl-Test-NoWarnings │ └── template ├── perl-Test-Output │ └── template ├── perl-Test-Pod-Coverage │ └── template ├── perl-Test-Pod │ └── template ├── perl-Test-Requires │ └── template ├── perl-Test-RequiresInternet │ └── template ├── perl-Test-Script │ └── template ├── perl-Test-SharedFork │ └── template ├── perl-Test-Simple │ └── template ├── perl-Test-Subroutines │ └── template ├── perl-Test-TCP │ └── template ├── perl-Test-Time │ └── template ├── perl-Test-Trap │ ├── template │ └── update ├── perl-Test-UseAllModules │ └── template ├── perl-Test-Warn │ └── template ├── perl-Test-Warnings │ └── template ├── perl-Test-Weaken │ └── template ├── perl-Test-Without-Module │ └── template ├── perl-Test-YAML │ └── template ├── perl-Test-utf8 │ └── template ├── perl-Test2-Plugin-NoWarnings │ └── template ├── perl-Text-ASCIITable │ └── template ├── perl-Text-Aligner │ └── template ├── perl-Text-Autoformat │ ├── template │ └── update ├── perl-Text-BibTeX │ ├── patches │ │ ├── FORTIFY_SOURCE.patch │ │ └── lib64.patch │ └── template ├── perl-Text-Bidi │ ├── files │ │ └── README.voidlinux │ └── template ├── perl-Text-CSV │ └── template ├── perl-Text-CSV_XS │ └── template ├── perl-Text-CharWidth │ └── template ├── perl-Text-Diff │ └── template ├── perl-Text-Glob │ └── template ├── perl-Text-Markdown │ └── template ├── perl-Text-Reform │ └── template ├── perl-Text-Roman │ └── template ├── perl-Text-Table │ └── template ├── perl-Text-Template │ └── template ├── perl-Text-Unidecode │ └── template ├── perl-Text-WrapI18N │ └── template ├── perl-Text-XLogfile │ └── template ├── perl-Tie-Cycle │ └── template ├── perl-Tie-Handle-Offset │ └── template ├── perl-Tie-IxHash │ └── template ├── perl-Time-Duration │ └── template ├── perl-Time-modules │ └── template ├── perl-TimeDate │ └── template ├── perl-Tk │ ├── patches │ │ ├── SvPV-incompatible-pointer-types.patch │ │ ├── cross.patch │ │ └── gcc14.patch │ └── template ├── perl-Tree-DAG_Node │ └── template ├── perl-Try-Tiny │ └── template ├── perl-Type-Tiny │ └── template ├── perl-Types-Serialiser │ └── template ├── perl-URI │ └── template ├── perl-Unicode-LineBreak │ └── template ├── perl-Unicode-String │ └── template ├── perl-Unicode-Tussle │ └── template ├── perl-Unix-Mknod │ └── template ├── perl-Unix-Uptime │ └── template ├── perl-User-Identity │ └── template ├── perl-Variable-Magic │ └── template ├── perl-WL │ └── template ├── perl-WWW-Curl │ ├── patches │ │ ├── curl-7.50.2.patch │ │ └── curl-7.87.0.patch │ └── template ├── perl-WWW-Form-UrlEncoded │ └── template ├── perl-WWW-Mechanize │ └── template ├── perl-WWW-RobotRules │ └── template ├── perl-WebService-MusicBrainz │ └── template ├── perl-X11-Protocol-Other │ └── template ├── perl-X11-Protocol │ └── template ├── perl-XML-LibXML-PrettyPrint │ └── template ├── perl-XML-LibXML-Simple │ └── template ├── perl-XML-LibXML │ └── template ├── perl-XML-LibXSLT │ ├── patches │ │ └── fix-cross-remove-have_library.patch │ └── template ├── perl-XML-NamespaceSupport │ └── template ├── perl-XML-Parser-Lite │ └── template ├── perl-XML-Parser │ └── template ├── perl-XML-SAX-Base │ └── template ├── perl-XML-SAX │ ├── INSTALL │ ├── REMOVE │ ├── patches │ │ └── fix-installation.patch │ └── template ├── perl-XML-Simple │ └── template ├── perl-XML-Smart │ └── template ├── perl-XML-Twig │ └── template ├── perl-XML-Writer │ └── template ├── perl-XML-XPath │ └── template ├── perl-XS-Parse-Keyword │ ├── patches │ │ └── cross-fix.patch │ └── template ├── perl-XString │ └── template ├── perl-YAML-LibYAML │ └── template ├── perl-YAML-PP │ └── template ├── perl-YAML-Tiny │ └── template ├── perl-YAML │ └── template ├── perl-autovivification │ └── template ├── perl-b-cow │ └── template ├── perl-boolean │ └── template ├── perl-bootstrap │ ├── patches │ ├── template │ └── update ├── perl-common-sense │ └── template ├── perl-enum │ └── template ├── perl-local-lib │ └── template ├── perl-namespace-autoclean │ └── template ├── perl-namespace-clean │ └── template ├── perl-pcsc │ ├── template │ └── update ├── perl-rename │ └── template ├── perl-rrdtool ├── perl-strictures │ └── template ├── perl-tainting │ └── template ├── perl │ ├── files │ │ ├── musl-locale.patch │ │ └── update-perl-provides.pl │ ├── patches │ │ ├── D-SHA-CFLAGS.diff │ │ ├── cleanup-paths.diff │ │ ├── cpan_definstalldirs.diff │ │ ├── cross-Makefile.SH.patch │ │ ├── drop_fstack_protector.diff │ │ └── usr_local.diff │ ├── template │ └── update ├── perltidy │ ├── template │ └── update ├── persepolis │ ├── files │ │ └── README.voidlinux │ └── template ├── peru │ └── template ├── peshming │ ├── INSTALL │ ├── template │ └── update ├── pet │ └── template ├── pev │ └── template ├── pex │ └── template ├── pfetch │ └── template ├── pg_top │ └── template ├── pgbackrest │ ├── template │ └── update ├── pgbouncer │ └── template ├── pgcli │ └── template ├── pgmetrics │ └── template ├── pgn-extract │ ├── template │ └── update ├── pgpdump │ └── template ├── pgweb │ └── template ├── phodav-devel ├── phodav │ ├── template │ └── update ├── phonon-backend-vlc │ ├── template │ └── update ├── phonon-devel ├── phonon-locale ├── phonon-qt5 ├── phonon-qt5-backend-gstreamer │ ├── template │ └── update ├── phonon-qt5-backend-vlc ├── phonon-qt5-devel ├── phonon │ ├── template │ └── update ├── phoronix-test-suite │ └── template ├── phorward │ └── template ├── photofilmstrip │ ├── patches │ │ ├── no-img2py.patch │ │ └── no-msgfmt.patch │ └── template ├── phototonic │ ├── patches │ │ └── exiv2-0.28.patch │ └── template ├── php-apache ├── php-apcu ├── php-ast ├── php-cgi ├── php-devel ├── php-embed ├── php-enchant ├── php-ffi ├── php-fpm ├── php-gd ├── php-igbinary ├── php-imagick ├── php-intl ├── php-ldap ├── php-mongodb ├── php-mysql ├── php-odbc ├── php-pear ├── php-pgsql ├── php-phpdbg ├── php-redis ├── php-snmp ├── php-sodium ├── php-sqlite ├── php-tidy ├── php-xsl ├── php │ └── template ├── php8.1-apache ├── php8.1-apcu │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── php8.1-ast │ ├── files │ │ └── README.voidlinux │ └── template ├── php8.1-cgi ├── php8.1-devel ├── php8.1-embed ├── php8.1-enchant ├── php8.1-ffi ├── php8.1-fpm ├── php8.1-gd ├── php8.1-igbinary │ └── template ├── php8.1-imagick │ ├── files │ │ └── README.voidlinux │ ├── patches │ │ └── 0001-fix-cross-compile-libmagick-header-file-search-path.patch │ ├── template │ └── update ├── php8.1-intl ├── php8.1-ldap ├── php8.1-mongodb │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── php8.1-mysql ├── php8.1-odbc ├── php8.1-pear ├── php8.1-pgsql ├── php8.1-phpdbg ├── php8.1-redis │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── php8.1-snmp ├── php8.1-sodium ├── php8.1-sqlite ├── php8.1-tidy ├── php8.1-xsl ├── php8.1 │ ├── files │ │ ├── apache.conf │ │ └── php-fpm8.1 │ │ │ └── run │ ├── patches │ │ ├── cross-configure.patch │ │ ├── cross-ltmain-sysroot-support.patch │ │ ├── cross-pear.patch │ │ ├── cross-phar.patch │ │ ├── cross-phpize-sysroot-support.patch │ │ ├── musl-crypt.patch │ │ ├── php-fpm.patch │ │ ├── php8.1-fix-manpages.patch │ │ └── php8.1-ini.patch │ ├── template │ └── update ├── php8.2-apache ├── php8.2-apcu │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── php8.2-ast │ ├── files │ │ └── README.voidlinux │ └── template ├── php8.2-cgi ├── php8.2-devel ├── php8.2-embed ├── php8.2-enchant ├── php8.2-ffi ├── php8.2-fpm ├── php8.2-gd ├── php8.2-igbinary │ └── template ├── php8.2-imagick │ ├── files │ │ └── README.voidlinux │ ├── patches │ │ └── 0001-fix-cross-compile-libmagick-header-file-search-path.patch │ ├── template │ └── update ├── php8.2-intl ├── php8.2-ldap ├── php8.2-mongodb │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── php8.2-mysql ├── php8.2-odbc ├── php8.2-pear ├── php8.2-pgsql ├── php8.2-phpdbg ├── php8.2-redis │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── php8.2-snmp ├── php8.2-sodium ├── php8.2-sqlite ├── php8.2-tidy ├── php8.2-xsl ├── php8.2 │ ├── files │ │ ├── apache.conf │ │ └── php-fpm8.2 │ │ │ └── run │ ├── patches │ │ ├── cross-configure.patch │ │ ├── cross-gdImageCreateFrom.patch │ │ ├── cross-ltmain-sysroot-support.patch │ │ ├── cross-pear.patch │ │ ├── cross-phar.patch │ │ ├── cross-phpize-sysroot-support.patch │ │ ├── musl-crypt.patch │ │ ├── php-fpm.patch │ │ ├── php8.2-fix-manpages.patch │ │ └── php8.2-ini.patch │ ├── template │ └── update ├── php8.3-apache ├── php8.3-apcu │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── php8.3-ast │ ├── files │ │ └── README.voidlinux │ └── template ├── php8.3-cgi ├── php8.3-devel ├── php8.3-embed ├── php8.3-enchant ├── php8.3-ffi ├── php8.3-fpm ├── php8.3-gd ├── php8.3-igbinary │ └── template ├── php8.3-imagick │ ├── files │ │ └── README.voidlinux │ ├── patches │ │ └── 0001-fix-cross-compile-libmagick-header-file-search-path.patch │ ├── template │ └── update ├── php8.3-intl ├── php8.3-ldap ├── php8.3-mongodb │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── php8.3-mysql ├── php8.3-odbc ├── php8.3-pear ├── php8.3-pgsql ├── php8.3-phpdbg ├── php8.3-redis │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── php8.3-snmp ├── php8.3-sodium ├── php8.3-sqlite ├── php8.3-tidy ├── php8.3-xsl ├── php8.3 │ ├── files │ │ ├── apache.conf │ │ └── php-fpm8.3 │ │ │ └── run │ ├── patches │ │ ├── cross-configure.patch │ │ ├── cross-gdImageCreateFrom.patch │ │ ├── cross-ltmain-sysroot-support.patch │ │ ├── cross-pear.patch │ │ ├── cross-phar.patch │ │ ├── cross-phpize-sysroot-support.patch │ │ ├── musl-crypt.patch │ │ ├── php-fpm.patch │ │ ├── php8.3-fix-manpages.patch │ │ └── php8.3-ini.patch │ ├── template │ └── update ├── php8.4-apache ├── php8.4-apcu │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── php8.4-ast │ ├── files │ │ └── README.voidlinux │ └── template ├── php8.4-cgi ├── php8.4-devel ├── php8.4-embed ├── php8.4-enchant ├── php8.4-ffi ├── php8.4-fpm ├── php8.4-gd ├── php8.4-igbinary │ └── template ├── php8.4-imagick │ ├── files │ │ └── README.voidlinux │ ├── patches │ │ └── 0001-fix-cross-compile-libmagick-header-file-search-path.patch │ ├── template │ └── update ├── php8.4-intl ├── php8.4-ldap ├── php8.4-mongodb │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── php8.4-mysql ├── php8.4-odbc ├── php8.4-pear ├── php8.4-pgsql ├── php8.4-phpdbg ├── php8.4-redis │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── php8.4-snmp ├── php8.4-sodium ├── php8.4-sqlite ├── php8.4-tidy ├── php8.4-xsl ├── php8.4 │ ├── files │ │ ├── apache.conf │ │ └── php-fpm8.4 │ │ │ └── run │ ├── patches │ │ ├── aarch64-musl-off64_t.patch │ │ ├── apache-zts.patch │ │ ├── cross-configure.patch │ │ ├── cross-gdImageCreateFrom.patch │ │ ├── cross-ltmain-sysroot-support.patch │ │ ├── cross-pear.patch │ │ ├── cross-phar.patch │ │ ├── cross-phpize-sysroot-support.patch │ │ ├── musl-crypt.patch │ │ ├── php-fpm.patch │ │ ├── php8.4-fix-manpages.patch │ │ └── php8.4-ini.patch │ ├── template │ └── update ├── phpMyAdmin │ ├── template │ └── update ├── physfs-devel ├── physfs │ └── template ├── physlock │ └── template ├── pianobar │ └── template ├── picard │ ├── template │ └── update ├── pick │ └── template ├── picmi │ └── template ├── picocom │ └── template ├── picom │ └── template ├── picosat-devel ├── picosat │ └── template ├── pidgin-devel ├── pidgin-gpg │ ├── patches │ │ └── musl-encrypt.patch │ └── template ├── pidgin-libnotify │ ├── patches │ │ ├── pidgin-libnotify-0.14-libnotify-0.7.patch │ │ ├── pidgin-libnotify-getfocus.patch │ │ └── pidgin-libnotify-showbutton.patch │ └── template ├── pidgin-otr │ └── template ├── pidgin-privacy-please │ ├── template │ └── update ├── pidgin-sipe │ ├── patches │ │ └── time64.patch │ └── template ├── pidgin-window-merge │ └── template ├── pidgin │ └── template ├── pigz │ └── template ├── pijul │ └── template ├── pika-backup │ ├── patches │ │ └── remove-git-describe.patch │ └── template ├── pilot-link-devel ├── pilot-link │ ├── patches │ │ ├── autoconf-2.71.patch │ │ ├── fix-ai_non_const.patch │ │ ├── fix-const_uchar.patch │ │ ├── fix-ifdef_syntax.patch │ │ ├── fix-linuxusb_return_types.patch │ │ ├── fix-strncat_overrun.patch │ │ ├── fix-swig_const_char_ptr.patch │ │ ├── fix-unused_result.patch │ │ ├── musl-matherr.patch │ │ ├── pilot-link-png14.diff │ │ └── refactor-iconv_const_char_ptr.patch │ └── template ├── pim-data-exporter │ └── template ├── pimcommon-devel ├── pimcommon │ └── template ├── pinebookpro-base │ ├── files │ │ ├── 10-pinebookpro.hwdb │ │ └── 60-pinebookpro.rules │ └── template ├── pinebookpro-firmware │ └── template ├── pinebookpro-kernel ├── pinebookpro-kernel-headers ├── pinebookpro-uboot │ ├── files │ │ └── kernel.d │ │ │ └── uboot │ ├── patches │ │ ├── 0004-mmc-sdhci-allow-disabling-sdma-in-spl.patch │ │ ├── no-delay-autoboot.patch │ │ └── rk3399-power-led.patch │ └── template ├── pinentry-bemenu │ └── template ├── pinentry-dmenu │ └── template ├── pinentry-emacs ├── pinentry-gnome ├── pinentry-gtk │ └── template ├── pinentry-qt ├── pinentry-tty ├── pinentry │ └── template ├── pinephone-base │ ├── files │ │ └── 90-modem-eg25.rules │ └── template ├── pinephone-kernel-dbg ├── pinephone-kernel-headers ├── pinephone-kernel │ ├── files │ │ ├── DocBook │ │ │ └── Makefile │ │ ├── mv-debug │ │ └── pinephone-dotconfig │ └── template ├── pinephone-uboot │ ├── files │ │ ├── kernel.d │ │ │ └── uboot │ │ └── uboot.default │ └── template ├── pinfo │ ├── patches │ │ └── 36.patch │ └── template ├── pingus-data ├── pingus │ ├── files │ │ └── pingus.desktop │ ├── patches │ │ ├── fix-gcc7.diff │ │ ├── missing-header.patch │ │ ├── pingus-0.7.6-gcc470-udl.patch │ │ ├── pingus-1.76-boost-1.69.patch │ │ └── scons-use-python3-print.patch │ ├── template │ └── update ├── pinktrace-devel ├── pinktrace │ ├── template │ └── update ├── pioneer-data ├── pioneer-modelcompiler ├── pioneer │ ├── patches │ │ ├── endian.patch │ │ └── missing-includes.patch │ ├── template │ └── update ├── pioneers │ └── template ├── pipe-viewer-gtk ├── pipe-viewer │ └── template ├── pipectl │ └── template ├── pipenightdreams │ ├── files │ │ └── pipenightdreams.desktop │ ├── patches │ │ ├── fix-new.patch │ │ ├── fix-no-initializers.patch │ │ └── fix-no-inline.patch │ └── template ├── piper │ └── template ├── pipes.c │ └── template ├── pipewire-devel ├── pipewire-doc ├── pipewire │ ├── INSTALL.msg │ ├── files │ │ ├── 20-pipewire-pulse.conf │ │ ├── README.voidlinux │ │ ├── pipewire-pulse.desktop │ │ ├── pipewire.desktop │ │ └── pipewire │ │ │ ├── control │ │ │ └── t │ │ │ └── run │ ├── patches │ │ └── fix-neon-detection.patch │ └── template ├── pipr │ └── template ├── pithos │ └── template ├── pixd │ └── template ├── pixiewps │ └── template ├── pixman-devel ├── pixman │ ├── template │ └── update ├── pixz │ └── template ├── pizauth │ └── template ├── pjproject-devel ├── pjproject │ ├── patches │ │ └── no-third-party.patch │ ├── template │ └── update ├── pkcs11-helper-devel ├── pkcs11-helper-doc ├── pkcs11-helper │ ├── template │ └── update ├── pkg-config │ └── template ├── pkgconf-devel ├── pkgconf │ └── template ├── pkgtop │ └── template ├── plan9port │ ├── files │ │ └── plan9.sh │ ├── patches │ │ └── lookman.patch │ └── template ├── planarity-devel ├── planarity │ ├── template │ └── update ├── planify │ ├── patches │ │ ├── 00-musl.patch │ │ └── libgee-musl.patch │ ├── template │ └── update ├── plank-devel ├── plank │ └── template ├── planner ├── plantuml │ └── template ├── plasma-activities-devel ├── plasma-activities-stats-devel ├── plasma-activities-stats │ └── template ├── plasma-activities │ └── template ├── plasma-applet-active-window-control │ └── template ├── plasma-browser-integration │ ├── patches │ │ └── 615c9f71840dedb58bb1c391c988cd6accbf2642.patch │ └── template ├── plasma-desktop │ ├── patches │ │ └── no-discover-recommendation.patch │ └── template ├── plasma-disks │ └── template ├── plasma-firewall │ └── template ├── plasma-framework-devel ├── plasma-framework │ ├── template │ └── update ├── plasma-integration │ └── template ├── plasma-nm │ └── template ├── plasma-pa │ └── template ├── plasma-sdk │ └── template ├── plasma-systemmonitor │ └── template ├── plasma-thunderbolt │ └── template ├── plasma-vault │ └── template ├── plasma-wayland-protocols │ └── template ├── plasma-workspace-devel ├── plasma-workspace-wallpapers │ └── template ├── plasma-workspace │ ├── patches │ │ ├── dbus.patch │ │ └── fix-krunner-cwd.patch │ └── template ├── plasma5support-devel ├── plasma5support │ └── template ├── plata-theme │ ├── files │ │ └── README.voidlinux │ └── template ├── platformio │ └── template ├── plattenalbum │ └── template ├── playerctl-devel ├── playerctl │ └── template ├── playitslowly │ └── template ├── playonlinux │ ├── patches │ │ ├── 60.patch │ │ ├── python-3.12.patch │ │ └── replace-pipes.patch │ └── template ├── plex-media-player │ └── template ├── plib-devel ├── plib │ ├── patches │ │ ├── CVE-2011-4620.diff │ │ ├── CVE-2012-4552.diff │ │ ├── musl-ushort.patch │ │ └── plib-1.8.5-shared-libs.patch │ ├── template │ └── update ├── plist2json │ └── template ├── plocate │ ├── INSTALL │ ├── files │ │ └── plocate.cron-daily │ ├── patches │ │ └── fix-missing-include.patch │ └── template ├── plog │ └── template ├── plotutils-devel ├── plotutils │ ├── patches │ │ └── plotutils-2.6-libpng-1.5.patch │ └── template ├── plover │ ├── template │ └── update ├── plplot-ada ├── plplot-devel ├── plplot-doc ├── plplot-fortran ├── plplot-lua ├── plplot-python3 ├── plplot │ └── template ├── pluma-devel ├── pluma │ ├── patches │ │ └── python-3.12.patch │ ├── template │ └── update ├── plume-creator │ └── template ├── plymouth-data ├── plymouth-devel ├── plymouth │ ├── files │ │ └── 71-plymouth-seat.rules │ ├── patches │ │ ├── fix-glibc-2.36.patch │ │ └── musl-rpmatch.patch │ └── template ├── plzip │ └── template ├── pmars │ └── template ├── pmbootstrap │ └── template ├── pmidi │ └── template ├── pmount │ ├── patches │ │ ├── fix-musl.patch │ │ └── pmount-f2fs.patch │ └── template ├── pmr │ └── template ├── pmw │ └── template ├── png++-doc ├── png++ │ ├── patches │ │ ├── fix-destdir.patch │ │ └── musl-config.patch │ └── template ├── pngcrush │ └── template ├── pngquant │ └── template ├── pnmixer │ └── template ├── pnpm │ ├── template │ └── update ├── po4a │ ├── patches │ │ └── perl-5-40-fix.patch │ └── template ├── pocketsphinx │ ├── template │ └── update ├── pockyt │ └── template ├── poco-devel ├── poco │ └── template ├── pod2mdoc │ ├── template │ └── update ├── podget │ └── template ├── podman-compose │ └── template ├── podman-tui │ └── template ├── podman │ ├── files │ │ ├── podman-docker │ │ │ ├── finish │ │ │ └── run │ │ └── podman │ │ │ └── run │ └── template ├── podofo │ └── template ├── poedit │ ├── patches │ │ └── musl.patch │ ├── template │ └── update ├── poezio │ ├── patches │ │ └── disable-header-checks.patch │ ├── template │ └── update ├── poke-devel ├── poke │ └── template ├── pokoy │ ├── patches │ │ └── build.patch │ └── template ├── polari │ └── template ├── polipo │ ├── INSTALL │ ├── files │ │ └── polipo │ │ │ └── run │ ├── template │ └── update ├── polkit-devel ├── polkit-elogind ├── polkit-gnome │ ├── files │ │ └── polkit-gnome-authentication-agent-1.desktop │ ├── template │ └── update ├── polkit-kde-agent │ ├── template │ └── update ├── polkit-qt5-devel ├── polkit-qt5 │ ├── template │ └── update ├── polkit-qt6-devel ├── polkit-qt6 │ ├── template │ └── update ├── polkit │ ├── files │ │ ├── polkit-1.pam │ │ └── polkitd │ │ │ └── run │ ├── patches │ │ └── turnstile.patch │ └── template ├── polybar │ ├── patches │ │ ├── battery-rate.patch │ │ └── file-readable.patch │ └── template ├── polychromatic │ └── template ├── polyglot │ └── template ├── polyml │ └── template ├── polysh │ └── template ├── pong-command │ └── template ├── ponymix │ └── template ├── ponysay │ ├── patches │ │ ├── fish-completion-vendor.patch │ │ └── fix-do-not-compare-literal.patch │ └── template ├── poppler-cpp ├── poppler-cpp-devel ├── poppler-data │ └── template ├── poppler-devel ├── poppler-glib ├── poppler-glib-devel ├── poppler-qt5-devel ├── poppler-qt5 │ ├── patches │ ├── template │ └── update ├── poppler-qt6 ├── poppler-qt6-devel ├── poppler-utils ├── poppler │ ├── patches │ │ └── cmake-build-type-none.patch │ └── template ├── popt-devel ├── popt │ └── template ├── portage │ ├── template │ └── update ├── portaudio-cpp ├── portaudio-cpp-devel ├── portaudio-devel ├── portaudio │ ├── patches │ │ ├── audacity-compat.patch │ │ └── sndio.patch │ ├── template │ └── update ├── portmidi-devel ├── portmidi │ ├── patches │ │ ├── portmidi-217-cmake-libdir-java-opts.patch │ │ └── portmidi-217-python-setup.py.patch │ └── template ├── posh │ └── template ├── posixovl │ ├── patches │ │ └── musl.patch │ └── template ├── postfix │ ├── INSTALL │ ├── files │ │ ├── aliases.patch │ │ └── postfix │ │ │ └── run │ ├── patches │ │ └── postfix-install-dont-overwrite-path.patch │ ├── template │ └── update ├── postgis ├── postgis-postgresql16 │ ├── template │ └── update ├── postgis-postgresql17 │ ├── template │ └── update ├── postgresql-client ├── postgresql-contrib ├── postgresql-doc ├── postgresql-full ├── postgresql-libs ├── postgresql-libs-devel ├── postgresql-plperl ├── postgresql-plpython ├── postgresql-pltcl ├── postgresql │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── postgresql16-client ├── postgresql16-contrib ├── postgresql16-doc ├── postgresql16-libs-devel ├── postgresql16-plperl ├── postgresql16-plpython ├── postgresql16-pltcl ├── postgresql16 │ ├── files │ │ ├── pg_config.sh.in │ │ ├── postgresql.confd │ │ ├── postgresql.pam │ │ └── postgresql16 │ │ │ ├── control │ │ │ └── t │ │ │ └── run │ ├── patches │ │ ├── pg_config-cross-value.patch │ │ └── relocate.patch │ ├── template │ └── update ├── postgresql17-client ├── postgresql17-contrib ├── postgresql17-doc ├── postgresql17-plperl ├── postgresql17-plpython ├── postgresql17-pltcl ├── postgresql17 │ ├── files │ │ ├── pg_config.sh.in │ │ ├── postgresql.confd │ │ ├── postgresql.pam │ │ └── postgresql17 │ │ │ ├── control │ │ │ └── t │ │ │ └── run │ ├── patches │ │ ├── pg_config-cross-value.patch │ │ └── relocate.patch │ ├── template │ └── update ├── postgrest │ └── template ├── potrace-devel ├── potrace │ ├── template │ └── update ├── pounce │ └── template ├── povray │ ├── patches │ │ └── musl.patch │ └── template ├── power-profiles-daemon │ ├── files │ │ └── power-profiles-daemon │ │ │ └── run │ └── template ├── poweralertd │ └── template ├── powerdevil │ └── template ├── powerline-go │ └── template ├── powerpc-utils │ ├── patches │ │ ├── fix-endian_h.patch │ │ └── fix-limits_h.patch │ └── template ├── powerstat │ └── template ├── powertop │ └── template ├── pp │ ├── template │ └── update ├── ppl-devel ├── ppl │ ├── template │ └── update ├── ppp-devel ├── ppp │ ├── files │ │ ├── ip-down │ │ ├── ip-down.d.dns.sh │ │ ├── ip-up │ │ ├── ip-up.d.dns.sh │ │ ├── ipv6-down │ │ ├── ipv6-up │ │ ├── ipv6-up.d.iface-config.sh │ │ └── options │ ├── patches │ │ ├── fix-openssl-pc.patch │ │ └── musl.patch │ ├── template │ └── version ├── pppconfig │ └── template ├── pps-tools-devel ├── pps-tools │ ├── patches │ │ ├── makefile-DESTDIR.patch │ │ ├── ppsfind-fixes.patch │ │ └── ppswatch-signal.patch │ └── template ├── ppsspp │ ├── patches │ │ ├── disable-glslang-tests.patch │ │ ├── ffmpeg6.patch │ │ ├── fix-ffmpeg6.patch │ │ ├── rapidjson.patch │ │ └── riscv-musl.patch │ ├── template │ └── update ├── pptpclient │ ├── patches │ │ └── musl.patch │ ├── template │ └── update ├── pqiv │ └── template ├── praat-nogui ├── praat │ └── template ├── pragha-devel ├── pragha │ ├── patches │ │ └── rygel-2.8.patch │ ├── template │ └── update ├── prboom-plus │ └── template ├── pre-commit │ ├── template │ └── update ├── prelink-cross │ └── template ├── prelink │ └── template ├── preload │ ├── files │ │ └── preload │ │ │ └── run │ ├── patches │ │ └── qemu-help2man.patch │ └── template ├── premake4 │ ├── template │ └── update ├── premake5 │ ├── template │ └── update ├── primecount-devel ├── primecount │ └── template ├── primesieve-devel ├── primesieve │ └── template ├── primus │ └── template ├── print-manager │ └── template ├── privoxy │ ├── INSTALL │ ├── files │ │ └── privoxy │ │ │ └── run │ ├── template │ └── update ├── procmail │ └── template ├── procps-ng-devel ├── procps-ng │ ├── files │ │ └── sysctl.conf │ ├── patches │ │ └── 0001-fix-breakage-in-unhex.patch │ ├── template │ └── update ├── procs │ ├── patches │ │ └── edition.patch │ └── template ├── profanity │ └── template ├── profile-cleaner │ └── template ├── proftpd-devel ├── proftpd │ ├── template │ └── update ├── progress │ └── template ├── proj-devel ├── proj │ ├── template │ └── update ├── projectM-devel ├── projectM │ └── template ├── projectlibre │ ├── patches │ │ └── 020.fix-projhome.patch │ └── template ├── prometheus-client-c-devel ├── prometheus-client-c │ └── template ├── prometheus-cpp │ ├── template │ └── update ├── prometheus │ ├── files │ │ └── prometheus │ │ │ └── run │ └── template ├── proot │ ├── files │ │ └── ptrace_compat.h │ ├── patches │ │ ├── disable-seccomp-based-tracing.patch │ │ ├── makefile-fix-vars.patch │ │ └── ptrace_compat.patch │ └── template ├── proplib-devel ├── proplib │ └── template ├── prose │ └── template ├── prosody │ ├── INSTALL │ ├── files │ │ └── prosody │ │ │ └── run │ ├── patches │ │ └── pidfile.patch │ └── template ├── protobuf-c-devel ├── protobuf-c │ ├── patches │ │ └── fix-compile-error.patch │ └── template ├── protobuf-devel ├── protobuf-vala │ └── template ├── protobuf │ └── template ├── protonmail-bridge │ ├── patches │ │ ├── no-gui-tester.patch │ │ ├── no-vcpkg.patch │ │ ├── protobuf-cmake.patch │ │ ├── system-gtest.patch │ │ └── system-icu.patch │ └── template ├── protontricks │ └── template ├── prototype │ ├── files │ │ └── prototype.sh │ ├── patches │ │ └── build.patch │ └── template ├── proxychains-ng │ └── template ├── prs-gtk3 ├── prs │ └── template ├── ps_mem │ └── template ├── pscircle │ └── template ├── psensor │ ├── patches │ │ ├── 18.patch │ │ ├── microhttpd-0.9.71.patch │ │ └── use-ayatana-appindicator.patch │ └── template ├── psftools-devel ├── psftools │ └── template ├── pslist │ └── template ├── psmisc │ └── template ├── pspg │ └── template ├── pst │ └── template ├── pstate-frequency │ └── template ├── pstoedit-devel ├── pstoedit │ └── template ├── psuinfo │ └── template ├── psutils │ ├── patches │ │ ├── buffer-safety.patch │ │ └── psutils.patch │ └── template ├── ptex-devel ├── ptex │ └── template ├── ptyxis │ ├── files │ │ └── no-libc-compat.patch │ ├── patches │ │ └── fix-W_EXITCODE.patch │ └── template ├── public-inbox │ ├── template │ └── update ├── public-suffix │ └── template ├── puddletag │ ├── template │ └── update ├── pueue │ └── template ├── pugixml-devel ├── pugixml │ ├── patches │ │ └── patch-src_pugiconfig.patch │ └── template ├── pulseaudio-devel ├── pulseaudio-equalizer-ladspa │ └── template ├── pulseaudio-qt-devel ├── pulseaudio-qt │ └── template ├── pulseaudio-utils ├── pulseaudio │ ├── files │ │ ├── README.voidlinux │ │ └── pulseaudio │ │ │ └── run │ ├── patches │ │ └── webrtc-audio-processing-1.patch │ ├── template │ └── update ├── pulseeffects ├── pulseeffects-legacy │ ├── patches │ │ └── boost-1.80.patch │ ├── template │ └── update ├── pulsemixer │ └── template ├── pulseview │ ├── patches │ │ ├── qt-5.15.patch │ │ └── template-c-linkage.patch │ └── template ├── pup │ └── template ├── purple-plugin-pack │ └── template ├── purpose-devel ├── purpose │ ├── template │ └── update ├── putty │ └── template ├── puzzles │ ├── template │ └── update ├── pv │ └── template ├── pvoc │ ├── patches │ │ └── musl.patch │ └── template ├── pwgen │ └── template ├── pwget │ └── template ├── pwnat │ ├── patches │ │ └── fix_argument_parsing.diff │ └── template ├── pwru │ ├── patches │ │ └── pcap.patch │ └── template ├── py-spy │ └── template ├── py3c │ └── template ├── py3status │ └── template ├── pycharm-community │ ├── files │ │ └── pycharm.desktop │ ├── template │ └── update ├── pychess │ ├── template │ └── update ├── pycp │ └── template ├── pyliblo │ ├── patches │ │ ├── cython3.patch │ │ └── python-3.11.patch │ └── template ├── pylint │ ├── patches │ │ └── cwd.patch │ └── template ├── pymol │ ├── files │ │ └── pymol.desktop │ ├── patches │ │ └── musl.patch │ └── template ├── pympress │ ├── patches │ │ └── python313-fix.patch │ └── template ├── pyotherside │ └── template ├── pyradio │ ├── files │ │ └── README.voidlinux │ └── template ├── pyright │ └── template ├── pysolfc-cardsets │ ├── template │ └── update ├── pysolfc │ └── template ├── pystring-devel ├── pystring │ ├── patches │ │ └── meson.patch │ └── template ├── python-b2 ├── python-b2sdk ├── python-devel ├── python-pip ├── python-pycodestyle ├── python-rrdtool ├── python-setuptools ├── python-tkinter ├── python │ └── template ├── python2-devel ├── python2-pip │ ├── patches │ │ └── no-versioned-pip.patch │ ├── template │ └── update ├── python2-setuptools │ ├── template │ └── update ├── python2-tkinter ├── python2 │ ├── files │ │ ├── cross.patch │ │ ├── idle2.desktop │ │ └── idle2.xpm │ ├── patches │ │ ├── fix-i686-rlock.patch │ │ ├── musl-find_library.patch │ │ └── sysconfig.patch │ ├── template │ └── update ├── python3-3to2 │ └── template ├── python3-Arpeggio │ └── template ├── python3-Arrow │ └── template ├── python3-Babel │ └── template ├── python3-BeautifulSoup4 │ └── template ├── python3-Bottleneck │ └── template ├── python3-Brotli │ ├── patches │ │ └── use-system-brotli.patch │ └── template ├── python3-Cheroot │ └── template ├── python3-CherryPy │ └── template ├── python3-ConfigArgParse │ └── template ├── python3-Cython │ └── template ├── python3-EasyProcess │ └── template ├── python3-Faker │ └── template ├── python3-Flask-Babel │ └── template ├── python3-Flask-Cors │ └── template ├── python3-Flask-HTTPAuth │ └── template ├── python3-Flask-Login │ ├── patches │ │ ├── 00.flask-3.0.patch │ │ └── 01.flask-3.0.patch │ └── template ├── python3-Flask-RESTful │ └── template ├── python3-Flask-WTF │ └── template ├── python3-Flask │ └── template ├── python3-GitPython │ └── template ├── python3-IPy │ └── template ├── python3-Inflector │ └── template ├── python3-Jinja2 │ └── template ├── python3-Levenshtein │ └── template ├── python3-M2Crypto │ └── template ├── python3-Mako │ └── template ├── python3-Markdown │ └── template ├── python3-MarkupSafe │ └── template ├── python3-Markups │ └── template ├── python3-MechanicalSoup │ └── template ├── python3-MiniMock │ └── template ├── python3-MyST-Parser │ └── template ├── python3-PGPy │ └── template ├── python3-Pebble │ └── template ├── python3-Pillow │ └── template ├── python3-PyAudio │ └── template ├── python3-PyBrowserID │ ├── patches │ │ ├── m2_python3.patch │ │ ├── m2crypto.patch │ │ └── test_m2_monkeypatch_python3.patch │ └── template ├── python3-PyFxA │ └── template ├── python3-PyHamcrest │ └── template ├── python3-PyICU │ └── template ├── python3-PyJWT │ └── template ├── python3-PyOpenGL-accelerate │ └── template ├── python3-PyOpenGL │ └── template ├── python3-PyPDF2 ├── python3-PyQt-builder │ ├── patches │ │ └── no-packaging.patch │ └── template ├── python3-PyQt5-connectivity ├── python3-PyQt5-dbus ├── python3-PyQt5-devel ├── python3-PyQt5-devel-tools ├── python3-PyQt5-location ├── python3-PyQt5-multimedia ├── python3-PyQt5-networkauth-devel ├── python3-PyQt5-networkauth │ ├── template │ └── update ├── python3-PyQt5-opengl ├── python3-PyQt5-quick ├── python3-PyQt5-sensors ├── python3-PyQt5-serialport ├── python3-PyQt5-sql ├── python3-PyQt5-svg ├── python3-PyQt5-tools ├── python3-PyQt5-webchannel ├── python3-PyQt5-webengine-devel ├── python3-PyQt5-webengine │ ├── template │ └── update ├── python3-PyQt5-webkit ├── python3-PyQt5-websockets ├── python3-PyQt5-x11extras ├── python3-PyQt5-xmlpatterns ├── python3-PyQt5 │ ├── patches │ │ └── pyproject-cross.patch │ └── template ├── python3-PyVirtualDisplay │ └── template ├── python3-Pygments │ └── template ├── python3-Pyphen │ └── template ├── python3-Pyro4 │ └── template ├── python3-QtAwesome │ └── template ├── python3-QtPy │ ├── patches │ │ └── fix-test.patch │ └── template ├── python3-RPi.GPIO │ └── template ├── python3-ReParser │ └── template ├── python3-Ropper │ └── template ├── python3-SQLAlchemy │ ├── template │ └── update ├── python3-SQLAlchemy2 │ ├── template │ └── update ├── python3-SecretStorage │ └── template ├── python3-SoCo │ └── template ├── python3-Sphinx │ └── template ├── python3-Telethon │ └── template ├── python3-Twisted │ ├── INSTALL │ ├── REMOVE │ ├── patches │ │ └── crypt_spaces.patch │ └── template ├── python3-TxSNI │ └── template ├── python3-Unidecode │ └── template ├── python3-WTForms │ └── template ├── python3-WeasyPrint │ └── template ├── python3-WebOb │ └── template ├── python3-Werkzeug │ └── template ├── python3-Whoosh │ └── template ├── python3-XlsxWriter │ └── template ├── python3-Yapsy │ └── template ├── python3-aalib │ └── template ├── python3-acme │ └── template ├── python3-adblock │ ├── patches │ │ └── maturin-fix.patch │ └── template ├── python3-aioamqp │ ├── template │ └── update ├── python3-aiodns │ └── template ├── python3-aiofiles │ └── template ├── python3-aiohappyeyeballs │ └── template ├── python3-aiohttp-cors │ └── template ├── python3-aiohttp-sse-client │ └── template ├── python3-aiohttp │ └── template ├── python3-aiohttp_socks │ └── template ├── python3-aioinflux │ └── template ├── python3-aionotify │ └── template ├── python3-aioquic │ └── template ├── python3-aioresponses │ └── template ├── python3-aiorpcx │ └── template ├── python3-aiosignal │ └── template ├── python3-aiostream │ └── template ├── python3-ajsonrpc │ └── template ├── python3-alabaster │ └── template ├── python3-alembic │ └── template ├── python3-alsa │ ├── patches │ │ └── fix-pytuple-set-item.patch │ ├── template │ └── update ├── python3-altgraph │ ├── patches │ │ └── python-3.11.patch │ └── template ├── python3-aniso8601 │ └── template ├── python3-annotated-types │ └── template ├── python3-ansible-compat │ └── template ├── python3-ansible-lint │ ├── patches │ │ └── 0001-remove-update-check-only-makes-sense-when-installing.patch │ └── template ├── python3-ansicolor │ └── template ├── python3-ansicolors │ └── template ├── python3-ansiwrap │ └── template ├── python3-anyio │ └── template ├── python3-anytree │ ├── patches │ │ └── project-metadata.patch │ └── template ├── python3-appdirs │ └── template ├── python3-applib │ └── template ├── python3-apprise │ └── template ├── python3-apsw │ ├── template │ └── update ├── python3-aputils │ ├── template │ └── update ├── python3-argcomplete │ └── template ├── python3-argh │ └── template ├── python3-argon2-cffi-bindings │ └── template ├── python3-argon2 │ └── template ├── python3-art │ └── template ├── python3-arxiv2bib │ └── template ├── python3-asgiref │ └── template ├── python3-asn1crypto │ └── template ├── python3-aspectlib │ └── template ├── python3-asteval │ └── template ├── python3-astral │ └── template ├── python3-astroid │ └── template ├── python3-asttokens │ └── template ├── python3-async-lru │ └── template ├── python3-async-timeout │ └── template ├── python3-async_generator │ └── template ├── python3-atomicwrites │ └── template ├── python3-atspi │ ├── template │ └── update ├── python3-attrs │ └── template ├── python3-audioread │ ├── files │ │ └── README.voidlinux │ └── template ├── python3-audit ├── python3-augeas │ └── template ├── python3-authres │ └── template ├── python3-autobahn │ └── template ├── python3-autocommand │ ├── patches │ │ └── license.patch │ └── template ├── python3-automat │ └── template ├── python3-axolotl-curve25519 │ └── template ├── python3-axolotl │ └── template ├── python3-b2sdk │ └── template ├── python3-babelfish │ └── template ├── python3-backcall │ └── template ├── python3-bcc ├── python3-bcrypt │ └── template ├── python3-beniget │ └── template ├── python3-betamax-matchers │ └── template ├── python3-betamax │ └── template ├── python3-bibtexparser │ └── template ├── python3-binaryornot │ ├── patches │ │ └── 0001-fix-failing-test.patch │ └── template ├── python3-bitarray │ └── template ├── python3-bitbucket-api │ └── template ├── python3-bitstring │ └── template ├── python3-bleach │ └── template ├── python3-blessed │ └── template ├── python3-blessings │ └── template ├── python3-blinker │ └── template ├── python3-blockbuster │ └── template ├── python3-bokeh │ └── template ├── python3-boltons │ ├── patches │ │ └── py39-test.patch │ └── template ├── python3-boolean.py │ └── template ├── python3-boto3 │ └── template ├── python3-botocore │ └── template ├── python3-bottle │ └── template ├── python3-bracex │ └── template ├── python3-breathe │ └── template ├── python3-brlapi ├── python3-bsddb3 │ └── template ├── python3-build │ └── template ├── python3-cached-property │ └── template ├── python3-cachetools │ └── template ├── python3-cairo-devel ├── python3-cairo │ └── template ├── python3-cairocffi │ └── template ├── python3-cairosvg │ └── template ├── python3-calver │ └── template ├── python3-canonicaljson │ └── template ├── python3-casttube │ └── template ├── python3-cattrs │ └── template ├── python3-cchardet │ └── template ├── python3-certifi │ ├── patches │ │ └── system-cacert.patch │ └── template ├── python3-cffi │ └── template ├── python3-cfgv │ └── template ├── python3-chardet │ └── template ├── python3-charset-normalizer │ └── template ├── python3-cheetah3 │ └── template ├── python3-chess │ └── template ├── python3-chroot │ └── template ├── python3-ciso8601 │ └── template ├── python3-cjkwrap │ └── template ├── python3-cli-ui │ └── template ├── python3-cli_helpers │ └── template ├── python3-click-aliases │ └── template ├── python3-click-log │ └── template ├── python3-click-plugins │ └── template ├── python3-click-repl │ └── template ├── python3-click-threading │ └── template ├── python3-click │ └── template ├── python3-cloudscraper │ └── template ├── python3-cmdln │ └── template ├── python3-codespell │ └── template ├── python3-colorama │ └── template ├── python3-colorclass │ ├── patches │ │ └── fix-collections.patch │ └── template ├── python3-colored-traceback │ └── template ├── python3-colorlog │ └── template ├── python3-colorthief │ └── template ├── python3-colour │ └── template ├── python3-comm │ └── template ├── python3-commonmark │ └── template ├── python3-configobj │ └── template ├── python3-confuse │ └── template ├── python3-constantly │ └── template ├── python3-construct │ └── template ├── python3-contourpy │ └── template ├── python3-conway-polynomials │ └── template ├── python3-coverage │ └── template ├── python3-coveralls │ └── template ├── python3-cppy │ └── template ├── python3-cram │ └── template ├── python3-crccheck │ └── template ├── python3-crcmod │ └── template ├── python3-cryptography │ └── template ├── python3-cryptography_vectors │ └── template ├── python3-css-parser │ └── template ├── python3-cssselect │ └── template ├── python3-cssselect2 │ └── template ├── python3-cssutils │ └── template ├── python3-cups │ ├── template │ └── update ├── python3-cupshelpers ├── python3-curio │ ├── patches │ │ └── python3.12.patch │ └── template ├── python3-curl │ ├── template │ └── update ├── python3-curtsies │ └── template ├── python3-cvxopt │ ├── patches │ │ └── test-modules.patch │ └── template ├── python3-cwcwidth │ └── template ├── python3-cycler │ └── template ├── python3-cypari2 │ ├── template │ └── update ├── python3-cysignals │ └── template ├── python3-daemonize │ └── template ├── python3-dateparser │ └── template ├── python3-dateutil │ └── template ├── python3-dbus-devel ├── python3-dbus-fast │ └── template ├── python3-dbus-next ├── python3-dbus │ └── template ├── python3-dbusmock │ └── template ├── python3-ddt │ └── template ├── python3-debian │ ├── patches │ │ └── 0001-Disable-apt_pkg-support.patch │ ├── template │ └── update ├── python3-decorator │ └── template ├── python3-defusedxml │ └── template ├── python3-deprecated │ └── template ├── python3-deprecation │ └── template ├── python3-devel ├── python3-dill │ └── template ├── python3-dirty-equals │ ├── patches │ │ └── no-pytest-filterwarnings.patch │ └── template ├── python3-discid │ └── template ├── python3-discogs_client │ └── template ├── python3-distlib │ └── template ├── python3-distro │ └── template ├── python3-distutils-extra │ └── template ├── python3-dkimpy │ └── template ├── python3-dlib ├── python3-dnspython │ └── template ├── python3-dnsrecon ├── python3-docker │ ├── patches │ │ └── disable-TCPSocketStreamTest.patch │ └── template ├── python3-dockerpty │ └── template ├── python3-docopt │ └── template ├── python3-docstring-to-markdown │ └── template ├── python3-docutils │ ├── patches │ │ └── fix-test.patch │ └── template ├── python3-dogpile.cache │ └── template ├── python3-doi │ └── template ├── python3-dominate │ └── template ├── python3-dotenv │ └── template ├── python3-dotty-dict │ └── template ├── python3-downloader-cli ├── python3-dpkt │ └── template ├── python3-drgn │ └── template ├── python3-duckdb ├── python3-dulwich │ └── template ├── python3-easygui │ └── template ├── python3-ecdsa │ ├── template │ └── update ├── python3-editables │ └── template ├── python3-editor │ ├── template │ └── update ├── python3-eduvpn-client │ ├── patches │ │ └── wmclass.patch │ ├── template │ └── update ├── python3-elementpath │ └── template ├── python3-email-validator │ └── template ├── python3-emoji │ └── template ├── python3-empy │ └── template ├── python3-enchant │ ├── template │ └── update ├── python3-enrich │ └── template ├── python3-entrypoints │ ├── patches │ │ └── setup.py.patch │ └── template ├── python3-envdir │ └── template ├── python3-enzyme │ └── template ├── python3-esprima │ └── template ├── python3-et-xmlfile │ ├── template │ └── update ├── python3-etebase │ ├── patches │ │ ├── libssl_linking.patch │ │ └── no-rustfmt.patch │ └── template ├── python3-etesync │ └── template ├── python3-evdev │ └── template ├── python3-ewmh │ └── template ├── python3-execnet │ └── template ├── python3-executing │ └── template ├── python3-exifread │ └── template ├── python3-fasteners │ └── template ├── python3-fastjsonschema │ └── template ├── python3-feedgenerator │ └── template ├── python3-feedparser │ └── template ├── python3-ffmpeg-python │ ├── patches │ │ └── remove-future.patch │ └── template ├── python3-fido2 │ ├── patches │ │ └── system-psl.patch │ └── template ├── python3-fields │ └── template ├── python3-filebytes │ └── template ├── python3-filelock │ └── template ├── python3-filetype │ └── template ├── python3-fire │ └── template ├── python3-fishnet │ ├── files │ │ └── README.voidlinux │ └── template ├── python3-flake8 ├── python3-flaky │ └── template ├── python3-flasgger │ └── template ├── python3-flexmock │ └── template ├── python3-flit_core-bootstrap │ ├── template │ └── update ├── python3-flit_core │ └── template ├── python3-fonttools ├── python3-forbiddenfruit │ └── template ├── python3-fpylll │ └── template ├── python3-freezegun │ ├── patches │ │ └── fix-upstream-issue-550.patch │ └── template ├── python3-frozendict │ └── template ├── python3-frozenlist │ ├── patches │ │ └── no-expandvars.patch │ └── template ├── python3-furl │ └── template ├── python3-fuse │ ├── template │ └── update ├── python3-future │ └── template ├── python3-fuzzyfinder │ └── template ├── python3-gast │ └── template ├── python3-geojson │ └── template ├── python3-gevent │ ├── template │ └── update ├── python3-gitdb │ └── template ├── python3-gitea-client │ └── template ├── python3-github3 │ ├── template │ └── update ├── python3-gitlab │ └── template ├── python3-glad │ └── template ├── python3-gmpy2 │ └── template ├── python3-gntp │ └── template ├── python3-gnupg │ ├── patches │ │ └── 0001-skip-test-failing-in-void-CI.patch │ ├── template │ └── update ├── python3-gobject-devel ├── python3-gobject │ ├── template │ └── update ├── python3-gogs-client ├── python3-google-api-core │ └── template ├── python3-google-api-python-client │ └── template ├── python3-google-auth-httplib2 │ └── template ├── python3-google-auth-oauthlib │ └── template ├── python3-google-auth │ └── template ├── python3-google-i18n-address │ └── template ├── python3-googleapis-common-protos │ └── template ├── python3-gpg ├── python3-graphviz │ └── template ├── python3-greenlet-devel ├── python3-greenlet │ └── template ├── python3-grequests │ └── template ├── python3-grpcio-tools │ ├── patches │ │ └── cross.patch │ └── template ├── python3-grpcio │ └── template ├── python3-guessit │ └── template ├── python3-h11 │ └── template ├── python3-h2 │ └── template ├── python3-h5py │ └── template ├── python3-habanero │ └── template ├── python3-halo │ └── template ├── python3-hawkauthlib │ └── template ├── python3-hcloud │ └── template ├── python3-hid │ └── template ├── python3-hidapi │ └── template ├── python3-hiredis │ ├── template │ └── update ├── python3-hjson │ └── template ├── python3-hkdf │ └── template ├── python3-hoedown │ └── template ├── python3-hpack │ └── template ├── python3-html2text │ └── template ├── python3-html5-parser │ └── template ├── python3-html5lib │ └── template ├── python3-httmock │ └── template ├── python3-httpbin │ ├── patches │ │ └── brotli.patch │ └── template ├── python3-httpcore │ └── template ├── python3-httpie ├── python3-httplib2 │ └── template ├── python3-httpx │ └── template ├── python3-humanize │ └── template ├── python3-hyper-h2 ├── python3-hypercorn │ └── template ├── python3-hyperframe │ └── template ├── python3-hyperlink │ └── template ├── python3-hypothesis │ ├── template │ └── update ├── python3-i3ipc │ └── template ├── python3-icalendar │ └── template ├── python3-icdiff ├── python3-identify │ └── template ├── python3-idna │ └── template ├── python3-ifaddr │ └── template ├── python3-ijson │ └── template ├── python3-imageio │ └── template ├── python3-imagesize │ └── template ├── python3-imaplib2 │ └── template ├── python3-immutabledict │ └── template ├── python3-importlib_metadata │ └── template ├── python3-incremental │ └── template ├── python3-inflate64 │ └── template ├── python3-inflect │ └── template ├── python3-influxdb │ └── template ├── python3-iniconfig │ └── template ├── python3-injector │ └── template ├── python3-inotify │ ├── patches │ │ └── optional-asyncore.patch │ └── template ├── python3-installer-bootstrap │ ├── template │ └── update ├── python3-installer │ └── template ├── python3-intelhex │ └── template ├── python3-intervaltree │ └── template ├── python3-iptools │ └── template ├── python3-ipyparallel │ ├── patches │ │ └── no-jupyterlab.patch │ └── template ├── python3-ipython-pygments-lexers │ └── template ├── python3-ipython │ ├── patches │ │ └── fix-race.patch │ └── template ├── python3-ipython_genutils │ └── template ├── python3-ipython_ipykernel │ ├── patches │ │ ├── 1248.patch │ │ ├── 1277.diff │ │ ├── 1354-4854752dc86e0e823c2a114e7ca68cecb76af442.patch │ │ ├── 1390-05ee4fd4630020a3a13895bfddd16ddcfc423387.patch │ │ ├── 1390-991068ddc26cc0078ec6466897bb4f84869e7068.patch │ │ ├── disable-debugpy.patch │ │ └── pytest8.patch │ ├── template │ └── update ├── python3-irc │ └── template ├── python3-isbnlib │ └── template ├── python3-iso8601 │ └── template ├── python3-isodate │ └── template ├── python3-isort │ └── template ├── python3-iterable-io │ └── template ├── python3-itsdangerous │ └── template ├── python3-itunespy │ └── template ├── python3-iwlib │ └── template ├── python3-jaconv │ └── template ├── python3-janus │ └── template ├── python3-jaraco.classes │ └── template ├── python3-jaraco.collections │ ├── patches │ │ └── random.patch │ └── template ├── python3-jaraco.context │ └── template ├── python3-jaraco.functools │ └── template ├── python3-jaraco.logging │ └── template ├── python3-jaraco.stream │ └── template ├── python3-jaraco.text │ └── template ├── python3-jedi │ ├── patches │ │ └── fix-test.patch │ └── template ├── python3-jeepney │ └── template ├── python3-jellyfish │ └── template ├── python3-jmespath │ └── template ├── python3-joblib │ └── template ├── python3-josepy │ └── template ├── python3-jq │ └── template ├── python3-json-logger │ └── template ├── python3-json5 │ └── template ├── python3-jsondiff │ └── template ├── python3-jsonpatch │ └── template ├── python3-jsonpointer │ └── template ├── python3-jsonrpclib │ └── template ├── python3-jsonschema-path │ └── template ├── python3-jsonschema-spec ├── python3-jsonschema-specifications │ └── template ├── python3-jsonschema │ └── template ├── python3-jupyter-lsp │ ├── template │ └── update ├── python3-jupyter │ └── template ├── python3-jupyter_client │ └── template ├── python3-jupyter_console │ └── template ├── python3-jupyter_core │ ├── patches │ │ └── platform_dirs_true.patch │ └── template ├── python3-jupyter_events │ ├── patches │ │ └── fix-dep.patch │ └── template ├── python3-jupyter_ipywidgets │ ├── template │ └── update ├── python3-jupyter_nbconvert │ └── template ├── python3-jupyter_nbformat │ └── template ├── python3-jupyter_notebook │ ├── template │ └── update ├── python3-jupyter_packaging │ ├── patches │ │ └── 178.patch │ └── template ├── python3-jupyter_qtconsole │ ├── template │ └── update ├── python3-jupyter_server │ └── template ├── python3-jupyter_server_terminals │ └── template ├── python3-jupyter_widgetsnbextension │ ├── template │ └── update ├── python3-jupyterlab-lsp │ └── template ├── python3-jupyterlab_pygments │ └── template ├── python3-jupyterlab_server │ ├── patches │ │ └── openapi-core.patch │ └── template ├── python3-jupyterlab_widgets │ ├── template │ └── update ├── python3-kaitaistruct │ └── template ├── python3-kaptan │ └── template ├── python3-keyring │ └── template ├── python3-keyrings-alt │ └── template ├── python3-keyutils │ └── template ├── python3-kitchen │ └── template ├── python3-kiwisolver │ └── template ├── python3-language-server ├── python3-lap │ └── template ├── python3-lazy-object-proxy │ └── template ├── python3-lazy_loader │ └── template ├── python3-ldap │ ├── template │ └── update ├── python3-ldap3 │ └── template ├── python3-libarchive-c │ └── template ├── python3-libcec ├── python3-libevdev │ └── template ├── python3-libnvme ├── python3-libsass │ └── template ├── python3-libsmbios ├── python3-libtmux │ └── template ├── python3-libusb1 │ └── template ├── python3-license-expression │ └── template ├── python3-listparser │ └── template ├── python3-llfuse │ └── template ├── python3-log_symbols │ └── template ├── python3-logbook │ └── template ├── python3-logfury │ ├── patches │ │ └── setuptools_scm-7.patch │ └── template ├── python3-loguru │ └── template ├── python3-looseversion │ └── template ├── python3-lrcalc │ └── template ├── python3-lsp-jsonrpc │ └── template ├── python3-lsp-server │ └── template ├── python3-lsprotocol │ └── template ├── python3-lxml │ ├── template │ └── update ├── python3-lxml_html_clean │ └── template ├── python3-lz4 │ └── template ├── python3-macaroons │ └── template ├── python3-macholib │ ├── template │ └── update ├── python3-magic │ └── template ├── python3-makefun │ ├── patches │ │ └── no-pytest-runner.patch │ └── template ├── python3-marisa-trie │ └── template ├── python3-markdown-it │ └── template ├── python3-markdown-math │ └── template ├── python3-markdown2 │ └── template ├── python3-marshmallow │ └── template ├── python3-matplotlib-inline │ └── template ├── python3-matplotlib │ ├── files │ │ └── README.voidlinux │ └── template ├── python3-matrix-common │ └── template ├── python3-matrix-nio │ └── template ├── python3-mautrix │ └── template ├── python3-mccabe │ ├── patches │ │ └── no-hypothesmith.patch │ └── template ├── python3-md2gemini │ ├── patches │ │ └── fix-test-link-in-quote-newline.diff │ └── template ├── python3-mdit-py-plugins │ └── template ├── python3-mdurl │ └── template ├── python3-mechanize │ └── template ├── python3-mediafile │ └── template ├── python3-memory_allocator │ └── template ├── python3-meson-python │ └── template ├── python3-milc │ └── template ├── python3-minidb │ └── template ├── python3-miniupnpc │ └── template ├── python3-misaka │ └── template ├── python3-mistune │ └── template ├── python3-mistune2 │ └── template ├── python3-mitmproxy-rs │ └── template ├── python3-mock │ └── template ├── python3-modern_colorthief │ └── template ├── python3-more-itertools │ └── template ├── python3-mpd2 │ └── template ├── python3-mpdnotify │ └── template ├── python3-mpi4py │ └── template ├── python3-mpmath │ ├── patches │ │ └── fix-pytest.patch │ └── template ├── python3-mpv │ └── template ├── python3-msgpack │ └── template ├── python3-msoffcrypto-tool │ └── template ├── python3-mtranslate │ └── template ├── python3-multidict │ └── template ├── python3-multivolumefile │ └── template ├── python3-munkres │ ├── template │ └── update ├── python3-musicbrainzngs │ └── template ├── python3-musicpd │ ├── template │ └── update ├── python3-mutagen │ └── template ├── python3-mygpoclient │ ├── patches │ │ └── python3-fix-comparison-with-literal.patch │ └── template ├── python3-mypy │ └── template ├── python3-mypy_extensions │ └── template ├── python3-mysqlclient │ └── template ├── python3-nacl ├── python3-namedlist │ └── template ├── python3-nanobind │ └── template ├── python3-narwhals │ └── template ├── python3-natsort │ └── template ├── python3-nbclassic │ └── template ├── python3-nbclient │ └── template ├── python3-nbxmpp │ └── template ├── python3-ndg_httpsclient │ └── template ├── python3-neovim │ └── template ├── python3-nest_asyncio │ └── template ├── python3-netaddr │ └── template ├── python3-nethsm │ └── template ├── python3-netifaces │ └── template ├── python3-networkx │ └── template ├── python3-niapy │ └── template ├── python3-nitrokey │ └── template ├── python3-nkdfu │ └── template ├── python3-nose2 │ ├── patches │ │ └── disable-coverage.patch │ └── template ├── python3-notebook_shim │ └── template ├── python3-notify2 │ └── template ├── python3-notmuch2 ├── python3-npyscreen │ └── template ├── python3-ntlm-auth │ └── template ├── python3-ntplib │ └── template ├── python3-numexpr │ └── template ├── python3-numpy-stl │ └── template ├── python3-numpy │ ├── files │ │ ├── fenv-constants.h │ │ └── fenv-constants.patch │ ├── template │ └── update ├── python3-nvml │ └── template ├── python3-oauth2client │ ├── template │ └── update ├── python3-oauthlib │ └── template ├── python3-objgraph │ └── template ├── python3-occ │ ├── patches │ │ └── cmake791.patch │ └── template ├── python3-ocrmypdf │ ├── patches │ │ ├── tesseract_binary_name_fixup.patch │ │ └── use_pillow_heif_instead_of_pi_heif.patch │ └── template ├── python3-olefile │ └── template ├── python3-oletools │ └── template ├── python3-omemo-dr │ └── template ├── python3-opcua │ └── template ├── python3-openai │ └── template ├── python3-openapi-core │ └── template ├── python3-openapi-schema-validator │ └── template ├── python3-openapi-spec-validator │ └── template ├── python3-openpyxl │ ├── template │ └── update ├── python3-openrazer ├── python3-openssl │ ├── template │ └── update ├── python3-orderedmultidict │ └── template ├── python3-orjson │ └── template ├── python3-orocos-kdl │ ├── patches │ │ └── sys-pybind11.patch │ └── template ├── python3-outcome │ └── template ├── python3-overrides │ └── template ├── python3-owm │ ├── files │ │ └── README.voidlinux │ └── template ├── python3-owslib │ └── template ├── python3-packaging-bootstrap │ └── template ├── python3-packaging │ └── template ├── python3-paho_mqtt │ └── template ├── python3-pam │ └── template ├── python3-pamqp │ └── template ├── python3-pandas-msgpack │ ├── patches │ │ └── python3.12.patch │ └── template ├── python3-pandas │ ├── patches │ │ └── meson-numpy.patch │ ├── template │ └── update ├── python3-pandocfilters │ └── template ├── python3-parameterized │ └── template ├── python3-paramiko │ └── template ├── python3-parse │ └── template ├── python3-parsedatetime │ └── template ├── python3-parsing │ ├── template │ └── update ├── python3-parso │ └── template ├── python3-parver │ └── template ├── python3-passlib │ ├── patches │ │ └── fix-invalid-escape-sequence.patch │ └── template ├── python3-path-and-address │ └── template ├── python3-path │ └── template ├── python3-pathable │ └── template ├── python3-pathlib2 │ └── template ├── python3-pathspec │ └── template ├── python3-pathtools │ ├── patches │ │ └── strip-version.patch │ └── template ├── python3-pathvalidate │ └── template ├── python3-pbkdf2 │ └── template ├── python3-pbr │ └── template ├── python3-pcodedmp │ └── template ├── python3-pdfminer.six │ ├── patches │ │ └── disable-git-version.patch │ └── template ├── python3-pdfrw │ └── template ├── python3-pdm-backend │ └── template ├── python3-peewee │ └── template ├── python3-pefile │ └── template ├── python3-pem │ └── template ├── python3-pep440 │ └── template ├── python3-perf │ └── template ├── python3-perfmon ├── python3-pex ├── python3-pexpect │ └── template ├── python3-pgmigrate │ └── template ├── python3-pgspecial │ └── template ├── python3-pgzero │ └── template ├── python3-phonenumbers │ └── template ├── python3-phx-class-registry │ └── template ├── python3-picamera │ └── template ├── python3-pickleshare │ └── template ├── python3-piexif │ ├── patches │ │ └── pillow-7.2.patch │ └── template ├── python3-pika │ └── template ├── python3-pikepdf │ ├── patches │ │ └── remove_pytest-xdist_dependency.patch │ └── template ├── python3-pillow-avif │ └── template ├── python3-pillow-simd │ └── template ├── python3-pillow_heif │ └── template ├── python3-pip │ └── template ├── python3-pipenv │ └── template ├── python3-pipx │ └── template ├── python3-pivy │ └── template ├── python3-pkgconfig │ └── template ├── python3-pkginfo │ └── template ├── python3-platformdirs │ └── template ├── python3-plotly │ └── template ├── python3-plover_stroke │ └── template ├── python3-pluggy │ └── template ├── python3-ply │ └── template ├── python3-pmw │ ├── files │ │ └── LICENSE.txt │ └── template ├── python3-podcastparser │ └── template ├── python3-poetry-core │ └── template ├── python3-polib │ └── template ├── python3-pooch │ └── template ├── python3-portend │ └── template ├── python3-potr │ └── template ├── python3-pplpy │ └── template ├── python3-prctl │ └── template ├── python3-precis-i18n │ └── template ├── python3-pretend │ └── template ├── python3-primecountpy │ └── template ├── python3-priority │ └── template ├── python3-process-tests │ ├── patches │ │ └── fix-test.patch │ └── template ├── python3-progress │ └── template ├── python3-progressbar │ └── template ├── python3-prometheus_client │ └── template ├── python3-prompt_toolkit │ └── template ├── python3-proselint │ └── template ├── python3-protobuf │ ├── template │ └── update ├── python3-psutil │ └── template ├── python3-psycopg │ └── template ├── python3-psycopg2 │ └── template ├── python3-ptyprocess │ └── template ├── python3-publicsuffix2 │ ├── patches │ │ └── system-psl.patch │ └── template ├── python3-pulsectl-asyncio │ └── template ├── python3-pulsectl │ └── template ├── python3-pure-protobuf │ └── template ├── python3-pure_eval │ └── template ├── python3-puremagic │ └── template ├── python3-pwntools │ ├── patches │ │ └── py3.12.patch │ └── template ├── python3-py-cpuinfo │ └── template ├── python3-py │ └── template ├── python3-py7zr │ └── template ├── python3-pyDes │ └── template ├── python3-pyFFTW │ └── template ├── python3-pyacoustid │ └── template ├── python3-pyaes │ └── template ├── python3-pyasn1-modules │ ├── patches │ │ └── 22.patch │ └── template ├── python3-pyasn1 │ └── template ├── python3-pyasynchat │ └── template ├── python3-pyasyncore │ └── template ├── python3-pybcj │ └── template ├── python3-pybind11 │ └── template ├── python3-pycares │ └── template ├── python3-pycdio │ └── template ├── python3-pychm │ └── template ├── python3-pyclip │ └── template ├── python3-pyclipper │ └── template ├── python3-pycodestyle │ ├── template │ └── update ├── python3-pycollada │ ├── patches │ │ └── numpy-2.0.patch │ └── template ├── python3-pycotap │ └── template ├── python3-pycountry │ └── template ├── python3-pycparser │ └── template ├── python3-pycryptodome │ └── template ├── python3-pycryptodomex │ └── template ├── python3-pydantic-core │ └── template ├── python3-pydantic │ └── template ├── python3-pydbus │ └── template ├── python3-pydot │ └── template ├── python3-pydyf │ └── template ├── python3-pyelftools │ └── template ├── python3-pyfavicon │ └── template ├── python3-pyfiglet │ └── template ├── python3-pyflakes │ └── template ├── python3-pyfuse3 │ └── template ├── python3-pygame │ └── template ├── python3-pygccxml │ └── template ├── python3-pygdbmi │ └── template ├── python3-pygit2 │ └── template ├── python3-pyglet │ └── template ├── python3-pygls │ └── template ├── python3-pyinfra │ └── template ├── python3-pykakasi │ └── template ├── python3-pykeepass │ ├── patches │ │ └── be.patch │ └── template ├── python3-pykka │ └── template ├── python3-pykwalify │ └── template ├── python3-pylast │ └── template ├── python3-pylibgen │ ├── patches │ │ └── fix-setup.patch │ └── template ├── python3-pylint ├── python3-pylru │ └── template ├── python3-pylsp-mypy │ └── template ├── python3-pylsqpack │ └── template ├── python3-pymediainfo │ └── template ├── python3-pynacl │ └── template ├── python3-pynitrokey │ └── template ├── python3-pyopencl │ └── template ├── python3-pyotp │ └── template ├── python3-pypamtest ├── python3-pypandoc │ ├── patches │ │ └── no-pip.patch │ └── template ├── python3-pypdf │ └── template ├── python3-pyperclip │ └── template ├── python3-pypng │ └── template ├── python3-pyppmd │ └── template ├── python3-pyproject-api │ └── template ├── python3-pyproject-hooks │ └── template ├── python3-pyproject-metadata │ └── template ├── python3-pyqt5-qsci-devel ├── python3-pyqt5-qsci │ ├── patches │ │ └── cross.patch │ ├── template │ └── update ├── python3-pyqt6-3d-devel ├── python3-pyqt6-3d │ └── template ├── python3-pyqt6-bindings ├── python3-pyqt6-charts-devel ├── python3-pyqt6-charts │ └── template ├── python3-pyqt6-connectivity ├── python3-pyqt6-dbus ├── python3-pyqt6-declarative ├── python3-pyqt6-devel ├── python3-pyqt6-devel-tools ├── python3-pyqt6-gui ├── python3-pyqt6-multimedia ├── python3-pyqt6-network ├── python3-pyqt6-networkauth-devel ├── python3-pyqt6-networkauth │ └── template ├── python3-pyqt6-opengl-widgets ├── python3-pyqt6-pdf ├── python3-pyqt6-position ├── python3-pyqt6-printsupport ├── python3-pyqt6-qsci-devel ├── python3-pyqt6-qsci │ ├── patches │ │ └── cross.patch │ ├── template │ └── update ├── python3-pyqt6-quick3d ├── python3-pyqt6-remoteobjects ├── python3-pyqt6-sensors ├── python3-pyqt6-serialport ├── python3-pyqt6-sip │ └── template ├── python3-pyqt6-speech ├── python3-pyqt6-sql ├── python3-pyqt6-svg ├── python3-pyqt6-test ├── python3-pyqt6-tools ├── python3-pyqt6-webchannel ├── python3-pyqt6-webengine-devel ├── python3-pyqt6-webengine │ ├── patches │ │ └── qvariant.patch │ └── template ├── python3-pyqt6-websockets ├── python3-pyqt6-widgets ├── python3-pyqt6-xml ├── python3-pyqt6 │ ├── patches │ │ └── pyproject-cross.patch │ └── template ├── python3-pyqtgraph │ ├── template │ └── update ├── python3-pyrfc3339 │ └── template ├── python3-pyroot ├── python3-pyrsistent │ └── template ├── python3-pyscard │ └── template ├── python3-pyscss │ └── template ├── python3-pysdl2 │ └── template ├── python3-pyserial │ └── template ├── python3-pyside6-webengine ├── python3-pyside6 │ ├── patches │ │ ├── fix-build.patch │ │ └── no-python-suffix.patch │ ├── template │ └── update ├── python3-pysigset │ └── template ├── python3-pysocks │ └── template ├── python3-pysol_cards │ └── template ├── python3-pyspnego │ └── template ├── python3-pysrt │ └── template ├── python3-pystache │ └── template ├── python3-pytaglib │ └── template ├── python3-pyte │ └── template ├── python3-pytest-aiohttp │ └── template ├── python3-pytest-asyncio │ └── template ├── python3-pytest-benchmark │ └── template ├── python3-pytest-black │ └── template ├── python3-pytest-console-scripts │ └── template ├── python3-pytest-cov │ └── template ├── python3-pytest-env │ └── template ├── python3-pytest-fixture-config │ └── template ├── python3-pytest-flake8 │ └── template ├── python3-pytest-forked │ └── template ├── python3-pytest-httpbin │ └── template ├── python3-pytest-httpserver │ └── template ├── python3-pytest-import-check │ └── template ├── python3-pytest-isort │ └── template ├── python3-pytest-jupyter │ └── template ├── python3-pytest-lazy-fixture │ └── template ├── python3-pytest-localserver │ └── template ├── python3-pytest-mock │ └── template ├── python3-pytest-qt │ └── template ├── python3-pytest-rerunfailures │ └── template ├── python3-pytest-subtests │ └── template ├── python3-pytest-sugar │ └── template ├── python3-pytest-timeout │ └── template ├── python3-pytest-trio │ └── template ├── python3-pytest-xdist │ └── template ├── python3-pytest-xvfb │ └── template ├── python3-pytest │ ├── patches │ │ └── man-remove-sphinx-deps.patch │ └── template ├── python3-python-multipart │ └── template ├── python3-pythondialog │ └── template ├── python3-pytools │ └── template ├── python3-pytz │ └── template ├── python3-pytz_deprecation_shim │ └── template ├── python3-pyudev │ └── template ├── python3-pywayland │ └── template ├── python3-pywinrm │ └── template ├── python3-pywlroots │ ├── template │ └── update ├── python3-pywt │ └── template ├── python3-pyx │ └── template ├── python3-pyxattr │ └── template ├── python3-pyzbar │ └── template ├── python3-pyzmq │ └── template ├── python3-pyzstd │ └── template ├── python3-qrcode │ ├── files │ │ └── README.voidlinux │ ├── patches │ │ └── qrcode_assert-has-calls.patch │ └── template ├── python3-qtile-extras │ └── template ├── python3-quart │ └── template ├── python3-random2 │ └── template ├── python3-rapidfuzz │ └── template ├── python3-rarfile │ └── template ├── python3-raven │ └── template ├── python3-rdflib │ └── template ├── python3-re-assert │ └── template ├── python3-readability-lxml │ └── template ├── python3-readlike │ └── template ├── python3-rebulk │ └── template ├── python3-recommonmark │ └── template ├── python3-redis │ └── template ├── python3-reedsolo │ └── template ├── python3-referencing │ └── template ├── python3-reflink │ ├── patches │ │ └── remove-deprecated-pytest-runner.patch │ └── template ├── python3-regex │ └── template ├── python3-rencode │ └── template ├── python3-reportlab │ └── template ├── python3-repoze.sphinx.autointerface │ ├── patches │ │ └── sphinx3.patch │ └── template ├── python3-requests-file │ └── template ├── python3-requests-mock │ └── template ├── python3-requests-ntlm │ └── template ├── python3-requests-oauthlib │ └── template ├── python3-requests-toolbelt │ └── template ├── python3-requests-unixsocket │ └── template ├── python3-requests │ ├── patches │ │ └── use-system-cacerts.patch │ └── template ├── python3-resolvelib │ └── template ├── python3-responses │ └── template ├── python3-rfc3339-validator │ └── template ├── python3-rfc3986-validator │ ├── patches │ │ └── 3.patch │ └── template ├── python3-rfc3986 │ └── template ├── python3-rfc3987 │ └── template ├── python3-rfc6555 │ └── template ├── python3-rich │ └── template ├── python3-ripe-atlas-cousteau │ └── template ├── python3-ripe-atlas-sagan │ └── template ├── python3-roman-numerals-py │ └── template ├── python3-rope │ └── template ├── python3-ropgadget │ └── template ├── python3-rpds-py │ └── template ├── python3-rpm-vercmp │ └── template ├── python3-rrdtool ├── python3-rsa │ └── template ├── python3-rsistent ├── python3-rss2email │ └── template ├── python3-rst2ansi │ ├── patches │ │ ├── table-fix.patch │ │ └── unicode.patch │ └── template ├── python3-rtf_tokenize │ └── template ├── python3-rtree │ └── template ├── python3-ruamel.yaml.clib │ └── template ├── python3-ruamel.yaml │ └── template ├── python3-rx │ └── template ├── python3-s-tui │ └── template ├── python3-s3transfer │ └── template ├── python3-sabctools │ ├── patches │ │ └── cross.patch │ └── template ├── python3-saml2 │ └── template ├── python3-scandir │ ├── patches │ │ └── py3.10.patch │ └── template ├── python3-scard ├── python3-scikit-build-core │ └── template ├── python3-scikit-build │ └── template ├── python3-scikit-image │ └── template ├── python3-scikit-learn │ └── template ├── python3-scipy │ ├── patches │ │ └── test-32bit.patch │ └── template ├── python3-scour │ └── template ├── python3-scrypt │ └── template ├── python3-seaborn │ └── template ├── python3-semanticversion │ └── template ├── python3-semver │ └── template ├── python3-send2trash │ └── template ├── python3-sentry │ └── template ├── python3-serpent │ └── template ├── python3-service_identity │ └── template ├── python3-setconf ├── python3-setproctitle │ └── template ├── python3-setuptools-rust │ └── template ├── python3-setuptools │ └── template ├── python3-setuptools_scm │ └── template ├── python3-sgmllib │ └── template ├── python3-sh │ └── template ├── python3-shapely │ └── template ├── python3-shellingham │ └── template ├── python3-shiboken6 ├── python3-shodan │ └── template ├── python3-shxparser │ └── template ├── python3-signedjson │ └── template ├── python3-simber │ └── template ├── python3-simplebayes │ └── template ├── python3-simplegeneric │ └── template ├── python3-simplejson │ └── template ├── python3-sip-PyQt5 │ ├── template │ └── update ├── python3-siphash24 │ └── template ├── python3-six │ └── template ├── python3-slixmpp │ └── template ├── python3-slugify │ └── template ├── python3-smartypants │ └── template ├── python3-smbc │ ├── template │ └── update ├── python3-smbus ├── python3-smmap │ └── template ├── python3-snakeoil │ └── template ├── python3-snappy │ ├── template │ └── update ├── python3-sniffio │ └── template ├── python3-snowballstemmer │ └── template ├── python3-socketIO-client │ └── template ├── python3-socks │ └── template ├── python3-socksio │ ├── patches │ │ └── allow-flit-versions.patch │ └── template ├── python3-sortedcontainers │ └── template ├── python3-soupsieve │ └── template ├── python3-spake2 │ ├── patches │ │ └── python3.12.patch │ └── template ├── python3-sphinx-automodapi │ └── template ├── python3-sphinx-copybutton │ └── template ├── python3-sphinx-markdown-tables │ └── template ├── python3-sphinx-tabs │ └── template ├── python3-sphinx_rtd_theme │ └── template ├── python3-sphinxcontrib-applehelp │ └── template ├── python3-sphinxcontrib-devhelp │ └── template ├── python3-sphinxcontrib-htmlhelp │ └── template ├── python3-sphinxcontrib-jsmath │ └── template ├── python3-sphinxcontrib-qthelp │ └── template ├── python3-sphinxcontrib-serializinghtml │ └── template ├── python3-sphinxcontrib │ └── template ├── python3-spinners │ └── template ├── python3-spotipy │ └── template ├── python3-sqlparse │ └── template ├── python3-stack_data │ └── template ├── python3-starlette │ └── template ├── python3-stem │ ├── patches │ │ └── unbreak-for-python-3.11.patch │ └── template ├── python3-stevedore │ └── template ├── python3-straight.plugin │ └── template ├── python3-strict-rfc3339 │ └── template ├── python3-subliminal ├── python3-subprocess-tee │ └── template ├── python3-subunit │ └── template ├── python3-suds │ └── template ├── python3-svg.path │ └── template ├── python3-svgelements │ ├── patches │ │ └── fix_assert.patch │ └── template ├── python3-sympy │ └── template ├── python3-syndom │ ├── patches │ │ └── add-author-extraction-for-feed-item.patch │ ├── template │ └── update ├── python3-tabulate │ └── template ├── python3-tasklib │ └── template ├── python3-telegram │ ├── patches │ │ ├── remove-precompiled-libraries.patch │ │ └── use-system-tdlib.patch │ └── template ├── python3-telnetlib-313-and-up │ └── template ├── python3-tempita │ └── template ├── python3-tempora │ └── template ├── python3-tenacity │ └── template ├── python3-term-image │ └── template ├── python3-termcolor │ └── template ├── python3-terminado │ └── template ├── python3-terminaltables │ └── template ├── python3-testpath │ └── template ├── python3-testtools │ └── template ├── python3-text-unidecode │ └── template ├── python3-texttable │ └── template ├── python3-textual │ └── template ├── python3-thefuzz │ └── template ├── python3-threadpoolctl │ └── template ├── python3-tifffile │ └── template ├── python3-time-machine │ └── template ├── python3-timelib │ └── template ├── python3-tiny-proxy │ └── template ├── python3-tinycss │ └── template ├── python3-tinycss2 │ └── template ├── python3-tinyhtml5 │ └── template ├── python3-tkinter │ ├── files │ │ ├── cross.patch │ │ ├── idle3.desktop │ │ └── idle3.xpm │ ├── patches │ │ └── musl-pgo-tests.patch │ ├── template │ └── update ├── python3-tldextract │ └── template ├── python3-tlsh ├── python3-tlv8 │ └── template ├── python3-tmuxp │ └── template ├── python3-tokenize-rt │ └── template ├── python3-toml │ └── template ├── python3-tomli-w │ └── template ├── python3-tomli │ └── template ├── python3-tomlkit │ └── template ├── python3-tornado │ └── template ├── python3-tqdm │ └── template ├── python3-traitlets │ └── template ├── python3-transifex-client ├── python3-treq │ ├── template │ └── update ├── python3-trimesh │ └── template ├── python3-trio-websocket │ └── template ├── python3-trio │ └── template ├── python3-trove-classifiers │ └── template ├── python3-trustme │ └── template ├── python3-ttystatus │ └── template ├── python3-tweepy │ └── template ├── python3-twitter │ └── template ├── python3-txaio │ └── template ├── python3-txredisapi │ └── template ├── python3-txtorcon │ └── template ├── python3-typeguard │ └── template ├── python3-typing_extensions │ └── template ├── python3-typogrify │ └── template ├── python3-tzlocal │ ├── patches │ │ └── fix-test.patch │ └── template ├── python3-ultrajson │ └── template ├── python3-unittest-mixins │ └── template ├── python3-unpaddedbase64 │ └── template ├── python3-urbandict │ └── template ├── python3-uritemplate │ └── template ├── python3-uritools │ └── template ├── python3-urlgrabber │ ├── template │ └── update ├── python3-urllib3 │ └── template ├── python3-urwid │ └── template ├── python3-urwid_readline │ └── template ├── python3-urwidgets │ └── template ├── python3-urwidtrees │ └── template ├── python3-usb │ └── template ├── python3-userpath │ └── template ├── python3-utils │ └── template ├── python3-uvicorn │ └── template ├── python3-uvloop │ └── template ├── python3-validators │ └── template ├── python3-vdf │ └── template ├── python3-versioneer │ └── template ├── python3-versioningit │ └── template ├── python3-vint │ └── template ├── python3-virtualenv-clone │ └── template ├── python3-virtualenv │ └── template ├── python3-virustotal-api │ └── template ├── python3-vispy │ ├── patches │ │ └── etc.patch │ └── template ├── python3-vlc │ ├── template │ └── update ├── python3-vobject │ └── template ├── python3-voluptuous │ └── template ├── python3-waitress │ └── template ├── python3-watchdog │ └── template ├── python3-watchman │ └── template ├── python3-wcmatch │ └── template ├── python3-wcwidth │ └── template ├── python3-webassets │ └── template ├── python3-webencodings │ └── template ├── python3-websocket-client │ └── template ├── python3-websockets │ └── template ├── python3-wheel │ └── template ├── python3-wikipedia │ └── template ├── python3-wrapt │ └── template ├── python3-wsproto │ └── template ├── python3-xapp │ └── template ├── python3-xcffib │ └── template ├── python3-xdg-base-dirs │ └── template ├── python3-xdg-variables ├── python3-xdg │ ├── template │ └── update ├── python3-xkbcommon │ └── template ├── python3-xlib │ ├── template │ └── update ├── python3-xlrd │ └── template ├── python3-xmldiff ├── python3-xmlschema │ └── template ├── python3-xmltodict │ └── template ├── python3-xvfbwrapper │ └── template ├── python3-xxhash │ └── template ├── python3-xyzservices │ └── template ├── python3-yaml │ ├── template │ └── update ├── python3-yamllint │ └── template ├── python3-yapf │ └── template ├── python3-yara │ ├── patches │ │ └── use-system-yara.patch │ └── template ├── python3-yarl │ └── template ├── python3-yattag │ └── template ├── python3-youtube-dl ├── python3-youtube-search │ └── template ├── python3-youtubesearch │ ├── patches │ │ └── fix-deprecated.patch │ └── template ├── python3-ytmusicapi │ └── template ├── python3-zc.lockfile │ └── template ├── python3-zeroconf │ └── template ├── python3-zipfile-deflate64 │ └── template ├── python3-zipp │ └── template ├── python3-zipstream-ng │ └── template ├── python3-zipstream │ └── template ├── python3-zope.cachedescriptors │ └── template ├── python3-zope.component │ └── template ├── python3-zope.configuration │ └── template ├── python3-zope.copy │ └── template ├── python3-zope.deferredimport │ └── template ├── python3-zope.deprecation │ └── template ├── python3-zope.event │ └── template ├── python3-zope.exceptions │ └── template ├── python3-zope.hookable │ └── template ├── python3-zope.i18nmessageid │ └── template ├── python3-zope.interface │ └── template ├── python3-zope.location │ └── template ├── python3-zope.proxy │ └── template ├── python3-zope.schema │ └── template ├── python3-zope.security │ └── template ├── python3-zope.testing │ └── template ├── python3-zope.testrunner │ └── template ├── python3-zstandard │ ├── patches │ │ └── fix-hardcoded-version-number.patch │ └── template ├── python3-zulip │ └── template ├── python3-zxcvbn │ └── template ├── python3.11-devel ├── python3.11 │ ├── files │ │ ├── EXTERNALLY-MANAGED │ │ └── cross.patch │ ├── patches │ │ ├── musl-find_library.patch │ │ └── ppc-fixes.patch │ ├── template │ └── update ├── python3 │ ├── files │ │ ├── EXTERNALLY-MANAGED │ │ └── cross.patch │ ├── patches │ │ ├── musl-find_library.patch │ │ └── musl-pgo-tests.patch │ ├── template │ └── update ├── pythran │ └── template ├── pywal │ └── template ├── q │ └── template ├── q5go │ ├── patches │ │ └── qgo.desktop.patch │ └── template ├── qView │ └── template ├── qalculate ├── qalculate-gtk │ └── template ├── qalculate-qt │ └── template ├── qarma │ └── template ├── qastools │ └── template ├── qbe │ ├── template │ └── update ├── qbittorrent-nox ├── qbittorrent │ ├── template │ └── update ├── qca-qt5-devel ├── qca-qt5-ossl ├── qca-qt5 │ ├── patches │ │ └── cmake.patch │ ├── template │ └── update ├── qca-qt6-devel ├── qca-qt6 │ ├── patches │ │ └── cross.patch │ ├── template │ └── update ├── qcas │ └── template ├── qcoro-qt5-devel ├── qcoro-qt5 │ └── template ├── qcoro-qt6-devel ├── qcoro-qt6 │ └── template ├── qdirstat-cache-writer ├── qdirstat │ ├── patches │ │ └── 0001-Fix-build-with-musl-libc-266.patch │ └── template ├── qed │ └── template ├── qemacs │ ├── template │ └── update ├── qemu-common ├── qemu-doc ├── qemu-firmware ├── qemu-ga ├── qemu-img ├── qemu-system-aarch64 ├── qemu-system-alpha ├── qemu-system-amd64 ├── qemu-system-arm ├── qemu-system-avr ├── qemu-system-hppa ├── qemu-system-i386 ├── qemu-system-loongarch64 ├── qemu-system-m68k ├── qemu-system-microblaze ├── qemu-system-microblazeel ├── qemu-system-mips ├── qemu-system-mips64 ├── qemu-system-mips64el ├── qemu-system-mipsel ├── qemu-system-or1k ├── qemu-system-ppc ├── qemu-system-ppc64 ├── qemu-system-riscv32 ├── qemu-system-riscv64 ├── qemu-system-rx ├── qemu-system-s390x ├── qemu-system-sh4 ├── qemu-system-sh4eb ├── qemu-system-sparc ├── qemu-system-sparc64 ├── qemu-system-tricore ├── qemu-system-xtensa ├── qemu-system-xtensaeb ├── qemu-tools ├── qemu-user-aarch64 ├── qemu-user-aarch64_be ├── qemu-user-alpha ├── qemu-user-amd64 ├── qemu-user-arm ├── qemu-user-armeb ├── qemu-user-hexagon ├── qemu-user-hppa ├── qemu-user-i386 ├── qemu-user-loongarch64 ├── qemu-user-m68k ├── qemu-user-microblaze ├── qemu-user-microblazeel ├── qemu-user-mips ├── qemu-user-mips64 ├── qemu-user-mips64el ├── qemu-user-mipsel ├── qemu-user-mipsn32 ├── qemu-user-mipsn32el ├── qemu-user-or1k ├── qemu-user-ppc ├── qemu-user-ppc64 ├── qemu-user-ppc64le ├── qemu-user-riscv32 ├── qemu-user-riscv64 ├── qemu-user-s390x ├── qemu-user-sh4 ├── qemu-user-sh4eb ├── qemu-user-sparc ├── qemu-user-sparc32plus ├── qemu-user-sparc64 ├── qemu-user-static ├── qemu-user-xtensa ├── qemu-user-xtensaeb ├── qemu-user │ ├── patches │ ├── template │ └── update ├── qemu │ ├── files │ │ └── qemu-ga │ │ │ └── run │ ├── patches │ │ ├── mmap-mremap-efault.patch │ │ └── musl-initialize-msghdr.patch │ └── template ├── qemuconf │ └── template ├── qflipper │ └── template ├── qgis │ ├── template │ └── update ├── qgit │ └── template ├── qgo │ └── template ├── qhttpengine-devel ├── qhttpengine │ └── template ├── qhull │ ├── files │ │ └── qhull.pc │ └── template ├── qimgv │ ├── patches │ │ ├── exiv2-0.28.patch │ │ └── fix-mpv-opengl.patch │ ├── template │ └── update ├── qingy │ ├── patches │ │ └── fix-musl.patch │ └── template ├── qiv │ ├── template │ └── update ├── qjackctl │ └── template ├── qlementine-devel ├── qlementine │ ├── patches │ │ └── dynamic-library.patch │ └── template ├── qlipper │ └── template ├── qlog │ └── template ├── qmdnsengine-devel ├── qmdnsengine │ └── template ├── qmidiarp │ ├── patches │ │ └── cross.patch │ └── template ├── qmidinet │ └── template ├── qmk │ └── template ├── qml-box2d │ └── template ├── qmltermwidget │ ├── patches │ │ └── iswspace.patch │ └── template ├── qmmp-devel ├── qmmp │ ├── patches │ │ ├── default-pulseaudio.patch │ │ └── taglib2.patch │ └── template ├── qoauth-qt5-devel ├── qoauth-qt5 │ └── template ├── qodem │ └── template ├── qolibri │ └── template ├── qomui │ ├── patches │ │ └── remove-geoip-dep.patch │ └── template ├── qownnotes │ ├── template │ └── update ├── qpdf │ ├── template │ └── update ├── qpdfview │ ├── patches │ │ └── qt5-5.15.0.patch │ ├── template │ └── update ├── qperf │ └── template ├── qprint │ └── template ├── qprompt │ └── template ├── qps │ └── template ├── qpwgraph │ └── template ├── qqwing-devel ├── qqwing │ └── template ├── qrcodegen │ └── template ├── qrcp │ └── template ├── qrencode-devel ├── qrencode │ └── template ├── qrintf │ └── template ├── qrtr-ns-devel ├── qrtr-ns │ ├── files │ │ └── qrtr-ns │ │ │ └── run │ └── template ├── qscintilla-qt5-devel ├── qscintilla-qt5 │ ├── template │ └── update ├── qscintilla-qt6-devel ├── qscintilla-qt6 │ ├── template │ └── update ├── qsstv │ └── template ├── qsudo │ └── template ├── qsv │ └── template ├── qsynth │ └── template ├── qt-sudo │ └── template ├── qt5-3d ├── qt5-3d-devel ├── qt5-base-docs ├── qt5-charts ├── qt5-charts-devel ├── qt5-concurrent ├── qt5-connectivity ├── qt5-connectivity-devel ├── qt5-core ├── qt5-datavis3d ├── qt5-datavis3d-devel ├── qt5-dbus ├── qt5-declarative ├── qt5-declarative-devel ├── qt5-devel ├── qt5-doc │ └── template ├── qt5-examples ├── qt5-fsarchiver │ ├── patches │ │ ├── attr.h.patch │ │ ├── cross.patch │ │ ├── fix-install-target.patch │ │ └── musl.patch │ ├── template │ └── update ├── qt5-gamepad ├── qt5-gamepad-devel ├── qt5-graphicaleffects ├── qt5-gui ├── qt5-host-tools ├── qt5-imageformats ├── qt5-location ├── qt5-location-devel ├── qt5-lottie ├── qt5-lottie-devel ├── qt5-multimedia ├── qt5-multimedia-devel ├── qt5-network ├── qt5-networkauth ├── qt5-networkauth-devel ├── qt5-opengl ├── qt5-plugin-mysql ├── qt5-plugin-odbc ├── qt5-plugin-pgsql ├── qt5-plugin-sqlite ├── qt5-plugin-tds ├── qt5-printsupport ├── qt5-purchasing ├── qt5-purchasing-devel ├── qt5-qmake ├── qt5-quickcontrols ├── qt5-quickcontrols2 ├── qt5-quickcontrols2-devel ├── qt5-quicktimeline ├── qt5-remoteobjects ├── qt5-remoteobjects-devel ├── qt5-script ├── qt5-script-devel ├── qt5-scxml ├── qt5-scxml-devel ├── qt5-sensors ├── qt5-sensors-devel ├── qt5-serialbus ├── qt5-serialbus-devel ├── qt5-serialport ├── qt5-serialport-devel ├── qt5-speech-devel ├── qt5-speech-plugin-flite ├── qt5-speech-plugin-speechd ├── qt5-speech │ ├── files │ │ └── Qt5TextToSpeechConfig.cmake │ └── template ├── qt5-sql ├── qt5-styleplugins-devel ├── qt5-styleplugins │ ├── patches │ │ └── qt5.15.patch │ └── template ├── qt5-svg ├── qt5-svg-devel ├── qt5-test ├── qt5-tools ├── qt5-tools-devel ├── qt5-translations ├── qt5-virtualkeyboard ├── qt5-virtualkeyboard-devel ├── qt5-wayland ├── qt5-wayland-devel ├── qt5-webchannel ├── qt5-webchannel-devel ├── qt5-webengine-devel ├── qt5-webengine │ ├── files │ │ ├── resolv_compat.h │ │ └── sndio-files │ │ │ ├── audio_manager_openbsd.cc │ │ │ ├── audio_manager_openbsd.h │ │ │ ├── sndio_input.cc │ │ │ ├── sndio_input.h │ │ │ ├── sndio_output.cc │ │ │ └── sndio_output.h │ ├── patches │ │ ├── 0001-mus-cstring.patch │ │ ├── 0002-include-sys-reg.h-to-get-__WORDSIZE-on-musl-libc.patch │ │ ├── 0003-musl-dispatch-to-musl.patch │ │ ├── 0004-musl-no-mallinfo.patch │ │ ├── 0005-musl-off_t.patch │ │ ├── 0006-musl-pread-pwrite.patch │ │ ├── 0007-musl-replace-pvalloc.patch │ │ ├── 0008-musl-resolve.patch │ │ ├── 0009-musl-siginfo_t.patch │ │ ├── 0010-musl-stackstart.patch │ │ ├── 0011-musl-sandbox.patch │ │ ├── 0012-musl-chromium-default-stacksize.patch │ │ ├── 0014-musl-cross-no-asm_ptrace_h.patch │ │ ├── 0016-qt-musl-execinfo.patch │ │ ├── 0017-qt-musl-thread-stacksize.patch │ │ ├── 0018-sandbox-membarrier.patch │ │ ├── 0019-gn-cross-sysroot.patch │ │ ├── 0020-msgvec-push_back.patch │ │ ├── 0021-sandbox-sched_getparam.patch │ │ ├── 0022-canonicalize-file-name-musl.patch │ │ ├── 0070-musl-glibc.patch │ │ ├── 0089-enable-ppc64.patch │ │ ├── 0090-qtwebengine-ppc64.patch │ │ ├── 0091-chromium-ppc64le-musl.patch │ │ ├── 0092-ppc64le-sandbox-linux-stat.patch │ │ ├── 0100-sndio.patch │ │ ├── 0101-sndio.patch │ │ ├── 0102-sndio.patch │ │ ├── 0110-size_t.patch │ │ ├── 0111-armv7l-neon.patch │ │ ├── 0112-arm-user_vfp.patch │ │ ├── 0113-arm-elf_auxv_t.patch │ │ ├── chromium-media-filters-cpp14.patch │ │ ├── cross-insanity.patch │ │ ├── ffmepg5.patch │ │ ├── fix-libxml2-2.12.patch │ │ ├── pipewire-0.3.patch │ │ ├── pipewire-0.3.patch.args │ │ ├── qt5-webengine-chromium-python3.patch │ │ ├── qt5-webengine-gcc12.patch │ │ ├── qt5-webengine-python3.patch │ │ └── string.patch │ ├── template │ └── update ├── qt5-webglplugin ├── qt5-webglplugin-devel ├── qt5-webkit-devel ├── qt5-webkit │ ├── patches │ │ ├── armv6.patch │ │ ├── bison3.7.patch │ │ ├── gcc13.patch │ │ ├── glib-2.68.patch │ │ ├── icu-68.patch │ │ ├── jsc-musl.patch │ │ ├── mips-isa-32.patch │ │ ├── mips-isa-rev.patch │ │ ├── musl-mcontext.patch │ │ ├── musl-ppc.patch │ │ ├── ppc-llint.patch │ │ ├── python3.9.patch │ │ ├── qt-musl-execinfo.patch │ │ ├── reduce-exports.patch │ │ └── webkit-offlineasm-warnings-ruby27.patch │ ├── template │ └── update ├── qt5-websockets ├── qt5-websockets-devel ├── qt5-webview-devel ├── qt5-webview │ └── template ├── qt5-widgets ├── qt5-x11extras ├── qt5-x11extras-devel ├── qt5-xcb-private-headers ├── qt5-xml ├── qt5-xmlpatterns ├── qt5-xmlpatterns-devel ├── qt5 │ ├── files │ │ ├── assistant-qt5.desktop │ │ ├── assistant.pro │ │ ├── cross-gcc.patch │ │ ├── cross-ninja.patch │ │ ├── designer-qt5.desktop │ │ ├── designer_src.pro │ │ ├── lconvert.pro │ │ ├── linguist-qt5.desktop │ │ ├── linguist.pro │ │ ├── lrelease.pro │ │ ├── lupdate.pro │ │ ├── moc.pro │ │ ├── qdbuscpp2xml.pro │ │ ├── qdbusviewer-qt5.desktop │ │ ├── qdbusxml2cpp.pro │ │ ├── qlalr.pro │ │ ├── qmlcachegen.pro │ │ ├── qmlformat.pro │ │ ├── qmlimportscanner.pro │ │ ├── qmllint.pro │ │ ├── qmlmin.pro │ │ ├── qttools_src.pro │ │ ├── rcc.pro │ │ ├── uic.pro │ │ └── uitools.pro │ ├── patches │ │ ├── 0001-addlr.patch │ │ ├── 0002-gl-lib-dir.patch │ │ ├── 0007-musl-iconv-no-bom.patch │ │ ├── 0014-musl-set_thread_name_np.patch │ │ ├── 0016-musl-stackbottom.patch │ │ ├── 0018-musl-timeval.patch │ │ ├── 0048-big-endian-qtquick-software.patch │ │ ├── 0049-big-endian-scroll.patch │ │ ├── 0050-qmake-mkspecs.patch │ │ └── qtbase-5.15.9-work-around-pyside2-brokenness.patch │ └── template ├── qt5ct │ ├── files │ │ └── qt5ct.sh │ └── template ├── qt5pas-devel ├── qt5pas │ ├── patches │ │ ├── 01-inlines-hidden.patch │ │ └── 02-lazarus-2.0.0.patch │ └── template ├── qt6-3d-devel ├── qt6-3d-private-devel ├── qt6-3d │ └── template ├── qt6-base-devel ├── qt6-base-doc ├── qt6-base-private-devel ├── qt6-base │ ├── patches │ │ ├── CVE-2025-3512-qtbase-6.8.diff │ │ ├── CVE-2025-4211-qtbase-6.8.diff │ │ ├── CVE-2025-5455-qtbase-6.8.patch │ │ ├── markdown.patch │ │ ├── musl-test-image.patch │ │ ├── musl-usr-path-hack.patch │ │ ├── resource-root-dir-last-modified-is-valid.patch │ │ ├── x86-qround-passed.patch │ │ └── zfs-storage.patch │ ├── template │ └── update ├── qt6-charts-devel ├── qt6-charts-private-devel ├── qt6-charts │ ├── patches │ │ └── no-cmake-test.patch │ └── template ├── qt6-concurrent ├── qt6-connectivity-devel ├── qt6-connectivity │ ├── patches │ │ └── no-cmake-test.patch │ └── template ├── qt6-core ├── qt6-dbus ├── qt6-declarative-devel ├── qt6-declarative-host-tools ├── qt6-declarative-private-devel ├── qt6-declarative-tools ├── qt6-declarative │ ├── patches │ │ ├── bin-qml-location.patch │ │ └── test_generate_qmlls_ini.patch │ ├── template │ └── update ├── qt6-designer ├── qt6-gui ├── qt6-help ├── qt6-imageformats │ ├── patches │ │ └── CVE-2025-5683-qtimageformats-6.8.patch │ └── template ├── qt6-languageserver-devel ├── qt6-languageserver-private-devel ├── qt6-languageserver │ ├── patches │ │ └── 0001-Revert-JSON-RPC-QtLanguageServer-Enforce-static-buil.patch │ ├── template │ └── update ├── qt6-location-devel ├── qt6-location │ └── template ├── qt6-lottie-devel ├── qt6-lottie-private-devel ├── qt6-lottie │ └── template ├── qt6-multimedia-devel ├── qt6-multimedia-private-devel ├── qt6-multimedia │ ├── template │ └── update ├── qt6-network ├── qt6-networkauth-devel ├── qt6-networkauth │ └── template ├── qt6-opengl-widgets ├── qt6-pdf-devel ├── qt6-pdf-examples ├── qt6-pdf │ ├── patches │ │ ├── 0001-None-no-debug.patch │ │ ├── 0003-cross-hack.patch │ │ ├── 0004-no-glibc-cmake-check.patch │ │ ├── 0104-angle-wayland-include.patch │ │ ├── 0106-chromium-105.0.5195.52-python-six-1.16.0.patch │ │ ├── 0107-chromium-114-maldoca-include.patch │ │ ├── 0108-chromium-115-compiler-SkColor4f.patch │ │ ├── 0116-chromium-118-workaround_clang_bug-structured_binding.patch │ │ ├── 0117-chromium-i686-vaapi-fpermissive.patch │ │ ├── 0118-chromium-revert-drop-of-system-java.patch │ │ ├── 0119-chromium-system-nodejs.patch │ │ ├── 0120-cross-build.patch │ │ ├── 0121-fc-cache-version.patch │ │ ├── 0123-fix-argument_spec-isnan-isinf.patch │ │ ├── 0124-fix-constexpr-narrowing.patch │ │ ├── 0125-fix-dawn-platform.patch │ │ ├── 0127-fix-missing-TEMP_FAILURE_RETRY-macro.patch │ │ ├── 0128-fix-missing-cstdint-include-musl.patch │ │ ├── 0129-fix-musl-missing-unistd_h-include.patch │ │ ├── 0130-fix-perfetto-GetThreadName-musl.patch │ │ ├── 0131-fix-swiftshader-llvm-musl-config.patch │ │ ├── 0132-libc_malloc.patch │ │ ├── 0133-musl-no-execinfo.patch │ │ ├── 0134-musl-no-mallinfo.patch │ │ ├── 0135-musl-partition-atfork.patch │ │ ├── 0136-musl-v8-monotonic-pthread-cont_timedwait.patch │ │ ├── 0137-no-getcontext.patch │ │ ├── 0139-old-clang.patch │ │ ├── 0140-reenable-linux-i686-builds.patch │ │ ├── 0141-remove-sys-cdefs-includes.patch │ │ ├── 0142-sandbox-membarrier.patch │ │ ├── 0143-sndio.patch │ │ ├── 0144-systypes.patch │ │ ├── 0145-unbundle-ffmpeg-av_stream_get_first_dts.patch │ │ ├── 0146-unbundled-cross-toolchain.patch │ │ ├── 0148-webrtc-size_t.patch │ │ ├── 0800-musl-sandbox.patch │ │ ├── 0801-musl-tid-caching.patch │ │ ├── 0802-musl-no-res-ninit-nclose.patch │ │ ├── 0803-musl-include.patch │ │ ├── 0998-example-cross-build.patch │ │ ├── 1000-cstdint.patch │ │ ├── 1000-we-know-what-will-be-supported.patch │ │ └── qtwebengine-6.8.1-aarch64-xnnpack.patch │ ├── template │ └── update ├── qt6-plugin-mysql ├── qt6-plugin-networkinformation ├── qt6-plugin-odbc ├── qt6-plugin-pgsql ├── qt6-plugin-sqlite ├── qt6-plugin-tls-openssl ├── qt6-plugin-tls-qcertonly ├── qt6-position-devel ├── qt6-position │ ├── patches │ │ └── no-cmake-test.patch │ └── template ├── qt6-printsupport ├── qt6-qt5compat-devel ├── qt6-qt5compat │ ├── template │ └── update ├── qt6-quick-test ├── qt6-quick3d-devel ├── qt6-quick3d-private-devel ├── qt6-quick3d-tools ├── qt6-quick3d │ ├── patches │ │ └── armv6.patch │ ├── template │ └── update ├── qt6-quicktimeline │ ├── template │ └── update ├── qt6-remoteobjects-devel ├── qt6-remoteobjects-tools ├── qt6-remoteobjects │ ├── patches │ │ └── no-cmake-test.patch │ └── template ├── qt6-scxml-devel ├── qt6-scxml-tools ├── qt6-scxml │ ├── patches │ │ └── no-cmake-test.patch │ └── template ├── qt6-sensors-devel ├── qt6-sensors │ ├── patches │ │ └── no-cmake-test.patch │ └── template ├── qt6-serialport-devel ├── qt6-serialport │ ├── patches │ │ └── no-cmake-test.patch │ └── template ├── qt6-shadertools-devel ├── qt6-shadertools │ ├── template │ └── update ├── qt6-speech-devel ├── qt6-speech-plugin-flite ├── qt6-speech-plugin-mock ├── qt6-speech-plugin-speechd ├── qt6-speech │ └── template ├── qt6-sql ├── qt6-svg-devel ├── qt6-svg │ ├── template │ └── update ├── qt6-test ├── qt6-tools-devel ├── qt6-tools-private-devel ├── qt6-tools │ ├── patches │ │ ├── pie.patch │ │ └── qdoc-location.patch │ ├── template │ └── update ├── qt6-translations │ ├── template │ └── update ├── qt6-ui-tools ├── qt6-virtualkeyboard-devel ├── qt6-virtualkeyboard │ └── template ├── qt6-wayland-devel ├── qt6-wayland-private-devel ├── qt6-wayland-tools ├── qt6-wayland │ ├── template │ └── update ├── qt6-webchannel-devel ├── qt6-webchannel │ ├── patches │ │ └── test.patch │ ├── template │ └── update ├── qt6-webengine ├── qt6-webengine-devel ├── qt6-webengine-examples ├── qt6-websockets-devel ├── qt6-websockets │ ├── patches │ │ └── test.patch │ └── template ├── qt6-webview-devel ├── qt6-webview │ └── template ├── qt6-widgets ├── qt6-xml ├── qt6ct │ ├── files │ │ └── qt6ct.sh │ ├── patches │ │ └── lib32.patch │ └── template ├── qtchooser │ ├── files │ │ ├── 4.conf │ │ └── 5.conf │ └── template ├── qtcreator-full ├── qtcreator-qt5 ├── qtcreator-qt6 ├── qtcreator │ ├── patches │ │ ├── 6.0.2--backtrace.patch │ │ ├── musl-no-malloc_trim.patch │ │ └── musl.patch │ ├── template │ └── update ├── qtcurve │ ├── patches │ │ ├── gtkprops_constexpr.patch │ │ └── qt5-5.15.0.patch │ └── template ├── qterminal │ └── template ├── qtermwidget-devel ├── qtermwidget-qt6-devel ├── qtermwidget-qt6 │ └── template ├── qtermwidget │ └── template ├── qtfm │ ├── patches │ │ └── QPainterPath.patch │ └── template ├── qtforkawesome-devel ├── qtforkawesome │ ├── template │ └── update ├── qtikz │ └── template ├── qtile-wayland ├── qtile │ └── template ├── qtkeychain-qt5-devel ├── qtkeychain-qt5 │ ├── files │ │ └── README.voidlinux │ └── template ├── qtkeychain-qt6-devel ├── qtkeychain-qt6 │ ├── files │ │ └── README.voidlinux │ ├── patches │ │ └── fix-cross-qt6.patch │ └── template ├── qtox │ └── template ├── qtpass │ ├── patches │ │ └── qmake-qt5.13.patch │ └── template ├── qtractor │ └── template ├── qtspell-devel ├── qtspell │ └── template ├── qtutilities-devel ├── qtutilities │ └── template ├── qtxdg-tools-devel ├── qtxdg-tools │ └── template ├── quadrapassel │ └── template ├── quakespasm │ └── template ├── quassel-client ├── quassel-client-shared ├── quassel-core ├── quassel │ ├── files │ │ └── quasselcore │ │ │ └── run │ └── template ├── quazip-devel ├── quazip-qt5 ├── quazip-qt5-devel ├── quazip-qt6 ├── quazip-qt6-devel ├── quazip │ ├── template │ └── update ├── quickDocs │ └── template ├── quickjs-devel ├── quickjs │ ├── patches │ │ └── cross.patch │ ├── template │ └── update ├── quilt │ └── template ├── quimup │ ├── template │ └── update ├── quiterss │ └── template ├── quixand │ └── template ├── quodlibet │ ├── patches │ │ └── a8b6f6bb34864a6821174edbf7802b689e440db3.patch │ ├── template │ └── update ├── quota │ ├── patches │ │ ├── musl.patch │ │ └── reallocarray.patch │ └── template ├── qutebrowser │ ├── patches │ │ └── dic.patch │ └── template ├── quvi │ ├── template │ └── update ├── qv4l2 │ ├── patches │ │ └── musl-temp-failure-retry.patch │ ├── template │ └── update ├── qwt-devel ├── qwt-doc ├── qwt-headers ├── qwt-qt6 ├── qwt-qt6-devel ├── qwt │ ├── patches │ │ ├── locations.patch │ │ └── multi-qt.patch │ └── template ├── qxkb │ └── template ├── qxmledit-devel ├── qxmledit │ └── template ├── qxmpp-devel ├── qxmpp │ └── template ├── qytdl │ ├── patches │ │ └── force-yt-dlp.patch │ └── template ├── rabbitmq-c-devel ├── rabbitmq-c │ └── template ├── racket-doc ├── racket │ └── template ├── radamsa │ └── template ├── radare2-devel ├── radare2 │ └── template ├── radeon-profile-daemon │ ├── files │ │ └── radeon-profile-daemon │ │ │ └── run │ └── template ├── radeon-profile │ └── template ├── radeontop │ └── template ├── radicale │ ├── INSTALL │ ├── INSTALL.msg │ ├── files │ │ └── radicale │ │ │ └── run │ └── template ├── radicale2 ├── radvd │ ├── files │ │ └── radvd │ │ │ └── run │ ├── patches │ │ └── strlcpy.patch │ └── template ├── raft-devel ├── raft │ └── template ├── rage-player │ ├── template │ └── update ├── rage │ └── template ├── ragel │ ├── template │ └── update ├── rakarrack │ ├── patches │ │ └── fltk_include.patch │ └── template ├── rakudo │ └── template ├── rancher-compose │ └── template ├── range-v3 │ ├── patches │ │ ├── 1715.patch │ │ └── 1716.patch │ └── template ├── ranger │ ├── patches │ │ ├── 0001-Fix-crashes-when-deleting-to-trash.patch │ │ └── ncurse-202311.patch │ ├── template │ └── update ├── rankwidth-devel ├── rankwidth │ ├── patches │ │ └── igraph-0.10.patch │ ├── template │ └── update ├── rapidfuzz-cpp │ └── template ├── rapidjson │ ├── patches │ │ ├── 0001-remove-march-native-from-CMAKE_CXX_FLAGS.patch │ │ ├── 0002-GenericStreamWrapper.patch │ │ ├── 0003-GenericStreamWrapper.patch │ │ ├── 0004-cursorstreamwrapper.patch │ │ ├── 0005-cursorstreamwrapper.patch │ │ ├── 3b2441b87f99ab65f37b141a7b548ebadb607b96.patch │ │ ├── 5d9d0f78b53dd8cd1ec757fd8ef07211ee114161.patch │ │ ├── CVE-2024-38517.patch │ │ └── fallthrough.patch │ └── template ├── rapidxml │ └── template ├── raptor-devel ├── raptor │ ├── patches │ │ └── 4dbc4c1da2a033c497d84a1291c46f416a9cac51.patch │ └── template ├── rapydscript-ng │ └── template ├── rarian-devel ├── rarian │ └── template ├── rasqal-devel ├── rasqal │ └── template ├── rasterview │ └── template ├── ratpoison │ └── template ├── rav1e-devel ├── rav1e │ └── template ├── rawtherapee │ └── template ├── razergenie │ └── template ├── rbenv │ ├── files │ │ └── rbenv │ └── template ├── rbw │ └── template ├── rc │ └── template ├── rc23 │ ├── patches │ │ └── static.patch │ └── template ├── rclone │ └── template ├── rcm │ └── template ├── rcs │ └── template ├── rdd │ └── template ├── rdedup │ └── template ├── rdesktop │ └── template ├── rdfind │ ├── patches │ │ ├── 61877de88d782b63b17458a61fcc078391499b29.patch │ │ └── f6c3f698dd680931b5c2f05688319290bdf0d930.patch │ └── template ├── rdiff-backup │ ├── template │ └── update ├── rdis-git │ ├── patches │ │ └── luajit_version.patch │ └── template ├── rdma-core-devel ├── rdma-core │ ├── patches │ │ └── manpages.patch │ └── template ├── rdrview │ └── template ├── rdumpfs │ └── template ├── rdup │ ├── patches │ │ └── release-1.1.15.patch │ └── template ├── re-devel ├── re │ ├── patches │ │ └── resolver.diff │ └── template ├── re2-devel ├── re2 │ ├── patches │ │ └── pkg-config.patch │ ├── template │ └── update ├── re2c │ └── template ├── read-edid │ └── template ├── readline-devel ├── readline │ └── template ├── readosm-devel ├── readosm │ └── template ├── reap │ └── template ├── reaver │ └── template ├── rebar3 │ └── template ├── reboot-mode │ └── template ├── receivemidi │ ├── patches │ │ └── juce-musl.patch │ └── template ├── recode-devel ├── recode │ ├── patches │ │ └── fclose.patch │ └── template ├── recoll │ ├── patches │ │ └── musl.patch │ ├── template │ └── update ├── recordmydesktop │ ├── patches │ │ ├── sane-theora-defaults.patch │ │ └── shmstr-to-shmproto.patch │ └── template ├── recutils │ └── template ├── redir │ └── template ├── redis │ ├── files │ │ └── redis │ │ │ └── run │ ├── patches │ │ └── use-system-jemalloc.patch │ └── template ├── redland-devel ├── redland-storage-mysql ├── redland-storage-pgsql ├── redland-storage-sqlite ├── redland-storage-virtuoso ├── redland │ └── template ├── rednotebook │ └── template ├── redo │ ├── patches │ │ └── musl.patch │ └── template ├── redshift-gtk ├── redshift │ ├── template │ └── update ├── redsocks │ ├── template │ └── update ├── refind │ ├── files │ │ ├── kernel.post-install │ │ ├── kernel.post-remove │ │ └── refind-kernel-hook.conf │ ├── patches │ │ ├── add-cross-compile-support.patch │ │ ├── force-inline-musl.patch │ │ ├── page-size.patch │ │ ├── python3.patch │ │ ├── refind-0.14.2-fix-gnu-efi-3.0.18.patch │ │ └── refind-install-abs-path.patch │ └── template ├── reflex │ └── template ├── reiser4-devel ├── reiser4progs │ └── template ├── reiserfsprogs │ ├── patches │ │ ├── musl-__compar_fn_t.patch │ │ ├── musl-loff_t.patch │ │ ├── musl-long_long_min_max.patch │ │ ├── musl-prints.patch │ │ └── reiserfsprogs-3.6.27-loff_t.patch │ ├── template │ └── update ├── remhind │ ├── patches │ │ ├── pyinotify.patch │ │ └── xdg.patch │ └── template ├── remind │ ├── files │ │ └── README.voidlinux │ └── template ├── remmina-kwallet ├── remmina │ └── template ├── remote-touchpad │ └── template ├── removed-packages │ └── template ├── remwharead-devel ├── remwharead-firefox-plugin ├── remwharead │ └── template ├── renameutils │ └── template ├── renderdoc │ ├── patches │ │ ├── 101dbda8c34888bf2051c3c257da3a1702705ef9.patch │ │ ├── add-x86-family.patch │ │ ├── atomic.patch │ │ ├── backtrace.patch │ │ ├── build-type-none-is-release.patch │ │ ├── c++14-needed.patch │ │ ├── compressonator-only-x86.patch │ │ ├── dostringise.patch │ │ ├── fix-plasma-crash.patch │ │ ├── musl.patch │ │ ├── ptrace-only-x86.patch │ │ ├── python-3.11.patch │ │ ├── python-3.13.patch │ │ ├── qmake-no-rpath.patch │ │ ├── time_t.patch │ │ └── unvendor-zstd-lz4.patch │ └── template ├── reop │ └── template ├── reptyr │ └── template ├── residualvm ├── resolv_wrapper │ ├── patches │ │ └── resolv_wrapper-fix-for-cmocka-1.1.6.patch │ └── template ├── rest-devel ├── rest-server │ ├── files │ │ ├── rest-server.confd │ │ └── rest-server │ │ │ └── run │ ├── log │ │ └── run │ └── template ├── rest │ ├── patches │ │ └── cross.patch │ └── template ├── restic │ └── template ├── resvg │ ├── patches │ │ └── QPainterPath.patch │ └── template ├── retro-gtk-devel ├── retro-gtk │ ├── patches │ │ └── meson.patch │ └── template ├── retroarch │ ├── patches │ │ └── mbedtls3.patch │ └── template ├── retroshare │ ├── patches │ │ └── gcc-12.patch │ └── template ├── reuse │ └── template ├── revive │ └── template ├── rex │ └── template ├── rgb │ └── template ├── rhash-devel ├── rhash │ └── template ├── rhino │ └── template ├── rhythmbox-devel ├── rhythmbox │ └── template ├── riff │ └── template ├── rink │ └── template ├── rinse │ ├── patches │ │ └── sbin.patch │ ├── template │ └── update ├── rinstall │ └── template ├── rinutils │ └── template ├── rio-terminfo ├── rio │ ├── patches │ │ └── downgrade-rust-version.patch │ └── template ├── riot-desktop ├── ripe-atlas-tools │ └── template ├── ripgrep-all │ └── template ├── ripgrep │ └── template ├── ripright │ ├── patches │ │ └── imagemagick7.patch │ └── template ├── rist-utils ├── ristretto │ └── template ├── river-shifttags │ └── template ├── river │ └── template ├── rix │ ├── patches │ │ ├── fixes.patch │ │ ├── makefile.patch │ │ └── overflow.patch │ └── template ├── rizin-devel ├── rizin │ ├── patches │ │ └── cross.patch │ └── template ├── rkhunter │ ├── patches │ │ ├── rkhunter-1.4.6-grep-3.8.patch │ │ └── rkhunter.conf.patch │ └── template ├── rlottie-devel ├── rlottie │ ├── patches │ │ └── fix-missing-limits-include.patch │ └── template ├── rlwrap │ └── template ├── rmilter │ ├── files │ │ └── rmilter │ │ │ └── run │ ├── patches │ │ ├── de-vendor.patch │ │ ├── fix-cflags.patch │ │ └── fix-gcc11.patch │ └── template ├── rmlint │ ├── patches │ │ └── do-not-strip.patch │ └── template ├── rmpc │ └── template ├── rmtfs │ ├── files │ │ └── rmtfs │ │ │ └── run │ └── template ├── rng-tools │ ├── files │ │ └── rngd │ │ │ └── run │ └── template ├── rnnoise-devel ├── rnnoise │ └── template ├── robin-hood-hashing │ └── template ├── robin-map │ └── template ├── robotfindskitten │ ├── template │ └── update ├── roccat-tools │ ├── files │ │ └── README.voidlinux │ └── template ├── rock64-base │ ├── INSTALL │ └── template ├── rock64-uboot │ ├── template │ └── update ├── rocker │ └── template ├── rockpro64-base │ ├── INSTALL │ ├── template │ └── update ├── rockpro64-uboot │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── rocksdb-devel ├── rocksdb │ ├── patches │ │ ├── fix-gcc13.patch │ │ └── toku_time.patch │ └── template ├── rocksndiamonds │ ├── files │ │ ├── rocksndiamonds.desktop │ │ └── rocksndiamonds.png │ └── template ├── rocq-stdlib │ └── template ├── rocq │ ├── patches │ │ └── libdir.patch │ └── template ├── rofi-calc │ └── template ├── rofi-devel ├── rofi-emoji │ └── template ├── rofi-pass │ └── template ├── rofi-rbw │ └── template ├── rofi │ └── template ├── rofimoji │ └── template ├── rofs-filtered │ ├── patches │ │ ├── fix-cflags.patch │ │ └── sysconf_dir-is-string.patch │ ├── template │ └── update ├── rogue │ ├── patches │ │ └── desktop-icon.patch │ └── template ├── rooster │ └── template ├── root-R ├── root-tail │ └── template ├── root │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── rootlesskit │ └── template ├── rosegarden │ └── template ├── roswell │ └── template ├── rot8 │ └── template ├── rott │ ├── files │ │ └── rott │ └── template ├── routinator │ ├── files │ │ └── routinator │ │ │ └── run │ └── template ├── rover │ └── template ├── rox │ ├── files │ │ ├── rox.desktop │ │ └── rox.svg │ └── template ├── roxterm │ ├── template │ └── update ├── rpcbind │ ├── files │ │ └── rpcbind │ │ │ └── run │ ├── patches │ │ ├── musl-sunrpc.patch │ │ └── rpcbind-sunrpc.patch │ ├── template │ └── update ├── rpcsvc-proto │ └── template ├── rpi-base │ ├── INSTALL │ ├── files │ │ ├── 71-raspberrypi.rules │ │ ├── bcm_host.pc │ │ ├── egl.pc │ │ └── glesv2.pc │ └── template ├── rpi-eeprom │ ├── patches │ │ └── default-editor.patch │ └── template ├── rpi-firmware │ ├── files │ │ ├── cmdline.txt │ │ └── config.txt │ └── template ├── rpi-imager │ └── template ├── rpi-kernel-dbg ├── rpi-kernel-headers ├── rpi-kernel │ ├── files │ │ ├── arm-dotconfig │ │ ├── arm64-dotconfig │ │ ├── mv-debug │ │ └── rpi5-config-overlay │ ├── template │ └── update ├── rpi-usbboot │ ├── patches │ │ └── 0001-Use-PREFIX-and-DESTDIR-in-Makefile.patch │ └── template ├── rpi-userland ├── rpi-utils │ ├── patches │ │ └── no-dev.patch │ ├── template │ └── update ├── rpi2-base ├── rpi2-kernel ├── rpi2-kernel-headers ├── rpi3-base ├── rpi3-kernel ├── rpi3-kernel-headers ├── rpi4-base ├── rpi4-kernel ├── rpi4-kernel-headers ├── rpi5-kernel-dbg ├── rpi5-kernel-headers ├── rpi5-kernel │ ├── files │ ├── template │ └── update ├── rpm-python3 ├── rpm │ ├── template │ └── update ├── rpmextract │ ├── files │ │ └── rpmextract │ └── template ├── rr │ └── template ├── rrdtool-devel ├── rrdtool │ ├── patches │ │ └── gcc14.patch │ └── template ├── rsClock │ └── template ├── rset │ └── template ├── rsgain │ └── template ├── rsnapshot │ └── template ├── rspamd │ ├── files │ │ ├── TryRunResults.cmake │ │ └── rspamd │ │ │ └── run │ ├── patches │ │ └── vsx.patch │ ├── template │ └── update ├── rssguard │ └── template ├── rsstail │ ├── patches │ │ └── fix-1779.patch │ └── template ├── rstudio │ ├── patches │ │ ├── 0001-Check-for-group_member-in-cmake.patch │ │ ├── 0002-Check-for-backtrace-function-in-cmake.patch │ │ ├── 0003-Include-unistd.h-instead-of-sys-unistd.h.patch │ │ ├── 0005-don-t-install-mathjax-pandoc.patch │ │ ├── 0006-Fix-rstudio-exec-path.patch │ │ ├── 0006-use-system-node.patch │ │ ├── 0007-disable-check-for-updates.patch │ │ ├── boost173.patch │ │ ├── boost176.patch │ │ ├── boost181.patch │ │ ├── fix-build.patch │ │ └── gcc12.patch │ ├── template │ └── update ├── rsv │ └── template ├── rsync │ ├── files │ │ ├── rsyncd.conf │ │ └── rsyncd │ │ │ └── run │ ├── template │ └── update ├── rsyslog-clickhouse ├── rsyslog-elasticsearch ├── rsyslog-gnutls ├── rsyslog-gssapi ├── rsyslog-mysql ├── rsyslog-postgresql ├── rsyslog │ ├── files │ │ ├── rsyslog.conf │ │ ├── rsyslog.logrotate │ │ └── rsyslogd │ │ │ └── run │ ├── patches │ │ ├── disable-omfile-outchannel.patch │ │ ├── disable-omfile-read-only-errmsg.patch │ │ ├── disable-omfile-read-only.patch │ │ ├── disable-omfwd_fast_imuxsock.patch │ │ ├── musl-glob.patch │ │ └── musl.patch │ ├── template │ └── update ├── rtags │ └── template ├── rtaudio-devel ├── rtaudio │ └── template ├── rtkit │ ├── files │ │ ├── org.freedesktop.RealtimeKit1.xml │ │ └── rtkit │ │ │ └── run │ ├── template │ └── update ├── rtl-sdr ├── rtl8723bt-firmware │ └── template ├── rtl8812au-dkms │ ├── patches │ │ └── 0001-void-arch-generic-plumbing-bits.patch │ ├── template │ └── update ├── rtl8821au-dkms │ ├── patches │ │ └── endianess.patch │ └── template ├── rtl8821cu-dkms │ ├── template │ └── update ├── rtl8822bu-dkms │ ├── files │ │ └── dkms.conf │ ├── patches │ │ └── 0001-void-arch-generic-plumbing-bits.patch │ └── template ├── rtl_433-devel ├── rtl_433 │ └── template ├── rtmidi-devel ├── rtmidi │ └── template ├── rtmpdump │ ├── patches │ │ └── fix-chunk-size.patch │ └── template ├── rtorrent │ ├── patches │ │ ├── fix-sysroot-handling.patch │ │ └── no_xmlrpc_c_compile.patch │ └── template ├── rtslib-fb │ └── template ├── rtv ├── rtx ├── rubber │ ├── files │ │ └── setup.cfg │ ├── template │ └── update ├── rubberband-devel ├── rubberband │ ├── patches │ │ └── fix-meson-buildtype-detection.diff │ └── template ├── ruby-addressable │ └── template ├── ruby-asciidoctor │ └── template ├── ruby-backports │ └── template ├── ruby-build │ └── template ├── ruby-clocale │ └── template ├── ruby-concurrent-ruby │ └── template ├── ruby-connection_pool │ └── template ├── ruby-deep_merge │ └── template ├── ruby-devel ├── ruby-devel-doc ├── ruby-erubi │ └── template ├── ruby-erubis │ └── template ├── ruby-ethon │ └── template ├── ruby-faraday │ └── template ├── ruby-faraday_middleware │ └── template ├── ruby-ffi │ └── template ├── ruby-filesize │ └── template ├── ruby-gh │ └── template ├── ruby-highline │ └── template ├── ruby-hpricot │ └── template ├── ruby-httparty │ └── template ├── ruby-launchy │ └── template ├── ruby-manpages │ └── template ├── ruby-mime-types-data │ └── template ├── ruby-mime-types │ └── template ├── ruby-mini_portile2 │ └── template ├── ruby-multi_json │ └── template ├── ruby-multi_xml │ └── template ├── ruby-multipart-post │ └── template ├── ruby-mustache │ └── template ├── ruby-net-http-persistent │ └── template ├── ruby-net-http-pipeline │ └── template ├── ruby-pkg-config │ └── template ├── ruby-public_suffix │ ├── patches │ │ ├── no-git.patch │ │ └── system-public-suffix.patch │ └── template ├── ruby-pusher-client │ └── template ├── ruby-rainbow │ └── template ├── ruby-rb-readline │ └── template ├── ruby-rdiscount │ └── template ├── ruby-ri ├── ruby-ronn │ └── template ├── ruby-rrdtool ├── ruby-rubysl-singleton │ └── template ├── ruby-sync │ ├── template │ └── update ├── ruby-thor │ └── template ├── ruby-tmuxinator │ ├── patches │ │ └── xdg.patch │ └── template ├── ruby-travis │ └── template ├── ruby-typhoeus │ └── template ├── ruby-webrick │ └── template ├── ruby-websocket │ └── template ├── ruby-xdg │ └── template ├── ruby │ ├── files │ │ └── rubygems-avoid-platform-specific-gems.patch │ ├── patches │ │ ├── musl-fix-get_main_stack.patch │ │ └── test_insns-lower-recursion-depth.patch │ ├── template │ └── update ├── rubyripper │ └── template ├── ruff │ └── template ├── ruler │ ├── patches │ │ └── fix-invalid-pointer.patch │ └── template ├── run-mailcap │ ├── patches │ │ └── manpages.patch │ ├── template │ └── update ├── run-parts │ ├── template │ └── update ├── runawk │ └── template ├── runc │ └── template ├── runelite-launcher │ ├── files │ │ └── runelite │ └── template ├── runit-iptables │ ├── files │ │ └── 91-iptables.sh │ └── template ├── runit-kdump │ ├── files │ │ ├── 07-kdump.sh │ │ └── README.voidlinux │ └── template ├── runit-nftables │ ├── files │ │ └── 91-nftables.sh │ └── template ├── runit-swap │ └── template ├── runit-void-apparmor ├── runit-void │ ├── INSTALL │ ├── INSTALL.msg │ ├── files │ │ ├── 09-apparmor.sh │ │ ├── apparmor │ │ ├── hostname │ │ └── locale.conf │ ├── runit-void-apparmor.INSTALL │ └── template ├── runit │ ├── files │ │ └── sv │ ├── patches │ │ ├── clearmem.patch │ │ ├── cross.patch │ │ ├── default_svdir.patch │ │ └── sigcont.patch │ ├── template │ └── update ├── ruplacer │ └── template ├── rust-analyzer │ ├── template │ └── update ├── rust-audit-info │ ├── template │ └── update ├── rust-bacon │ └── template ├── rust-bindgen │ └── template ├── rust-bootstrap │ ├── files │ │ └── generating-distfiles.md │ ├── template │ └── update ├── rust-cargo-audit │ └── template ├── rust-cargo-bloat │ └── template ├── rust-doc ├── rust-sccache │ └── template ├── rust-src ├── rust-std ├── rust │ ├── files │ │ └── patches │ │ │ └── static-llvm │ │ │ └── llvm-with-dependencies.patch │ ├── patches │ │ ├── 0001-Fix-LLVM-build.patch │ │ ├── 0002-Remove-nostdlib-and-musl_root-from-musl-targets.patch │ │ ├── 0003-move-debugger-scripts-to-usr-share-rust.patch │ │ ├── 0004-fix-shebang-on-install-template.sh.patch │ │ ├── 0005-do-not-install-libunwind-source-removed.patch │ │ ├── 0006-fix-rustdoc-when-cross-compiling.patch │ │ ├── 0007-link-stage-2-tools-dynamically-to-libstd.patch │ │ ├── 0008-Void-fix-linkage-against-host-target-LLVM-in-cross-s.patch │ │ ├── 0009-do-not-export-LD_LIBRARY_PATH.patch │ │ ├── 0011-Use-ELFv2-ABI-on-all-powerpc64-targets.patch │ │ ├── 0012-bootstrap-Disable-initial-exec-TLS-model-on-powerpc.patch │ │ ├── 0013-allow-specifying-native-sysroot-to-use-for-linkage.patch │ │ ├── 0014-copy-new-version-of-need-ssp_nonshared.patch-from-al.patch │ │ └── 0015-downgrade-cc.patch │ ├── template │ └── update ├── rustup │ ├── patches │ │ └── 0001-Symlink-rustup-instead-of-copying-it.patch │ └── template ├── rusty-diceware │ └── template ├── rustypaste-cli │ └── template ├── rustypaste │ ├── files │ │ └── rustypaste │ │ │ └── run │ └── template ├── rvault │ ├── patches │ │ └── missing-include.patch │ └── template ├── rw │ ├── template │ └── update ├── rwc │ └── template ├── rx_tools │ ├── patches │ │ └── soapysdr_0.8.patch │ └── template ├── rxvt-unicode-terminfo ├── rxvt-unicode │ ├── files │ │ ├── rxvt-unicode.desktop │ │ └── rxvt-unicode.png │ ├── patches │ │ ├── fix-for-tmux-34.patch │ │ ├── font-width-fix.patch │ │ ├── line-spacing-fix.patch │ │ └── perl5.38.patch │ └── template ├── rygel-devel ├── rygel │ ├── patches │ │ └── require-gupnp.patch │ └── template ├── ryzen-stabilizator │ └── template ├── rz-ghidra │ └── template ├── s-nail │ ├── template │ └── update ├── s │ └── template ├── s3cmd │ └── template ├── s3fs-fuse │ └── template ├── s6-devel ├── s6-dns-devel ├── s6-dns-doc ├── s6-dns │ └── template ├── s6-doc ├── s6-linux-utils-doc ├── s6-linux-utils │ └── template ├── s6-man-pages │ └── template ├── s6-networking-devel ├── s6-networking-doc ├── s6-networking-man-pages │ └── template ├── s6-networking │ └── template ├── s6-portable-utils-doc ├── s6-portable-utils-man-pages │ └── template ├── s6-portable-utils │ └── template ├── s6-rc-devel ├── s6-rc-doc ├── s6-rc │ └── template ├── s6 │ └── template ├── sabnzbd │ ├── files │ │ ├── README.voidlinux │ │ └── sabnzbd │ ├── template │ └── update ├── sacc │ └── template ├── sacjava │ └── template ├── safeeyes │ ├── patches │ │ └── fix-python3.12-importlib.patch │ └── template ├── sage-data-combinatorial_designs │ ├── template │ └── update ├── sage-data-conway_polynomials │ ├── template │ └── update ├── sage-data-elliptic_curves │ ├── template │ └── update ├── sage-data-graphs │ ├── template │ └── update ├── sage-data-polytopes_db │ ├── template │ └── update ├── sagemath-giac │ └── template ├── sagemath │ ├── files │ │ ├── sage-env-config │ │ └── timings2.json │ ├── patches │ │ └── get_patches │ ├── template │ └── update ├── sakura │ └── template ├── saldl │ ├── patches │ │ └── python-3.11.patch │ └── template ├── salt │ ├── files │ │ ├── salt-api │ │ │ └── run │ │ ├── salt-master │ │ │ └── run │ │ ├── salt-minion │ │ │ └── run │ │ └── salt-syndic │ │ │ └── run │ ├── patches │ │ ├── 66899.patch │ │ ├── 66902.patch │ │ ├── 67118.patch │ │ └── requirements.patch │ ├── template │ └── update ├── sam │ └── template ├── sam2p │ └── template ├── samba-ctdb ├── samba-cups ├── samba-dc ├── samba-devel ├── samba-glusterfs ├── samba-libs ├── samba-python3 ├── samba │ ├── files │ │ ├── ctdbd │ │ │ └── run │ │ ├── nmbd │ │ │ └── run │ │ ├── samba.pam │ │ └── smbd │ │ │ └── run │ ├── patches │ │ ├── add_missing___compar_fn_t.patch │ │ ├── getpwent_r.patch │ │ ├── musl_uintptr.patch │ │ ├── ppc-hang.patch │ │ └── samba-bgqd-include-signal-h.patch │ ├── template │ └── update ├── samdisk │ └── template ├── saml2aws │ └── template ├── sample │ └── template ├── sampler │ └── template ├── samplv1 │ └── template ├── samsung-unified-driver │ ├── files │ │ └── xerox_mfp-smfp.conf │ └── template ├── samurai │ └── template ├── sandbar │ └── template ├── sandboxfs │ ├── patches │ │ └── 32bit.patch │ └── template ├── sandfox │ └── template ├── sandy │ └── template ├── sane-airscan │ └── template ├── sane-devel ├── sane-epkowa ├── sane │ ├── files │ │ ├── saned.xinetd │ │ └── saned │ │ │ └── run │ ├── patches │ │ └── sane-desc-cross.patch │ ├── template │ └── update ├── sanoid │ ├── files │ │ └── README.voidlinux │ └── template ├── sasm │ ├── patches │ │ └── dont-install-vendores-binaries.patch │ ├── template │ └── update ├── sassc │ └── template ├── satty │ └── template ├── sauerbraten-data ├── sauerbraten-server ├── sauerbraten │ ├── files │ │ ├── sauerbraten │ │ └── sauerbraten-server │ ├── patches │ │ └── flags.patch │ └── template ├── sbc-devel ├── sbc │ └── template ├── sbcl-source ├── sbcl │ ├── files │ │ └── sbclrc │ ├── patches │ │ └── ppc-musl.patch │ └── template ├── sbctl │ └── template ├── sblg │ ├── template │ └── update ├── sbsigntool │ ├── files │ │ ├── kernel.d │ │ │ ├── sbsigntool.post-install │ │ │ └── sbsigntool.post-remove │ │ └── sbsigntool-kernel-hook.conf │ ├── patches │ │ ├── Align-signature-data-to-8-bytes.patch │ │ ├── f12484869c9590682ac3253d583bf59b890bb826.patch │ │ ├── libressl.patch │ │ ├── openssl3.patch │ │ └── sbsign_check_write_return.patch │ └── template ├── sbt │ ├── template │ └── update ├── sc-controller │ └── template ├── sc-im │ └── template ├── sc │ └── template ├── sc3-plugins │ ├── patches │ │ └── cstdio.patch │ ├── template │ └── update ├── scaleway-cli │ └── template ├── scanmem │ ├── patches │ │ └── fix-musl.patch │ └── template ├── scapy │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── scc │ └── template ├── sccs ├── scdoc │ └── template ├── scenefx-devel ├── scenefx │ └── template ├── schedtool │ └── template ├── schedule │ └── template ├── scheme48 │ └── template ├── schilytools │ ├── cdrtools.INSTALL │ ├── patches │ │ └── helpfile.patch │ ├── template │ └── update ├── schismtracker │ └── template ├── schroot │ ├── patches │ │ ├── getent.patch │ │ ├── getmntent.patch │ │ ├── musl.patch │ │ ├── remove-networks.patch │ │ └── schroot-cppunit.patch │ └── template ├── scid_vs_pc │ ├── files │ │ └── scid_vs_pc.desktop │ └── template ├── scite │ ├── template │ └── update ├── scons │ └── template ├── scooper │ └── template ├── scratch │ └── template ├── scrcpy │ └── template ├── scream-alsa ├── scream-alsa-ivshmem ├── scream-pulseaudio ├── scream-pulseaudio-ivshmem ├── scream-raw ├── scream-raw-ivshmem ├── scream │ └── template ├── screen-message │ └── template ├── screen │ ├── INSTALL │ ├── files │ │ ├── 20-screen.sh │ │ └── screen │ ├── patches │ │ └── fix-musl.patch │ └── template ├── screenkey │ └── template ├── screenplain │ └── template ├── screentest │ └── template ├── scribus │ ├── patches │ │ ├── fix_build_with_poppler_25.06.0.patch │ │ ├── musl-types.patch │ │ └── no-execinfo.patch │ ├── template │ └── update ├── scron │ ├── files │ │ └── scron │ │ │ └── run │ └── template ├── scrot │ └── template ├── scrotty │ ├── patches │ │ └── fish-completion-vendor.patch │ └── template ├── scryer-prolog │ └── template ├── scrypt │ ├── patches │ │ └── disable-aarch64-extensions.patch │ └── template ├── sct │ └── template ├── scummvm │ └── template ├── sd │ └── template ├── sdb-devel ├── sdb │ └── template ├── sdcc │ └── template ├── sdcv │ └── template ├── sdd ├── sddm-kcm │ └── template ├── sddm │ ├── files │ │ └── sddm │ │ │ └── run │ ├── patches │ │ ├── 0.19.0--default-path.patch │ │ └── remove-consolekit-detection.patch │ └── template ├── sdl12-compat-devel ├── sdl12-compat │ ├── patches │ │ └── sdl-config.patch │ ├── template │ └── update ├── sdparm │ ├── template │ └── update ├── sdunpack │ └── template ├── seabios │ └── template ├── seafile-cli ├── seafile-client-qt │ ├── patches │ │ └── qt5.15-QPainterPath.patch │ ├── template │ └── update ├── seafile-libclient-devel ├── seafile-libclient-python3 ├── seafile-libclient │ ├── template │ └── update ├── seahorse-nautilus │ ├── patches │ │ └── gnupg-version.patch │ └── template ├── seahorse │ └── template ├── seatd │ ├── files │ │ └── seatd │ │ │ └── run │ └── template ├── seaweedfs │ └── template ├── sed │ └── template ├── sedutil │ └── template ├── seer │ └── template ├── seexpr-krita-devel ├── seexpr-krita │ ├── patches │ │ └── cmake-build-type-none.patch │ └── template ├── selene │ └── template ├── sendEmail │ └── template ├── sendmidi │ ├── patches │ │ └── juce-musl.patch │ └── template ├── senpai │ └── template ├── sent │ └── template ├── sentry-native-devel ├── sentry-native │ └── template ├── seq2gif │ ├── patches │ │ └── ifdef.patch │ └── template ├── sequeler │ └── template ├── sequoia-chameleon-gnupg │ └── template ├── sequoia-sop │ └── template ├── sequoia-sq │ ├── template │ └── update ├── sequoia-sqv │ └── template ├── ser2net │ └── template ├── serd-devel ├── serd │ └── template ├── serf-devel ├── serf │ ├── template │ └── update ├── servy │ └── template ├── sessreg │ └── template ├── setconf │ └── template ├── setroot │ ├── patches │ │ └── new-imlib.patch │ └── template ├── setxkbmap │ └── template ├── setzer │ └── template ├── sex │ └── template ├── sfeed │ └── template ├── sfeed_curses ├── sfind ├── sftpgo │ ├── files │ │ └── sftpgo │ │ │ └── run │ └── template ├── sg3_utils-devel ├── sg3_utils │ ├── template │ └── update ├── sgfutils │ ├── patches │ │ └── Makefile.patch │ └── template ├── sgml-common │ └── template ├── shaderc │ └── template ├── shadow │ ├── files │ │ ├── LICENSE │ │ ├── chage.pam │ │ ├── login.defs │ │ ├── passwd.pam │ │ └── shadow.cron-daily │ ├── patches │ │ ├── shadow-strncpy-usage.patch │ │ └── xstrdup.patch │ └── template ├── shadowfox-updater │ └── template ├── shadowsocks-libev-devel ├── shadowsocks-libev │ ├── INSTALL │ ├── files │ │ ├── shadowsocks-libev-client │ │ │ └── run │ │ └── shadowsocks-libev-server │ │ │ └── run │ └── template ├── shadowsocks-rust │ ├── files │ │ ├── shadowsocks-rust-client │ │ │ └── run │ │ └── shadowsocks-rust-server │ │ │ └── run │ └── template ├── shake │ └── template ├── shapelib-devel ├── shapelib-tools ├── shapelib │ └── template ├── shared-color-targets │ └── template ├── shared-desktop-ontologies │ └── template ├── shared-mime-info │ ├── template │ └── update ├── sharenix │ ├── files │ │ └── README.voidlinux │ └── template ├── sharutils │ ├── patches │ │ ├── CVE-2018-1000097.patch │ │ └── fix-glibc-2.27.patch │ └── template ├── sheldon │ └── template ├── shellcheck │ └── template ├── shfm │ └── template ├── shfmt │ └── template ├── shiboken6 ├── shikane │ └── template ├── shinit │ ├── files │ │ └── shinit │ │ │ └── run │ └── template ├── shiori │ ├── files │ │ └── shiori │ │ │ └── run │ └── template ├── shmux │ ├── patches │ │ └── time.patch │ └── template ├── shntool │ └── template ├── shorewall-core ├── shorewall │ ├── files │ │ ├── shorewall │ │ │ ├── finish │ │ │ └── run │ │ └── shorewall6 │ │ │ ├── finish │ │ │ └── run │ ├── template │ └── update ├── shorewall6 ├── shortwave │ └── template ├── shotcut │ ├── template │ └── update ├── shotgun │ └── template ├── shotman │ └── template ├── shotwell │ ├── patches │ │ └── fix-unused-method.patch │ └── template ├── showtime │ └── template ├── shunit2 │ └── template ├── sic │ └── template ├── sidplayfp │ ├── patches │ │ └── musl-PATH_MAX.patch │ └── template ├── sieve-connect │ └── template ├── sift │ └── template ├── sigi │ └── template ├── sigil │ └── template ├── signal-backup-decode │ ├── patches │ │ └── fix-build.patch │ └── template ├── signify │ ├── files │ │ └── void.h │ └── template ├── signing-party │ ├── patches │ │ └── makefiles.patch │ └── template ├── signon-kwallet-extension │ └── template ├── signon-plugin-oauth2 │ └── template ├── signon-ui │ └── template ├── signond-devel ├── signond-doc ├── signond │ ├── patches │ │ └── cross.patch │ ├── template │ └── update ├── sigrok-cli │ └── template ├── sigrok-firmware-fx2lafw │ └── template ├── silc-client │ └── template ├── silc-toolkit-devel ├── silc-toolkit │ └── template ├── silc │ ├── template │ └── update ├── sile │ └── template ├── silly-devel ├── silly │ ├── patches │ │ └── png_longjmp.patch │ ├── template │ └── update ├── simage-devel ├── simage │ └── template ├── simavr-devel ├── simavr │ └── template ├── simde │ └── template ├── simgear-devel ├── simgear │ ├── patches │ │ ├── fix-include.patch │ │ ├── musl-strerror_r.patch │ │ └── musl-u_types.patch │ └── template ├── simh │ └── template ├── simple-mtpfs │ └── template ├── simple-scan │ └── template ├── simutron │ ├── patches │ │ └── remove-bitbang-from-firmware-c.patch │ └── template ├── since │ └── template ├── singular │ ├── template │ └── update ├── sinit │ └── template ├── sioyek │ ├── patches │ │ └── mupdf-1.23.patch │ ├── template │ └── update ├── sip │ ├── patches │ │ └── find-bindings-in-pyprefix.patch │ ├── template │ └── update ├── sipcalc │ └── template ├── siril │ ├── patches │ │ └── musl.patch │ └── template ├── sisl │ ├── patches │ │ └── maxdouble.patch │ └── template ├── sispmctl │ └── template ├── skaffold │ └── template ├── skalibs-devel ├── skalibs-doc ├── skalibs │ └── template ├── skanlite │ └── template ├── skanpage │ └── template ├── skate │ └── template ├── skb │ └── template ├── skim │ └── template ├── skippy-xd │ └── template ├── skktools │ ├── patches │ │ └── python3.patch │ └── template ├── sklogw │ ├── files │ │ └── sklogw │ │ │ ├── finish │ │ │ └── run │ └── template ├── skopeo │ └── template ├── skroll │ ├── patches │ │ └── fix-makefile.patch │ └── template ├── sl │ └── template ├── slack-desktop │ ├── template │ └── update ├── slack-term │ └── template ├── slang-devel ├── slang │ └── template ├── slcp │ ├── patches │ │ ├── libgit-initializion.patch │ │ └── libgit2-0.28.patch │ └── template ├── sleuthkit-devel ├── sleuthkit │ └── template ├── slim-void-theme │ └── template ├── slim │ ├── files │ │ ├── slim.pam │ │ └── slim │ │ │ └── run │ ├── patches │ │ ├── 1.3.6--adjust-PATH-for-usrmerge.patch │ │ ├── slim-1.3.6-add-sessiondir.patch │ │ ├── slim-1.3.6-fix-libslim-libraries.patch │ │ └── slim-1.3.6-gcc11.patch │ └── template ├── slirp4netns │ └── template ├── slit │ └── template ├── sloccount │ ├── patches │ │ └── fix-c-and-ldflags.patch │ └── template ├── slock │ └── template ├── slop-devel ├── slop │ ├── patches │ │ └── bugfix-add-missed-header.patch │ └── template ├── slrn │ └── template ├── slstatus │ ├── files │ │ ├── README.voidlinux │ │ └── config.h │ └── template ├── slurm-wlm │ ├── patches │ │ ├── musl-cpu_set_t.patch │ │ ├── musl-getgrent.patch │ │ ├── musl-getpwent.patch │ │ └── musl-nsap_addr.patch │ ├── template │ └── update ├── slurm │ ├── template │ └── update ├── slurp │ └── template ├── smake ├── smali │ ├── files │ │ ├── baksmali │ │ └── smali │ └── template ├── smartmontools │ ├── files │ │ └── smartd │ │ │ ├── finish │ │ │ └── run │ └── template ├── smbclient ├── smbnetfs │ ├── patches │ │ └── musl.patch │ └── template ├── smcroute │ ├── files │ │ └── smcrouted │ │ │ └── run │ └── template ├── smem │ ├── template │ └── update ├── smenu │ └── template ├── smlfmt │ └── template ├── smpeg-devel ├── smpeg │ ├── patches │ │ └── fix-gcc6-narrowing.patch │ └── template ├── smpeg2-devel ├── smpeg2 │ ├── patches │ │ └── fix-gcc6-narrowing.patch │ └── template ├── smplayer │ ├── template │ └── update ├── smproxy │ └── template ├── smtube │ └── template ├── smu │ └── template ├── snapcast │ ├── files │ │ ├── snapclient │ │ │ └── run │ │ └── snapserver │ │ │ └── run │ └── template ├── snapclient ├── snapper-devel ├── snapper │ ├── files │ │ └── snapperd │ │ │ └── run │ ├── patches │ │ ├── 0001-disable-locale-tests.patch │ │ └── fix-missing-include-musl.patch │ └── template ├── snappy-devel ├── snappy-tools │ └── template ├── snappy │ ├── patches │ │ └── cmakelists_no_3rdparty.patch │ └── template ├── snapraid │ ├── template │ └── update ├── snapserver ├── snapshot │ └── template ├── snapwm │ └── template ├── snazzer │ └── template ├── sndio-devel ├── sndio │ ├── files │ │ └── sndiod │ │ │ └── run │ └── template ├── snes9x-gtk │ └── template ├── sniproxy │ └── template ├── snixembed │ └── template ├── snmp_exporter │ ├── files │ │ └── snmp_exporter │ │ │ └── run │ └── template ├── snoopy │ ├── INSTALL │ ├── REMOVE │ └── template ├── snooze │ └── template ├── snorenotify-devel ├── snorenotify │ └── template ├── snowball │ ├── patches │ │ └── libstemmer-library.patch │ └── template ├── so │ └── template ├── socat │ ├── patches │ │ ├── errqueue.patch │ │ ├── patch-99-musl.patch │ │ ├── patch-xio-openssl_c.diff │ │ ├── patch-xioopts_c.diff │ │ └── patch-xioopts_h.diff │ └── template ├── soci-devel ├── soci │ ├── template │ └── update ├── socket_wrapper │ └── template ├── socklog-ucspi │ ├── files │ │ └── socklog-ucspi-tcp │ │ │ └── run │ └── template ├── socklog-void │ ├── INSTALL │ └── template ├── socklog │ ├── template │ └── update ├── sof-firmware │ └── template ├── sof-tools │ └── template ├── soft-serve │ ├── files │ │ └── soft-serve │ │ │ └── run │ └── template ├── softhsm │ └── template ├── soju │ ├── INSTALL │ ├── files │ │ ├── README.voidlinux │ │ └── soju │ │ │ └── run │ ├── patches │ │ ├── fix-armv6.patch │ │ └── void-defaults.patch │ └── template ├── solarus-devel ├── solarus-quest-editor │ ├── patches │ │ └── use-system-qlementine.patch │ └── template ├── solarus │ └── template ├── solo2-cli │ └── template ├── solvespace │ └── template ├── sombok-devel ├── sombok │ ├── patches │ │ └── cross.patch │ └── template ├── sonata │ └── template ├── sonic-visualiser │ ├── patches │ │ └── musl-timeval-fix.patch │ ├── template │ └── update ├── sonic │ └── template ├── sonnet-devel ├── sonnet │ ├── template │ └── update ├── sops │ └── template ├── sopwith │ ├── files │ │ ├── sopwith.desktop │ │ └── sopwith.png │ └── template ├── sord-devel ├── sord │ └── template ├── sound-icons │ └── template ├── sound-juicer │ ├── patches │ │ └── meson-0.61.patch │ └── template ├── sound-theme-freedesktop │ └── template ├── soundconverter │ └── template ├── soundfont-fluid │ └── template ├── soundkonverter │ ├── patches │ │ └── taglib2.diff │ └── template ├── soundmodem │ ├── patches │ │ ├── 0001-Search-replace-of-extern-inline-static-inline.patch │ │ ├── cross.patch │ │ └── fix-missing-return-type.patch │ └── template ├── soundtouch-devel ├── soundtouch │ ├── template │ └── update ├── source-highlight-devel ├── source-highlight │ ├── patches │ │ └── gcc-12.patch │ └── template ├── source-sans-pro │ └── template ├── sov │ └── template ├── sowm │ └── template ├── sox-devel ├── sox │ ├── patches │ │ └── gcc14.patch │ ├── template │ └── update ├── spacefm │ ├── patches │ │ └── sysmacros.patch │ └── template ├── spacenavd │ ├── files │ │ └── spacenavd │ │ │ └── run │ └── template ├── spamassassin │ ├── files │ │ ├── sa-update │ │ └── spamd │ │ │ └── run │ ├── patches │ │ └── configure.patch │ ├── template │ └── update ├── spampd │ ├── files │ │ └── spampd │ │ │ └── run │ ├── patches │ │ └── perl-5.18-fixes.patch │ └── template ├── spandsp-devel ├── spandsp │ └── template ├── sparse │ └── template ├── sparsehash │ └── template ├── spatialite-tools │ ├── patches │ │ └── spatialite-tools_lxml2.patch │ └── template ├── spawn-fcgi │ ├── template │ └── update ├── spdlog │ └── template ├── spdx-licenses-html ├── spdx-licenses-json ├── spdx-licenses-list │ └── template ├── spdx-licenses-text ├── speakersafetyd │ ├── files │ │ └── speakersafetyd │ │ │ └── run │ └── template ├── spectacle │ └── template ├── spectre-meltdown-checker │ └── template ├── spectrum3d │ ├── template │ └── update ├── spectrwm │ ├── template │ └── update ├── speech-dispatcher-devel ├── speech-dispatcher │ └── template ├── speed-dreams │ ├── patches │ │ ├── aarch64.patch │ │ ├── cmake.patch │ │ └── musl.patch │ ├── template │ └── update ├── speedcrunch │ ├── template │ └── update ├── speedometer │ ├── template │ └── update ├── speedtest-cli │ └── template ├── speex-devel ├── speex │ └── template ├── speexdsp-devel ├── speexdsp │ └── template ├── spek-alternative ├── spek-x │ ├── patches │ │ └── musl.patch │ └── template ├── sphinxbase-devel ├── sphinxbase │ ├── template │ └── update ├── spice-devel ├── spice-gtk-devel ├── spice-gtk │ └── template ├── spice-protocol │ └── template ├── spice-vdagent │ ├── files │ │ └── spice-vdagentd │ │ │ └── run │ └── template ├── spice │ └── template ├── spicy │ ├── patches │ │ ├── fix-cross.patch │ │ └── fix-test.patch │ └── template ├── spigot │ └── template ├── spim │ ├── patches │ │ └── flex-2.6-compat.patch │ └── template ├── spin2cpp │ └── template ├── spiped │ ├── template │ └── update ├── splint │ └── template ├── splix │ ├── patches │ │ └── splix-deviceID.patch │ └── template ├── spnavcfg │ └── template ├── spotify-adblock │ └── template ├── spotify-player │ └── template ├── spotify-qt │ ├── patches │ │ └── disable-crash-handler.patch │ └── template ├── spotify-tui │ ├── patches │ │ └── openssl3.patch │ └── template ├── spotify │ ├── files │ │ ├── EULA │ │ └── spotify │ ├── template │ └── update ├── spotifyd │ └── template ├── sprec │ └── template ├── spreed-webrtc │ ├── INSTALL │ ├── files │ │ └── spreed-webrtc-server │ │ │ └── run │ ├── patches │ │ ├── config.patch │ │ ├── fix-uuid-newv4.patch │ │ └── sbin.patch │ └── template ├── spt │ └── template ├── sq │ └── template ├── sqlcipher-devel ├── sqlcipher │ └── template ├── sqlite-devel ├── sqlite-lemon ├── sqlite-pcre │ └── template ├── sqlite-tcl ├── sqlite-tools ├── sqlite │ ├── template │ └── update ├── sqlitebrowser │ └── template ├── sqlmap │ └── template ├── sqsh-tools │ └── template ├── squashfs-tools-ng-devel ├── squashfs-tools-ng │ └── template ├── squashfs-tools │ ├── patches │ │ └── musl-missing-includes.patch │ ├── template │ └── update ├── squeak │ └── template ├── squid │ ├── INSTALL.msg │ ├── files │ │ ├── cron.daily │ │ └── squid │ │ │ └── run │ ├── template │ └── update ├── squiid │ └── template ├── squirrel-devel ├── squirrel-libs ├── squirrel │ ├── patches │ │ └── fix-version.patch │ └── template ├── srain │ └── template ├── sratom-devel ├── sratom │ └── template ├── srb2 │ └── template ├── sres │ └── template ├── srm │ └── template ├── srt-devel ├── srt │ ├── patches │ │ ├── compiler.patch │ │ └── dynamic-link.patch │ └── template ├── ssdeep │ ├── template │ └── update ├── ssh-audit │ └── template ├── sshguard │ ├── files │ │ └── sshguard-socklog │ │ │ └── run │ └── template ├── sshpass │ └── template ├── sshuttle │ └── template ├── ssl_exporter │ ├── files │ │ └── ssl_exporter │ │ │ └── run │ └── template ├── sslh │ ├── files │ │ └── sslh │ │ │ └── run │ ├── template │ └── update ├── sslscan │ └── template ├── ssoma │ ├── patches │ │ └── no-git.diff │ └── template ├── ssr │ ├── patches │ │ └── 0001-Fix-build-with-ffmpeg-5.0.patch │ └── template ├── sss-cli │ ├── patches │ │ └── 0001-Update-Cargo.lock.patch │ └── template ├── sssd-devel ├── sssd-python3 ├── sssd │ ├── files │ │ └── sssd │ │ │ └── run │ ├── patches │ │ └── configure_cross.patch │ └── template ├── ssss │ └── template ├── st-terminfo ├── st │ └── template ├── stack │ ├── patches │ │ ├── aeson.patch │ │ ├── fix-build-text.patch │ │ ├── fsnotify.patch │ │ ├── ghc9.0.2.patch │ │ ├── hsubparser.patch │ │ ├── http-download.patch │ │ ├── pantry.patch │ │ ├── persistent.patch │ │ ├── ppc.patch │ │ └── unix-compat.patch │ └── template ├── stagit │ └── template ├── stalonetray │ ├── patches │ │ └── 0001-Check-usr-share-xsl-docbook-for-DOCBOOK_ROOT.patch │ └── template ├── star ├── starfighter │ └── template ├── starplot │ ├── patches │ │ ├── 02-fix-ftbfs-and-hrdiagram-opts.diff │ │ ├── 03-fix-ftbfs-convert.diff │ │ └── 05-startup-crash.diff │ └── template ├── starship │ └── template ├── startup-bridge-udev ├── startup-notification-devel ├── startup-notification │ └── template ├── startup-tools ├── startup │ ├── INSTALL │ └── template ├── statnot │ └── template ├── stc │ └── template ├── stcgal │ └── template ├── stdm │ ├── patches │ │ └── cargo.lock.patch │ └── template ├── steam-udev-rules │ ├── files │ │ └── 99-oculus.rules │ └── template ├── steam │ ├── INSTALL │ ├── files │ │ └── README.voidlinux │ └── template ├── steamguard-cli │ └── template ├── steamos-compositor │ └── template ├── stegseek │ ├── patches │ │ └── portable-types.patch │ └── template ├── stegsnow │ ├── patches │ │ └── stegsnow.patch │ ├── template │ └── update ├── stella │ └── template ├── stellarium │ └── template ├── step-certificates │ └── template ├── step-cli │ └── template ├── stepmania │ ├── patches │ │ ├── flags.patch │ │ ├── gcc-12.patch │ │ └── messageman.patch │ ├── template │ └── update ├── sterm │ └── template ├── stern │ └── template ├── stfl-devel ├── stfl │ ├── patches │ │ ├── cross-fix.patch │ │ └── stfl-void.patch │ └── template ├── stig │ ├── template │ └── update ├── stk-data ├── stk-examples ├── stk │ ├── files │ │ └── stk.pc │ ├── patches │ │ └── lib-include-dir.patch │ └── template ├── stlarch-font │ ├── template │ └── update ├── stlink-devel ├── stlink-gtk ├── stlink │ ├── patches │ │ └── musl.patch │ └── template ├── stockfish │ ├── patches │ │ └── makefile.patch │ ├── template │ └── update ├── stoken-devel ├── stoken-gtk3 ├── stoken │ └── template ├── stopmotion │ ├── patches │ │ └── nftw-musl.patch │ └── template ├── stow │ └── template ├── strace │ └── template ├── straw-viewer ├── strawberry │ └── template ├── streamlink │ └── template ├── streampager │ └── template ├── streamripper │ ├── patches │ │ └── musl-fix.patch │ └── template ├── stremio-shell │ ├── patches │ │ └── mpv-0.35.patch │ └── template ├── stress-ng │ ├── patches │ │ └── ppc64-glibc-be-no-vecmath.patch │ └── template ├── stress │ └── template ├── strip-nondeterminism │ └── template ├── strongswan │ ├── INSTALL.msg │ ├── files │ │ └── strongswan │ │ │ └── run │ ├── patches │ │ ├── rm-test_fetch_http.patch │ │ └── rm-test_stream.patch │ ├── template │ └── update ├── stubby │ ├── INSTALL │ ├── files │ │ └── stubby │ │ │ └── run │ └── template ├── stunnel │ ├── template │ └── update ├── su-exec │ └── template ├── subfinder │ └── template ├── subjack │ └── template ├── sublime-merge-bin ├── sublime-merge │ ├── template │ └── update ├── sublime-text3-bin ├── sublime-text3 │ ├── template │ └── update ├── sublime-text4 │ ├── template │ └── update ├── subliminal │ └── template ├── subtitleeditor │ └── template ├── subtle │ ├── patches │ │ └── ruby32.patch │ ├── template │ └── update ├── subuser │ └── template ├── subversion-apache ├── subversion-devel ├── subversion-gnome-keyring-auth ├── subversion-kwallet-auth │ ├── patches │ │ ├── cross.patch │ │ └── subversion-fix-parallel-build-support-for-perl-bindings.patch │ └── template ├── subversion-perl ├── subversion-python ├── subversion │ ├── files │ │ └── svnserve │ │ │ └── run │ ├── patches │ │ └── subversion-fix-parallel-build-support-for-perl-bindings.patch │ ├── template │ └── update ├── sudo │ ├── INSTALL │ ├── REMOVE │ ├── files │ │ └── sudo.pam │ ├── patches │ │ └── install_perms.patch │ ├── template │ └── update ├── sudoku │ ├── patches │ │ └── musl-file.patch │ └── template ├── sugar │ └── template ├── suil-devel ├── suil │ └── template ├── sumo │ └── template ├── sunpinyin │ ├── patches │ │ ├── libexecdir.patch │ │ ├── pkg-config.patch │ │ ├── python-3.11.patch │ │ └── version.patch │ ├── template │ └── update ├── sunwait │ ├── patches │ │ └── fix-makefile.patch │ ├── template │ └── update ├── sunxi-mali-devel ├── sunxi-mali │ └── template ├── sunxi-tools │ ├── patches │ │ └── include_getopt.patch │ └── template ├── supercat │ └── template ├── supercollider │ ├── patches │ │ └── musl-implement-correct-xsi.patch │ ├── template │ └── update ├── superd │ └── template ├── superlu-devel ├── superlu │ └── template ├── supermin │ └── template ├── supersonic-desktop │ └── template ├── supertux2 │ ├── patches │ │ └── gcc12.patch │ └── template ├── supertuxkart-data ├── supertuxkart │ ├── patches │ │ ├── fix-crash.patch │ │ ├── fix-missing-rotation.patch │ │ ├── gcc13-fix-1.patch │ │ └── gcc13-fix-2.patch │ └── template ├── surf │ ├── patches │ │ └── libwebkit2gtk41.patch │ └── template ├── surfraw │ └── template ├── surgescript-devel ├── surgescript │ └── template ├── suricata │ ├── files │ │ └── suricata │ │ │ └── run │ ├── patches │ │ └── fix-missing-syscalls.patch │ └── template ├── sushi │ └── template ├── sutils │ ├── patches │ │ └── getopt-unsigned-char.patch │ └── template ├── sv-helper │ └── template ├── sv-netmount │ ├── files │ │ └── netmount │ │ │ ├── conf │ │ │ ├── finish │ │ │ └── run │ └── template ├── svctl │ └── template ├── svgcleaner │ └── template ├── svgpart │ └── template ├── svt-av1 │ └── template ├── swaks │ └── template ├── swappy │ └── template ├── swarp │ └── template ├── swars │ ├── files │ │ └── README.voidlinux │ └── template ├── sway-audio-idle-inhibit │ └── template ├── sway │ ├── INSTALL │ └── template ├── swaybg │ └── template ├── swayfx │ ├── INSTALL │ └── template ├── swayidle │ └── template ├── swayimg │ └── template ├── swaykbdd │ └── template ├── swaylock │ └── template ├── swayr │ ├── template │ └── update ├── swayrbar │ ├── template │ └── update ├── swaysome │ └── template ├── sweeper │ └── template ├── swell-foop │ └── template ├── swh-lv2 │ └── template ├── swh-plugins │ └── template ├── swi-prolog │ ├── template │ └── update ├── swiften-devel ├── swiften │ ├── patches │ │ ├── boost-1.83.patch │ │ ├── boost-endian.patch │ │ ├── boost-logic-tribool-io.patch │ │ ├── fix-cross-build.patch │ │ ├── fix-gcc8.patch │ │ ├── fix-libxml2-2.12.patch │ │ └── std.patch │ ├── template │ └── update ├── swig │ └── template ├── swirc │ └── template ├── switchboard-devel ├── switchboard-plug-bluetooth │ └── template ├── switchboard-plug-network │ └── template ├── switchboard-plug-printers │ └── template ├── switchboard │ ├── patches │ │ └── meson-0.61.patch │ └── template ├── swm │ └── template ├── sword-devel ├── sword │ ├── files │ │ └── sword.conf │ ├── patches │ │ └── ppc64.patch │ └── template ├── swtpm │ └── template ├── swww │ └── template ├── sx │ └── template ├── sxhkd │ └── template ├── sxiv ├── sxwm │ └── template ├── sydbox-devel ├── sydbox │ ├── patches │ │ └── missing-include.patch │ ├── template │ └── update ├── syft │ └── template ├── sylpheed │ ├── patches │ │ ├── fix-localedir.patch │ │ └── libsylph_ssl_c.patch │ ├── template │ └── update ├── symlinks │ └── template ├── symmetrica-devel ├── symmetrica │ └── template ├── sympow │ ├── files │ │ ├── test │ │ └── test.out │ ├── patches │ │ ├── first-try-without-messing-the-fpucw.patch │ │ └── sympow-2.023.6-no-pkgdatafilesbindir-warnings.patch │ ├── template │ └── update ├── synapse-compress-state │ └── template ├── synapse │ ├── files │ │ └── synapse │ │ │ └── run │ ├── patches │ │ └── poetry-core.patch │ └── template ├── syncplay │ └── template ├── syncthing-discosrv ├── syncthing-gtk │ └── template ├── syncthing-inotify ├── syncthing-relaysrv ├── syncthing │ ├── files │ │ ├── discosrv │ │ │ └── run │ │ ├── relaysrv │ │ │ └── run │ │ └── syncthing │ │ │ └── run │ └── template ├── syncthingtray-devel ├── syncthingtray-dolphin ├── syncthingtray-plasma ├── syncthingtray │ └── template ├── syndication-devel ├── syndication │ ├── template │ └── update ├── synergy-gui ├── synergy │ ├── files │ │ ├── synergyc │ │ │ └── run │ │ └── synergys │ │ │ └── run │ ├── patches │ │ ├── cmake.patch │ │ ├── qt5-build-musl.patch │ │ └── qt5-build.patch │ ├── template │ └── update ├── synfig-devel ├── synfig │ ├── patches │ │ └── ffmpeg6.patch │ ├── template │ └── update ├── synfigstudio-devel ├── synfigstudio │ ├── patches │ │ ├── fix-test-crash.patch │ │ └── musl-accessperms.patch │ ├── template │ └── update ├── syntax-highlighting-devel ├── syntax-highlighting │ ├── template │ └── update ├── synthv1 │ └── template ├── sysbench │ ├── patches │ │ └── atomics.patch │ └── template ├── sysdig │ ├── patches │ │ ├── falcosecurity-libs-nodownload.patch │ │ ├── falcosecurity-libs-stdint.patch │ │ ├── libsinsp-absl-protobuf.patch │ │ ├── nostatic.patch │ │ └── system-json-c++.patch │ └── template ├── sysexxer-ng │ ├── patches │ │ └── fix-std_string.patch │ └── template ├── sysfsutils │ └── template ├── syslinux │ ├── files │ │ └── README.voidlinux │ ├── patches │ │ ├── fix-build-with-gcc14.patch │ │ ├── fix-build-with-glibc-2.28.patch │ │ └── fix-build-with-glibc-2.36.patch │ └── template ├── sysprof-cli ├── sysprof-devel ├── sysprof │ ├── patches │ │ └── musl-missing-include.patch │ └── template ├── sysstat │ ├── template │ └── update ├── system-config-printer-udev ├── system-config-printer │ ├── patches │ │ └── python3.12.patch │ └── template ├── system-monitoring-center │ └── template ├── systemd-boot-efistub ├── systemd-boot │ ├── files │ │ ├── kernel.d │ │ │ ├── systemd-boot.conf │ │ │ ├── systemd-boot.post-install │ │ │ └── systemd-boot.post-remove │ │ └── patches │ │ │ └── musl │ │ │ └── musl-misc.patch │ ├── patches │ │ ├── musl-gshadow.patch │ │ ├── musl-malloc_info.patch │ │ ├── musl-malloc_trim.patch │ │ ├── musl-prctl.patch │ │ ├── musl-printf.patch │ │ ├── musl-rlim.patch │ │ ├── musl-strerror_r.patch │ │ └── musl-wchar_t.patch │ └── template ├── systemsettings │ └── template ├── systemtap-devel ├── systemtap │ ├── patches │ │ └── fix-musl.patch │ └── template ├── t-prot │ └── template ├── t1lib-devel ├── t1lib │ └── template ├── t1utils │ └── template ├── t2ec │ └── template ├── tab │ ├── patches │ │ └── fix-hash-32bit.diff │ ├── template │ └── update ├── tabbed │ └── template ├── tacacs-devel ├── tacacs │ ├── files │ │ └── no-reap-child-test-no-nsl.patch │ ├── patches │ │ └── python3.patch │ └── template ├── tachyon │ └── template ├── tag │ └── template ├── tageditor │ └── template ├── taglib-devel ├── taglib-extras-devel ├── taglib-extras │ ├── patches │ │ └── taglib2.patch │ └── template ├── taglib │ ├── template │ └── update ├── tagparser-devel ├── tagparser │ └── template ├── tailscale │ ├── files │ │ └── tailscaled │ │ │ └── run │ └── template ├── tailspin │ └── template ├── taisei-data ├── taisei │ ├── patches │ │ ├── openssl1.patch │ │ └── openssl2.patch │ └── template ├── tali │ └── template ├── talloc-devel ├── talloc-python3 ├── talloc │ ├── patches │ │ └── pyext.patch │ └── template ├── tangara-companion │ ├── patches │ │ └── cargo.patch │ └── template ├── tango-icon-theme │ └── template ├── tanidvr │ └── template ├── tap-plugins │ └── template ├── taplo │ ├── template │ └── update ├── tar │ └── template ├── taralli │ └── template ├── targetcli-fb │ └── template ├── tarlz │ └── template ├── tarpaulin │ ├── patches │ │ ├── 0.20.1-tests.patch │ │ └── 0.25.0-tests.patch │ └── template ├── tarsnap │ ├── template │ └── update ├── task │ ├── patches │ │ └── link-system-sqlite.patch │ ├── template │ └── update ├── taskd │ ├── INSTALL │ ├── files │ │ └── taskd │ │ │ └── run │ ├── patches │ │ └── musl.patch │ └── template ├── tasknc │ ├── patches │ │ └── ncurses-6.3.patch │ └── template ├── tasksh │ ├── template │ └── update ├── taskwarrior-tui │ └── template ├── tau │ ├── patches │ │ └── meson-0.61.patch │ └── template ├── tbb-devel ├── tbb │ ├── patches │ │ └── stricter-disable-cf-protection.patch │ └── template ├── tc-play │ ├── patches │ │ └── sysmacros.patch │ └── template ├── tcc │ └── template ├── tcl-devel ├── tcl │ ├── template │ └── update ├── tcllib │ ├── template │ └── update ├── tcltls │ └── template ├── tcpdump │ ├── patches │ │ └── tcpdump_duplicate_executable.patch │ └── template ├── tcpflow │ ├── template │ └── update ├── tcping │ └── template ├── tcpreplay │ └── template ├── tcptrack │ ├── patches │ │ └── format-time-t.patch │ └── template ├── tcsh │ ├── files │ │ ├── csh.cshrc │ │ └── csh.login │ └── template ├── tdb-devel ├── tdb-python3 ├── tdb │ └── template ├── tdrop │ └── template ├── tea │ ├── patches │ │ └── completion-fix.patch │ ├── template │ └── update ├── tealdeer │ └── template ├── teamspeak3 │ ├── files │ │ ├── teamspeak3 │ │ └── teamspeak3.desktop │ ├── template │ └── update ├── teckit │ └── template ├── tecla │ └── template ├── tectonic │ ├── template │ └── update ├── ted │ └── template ├── teensy_loader_cli │ ├── patches │ │ └── ldflags.patch │ └── template ├── teeworlds │ ├── patches │ │ ├── CVE-2021-43518.patch │ │ ├── portability.patch │ │ └── zlib-cross.patch │ ├── template │ └── update ├── tegaki-zinnia-japanese │ └── template ├── telegraf │ ├── files │ │ └── telegraf │ │ │ ├── conf │ │ │ └── run │ └── template ├── telegram-desktop │ ├── patches │ │ └── cstddef.h.patch │ ├── template │ └── update ├── telegram-tg │ └── template ├── telepathy-farstream-devel ├── telepathy-farstream │ └── template ├── telepathy-glib-devel ├── telepathy-glib │ ├── patches │ │ └── gcc14.patch │ ├── template │ └── update ├── telepathy-haze │ ├── template │ └── update ├── telepathy-idle │ ├── template │ └── update ├── telepathy-logger-devel ├── telepathy-logger │ ├── patches │ │ └── python3.patch │ └── template ├── telepathy-mission-control-devel ├── telepathy-mission-control │ ├── template │ └── update ├── telepathy-qt5-devel ├── telepathy-qt5-farstream ├── telepathy-qt5 │ └── template ├── telepresence │ └── template ├── tellico │ ├── patches │ │ └── musl.patch │ ├── template │ └── update ├── template-glib-devel ├── template-glib │ └── template ├── temporal-cli │ └── template ├── tepl-devel ├── tepl │ └── template ├── termbox-devel ├── termbox │ ├── patches │ │ ├── cflags.patch │ │ └── python-3.11.patch │ └── template ├── termdown │ └── template ├── terminator │ └── template ├── terminology │ └── template ├── terminus-font │ └── template ├── termrec │ └── template ├── termshark │ └── template ├── termsyn-font │ ├── template │ └── update ├── termtosvg │ └── template ├── ternimal │ └── template ├── terraform-docs │ └── template ├── terraform-ls │ └── template ├── terraform │ └── template ├── terragrunt │ └── template ├── tessen │ └── template ├── tesseract-ocr-afr ├── tesseract-ocr-all ├── tesseract-ocr-amh ├── tesseract-ocr-ara ├── tesseract-ocr-asm ├── tesseract-ocr-aze ├── tesseract-ocr-aze_cyrl ├── tesseract-ocr-basic ├── tesseract-ocr-bel ├── tesseract-ocr-ben ├── tesseract-ocr-bod ├── tesseract-ocr-bos ├── tesseract-ocr-bre ├── tesseract-ocr-bul ├── tesseract-ocr-cat ├── tesseract-ocr-ceb ├── tesseract-ocr-ces ├── tesseract-ocr-chi_sim ├── tesseract-ocr-chi_tra ├── tesseract-ocr-chr ├── tesseract-ocr-cos ├── tesseract-ocr-cym ├── tesseract-ocr-dan ├── tesseract-ocr-deu ├── tesseract-ocr-devel ├── tesseract-ocr-div ├── tesseract-ocr-dzo ├── tesseract-ocr-ell ├── tesseract-ocr-eng ├── tesseract-ocr-enm ├── tesseract-ocr-epo ├── tesseract-ocr-est ├── tesseract-ocr-eus ├── tesseract-ocr-fao ├── tesseract-ocr-fas ├── tesseract-ocr-fil ├── tesseract-ocr-fin ├── tesseract-ocr-fra ├── tesseract-ocr-frk ├── tesseract-ocr-frm ├── tesseract-ocr-fry ├── tesseract-ocr-gla ├── tesseract-ocr-gle ├── tesseract-ocr-glg ├── tesseract-ocr-grc ├── tesseract-ocr-guj ├── tesseract-ocr-hat ├── tesseract-ocr-heb ├── tesseract-ocr-hin ├── tesseract-ocr-hrv ├── tesseract-ocr-hun ├── tesseract-ocr-hye ├── tesseract-ocr-iku ├── tesseract-ocr-ind ├── tesseract-ocr-isl ├── tesseract-ocr-ita ├── tesseract-ocr-ita_old ├── tesseract-ocr-jav ├── tesseract-ocr-jpn ├── tesseract-ocr-kan ├── tesseract-ocr-kat ├── tesseract-ocr-kat_old ├── tesseract-ocr-kaz ├── tesseract-ocr-khm ├── tesseract-ocr-kir ├── tesseract-ocr-kmr ├── tesseract-ocr-kor ├── tesseract-ocr-lao ├── tesseract-ocr-lat ├── tesseract-ocr-lav ├── tesseract-ocr-lit ├── tesseract-ocr-ltz ├── tesseract-ocr-mal ├── tesseract-ocr-mar ├── tesseract-ocr-mkd ├── tesseract-ocr-mlt ├── tesseract-ocr-mon ├── tesseract-ocr-mri ├── tesseract-ocr-msa ├── tesseract-ocr-mya ├── tesseract-ocr-nep ├── tesseract-ocr-nld ├── tesseract-ocr-nor ├── tesseract-ocr-oci ├── tesseract-ocr-ori ├── tesseract-ocr-pan ├── tesseract-ocr-pol ├── tesseract-ocr-por ├── tesseract-ocr-pus ├── tesseract-ocr-que ├── tesseract-ocr-ron ├── tesseract-ocr-rus ├── tesseract-ocr-san ├── tesseract-ocr-script-Arabic ├── tesseract-ocr-script-Armenian ├── tesseract-ocr-script-Bengali ├── tesseract-ocr-script-Canadian_Aboriginal ├── tesseract-ocr-script-Cherokee ├── tesseract-ocr-script-Cyrillic ├── tesseract-ocr-script-Devanagari ├── tesseract-ocr-script-Ethiopic ├── tesseract-ocr-script-Fraktur ├── tesseract-ocr-script-Georgian ├── tesseract-ocr-script-Greek ├── tesseract-ocr-script-Gujarati ├── tesseract-ocr-script-Gurmukhi ├── tesseract-ocr-script-HanS ├── tesseract-ocr-script-HanT ├── tesseract-ocr-script-Hangul ├── tesseract-ocr-script-Hebrew ├── tesseract-ocr-script-Japanese ├── tesseract-ocr-script-Kannada ├── tesseract-ocr-script-Khmer ├── tesseract-ocr-script-Lao ├── tesseract-ocr-script-Latin ├── tesseract-ocr-script-Malayalam ├── tesseract-ocr-script-Myanmar ├── tesseract-ocr-script-Oriya ├── tesseract-ocr-script-Sinhala ├── tesseract-ocr-script-Syriac ├── tesseract-ocr-script-Tamil ├── tesseract-ocr-script-Telugu ├── tesseract-ocr-script-Thaana ├── tesseract-ocr-script-Thai ├── tesseract-ocr-script-Tibetan ├── tesseract-ocr-script-Vietnamese ├── tesseract-ocr-sin ├── tesseract-ocr-slk ├── tesseract-ocr-slv ├── tesseract-ocr-snd ├── tesseract-ocr-spa ├── tesseract-ocr-spa_old ├── tesseract-ocr-sqi ├── tesseract-ocr-srp ├── tesseract-ocr-srp_latn ├── tesseract-ocr-sun ├── tesseract-ocr-swa ├── tesseract-ocr-swe ├── tesseract-ocr-syr ├── tesseract-ocr-tam ├── tesseract-ocr-tat ├── tesseract-ocr-tel ├── tesseract-ocr-tgk ├── tesseract-ocr-tgl ├── tesseract-ocr-tha ├── tesseract-ocr-tir ├── tesseract-ocr-ton ├── tesseract-ocr-tools ├── tesseract-ocr-tur ├── tesseract-ocr-uig ├── tesseract-ocr-ukr ├── tesseract-ocr-urd ├── tesseract-ocr-uzb ├── tesseract-ocr-uzb_cyrl ├── tesseract-ocr-vie ├── tesseract-ocr-yid ├── tesseract-ocr-yor ├── tesseract-ocr │ ├── files │ │ └── README.voidlinux │ ├── patches │ │ ├── disable-neon.patch │ │ └── musl-sys-time.patch │ ├── template │ └── update ├── tesseract │ ├── files │ │ ├── tesseract.desktop │ │ └── tesseract.sh │ ├── patches │ │ └── gamma.patch │ └── template ├── testdisk │ ├── template │ └── update ├── testssl.sh │ └── template ├── tevent-devel ├── tevent-python3 ├── tevent │ └── template ├── tewi-font │ └── template ├── texi2html │ └── template ├── texi2mdoc │ ├── patches │ │ └── musl.patch │ ├── template │ └── update ├── texinfo │ ├── INSTALL │ ├── REMOVE │ ├── patches │ │ └── fix-configure-on-cross.patch │ ├── template │ └── update ├── texlab │ └── template ├── texlive-BibTeX ├── texlive-ConTeXt ├── texlive-LuaTeX ├── texlive-LuaTeX-devel ├── texlive-PythonTeX ├── texlive-Xdvi ├── texlive-XeTeX ├── texlive-basic │ └── template ├── texlive-bibtexextra │ └── template ├── texlive-bin │ ├── files │ │ ├── README.voidlinux │ │ └── texlive.sh │ └── template ├── texlive-core │ └── template ├── texlive-devel ├── texlive-dvi ├── texlive-fontsextra │ └── template ├── texlive-formatsextra │ └── template ├── texlive-full │ └── template ├── texlive-games │ └── template ├── texlive-humanities │ └── template ├── texlive-lang │ └── template ├── texlive-langchinese │ └── template ├── texlive-langcyrillic │ └── template ├── texlive-langextra │ └── template ├── texlive-langgreek │ └── template ├── texlive-langjapanese │ └── template ├── texlive-langkorean │ └── template ├── texlive-latexextra │ └── template ├── texlive-latexmk ├── texlive-minimal │ └── template ├── texlive-most │ └── template ├── texlive-music │ └── template ├── texlive-pictures │ └── template ├── texlive-pstricks │ └── template ├── texlive-publishers │ └── template ├── texlive-science │ └── template ├── texlive │ ├── files │ │ ├── luajit-patches │ │ │ ├── aarch64-Fix-exit-stub-patching.patch │ │ │ └── aarch64-register-allocation-bug-fix.patch │ │ ├── remove-himktables.patch │ │ └── tlmgr │ ├── patches │ │ ├── cross-luajit.patch │ │ ├── freetype2-config.patch │ │ ├── kpsewhich-default-progname.patch │ │ ├── luajit-arch-fixes.patch │ │ ├── relax-zlib-version-check.patch │ │ ├── tlmgr.patch │ │ └── updmap.patch │ └── template ├── texlive2014-bin │ ├── INSTALL │ ├── REMOVE │ ├── files │ │ ├── README.voidlinux │ │ └── void.profile │ ├── template │ └── update ├── texlive2016-bin │ ├── INSTALL │ ├── REMOVE │ ├── files │ │ ├── README.voidlinux │ │ └── void.profile │ ├── template │ └── update ├── texlive2017-bin │ ├── INSTALL │ ├── REMOVE │ ├── files │ │ ├── README.voidlinux │ │ └── void.profile │ ├── template │ └── update ├── texlive2018-bin │ ├── INSTALL │ ├── REMOVE │ ├── files │ │ ├── README.voidlinux │ │ └── void.profile │ ├── template │ └── update ├── texlive2019-bin │ ├── INSTALL │ ├── REMOVE │ ├── files │ │ ├── README.voidlinux │ │ └── void.profile │ └── template ├── texlive2020-bin │ ├── INSTALL │ ├── REMOVE │ ├── files │ │ ├── README.voidlinux │ │ └── void.profile │ └── template ├── texlive2021-bin │ ├── INSTALL │ ├── REMOVE │ ├── files │ │ ├── README.voidlinux │ │ └── void.profile │ └── template ├── texlive2022-bin │ ├── INSTALL │ ├── REMOVE │ ├── files │ │ ├── README.voidlinux │ │ └── void.profile │ └── template ├── texlive2023-bin │ ├── INSTALL │ ├── REMOVE │ ├── files │ │ ├── README.voidlinux │ │ └── void.profile │ └── template ├── texlive2024-bin │ ├── INSTALL │ ├── REMOVE │ ├── files │ │ ├── README.voidlinux │ │ └── void.profile │ └── template ├── texlive2025-bin │ ├── INSTALL │ ├── REMOVE │ ├── files │ │ ├── README.voidlinux │ │ └── void.profile │ └── template ├── texmaker │ ├── template │ └── update ├── texstudio │ ├── patches │ │ ├── 30-disable-auto-update.patch │ │ └── 31-fix-desktop.patch │ └── template ├── textadept │ ├── template │ └── update ├── textosaurus │ ├── patches │ │ ├── fix-missing-limits-include.patch │ │ └── qt5-5.15.0.patch │ └── template ├── texworks │ ├── patches │ │ └── cross.patch │ ├── template │ └── update ├── tflint │ └── template ├── tftp-hpa │ ├── files │ │ └── tftpd-hpa │ │ │ └── run │ └── template ├── tg_owt │ ├── patches │ │ └── fix-missing-cstdint-include-musl.patch │ ├── template │ └── update ├── tgt │ ├── patches │ │ └── musl-__wordsize.patch │ └── template ├── thc-hydra │ └── template ├── the_silver_searcher │ └── template ├── thefuck │ ├── patches │ │ └── 0420442e778dd7bc53bdbdb50278eea2c207dc74.patch │ └── template ├── thermald │ ├── files │ │ └── thermald │ │ │ └── run │ └── template ├── thin-provisioning-tools │ ├── patches │ │ └── fix-musl.patch │ └── template ├── thinglaunch │ ├── template │ └── update ├── thingmenu │ ├── template │ └── update ├── thingylaunch │ ├── patches │ │ └── fix-cmake-flags-override.patch │ └── template ├── thinkfan │ ├── files │ │ ├── thinkfan │ │ │ └── run │ │ └── thinkpad_acpi.conf │ └── template ├── thinkpad-scripts │ └── template ├── threadweaver-devel ├── threadweaver │ ├── template │ └── update ├── threejs-sage │ ├── template │ └── update ├── thrift-devel ├── thrift │ ├── patches │ │ ├── network-tests.patch │ │ └── skip-old-tls-tests.patch │ └── template ├── thttpd │ ├── files │ │ └── thttpd │ │ │ └── run │ └── template ├── thunar-archive-plugin │ └── template ├── thunar-media-tags-plugin │ └── template ├── thunar-volman │ └── template ├── thunderbird-i18n-af ├── thunderbird-i18n-ar ├── thunderbird-i18n-ast ├── thunderbird-i18n-be ├── thunderbird-i18n-bg ├── thunderbird-i18n-br ├── thunderbird-i18n-ca ├── thunderbird-i18n-cak ├── thunderbird-i18n-cs ├── thunderbird-i18n-cy ├── thunderbird-i18n-da ├── thunderbird-i18n-de ├── thunderbird-i18n-dsb ├── thunderbird-i18n-el ├── thunderbird-i18n-en-CA ├── thunderbird-i18n-en-GB ├── thunderbird-i18n-en-US ├── thunderbird-i18n-es-AR ├── thunderbird-i18n-es-ES ├── thunderbird-i18n-es-MX ├── thunderbird-i18n-et ├── thunderbird-i18n-eu ├── thunderbird-i18n-fi ├── thunderbird-i18n-fr ├── thunderbird-i18n-fy-NL ├── thunderbird-i18n-ga-IE ├── thunderbird-i18n-gd ├── thunderbird-i18n-gl ├── thunderbird-i18n-he ├── thunderbird-i18n-hr ├── thunderbird-i18n-hsb ├── thunderbird-i18n-hu ├── thunderbird-i18n-hy-AM ├── thunderbird-i18n-id ├── thunderbird-i18n-is ├── thunderbird-i18n-it ├── thunderbird-i18n-ja ├── thunderbird-i18n-ka ├── thunderbird-i18n-kab ├── thunderbird-i18n-kk ├── thunderbird-i18n-ko ├── thunderbird-i18n-lt ├── thunderbird-i18n-lv ├── thunderbird-i18n-ms ├── thunderbird-i18n-nb-NO ├── thunderbird-i18n-nl ├── thunderbird-i18n-nn-NO ├── thunderbird-i18n-pa-IN ├── thunderbird-i18n-pl ├── thunderbird-i18n-pt-BR ├── thunderbird-i18n-pt-PT ├── thunderbird-i18n-rm ├── thunderbird-i18n-ro ├── thunderbird-i18n-ru ├── thunderbird-i18n-sk ├── thunderbird-i18n-sl ├── thunderbird-i18n-sq ├── thunderbird-i18n-sr ├── thunderbird-i18n-sv-SE ├── thunderbird-i18n-th ├── thunderbird-i18n-tr ├── thunderbird-i18n-uk ├── thunderbird-i18n-uz ├── thunderbird-i18n-vi ├── thunderbird-i18n-zh-CN ├── thunderbird-i18n-zh-TW ├── thunderbird-i18n │ ├── files │ │ └── update-lang-list │ └── template ├── thunderbird │ ├── files │ │ ├── mozconfig │ │ ├── stab.h │ │ ├── thunderbird.desktop │ │ └── vendor.js │ ├── patches │ │ ├── big-endian-image-decoders.patch │ │ ├── fix-arm-opus-include.patch │ │ ├── fix-i386-fdlibm.patch │ │ ├── fix-i686-ppc-musl.patch │ │ ├── fix-image-format-warning.patch │ │ ├── fix-webrtc-glibcisms.patch │ │ ├── flac-no-ffvpx.patch │ │ ├── lto-thin.patch │ │ ├── mallinfo.patch │ │ ├── ppc32-fix-build.patch │ │ ├── python3.13.patch │ │ ├── rust-configure.patch │ │ ├── sandbox-fork.patch │ │ ├── sandbox-largefile.patch │ │ ├── skia-sucks1.patch │ │ └── skia-sucks3.patch │ ├── template │ └── update ├── tickr │ ├── patches │ │ └── musl-fix-unknown-fd_set.patch │ └── template ├── tidy5 │ ├── patches │ │ └── allow-cross.patch │ └── template ├── tif22pnm │ └── template ├── tiff-devel ├── tiff │ ├── template │ └── update ├── tiff5 │ ├── patches │ │ ├── libtiff5-4.4.0-CVE-2022-34526.patch │ │ └── libtiff5-4.4.0-fpe_tiffcrop.patch │ └── template ├── tig │ └── template ├── tigervnc │ └── template ├── tikzit │ ├── patches │ │ ├── missing-source-files.cmake.patch │ │ └── no-update-check.patch │ └── template ├── tilda │ └── template ├── tilde │ └── template ├── tilix │ ├── files │ │ └── musl-hacks.patch │ ├── patches │ │ ├── disable-appstream-test.patch │ │ └── llvm-unwind.patch │ └── template ├── time │ ├── template │ └── update ├── timelimit │ └── template ├── timer-cli │ └── template ├── timeshift │ └── template ├── timewarrior │ ├── template │ └── update ├── timg │ ├── patches │ │ └── musl.patch │ └── template ├── timidity │ ├── files │ │ └── README.voidlinux │ ├── patches │ │ ├── gcc14.patch │ │ └── sffile-2gb.patch │ ├── template │ └── update ├── tin │ ├── template │ └── update ├── tinc │ ├── files │ │ └── tincd │ │ │ └── run │ ├── template │ └── update ├── tini │ └── template ├── tint │ └── template ├── tint2 │ └── template ├── tint2conf ├── tintin │ └── template ├── tiny │ └── template ├── tinyclipboard-devel ├── tinyclipboard │ └── template ├── tinycron │ └── template ├── tinymist │ ├── template │ └── update ├── tinyproxy │ ├── files │ │ └── tinyproxy │ │ │ └── run │ └── template ├── tinyramfs │ ├── files │ │ ├── config │ │ ├── kernel-hook-postinst │ │ └── kernel-hook-postrm │ └── template ├── tinysparql-devel ├── tinysparql │ ├── patches │ │ ├── disable-cli-test.patch │ │ └── gh-ci-timeout.patch │ ├── template │ └── update ├── tinyssh │ ├── files │ │ └── tinysshd │ │ │ └── run │ ├── template │ └── update ├── tinywm │ └── template ├── tinyxml-devel ├── tinyxml │ ├── files │ │ └── tinyxml.pc.in │ ├── patches │ │ ├── entity.patch │ │ └── tinyxml-2.5.3-stl.patch │ └── template ├── tinyxml2-devel ├── tinyxml2 │ └── template ├── tio │ └── template ├── tiptop │ └── template ├── tiramisu │ └── template ├── tiv │ └── template ├── tk-devel ├── tk │ ├── template │ └── update ├── tklib │ └── template ├── tldr │ └── template ├── tllist │ └── template ├── tlp-rdw ├── tlp │ ├── files │ │ ├── tlp.resume │ │ ├── tlp.suspend │ │ └── tlp │ │ │ ├── finish │ │ │ └── run │ └── template ├── tlpui │ └── template ├── tlsh-devel ├── tlsh │ ├── patches │ │ ├── fix-cflags.patch │ │ └── musl.patch │ ├── template │ └── update ├── tmate │ ├── patches │ │ └── msgpack-c.patch │ └── template ├── tmfs │ ├── patches │ │ └── S_IFDIR.patch │ ├── template │ └── update ├── tmines │ ├── patches │ │ └── cmake.patch │ └── template ├── tml │ └── template ├── tmon ├── tmplgen │ └── template ├── tmux-mem-cpu-load │ └── template ├── tmux-xpanes │ └── template ├── tmux │ ├── patches │ │ └── reallocarray.patch │ ├── template │ └── update ├── tmuxc │ └── template ├── tnftp │ ├── patches │ │ └── cross.patch │ └── template ├── todoist │ └── template ├── todoman │ └── template ├── tofi │ ├── patches │ │ └── fix-32bit-tests.patch │ └── template ├── toggle-ht │ └── template ├── toilet │ └── template ├── tokei │ ├── patches │ │ └── 067fc4487ef2a8f53c29124b0aa3e9e793bfaadc.patch │ └── template ├── tokyocabinet-devel ├── tokyocabinet │ └── template ├── tolua-devel ├── tolua │ └── template ├── toluapp-devel ├── toluapp │ └── template ├── tomb │ └── template ├── toot │ └── template ├── topgrade │ └── template ├── tor │ ├── INSTALL │ ├── files │ │ └── tor │ │ │ └── run │ ├── patches │ │ └── ppc.patch │ └── template ├── torbrowser-launcher │ └── template ├── torsocks │ ├── patches │ │ └── implicit-function-decl.patch │ └── template ├── totem-devel ├── totem-pl-parser-devel ├── totem-pl-parser │ └── template ├── totem │ └── template ├── touchegg │ ├── files │ │ └── touchegg │ │ │ └── run │ └── template ├── tox │ ├── patches │ │ └── fix-testing.patch │ ├── template │ └── update ├── toxcore-devel ├── toxcore │ ├── files │ │ └── tox-bootstrapd │ │ │ └── run │ └── template ├── toxic │ └── template ├── toybox-static ├── toybox │ └── template ├── tp_smapi-dkms │ ├── files │ │ └── dkms.conf │ ├── template │ └── update ├── tpacpi-bat │ └── template ├── tpm-tools │ └── template ├── tpm │ ├── patches │ │ └── gpg.patch │ └── template ├── tpm2-tools │ ├── patches │ │ └── bootstrap-no-git.patch │ └── template ├── tpm2-totp-devel ├── tpm2-totp │ └── template ├── tpm2-tss-devel ├── tpm2-tss │ ├── patches │ │ ├── dont-run-sysusers-in-Makefile.patch │ │ └── musl-32bit-stat-workaround.patch │ └── template ├── tqftpserv │ ├── files │ │ └── tqftpserv │ │ │ └── run │ └── template ├── tqsl │ ├── patches │ │ └── icon.patch │ └── template ├── trace-cmd │ ├── patches │ │ ├── musl-__bswap64.patch │ │ ├── musl-limits_h.patch │ │ └── no-rpath.patch │ ├── template │ └── update ├── tracebox │ ├── template │ └── update ├── traceroute │ ├── patches │ │ └── musl.patch │ └── template ├── trackballs │ ├── patches │ │ └── respect-our-cpp.patch │ └── template ├── tracker ├── tracker-devel ├── tracker-miners ├── tracker3 ├── tracker3-devel ├── tracker3-miners ├── trackma │ └── template ├── transifex-cli │ ├── patches │ │ └── disable-self-updates.patch │ └── template ├── translate-shell │ └── template ├── transmission-gtk ├── transmission-qt ├── transmission-remote-gtk │ └── template ├── transmission │ ├── files │ │ └── transmission-daemon │ │ │ └── run │ ├── template │ └── update ├── transset │ └── template ├── trash-cli │ └── template ├── trayer-srg │ ├── template │ └── update ├── tre-devel ├── tre │ ├── template │ └── update ├── tree-sitter-devel ├── tree-sitter │ └── template ├── tree │ └── template ├── treefmt │ └── template ├── treeline │ └── template ├── treesheets │ ├── files │ │ └── treesheets.sh.in │ ├── patches │ │ └── fix-musl-glob-tilde.patch │ └── template ├── tremc │ └── template ├── trident-icons │ └── template ├── trident-networkmgr │ └── template ├── triehash │ └── template ├── triforce │ └── template ├── triggerhappy │ └── template ├── trinity │ ├── patches │ │ ├── arch.h.patch │ │ └── stdint_h.patch │ └── template ├── trippy │ ├── INSTALL │ └── template ├── trivy │ └── template ├── trn │ ├── files │ │ └── Policy.sh │ ├── template │ └── update ├── trojita │ ├── patches │ │ ├── 39772585033c1c0aff96f297e93de7be53f9b114.patch │ │ └── QPainterPath.patch │ └── template ├── trollock │ └── template ├── trousers-devel ├── trousers │ ├── INSTALL │ ├── REMOVE │ ├── files │ │ └── tcsd │ │ │ └── run │ ├── patches │ │ └── musl-getpwent_r.patch │ └── template ├── trurl │ └── template ├── trx │ └── template ├── tryton │ └── template ├── ts │ └── template ├── tslib-devel ├── tslib-tools ├── tslib │ └── template ├── tsocks │ ├── patches │ │ └── fix-musl.patch │ ├── template │ └── update ├── ttf-bitstream-vera │ └── template ├── ttf-material-icons ├── ttf-opensans │ └── template ├── ttf-ubuntu-font-family │ ├── template │ └── update ├── ttf-vista-fonts │ └── template ├── ttfautohint │ ├── patches │ │ └── musl_bool.patch │ └── template ├── tty-clock │ └── template ├── tty-solitaire │ └── template ├── ttyd │ └── template ├── ttyplot │ └── template ├── ttyqr │ └── template ├── ttyrec │ ├── patches │ │ ├── musl.patch │ │ └── tty.diff │ └── template ├── tudu │ └── template ├── tuigreet │ └── template ├── tuimoji │ └── template ├── tuir │ ├── patches │ │ └── 0001-Adjust-for-python-3.12-method-removal.patch │ └── template ├── tumbler-devel ├── tumbler-plugins-extra ├── tumbler │ └── template ├── tuntox │ ├── files │ │ ├── README.voidlinux │ │ └── tuntox │ │ │ └── run │ └── template ├── tup │ ├── patches │ │ └── mips.patch │ └── template ├── turbostat ├── turbovnc-viewer ├── turbovnc │ ├── patches │ │ └── viewer-32bit.patch │ └── template ├── turnstile │ ├── files │ │ ├── README.voidlinux │ │ ├── dbus.run │ │ └── turnstiled │ │ │ └── run │ └── template ├── tuxedo-drivers │ └── template ├── tuxedo-keyboard ├── tuxedo-yt6801 │ └── template ├── tuxguitar │ └── template ├── tuxpaint-stamps │ ├── template │ └── update ├── tuxpaint │ ├── patches │ │ └── 0.9.31--cflags.patch │ ├── template │ └── update ├── tvbrowser │ ├── template │ └── update ├── tvheadend │ └── template ├── twaindsm-devel ├── twaindsm-doc ├── twaindsm │ └── template ├── tweak │ └── template ├── tweeny │ └── template ├── twemoji │ └── template ├── twitch-cli │ └── template ├── twm │ └── template ├── twoftpd │ ├── files │ │ └── twoftpd-anon │ │ │ ├── env │ │ │ ├── CHROOT │ │ │ └── HOME │ │ │ └── run │ ├── patches │ │ └── log2-conflict.patch │ └── template ├── twolame-devel ├── twolame │ └── template ├── tworld │ ├── patches │ │ └── destdir.patch │ └── template ├── txr │ ├── template │ └── update ├── txt2man │ └── template ├── txt2tags │ └── template ├── txtw │ └── template ├── typespeed │ ├── INSTALL │ ├── patches │ │ └── time.patch │ └── template ├── typioca │ └── template ├── typos-lsp │ └── template ├── typos │ └── template ├── typst-lsp │ └── template ├── typst │ └── template ├── typstfmt │ └── template ├── typstyle │ └── template ├── typtea │ └── template ├── tzdata ├── tzupdate │ └── template ├── tzutils │ ├── patches │ │ ├── only-check-relevant.patch │ │ └── reexec-with-bash.patch │ ├── template │ ├── tzdata.INSTALL │ └── update ├── u-boot-menu │ ├── files │ │ ├── extlinux.default │ │ └── kernel.d │ │ │ └── extlinux │ └── template ├── u-boot-tools │ ├── patches │ │ └── musl.patch │ ├── template │ └── update ├── u2f-hidraw-policy │ ├── patches │ │ └── Makefile.patch │ └── template ├── u9fs │ ├── patches │ │ ├── makefile.patch │ │ └── musl-no-rhosts-auth.patch │ └── template ├── uacme │ └── template ├── uberwriter │ └── template ├── uboot-mkimage ├── ubridge │ ├── INSTALL │ └── template ├── uchardet-devel ├── uchardet │ └── template ├── ucl │ ├── patches │ │ └── gcc6.patch │ └── template ├── ucommon-devel ├── ucommon-tools ├── ucommon │ └── template ├── ucpp │ └── template ├── ucspi-ssl-devel ├── ucspi-ssl │ ├── patches │ │ └── fix-syntax.patch │ ├── template │ └── update ├── ucspi-tcp │ ├── patches │ │ ├── 0000_cross.patch │ │ ├── 0001-rblsmtpd.c-don-t-use-a-the-default-rbl.maps.vix.com.diff │ │ ├── 0002-Makefile-target-choose-do-not-depend-on-conf-home.diff │ │ └── 0003-Apply-fefe-s-ucspi-tcp-0.88-ipv6.diff19-ipv6-patch.diff │ ├── template │ └── update ├── ucspi-tcp6 │ └── template ├── udevil │ └── template ├── udftools │ └── template ├── udis86-devel ├── udis86 │ └── template ├── udiskie │ └── template ├── udisks2-devel ├── udisks2 │ ├── template │ └── update ├── udns-devel ├── udns │ └── template ├── udptunnel │ ├── patches │ │ ├── 01-multicast.diff │ │ ├── 02-strlen-prototype.diff │ │ └── rpc.patch │ └── template ├── ueberzug │ └── template ├── ufetch │ └── template ├── ufiformat │ └── template ├── ufraw ├── uftp │ └── template ├── uftrace │ └── template ├── ufw-extras │ └── template ├── ufw │ ├── files │ │ └── ufw │ │ │ ├── finish │ │ │ └── run │ ├── patches │ │ └── fix_build_paths.patch │ └── template ├── ugdb │ ├── patches │ │ ├── 0001-unbreak-i128-support.patch │ │ └── 0002-fix-build-on-platforms-without-64-bit-atomics.patch │ └── template ├── uget-integrator │ └── template ├── uget │ └── template ├── ugrep │ └── template ├── uhd-devel ├── uhd-doc ├── uhd │ └── template ├── uhttpmock-devel ├── uhttpmock │ └── template ├── uhubctl │ ├── patches │ │ └── Makefile.patch │ └── template ├── uid_wrapper │ ├── patches │ │ └── uid_wrapper-fix-for-cmocka-1.1.6.patch │ └── template ├── uim-anthy ├── uim-devel ├── uim-gtk2 ├── uim-gtk3 ├── uim-qt ├── uim-qt6 ├── uim-skk ├── uim │ ├── files │ │ └── README.voidlinux │ ├── patches │ │ ├── anthy-0.4.patch │ │ ├── fix-segfault.patch │ │ └── uim-kde.patch │ └── template ├── ukify ├── ulauncher │ ├── patches │ │ ├── libwebkit2gtk41.patch │ │ └── shutup-distutils.patch │ └── template ├── ulogd │ ├── files │ │ ├── ulogd.logrotate │ │ └── ulogd │ │ │ └── run │ ├── patches │ │ └── 00-musl-path.patch │ └── template ├── umbrello │ └── template ├── umoci │ ├── patches │ │ └── which.patch │ └── template ├── umockdev-devel ├── umockdev │ └── template ├── umurmur │ ├── files │ │ └── umurmurd │ │ │ └── run │ └── template ├── unar │ └── template ├── unbound-devel ├── unbound │ ├── files │ │ ├── unbound.conf │ │ └── unbound │ │ │ └── run │ ├── template │ └── update ├── unclutter-xfixes │ └── template ├── unclutter │ └── template ├── uncrustify │ └── template ├── unflac │ └── template ├── uni │ └── template ├── unibilium-devel ├── unibilium │ └── template ├── unicc │ └── template ├── unicode-character-database │ └── template ├── unicode-emoji │ └── template ├── unicorn-devel ├── unicorn-python3 ├── unicorn │ └── template ├── unifdef │ └── template ├── unison │ └── template ├── units │ └── template ├── unittest-cpp │ └── template ├── uniutils │ └── template ├── unixodbc-devel ├── unixodbc │ ├── template │ └── update ├── unknown-horizons │ ├── patches │ │ ├── collections_Iterable.patch │ │ ├── py38.patch │ │ ├── py39.patch │ │ └── remove_atlas_generation.patch │ └── template ├── unoconv │ └── template ├── unp │ └── template ├── unpaper │ └── template ├── unrar │ ├── template │ └── update ├── unshield │ └── template ├── unzip │ ├── patches │ │ ├── 0001-Fix-CVE-2016-9844-rhbz-1404283.patch │ │ ├── CVE-2021-4217.patch │ │ ├── CVE-2022-0529.patch │ │ ├── CVE-2022-0530.patch │ │ ├── series │ │ ├── unzip-6.0-COVSCAN-fix-unterminated-string.patch │ │ ├── unzip-6.0-alt-iconv-utf8-print.patch │ │ ├── unzip-6.0-alt-iconv-utf8.patch │ │ ├── unzip-6.0-attribs-overflow.patch │ │ ├── unzip-6.0-bzip2-configure.patch │ │ ├── unzip-6.0-caseinsensitive.patch │ │ ├── unzip-6.0-close.patch │ │ ├── unzip-6.0-configure.patch │ │ ├── unzip-6.0-cve-2014-8139.patch │ │ ├── unzip-6.0-cve-2014-8140.patch │ │ ├── unzip-6.0-cve-2014-8141.patch │ │ ├── unzip-6.0-cve-2018-1000035-heap-based-overflow.patch │ │ ├── unzip-6.0-cve-2018-18384.patch │ │ ├── unzip-6.0-exec-shield.patch │ │ ├── unzip-6.0-fix-false-overlap-detection-on-32bit-systems.patch │ │ ├── unzip-6.0-fix-recmatch.patch │ │ ├── unzip-6.0-format-secure.patch │ │ ├── unzip-6.0-heap-overflow-infloop.patch │ │ ├── unzip-6.0-manpage-fix.patch │ │ ├── unzip-6.0-overflow-long-fsize.patch │ │ ├── unzip-6.0-overflow.patch │ │ ├── unzip-6.0-symlink.patch │ │ ├── unzip-6.0-timestamp.patch │ │ ├── unzip-6.0-valgrind.patch │ │ ├── unzip-6.0-x-option.patch │ │ ├── unzip-zipbomb-manpage.patch │ │ ├── unzip-zipbomb-part1.patch │ │ ├── unzip-zipbomb-part2.patch │ │ ├── unzip-zipbomb-part3.patch │ │ ├── unzip-zipbomb-part4.patch │ │ ├── unzip-zipbomb-part5.patch │ │ └── unzip-zipbomb-part6.patch │ ├── template │ └── update ├── up │ └── template ├── up_rewrite │ ├── files │ │ └── up_rewrite │ │ │ └── run │ └── template ├── upmpdcli │ ├── files │ │ └── upmpdcli │ │ │ └── run │ └── template ├── upower-devel ├── upower │ └── template ├── upterm │ └── template ├── uptimed │ ├── files │ │ └── uptimed │ │ │ └── run │ └── template ├── upx │ └── template ├── urbanterror-data │ ├── template │ └── update ├── urbanterror │ ├── files │ │ ├── urbanterror.desktop │ │ └── urbanterror.png │ ├── patches │ │ └── musl.patch │ ├── template │ └── update ├── urh │ ├── patches │ │ └── numpy.patch │ └── template ├── uriparser-devel ├── uriparser │ └── template ├── urlscan │ └── template ├── urlview │ ├── patches │ │ └── glibc-missing-include.patch │ └── template ├── urlwatch │ └── template ├── urusai │ └── template ├── urxvt-bidi ├── urxvt-perls │ └── template ├── urxvtconfig │ └── template ├── usb-modeswitch-data │ ├── patches │ │ └── 0001-fix-destdir.patch │ └── template ├── usb-modeswitch │ ├── patches │ │ └── 0001-fix-destdir.patch │ └── template ├── usb-reset │ └── template ├── usbguard-devel ├── usbguard │ ├── files │ │ └── usbguard │ │ │ └── run │ ├── patches │ │ └── musl.patch │ └── template ├── usbip ├── usbkvm │ └── template ├── usbmuxd │ ├── files │ │ └── usbmuxd │ │ │ └── run │ ├── template │ └── update ├── usbredir-devel ├── usbredir │ ├── template │ └── update ├── usbrelay │ └── template ├── usbtop │ ├── template │ └── update ├── usbutils │ └── template ├── usql │ └── template ├── usrsctp │ └── template ├── utfcpp │ └── template ├── uthash │ └── template ├── util-linux-common │ ├── template │ └── update ├── util-linux-libs ├── util-linux │ ├── INSTALL │ ├── files │ │ ├── common.pam │ │ ├── login.pam │ │ ├── su.pam │ │ └── uuidd │ │ │ └── run │ ├── patches │ │ ├── default-PATH.patch │ │ └── fix_manpage_redirects.patch │ └── template ├── utox │ └── template ├── uucp │ ├── INSTALL │ ├── files │ │ ├── uulog.1 │ │ ├── uuname.1 │ │ ├── uupick.1 │ │ ├── uusched.8 │ │ └── uuto.1 │ ├── patches │ │ ├── compiler-warnings.patch │ │ ├── implicit-function-decl.patch │ │ ├── int-type.patch │ │ ├── manpage.patch │ │ ├── no-sleep.patch │ │ ├── option-to-not-force-hw-control.patch │ │ ├── spelling.patch │ │ ├── uucp-alt-misc.patch │ │ ├── uucp-org.patch │ │ ├── wait-for-correct-parent.patch │ │ └── zpipe-improved-pipe.patch │ └── template ├── uv │ └── template ├── uwm │ ├── patches │ │ └── fix-docdir.patch │ └── template ├── uwsgi-cgi ├── uwsgi-python3 ├── uwsgi │ └── template ├── v2ray │ ├── files │ │ └── v2ray │ │ │ └── run │ └── template ├── v4l-utils-devel ├── v4l-utils │ ├── patches │ │ ├── musl-ioctl.patch │ │ ├── musl.patch │ │ └── sbin.patch │ └── template ├── v4l2grab │ └── template ├── v4l2loopback │ └── template ├── vagrant │ ├── files │ │ └── vagrant │ └── template ├── vala-devel ├── vala-doc ├── vala-language-server │ └── template ├── vala-panel-appmenu-data ├── vala-panel-appmenu │ ├── patches │ │ ├── LINGUAS-remove-a-duplicate-entry.patch │ │ └── no-gtk2.patch │ └── template ├── vala-panel-devel ├── vala-panel │ ├── patches │ │ ├── LINGUAS-remove-a-duplicate-entry.patch │ │ └── wayland.patch │ └── template ├── vala │ ├── patches │ │ ├── array-len-dup-overflow.patch │ │ └── disable-unstable-tests.patch │ ├── template │ └── update ├── valabind │ ├── patches │ │ ├── 0002-vala-0.50-fix.patch │ │ └── cross.patch │ └── template ├── valadoc-devel ├── valadoc │ ├── patches │ └── template ├── vale-style-alex │ └── template ├── vale-style-microsoft │ └── template ├── vale-style-proselint │ └── template ├── vale-style-write-good │ └── template ├── vale │ └── template ├── valgrind-devel ├── valgrind │ ├── patches │ │ └── throw.patch │ ├── template │ └── update ├── valijson │ └── template ├── valkey-redis ├── valkey │ ├── files │ │ ├── valkey-sentinel │ │ │ └── run │ │ └── valkey │ │ │ └── run │ ├── patches │ │ └── system-jemalloc.patch │ └── template ├── vamp-plugin-sdk-devel ├── vamp-plugin-sdk │ ├── template │ └── update ├── vapoursynth-devel ├── vapoursynth-editor │ ├── files │ │ └── vapoursynth-editor.desktop │ ├── patches │ │ └── project-file.patch │ ├── template │ └── update ├── vapoursynth-ffms2-source ├── vapoursynth │ ├── template │ └── update ├── variety │ ├── patches │ │ └── pylint.patch │ └── template ├── varnish │ ├── files │ │ └── varnishd │ │ │ └── run │ ├── patches │ │ └── musl.patch │ ├── template │ └── update ├── vault-acme │ ├── INSTALL │ └── template ├── vault │ ├── INSTALL │ ├── files │ │ └── vault │ │ │ └── run │ └── template ├── vaultwarden-web │ ├── template │ └── update ├── vaultwarden │ ├── files │ │ └── vaultwarden │ │ │ └── run │ ├── patches │ │ └── config.patch │ └── template ├── vba-m │ └── template ├── vbetool │ └── template ├── vbindiff │ ├── template │ └── update ├── vboot-utils │ ├── patches │ │ └── format-glibc.patch │ ├── template │ └── update ├── vc │ ├── patches │ │ └── dea29a67bd5b7523da7678eb5b37f42c0e2759b7.patch │ └── template ├── vcdimager │ └── template ├── vcsh │ └── template ├── vde2-devel ├── vde2 │ ├── patches │ │ └── musl.patch │ └── template ├── vdesk │ └── template ├── vdirsyncer │ ├── template │ └── update ├── vdpauinfo │ └── template ├── vdrift-data ├── vdrift │ ├── patches │ │ ├── 0001-Allow-to-override-build-date-with-SOURCE_DATE_EPOCH.patch │ │ ├── 0002-Scons-python-3-fixes.patch │ │ ├── 0003-SConstruct-Python-3-fix.patch │ │ └── fix-gcc6.patch │ └── template ├── vectorscan-devel ├── vectorscan │ └── template ├── ved ├── vegeta │ └── template ├── verilator │ └── template ├── vgmplay │ └── template ├── vhba-module-dkms │ ├── files │ │ ├── 40-vhba.rules │ │ └── dkms.conf │ ├── template │ └── update ├── vhs │ ├── files │ │ └── README.voidlinux │ └── template ├── vibe │ └── template ├── vice │ ├── template │ └── update ├── vicious ├── victoria-logs │ ├── files │ │ └── victoria-logs │ │ │ └── run │ └── template ├── victoria-metrics │ ├── files │ │ └── victoria-metrics │ │ │ └── run │ └── template ├── vidcutter │ └── template ├── video-compare │ └── template ├── viewnior │ ├── patches │ │ └── exiv2-0.28.patch │ └── template ├── viewres │ └── template ├── vifm │ ├── template │ └── update ├── vigra-devel ├── vigra-doc ├── vigra │ ├── files │ │ └── TryRunResults.cmake │ └── template ├── viking │ ├── patches │ │ └── 32bit-test.patch │ └── template ├── vile │ ├── template │ └── update ├── vilistextum │ ├── template │ └── update ├── vim-colorschemes │ └── template ├── vim-common ├── vim-gnupg │ └── template ├── vim-huge ├── vim-huge-python3 ├── vim-x11 ├── vim │ ├── files │ │ └── vimrc │ ├── template │ └── update ├── vimb │ └── template ├── vimiv │ └── template ├── vimpager │ ├── files │ │ └── README.voidlinux │ └── template ├── vimpc │ └── template ├── vinagre │ └── template ├── vino │ └── template ├── vips │ └── template ├── virglrenderer-devel ├── virglrenderer │ └── template ├── virt-manager-tools ├── virt-manager │ └── template ├── virt-viewer │ ├── patches │ │ └── meson-0.61.patch │ └── template ├── virt-what │ └── template ├── virtiofsd │ └── template ├── virtme │ ├── template │ └── update ├── virtualbox-ose-dkms ├── virtualbox-ose-guest ├── virtualbox-ose-guest-dkms ├── virtualbox-ose │ ├── files │ │ ├── LocalConfig.kmk │ │ ├── README.voidlinux │ │ ├── vboxservice │ │ │ └── run │ │ ├── vboxwebsrv │ │ │ └── run │ │ ├── virtualbox-guest.conf │ │ ├── virtualbox-ose-dkms.dkms │ │ ├── virtualbox-ose-dkms.udev │ │ ├── virtualbox-ose-guest-dkms.dkms │ │ ├── virtualbox-ose-guest-dkms.udev │ │ ├── virtualbox.conf │ │ └── virtualbox.modprobe │ ├── patches │ │ ├── 005-gsoap-build.patch │ │ ├── 008-no-vboxvideo.patch │ │ ├── 013-Makefile.patch │ │ ├── 015-no-update.patch │ │ ├── 016-disable-cloud.patch │ │ ├── 017-libvdeplug-soname.patch │ │ └── 051-file-prefix-map.patch │ ├── template │ └── update ├── virtualenvwrapper │ └── template ├── virtuoso-base ├── virtuoso │ ├── patches │ │ ├── disable-tgraphql-test.patch │ │ └── yacc-pure-parser.patch │ ├── template │ └── update ├── vis │ └── template ├── visidata │ ├── patches │ │ └── disable-motd.patch │ └── template ├── visitors │ ├── patches │ │ └── fix-ldflags.patch │ └── template ├── vit │ └── template ├── vitetris │ ├── INSTALL │ ├── patches │ │ └── Makefile.patch │ └── template ├── viu │ └── template ├── vivaldi │ ├── REMOVE │ ├── files │ │ ├── EULA │ │ └── redistribution-permission.eml │ ├── patches │ │ └── support-user-flags.patch │ ├── template │ └── update ├── vivid │ └── template ├── vkBasalt │ └── template ├── vkQuake │ ├── files │ │ └── vkquake.desktop │ ├── patches │ │ └── disable-neon.patch │ └── template ├── vkeybd │ └── template ├── vlc-devel ├── vlc-pause-click-plugin │ └── template ├── vlc │ ├── INSTALL │ ├── REMOVE │ ├── patches │ │ ├── fix-waitpid-usage.patch │ │ ├── fribidi_allow_deprecated.patch │ │ ├── musl.patch │ │ ├── taglib-2.0.patch │ │ └── x265-4.0-pic_out.patch │ └── template ├── vlna │ └── template ├── vmaf-devel ├── vmaf │ └── template ├── vmap │ └── template ├── vmdfmt │ └── template ├── vmpk │ └── template ├── vmtouch │ └── template ├── vmware-horizon-client-smartcard ├── vmware-horizon-client │ ├── files │ │ ├── ftscanhvd │ │ │ └── run │ │ ├── ftsprhvd │ │ │ └── run │ │ └── vmware-USBArbitrator │ │ │ └── run │ └── template ├── vndr │ └── template ├── vnstat │ ├── files │ │ └── vnstatd │ │ │ └── run │ └── template ├── void-artwork │ ├── files │ │ ├── generate-icons.sh │ │ ├── icons │ │ │ ├── void-logo-128.png │ │ │ ├── void-logo-16.png │ │ │ ├── void-logo-22.png │ │ │ ├── void-logo-256.png │ │ │ ├── void-logo-32.png │ │ │ ├── void-logo-48.png │ │ │ ├── void-logo-512.png │ │ │ ├── void-logo-64.png │ │ │ ├── void-logo-notext-128.png │ │ │ ├── void-logo-notext-16.png │ │ │ ├── void-logo-notext-22.png │ │ │ ├── void-logo-notext-256.png │ │ │ ├── void-logo-notext-32.png │ │ │ ├── void-logo-notext-48.png │ │ │ ├── void-logo-notext-512.png │ │ │ ├── void-logo-notext-64.png │ │ │ ├── void-logo-notext.svg │ │ │ └── void-logo.svg │ │ ├── oldsplash.png │ │ ├── splash.png │ │ ├── splashwhite.png │ │ ├── void-logo.png │ │ ├── void-logo.svg │ │ └── void-transparent.png │ └── template ├── void-docs-browse ├── void-docs │ └── template ├── void-force-stage-unstage ├── void-force-stage │ └── template ├── void-live-audio │ └── template ├── void-man-cgi ├── void-release-keys │ ├── files │ │ ├── void-release-20191109.pub │ │ ├── void-release-20210218.pub │ │ ├── void-release-20210930.pub │ │ ├── void-release-20221001.pub │ │ ├── void-release-20230628.pub │ │ ├── void-release-20240314.pub │ │ └── void-release-20250202.pub │ └── template ├── void-repo-bootstrap │ └── template ├── void-repo-debug ├── void-repo-multilib-nonfree ├── void-repo-multilib │ └── template ├── void-repo-nonfree │ └── template ├── void-updates │ └── template ├── vokoscreen ├── vokoscreenNG │ └── template ├── volctl │ └── template ├── volk-devel ├── volk │ ├── patches │ │ └── ppc32.patch │ └── template ├── volta │ ├── template │ └── update ├── volume_key-devel ├── volume_key-python3 ├── volume_key │ └── template ├── volumeicon │ ├── patches │ │ ├── locale.patch │ │ └── notify.patch │ └── template ├── vorbis-tools │ └── template ├── vorbisgain │ └── template ├── vosk-api │ ├── patches │ │ ├── kaldi-lapack.patch │ │ ├── kaldi-lapack.patch.args │ │ ├── kaldi-to-openblas-0.3.21.patch │ │ ├── kaldi-to-openblas-0.3.21.patch.args │ │ ├── kaldi-to-openfst-1.8.2.patch │ │ ├── kaldi-to-openfst-1.8.2.patch.args │ │ └── vosk-lapack.patch │ └── template ├── vosk-model-small-en-us ├── vpcs │ ├── patches │ │ ├── ldflags.patch │ │ ├── musl.patch │ │ └── readline.patch │ └── template ├── vpm │ └── template ├── vpn-slice │ └── template ├── vpn-ws │ ├── patches │ │ ├── fixprototypes.patch │ │ └── openssl.patch │ └── template ├── vpnc-scripts │ └── template ├── vpnc │ ├── files │ │ └── vpnc-script │ └── template ├── vpnd │ ├── INSTALL.msg │ ├── files │ │ ├── README.voidlinux │ │ └── vpnd │ │ │ └── run │ └── template ├── vpnfailsafe │ └── template ├── vscode │ ├── REMOVE │ ├── patches │ │ ├── disable-crash-reporter.patch │ │ ├── fix_dir.patch │ │ ├── gulp.patch │ │ ├── product.patch │ │ └── remove_git_command.patch │ └── template ├── vsftpd │ ├── files │ │ ├── vsftpd-ipv6 │ │ │ └── run │ │ └── vsftpd │ │ │ └── run │ ├── patches │ │ ├── 001-destdir.patch │ │ ├── 002-find_libs.patch │ │ ├── 003-chroot.patch │ │ ├── 004-disable-capabilities.patch │ │ ├── 005-disable-pam.patch │ │ ├── 006-musl-compatibility.patch │ │ ├── 007-CVE-2015-1419.patch │ │ ├── 008-allow-getrandom.patch │ │ └── 009-i686-musl.patch │ └── template ├── vsv │ └── template ├── vtable-dumper │ └── template ├── vte3-demo ├── vte3-devel ├── vte3-gtk4 ├── vte3-gtk4-demo ├── vte3-gtk4-devel ├── vte3-profile ├── vte3 │ ├── patches │ │ ├── fix-W_EXITCODE.patch │ │ └── use-std-from_chars.patch │ ├── template │ └── update ├── vtk-devel ├── vtk-python3 ├── vtk │ ├── patches │ │ ├── 0001-stat64.patch │ │ ├── 0002-stat64.patch │ │ └── vtkioss-unistd.patch │ ├── template │ └── update ├── vttest │ └── template ├── vtwm │ └── template ├── vulkan-loader-devel ├── vulkan-loader │ ├── template │ └── update ├── vultr-cli │ └── template ├── vultr │ └── template ├── w3m-img ├── w3m │ ├── template │ └── update ├── wabt │ └── template ├── waifu2x-converter-cpp │ ├── patches │ │ └── fix-cross.patch │ └── template ├── waitforfile │ └── template ├── walk │ └── template ├── walker │ └── template ├── wallpaperd │ └── template ├── wally-cli │ └── template ├── wally-udev-rules │ └── template ├── wander │ └── template ├── warsow-data │ └── template ├── warsow │ ├── files │ │ ├── warsow.desktop │ │ ├── warsow.launcher │ │ ├── warsow.png │ │ ├── wsw-server.launcher │ │ └── wswtv-server.launcher │ └── template ├── warzone2100-data ├── warzone2100 │ └── template ├── wasi-compiler-rt ├── wasi-libc │ ├── patches │ │ ├── 0001-iconv-fix-erroneous-input-validation-in-EUC-KR-decod.patch │ │ └── 0002-iconv-harden-UTF-8-output-code-path-against-input-de.patch │ └── template ├── wasi-libcxx ├── wasi-sdk │ └── template ├── wasmtime │ └── template ├── watchdog │ ├── files │ │ └── watchdog │ │ │ └── run │ └── template ├── watchexec │ └── template ├── watchman │ ├── patches │ │ └── fix_autogen.patch │ └── template ├── wavemon │ └── template ├── wavpack-devel ├── wavpack │ ├── template │ └── update ├── way-displays │ └── template ├── wayclip │ └── template ├── waydroid │ ├── INSTALL │ ├── files │ │ ├── README.voidlinux │ │ └── waydroid-container │ │ │ ├── finish │ │ │ └── run │ └── template ├── wayfire-devel ├── wayfire-plugins-extra │ └── template ├── wayfire │ └── template ├── wayland-devel ├── wayland-protocols │ └── template ├── wayland-scanner++ ├── wayland-utils │ ├── template │ └── update ├── wayland │ ├── template │ └── update ├── waylock │ └── template ├── waypipe │ └── template ├── wayvnc │ └── template ├── wbg │ ├── patches │ │ └── musl-mfd-noexec-seal.patch │ └── template ├── wcal │ └── template ├── wcalc │ └── template ├── wcm │ └── template ├── wdiff │ └── template ├── wdisplays │ └── template ├── weather │ └── template ├── webcat │ └── template ├── webhook │ ├── files │ │ ├── hooks.json │ │ └── webhook │ │ │ ├── conf │ │ │ └── run │ └── template ├── webp-pixbuf-loader │ └── template ├── webrtc-audio-processing-devel ├── webrtc-audio-processing │ ├── patches │ │ ├── Add-generic-byte-order-and-pointer-size-detection.patch │ │ ├── i686-no-sse.patch │ │ └── musl.patch │ └── template ├── websocat │ └── template ├── websocketd │ └── template ├── websocketpp │ └── template ├── wee-slack │ └── template ├── weechat-aspell ├── weechat-devel ├── weechat-lua ├── weechat-perl ├── weechat-python ├── weechat-ruby ├── weechat-tcl ├── weechat │ ├── template │ └── update ├── wego │ └── template ├── welle-io │ ├── template │ └── update ├── wemux │ └── template ├── wendy │ └── template ├── wesnoth │ ├── files │ │ └── wesnothd │ │ │ └── run │ ├── patches │ │ └── 001-disable-audio-test.patch │ ├── template │ └── update ├── weston-devel ├── weston │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── wev │ └── template ├── wezterm-terminfo ├── wezterm │ ├── patches │ │ └── monospace.patch │ ├── template │ └── update ├── wf-config-devel ├── wf-config │ └── template ├── wf-recorder │ └── template ├── wf-shell │ └── template ├── wfuzz │ ├── patches │ │ ├── fix-version-check.patch │ │ └── remove-libressl-warning.patch │ └── template ├── wget │ └── template ├── wgetpaste │ ├── files │ │ └── wgetpaste.example │ └── template ├── when │ ├── template │ └── update ├── which │ └── template ├── whipper │ ├── patches │ │ └── ruamel.yaml-0.17_compat.patch │ └── template ├── whois │ ├── template │ └── update ├── whowatch │ └── template ├── whysynth │ ├── patches │ │ └── fix_agran.patch │ └── template ├── wicd │ ├── files │ │ ├── manager-settings.conf │ │ └── wicd │ │ │ └── run │ ├── patches │ │ ├── 03-import-wpath.patch │ │ ├── curses_bitrate_fix.patch │ │ ├── wicd-1.7.3-urwid-1.3.0.patch │ │ └── wicd-1421918.patch │ └── template ├── widelands │ ├── patches │ │ ├── musl.patch │ │ ├── no-werror.patch │ │ └── size_t-format-specifier.patch │ └── template ├── wifi-firmware │ └── template ├── wifish │ └── template ├── wiggle │ └── template ├── wike │ └── template ├── wiki-tui │ └── template ├── wildmidi │ ├── files │ │ └── wildmidi.cfg │ └── template ├── wimlib-devel ├── wimlib │ ├── patches │ │ └── musl-fs.patch │ └── template ├── windowchef │ └── template ├── wine-common ├── wine-devel ├── wine-gecko │ ├── template │ └── update ├── wine-mono │ ├── files │ │ └── COPYING │ └── template ├── wine-tools ├── wine │ ├── INSTALL │ ├── REMOVE │ ├── files │ │ ├── 30-win32-aliases.conf │ │ ├── wine │ │ └── wineserver │ ├── patches │ │ ├── musl-limits.patch │ │ ├── musl-rpath.patch │ │ └── musl-uid-t.patch │ ├── template │ └── update ├── wineasio │ ├── files │ │ └── README.voidlinux │ ├── patches │ │ └── fix-install-paths.patch │ └── template ├── winegui │ ├── files │ │ └── README.voidlinux │ └── template ├── winetricks │ └── template ├── winusb │ ├── patches │ │ └── wxwidget-compatible.patch │ └── template ├── wire-desktop │ ├── template │ └── update ├── wired-notify │ └── template ├── wireguard-dkms │ ├── template │ └── update ├── wireguard-tools │ ├── files │ │ └── wireguard │ │ │ ├── finish │ │ │ └── run │ ├── template │ └── update ├── wireguard │ └── template ├── wireless-regdb │ └── template ├── wireless_tools-devel ├── wireless_tools │ ├── patches │ │ └── basename.patch │ └── template ├── wireplumber-devel ├── wireplumber-elogind ├── wireplumber │ ├── INSTALL.msg │ ├── files │ │ ├── 10-wireplumber.conf │ │ └── wireplumber.desktop │ ├── patches │ │ └── test.patch │ └── template ├── wireproxy │ ├── files │ │ └── wireproxy │ │ │ └── run │ └── template ├── wireshark-qt ├── wireshark │ ├── INSTALL │ ├── files │ │ └── README.voidlinux │ ├── patches │ │ └── install-pkgconfig.patch │ ├── template │ └── update ├── wishlist │ └── template ├── wkhtmltopdf-devel ├── wkhtmltopdf │ └── template ├── wl-clip-persist │ └── template ├── wl-clipboard │ └── template ├── wl-gammarelay-rs │ └── template ├── wl-kbptr │ └── template ├── wl-mirror │ └── template ├── wlclock │ └── template ├── wlgreet │ └── template ├── wlogout │ ├── patches │ │ └── layout.patch │ └── template ├── wlopm │ └── template ├── wlr-randr │ └── template ├── wlrctl │ ├── patches │ │ └── fix-ascii-check.patch │ └── template ├── wlroots-devel ├── wlroots │ └── template ├── wlroots0.17-devel ├── wlroots0.17 │ ├── template │ └── update ├── wlroots0.18-devel ├── wlroots0.18 │ ├── template │ └── update ├── wlroots0.19-devel ├── wlroots0.19 │ ├── template │ └── update ├── wlsunset │ └── template ├── wluma │ └── template ├── wm2 │ ├── files │ │ └── wm2.desktop │ ├── patches │ │ ├── fix-compile.patch │ │ └── use_our_ldflags.patch │ └── template ├── wmbatteries │ └── template ├── wmbubble │ └── template ├── wmclock │ └── template ├── wmctrl │ ├── patches │ │ └── 01_64-bit-data.patch │ └── template ├── wmderland │ ├── files │ │ └── Wmderland.desktop │ └── template ├── wmenu │ └── template ├── wmfs │ └── template ├── wmix │ └── template ├── wmmon │ └── template ├── wmname │ └── template ├── wmnd │ └── template ├── wmsystemtray │ └── template ├── wmutils-core │ ├── patches │ │ └── install-pdw-manpage.patch │ └── template ├── wmutils-opt │ └── template ├── wmx │ ├── files │ │ └── wmx.desktop │ └── template ├── wob │ └── template ├── woff2-devel ├── woff2 │ ├── patches │ │ ├── always-install-executables.patch │ │ └── dont-set-rpath.patch │ └── template ├── wofi │ └── template ├── woke │ └── template ├── wol │ └── template ├── wordgrinder-x11 ├── wordgrinder │ ├── patches │ │ ├── fix-luapath.patch │ │ ├── fix-xft-include.patch │ │ └── musl.patch │ └── template ├── words-de ├── words-en ├── words-mnemonic │ ├── template │ └── update ├── words-ru ├── words-web2 │ └── template ├── wordwarvi │ └── template ├── workrave │ ├── patches │ │ └── musl-nl_langinfo.patch │ ├── template │ └── update ├── wpa-cute │ └── template ├── wpa_actiond │ ├── files │ │ ├── wpa_actiond │ │ │ └── run │ │ └── wpa_log │ └── template ├── wpa_gui │ ├── template │ └── update ├── wpa_supplicant │ ├── files │ │ ├── config │ │ ├── wpa_supplicant.conf │ │ └── wpa_supplicant │ │ │ ├── auto │ │ │ └── run │ ├── patches │ │ ├── brcmfmac-temporarily-revert-commit.patch │ │ ├── patch-src_utils_eloop_c.diff │ │ └── unsurprising-ext-password.patch │ └── template ├── wpebackend-fdo-devel ├── wpebackend-fdo │ └── template ├── wpgtk │ └── template ├── wps-office │ ├── template │ └── update ├── wqy-microhei │ └── template ├── wren-cli │ ├── patches │ │ └── glibc-2.34.patch │ └── template ├── writerperfect │ └── template ├── wrk │ ├── patches │ │ └── zmalloc-arm-alignment.patch │ └── template ├── wsjtx │ ├── template │ └── update ├── wslu │ └── template ├── wstunnel │ └── template ├── wt-devel ├── wt │ ├── template │ └── update ├── wtfutil │ └── template ├── wthrr │ ├── patches │ │ └── fix-builds.patch │ └── template ├── wtplan │ └── template ├── wtype │ └── template ├── wuzz │ ├── patches │ │ └── go-mod-tidy.patch │ └── template ├── wv-devel ├── wv │ └── template ├── wvdial │ ├── patches │ │ ├── wvdial-1.61-as-needed.patch │ │ ├── wvdial-1.61-destdir.patch │ │ ├── wvdial-1.61-parallel-make.patch │ │ └── wvdial-1.61-remove-glibc-check.patch │ └── template ├── wvkbd │ └── template ├── wvstreams-devel ├── wvstreams │ ├── patches │ │ ├── gcc-6.patch │ │ ├── no_optimize.patch │ │ ├── wvstreams-4.6.1-argp-fpic.patch │ │ ├── wvstreams-4.6.1-gcc47.patch │ │ ├── wvstreams-4.6.1-glibc212.patch │ │ ├── wvstreams-4.6.1-modulemgr-limits.patch │ │ ├── wvstreams-4.6.1-openssl-1.0.0.patch │ │ ├── wvstreams-4.6.1-openssl-1.1.0.patch │ │ ├── wvstreams-4.6.1-parallel-make.patch │ │ ├── wvstreams-4.6.1-wvconfemu-execinfo.patch │ │ ├── wvstreams-4.6.1-wvcrash-basename.patch │ │ ├── wvstreams-4.6.1-wvcrash-execinfo.patch │ │ ├── wvstreams-4.6.1-wvtask-libc_stack_end.patch │ │ └── wvstreams-4.6.1-wvtask-ucontext.patch │ └── template ├── wxFormBuilder │ ├── patches │ │ └── cmake-no-update-mime.patch │ └── template ├── wxMaxima │ ├── template │ └── update ├── wxPython-devel ├── wxPython │ ├── files │ │ └── no-stacktrace.patch │ ├── patches │ │ ├── 00.python3.12.patch │ │ ├── 01.python3.12.patch │ │ ├── 02.python3.12.patch │ │ └── wxsvg-cython.patch │ └── template ├── wxPython4 ├── wxWidgets ├── wxWidgets-common ├── wxWidgets-common-devel ├── wxWidgets-devel ├── wxWidgets-gtk3-devel ├── wxWidgets-gtk3 │ ├── files │ │ └── musl-locale-l.patch │ ├── patches │ │ ├── invalid-header-syntax.patch │ │ ├── largefile.patch │ │ ├── no-cross-suffix.patch │ │ ├── nonfatal-abi-check.patch │ │ └── wx-config.patch │ ├── template │ └── update ├── x11perf │ └── template ├── x11vnc │ └── template ├── x13s-base │ ├── INSTALL │ ├── files │ │ ├── 72-touchscreen.rules │ │ ├── 90-bt-address.sh │ │ ├── 90-net-address.rules │ │ ├── 95-libcamera-hack.rules │ │ ├── dracut.conf │ │ ├── mkinitcpio.conf │ │ ├── x13s-setup │ │ └── x13s.default │ └── template ├── x264-devel ├── x264 │ ├── template │ └── update ├── x265-devel ├── x265 │ ├── patches │ │ ├── handbrake-ambientlight.patch │ │ └── x265-pic.patch │ ├── template │ └── update ├── x2goclient │ ├── patches │ │ └── makefile.patch │ └── template ├── x2goserver │ ├── INSTALL │ ├── files │ │ └── x2gocleansessions │ │ │ └── run │ └── template ├── x2vnc │ ├── template │ └── update ├── x2x-git │ └── template ├── x42-plugins │ ├── patches │ │ └── fix-cross.patch │ ├── template │ └── update ├── x48 │ ├── files │ │ └── README.voidlinux │ └── template ├── x86_energy_perf_policy ├── x86info │ └── template ├── xa │ └── template ├── xaos │ ├── template │ └── update ├── xapian-core-devel ├── xapian-core-doc ├── xapian-core │ ├── patches │ │ └── cross-config.cmake.patch │ ├── template │ └── update ├── xapian-omega │ └── template ├── xapps-devel ├── xapps │ └── template ├── xar-devel ├── xar │ ├── patches │ │ ├── autoconf.patch │ │ ├── configure_disable_rpath.patch │ │ ├── ext2.patch │ │ ├── implicit-function-decl.patch │ │ └── openssl1.1.patch │ └── template ├── xarcan │ └── template ├── xarchiver │ └── template ├── xastir │ ├── patches │ │ └── fix-mutex.patch │ ├── template │ └── update ├── xauth │ └── template ├── xautolock │ ├── patches │ │ ├── fix-restart.patch │ │ └── fix-wait_status.patch │ └── template ├── xava ├── xbacklight │ └── template ├── xbanish │ └── template ├── xbattmon │ └── template ├── xbiff │ └── template ├── xbindkeys │ └── template ├── xbitmaps │ └── template ├── xboard │ └── template ├── xbomb │ └── template ├── xboxdrv │ ├── patches │ │ ├── 0001-Update-SConstruct-to-python3.patch │ │ ├── 0003-Updating-python-code-to-python3.patch │ │ └── time64.patch │ └── template ├── xbps-static │ ├── INSTALL │ └── template ├── xbps-tests ├── xbps-triggers │ ├── files │ │ ├── appstream-cache │ │ ├── binfmts │ │ ├── dkms │ │ ├── gconf-schemas │ │ ├── gdk-pixbuf-loaders │ │ ├── gio-modules │ │ ├── gsettings-schemas │ │ ├── gtk-icon-cache │ │ ├── gtk-immodules │ │ ├── gtk-pixbuf-loaders │ │ ├── gtk3-immodules │ │ ├── hwdb.d-dir │ │ ├── info-files │ │ ├── initramfs-regenerate │ │ ├── kernel-hooks │ │ ├── mimedb │ │ ├── mkdirs │ │ ├── pango-modules │ │ ├── pycompile │ │ ├── register-shell │ │ ├── system-accounts │ │ ├── texmf-dist │ │ ├── update-desktopdb │ │ ├── x11-fonts │ │ └── xml-catalog │ └── template ├── xbps │ ├── INSTALL │ └── template ├── xca │ ├── patches │ │ └── openssl3.patch │ ├── template │ └── update ├── xcaddy │ └── template ├── xcalc │ └── template ├── xcalib │ └── template ├── xcape │ └── template ├── xcb-imdkit-devel ├── xcb-imdkit │ └── template ├── xcb-proto │ └── template ├── xcb-util-cursor-devel ├── xcb-util-cursor │ └── template ├── xcb-util-devel ├── xcb-util-errors-devel ├── xcb-util-errors │ └── template ├── xcb-util-image-devel ├── xcb-util-image │ └── template ├── xcb-util-keysyms-devel ├── xcb-util-keysyms │ └── template ├── xcb-util-renderutil-devel ├── xcb-util-renderutil │ └── template ├── xcb-util-wm-devel ├── xcb-util-wm │ └── template ├── xcb-util-xrm-devel ├── xcb-util-xrm │ ├── files │ │ ├── ax_compare_version.m4 │ │ ├── xcb_util_common.m4 │ │ └── xcb_util_m4_with_include_path.m4 │ └── template ├── xcb-util │ └── template ├── xcftools │ └── template ├── xchm │ ├── template │ └── update ├── xcircuit │ └── template ├── xclip │ └── template ├── xclipboard │ └── template ├── xclock │ └── template ├── xcmenu │ └── template ├── xcmsdb │ └── template ├── xcolor │ └── template ├── xcolorsel │ ├── patches │ │ └── xcolorsel.patch │ └── template ├── xcompmgr │ └── template ├── xconsole │ └── template ├── xcowsay │ └── template ├── xcruiser │ └── template ├── xcur2png │ └── template ├── xcursor-themes │ └── template ├── xcursor-vanilla-dmz-aa ├── xcursor-vanilla-dmz │ └── template ├── xcursorgen │ └── template ├── xdaliclock │ ├── patches │ │ └── autoconf.patch │ └── template ├── xdebug ├── xdebug8.1 │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── xdebug8.2 │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── xdebug8.3 │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── xdebug8.4 │ ├── files │ │ └── README.voidlinux │ ├── template │ └── update ├── xdelta3 │ ├── template │ └── update ├── xdemineur │ └── template ├── xdg-dbus-proxy │ ├── patches │ │ └── musl.patch │ └── template ├── xdg-desktop-portal-gnome │ └── template ├── xdg-desktop-portal-gtk │ └── template ├── xdg-desktop-portal-kde │ └── template ├── xdg-desktop-portal-lxqt │ └── template ├── xdg-desktop-portal-termfilechooser │ └── template ├── xdg-desktop-portal-wlr │ └── template ├── xdg-desktop-portal-xapp │ └── template ├── xdg-desktop-portal │ ├── files │ │ └── portals.conf │ └── template ├── xdg-user-dirs-gtk │ └── template ├── xdg-user-dirs │ └── template ├── xdg-utils │ └── template ├── xdgmenumaker │ ├── patches │ │ └── usr-local-deprecation-fix.patch │ └── template ├── xditview │ └── template ├── xdm │ ├── files │ │ ├── xdm.pam │ │ └── xdm │ │ │ └── run │ └── template ├── xdo │ └── template ├── xdot │ └── template ├── xdotool-devel ├── xdotool │ └── template ├── xdpyinfo │ └── template ├── xdriinfo │ └── template ├── xdu │ └── template ├── xe │ └── template ├── xed │ └── template ├── xedit │ └── template ├── xen-devel ├── xen-doc ├── xen-hypervisor ├── xen-libs ├── xen │ ├── files │ │ ├── xen.conf │ │ ├── xen │ │ │ └── run │ │ ├── xenconsoled │ │ │ └── run │ │ └── xenstored │ │ │ └── run │ ├── patches │ │ ├── basename.patch │ │ └── xsa467.patch │ ├── template │ ├── update │ └── xen-hypervisor.INSTALL ├── xerces-c-doc ├── xerces-c │ ├── patches │ │ └── fix-configure-cross.patch │ ├── template │ └── update ├── xev │ └── template ├── xeyes │ └── template ├── xf86-input-evdev-devel ├── xf86-input-evdev │ └── template ├── xf86-input-joystick-devel ├── xf86-input-joystick │ ├── files │ │ └── 50-joystick.conf │ └── template ├── xf86-input-libinput-devel ├── xf86-input-libinput │ └── template ├── xf86-input-mtrack │ ├── patches │ │ └── fix-time64.patch │ └── template ├── xf86-input-synaptics-devel ├── xf86-input-synaptics │ └── template ├── xf86-input-vmmouse │ └── template ├── xf86-input-wacom-devel ├── xf86-input-wacom │ └── template ├── xf86-video-amdgpu │ └── template ├── xf86-video-ati │ └── template ├── xf86-video-cirrus │ ├── patches │ │ └── no-vbe-non-x86.patch │ └── template ├── xf86-video-dummy │ └── template ├── xf86-video-fbdev │ └── template ├── xf86-video-intel │ ├── patches │ │ ├── O_CLOEXEC.patch │ │ └── gcc-8.2.0-force_inline.patch │ └── template ├── xf86-video-mach64 │ ├── patches │ │ ├── 0001-avoid-including-VBE-paths-when-not-used.patch │ │ └── cross.patch │ └── template ├── xf86-video-mga │ ├── patches │ │ └── no-vbe-non-x86.patch │ ├── template │ └── update ├── xf86-video-nouveau │ └── template ├── xf86-video-openchrome │ └── template ├── xf86-video-qxl │ └── template ├── xf86-video-r128 │ ├── patches │ │ └── fix-non-x86.patch │ └── template ├── xf86-video-sisusb │ └── template ├── xf86-video-vesa │ └── template ├── xf86-video-vmware │ └── template ├── xfburn │ └── template ├── xfce-polkit │ ├── patches │ │ └── only-default-xfce.patch │ └── template ├── xfce4-alsa-plugin │ └── template ├── xfce4-appfinder │ └── template ├── xfce4-battery-plugin │ └── template ├── xfce4-clipman-plugin │ └── template ├── xfce4-cpufreq-plugin │ └── template ├── xfce4-cpugraph-plugin │ └── template ├── xfce4-datetime-plugin │ └── template ├── xfce4-dev-tools │ └── template ├── xfce4-dict │ └── template ├── xfce4-diskperf-plugin │ └── template ├── xfce4-docklike-plugin │ └── template ├── xfce4-fsguard-plugin │ └── template ├── xfce4-genmon-plugin │ └── template ├── xfce4-i3-workspaces-plugin │ └── template ├── xfce4-mailwatch-plugin │ └── template ├── xfce4-mpc-plugin │ └── template ├── xfce4-netload-plugin │ └── template ├── xfce4-notifyd │ └── template ├── xfce4-panel-appmenu ├── xfce4-panel-devel ├── xfce4-panel-profiles │ └── template ├── xfce4-panel │ ├── patches │ │ └── valadeps.patch │ └── template ├── xfce4-places-plugin │ └── template ├── xfce4-plugins │ └── template ├── xfce4-power-manager │ ├── patches │ │ └── void.patch │ └── template ├── xfce4-pulseaudio-plugin │ └── template ├── xfce4-screensaver │ └── template ├── xfce4-screenshooter │ └── template ├── xfce4-sensors-plugin │ └── template ├── xfce4-session │ ├── patches │ │ └── no-bashism.patch │ └── template ├── xfce4-settings │ └── template ├── xfce4-smartbookmark-plugin │ └── template ├── xfce4-systemload-plugin │ └── template ├── xfce4-taskmanager │ └── template ├── xfce4-terminal │ └── template ├── xfce4-time-out-plugin │ └── template ├── xfce4-timer-plugin │ └── template ├── xfce4-verve-plugin │ └── template ├── xfce4-wavelan-plugin │ └── template ├── xfce4-weather-plugin │ ├── patches │ │ ├── 0001-parsers-Generalise-input-to-array-of-gchar.patch │ │ └── 0002-libsoup-Port-to-libsoup-3.0.patch │ └── template ├── xfce4-whiskermenu-plugin │ └── template ├── xfce4-xkb-plugin │ └── template ├── xfce4 │ ├── template │ └── update ├── xfconf-devel ├── xfconf │ └── template ├── xfd │ └── template ├── xfdesktop │ └── template ├── xfe │ └── template ├── xfig │ └── template ├── xfontsel │ └── template ├── xforms-devel ├── xforms │ ├── template │ └── update ├── xfsdump │ └── template ├── xfsprogs-devel ├── xfsprogs │ └── template ├── xfwm4-themes │ └── template ├── xfwm4 │ └── template ├── xgalaga++ │ ├── INSTALL │ └── template ├── xgamma │ └── template ├── xh │ └── template ├── xhost │ └── template ├── xi-editor │ └── template ├── xiate │ └── template ├── xiccd │ └── template ├── xidle │ └── template ├── xine-lib-devel ├── xine-lib │ └── template ├── xinetd │ ├── files │ │ ├── servers │ │ ├── services │ │ ├── xinetd.conf │ │ └── xinetd │ │ │ └── run │ ├── patches │ │ ├── fix-CVE-2013-4342.patch │ │ └── musl.patch │ └── template ├── xinit │ ├── files │ │ └── xserverrc │ ├── patches │ │ ├── 06_move_serverauthfile_into_tmp.diff │ │ └── fs25361.patch │ └── template ├── xinput │ └── template ├── xinput_calibrator │ ├── patches │ │ └── no-update-desktopdb.patch │ └── template ├── xiphos │ ├── patches │ │ ├── build-without-uuidgen.patch │ │ └── https-by-default.patch │ └── template ├── xjobs │ └── template ├── xkb-qwerty-fr │ └── template ├── xkb-switch │ └── template ├── xkbcomp │ └── template ├── xkbevd │ └── template ├── xkblayout-state │ ├── patches │ │ └── make.patch │ └── template ├── xkbprint │ └── template ├── xkbutils │ └── template ├── xkcdpass │ └── template ├── xkeyboard-config │ └── template ├── xkill │ └── template ├── xl2tpd │ ├── files │ │ └── xl2tpd │ │ │ └── run │ └── template ├── xlbiff │ └── template ├── xload │ └── template ├── xlockmore │ ├── patches │ │ └── remove-Rflag.patch │ ├── template │ └── update ├── xlogo │ └── template ├── xlsatoms │ └── template ├── xlsclients │ └── template ├── xlsfonts │ └── template ├── xlunch │ ├── patches │ │ └── build.patch │ └── template ├── xmag │ └── template ├── xman │ └── template ├── xmandump │ └── template ├── xmaxima ├── xmenu │ └── template ├── xmessage │ └── template ├── xmh │ └── template ├── xmirror │ └── template ├── xml2rfc-pdf ├── xml2rfc │ └── template ├── xmlcatmgr │ └── template ├── xmldiff │ ├── template │ └── update ├── xmlrpc-c-devel ├── xmlrpc-c │ └── template ├── xmlsec1-devel ├── xmlsec1 │ └── template ├── xmlstarlet │ └── template ├── xmlto │ └── template ├── xmltoman │ └── template ├── xmlwf ├── xmobar │ ├── files │ │ └── stack.yaml │ ├── template │ └── update ├── xmodmap │ └── template ├── xmore │ └── template ├── xmoto-data ├── xmoto │ ├── patches │ │ ├── fix_gettext_GNU-isms_musl.patch │ │ └── stdint.patch │ └── template ├── xmp │ ├── template │ └── update ├── xnec2c │ ├── files │ │ ├── xnec2c.desktop │ │ └── xnec2c.png │ └── template ├── xnots │ ├── patches │ │ ├── Add-aarch64.patch │ │ ├── compiler.patch │ │ └── inline.patch │ ├── template │ └── update ├── xob │ └── template ├── xone │ ├── files │ │ └── README.voidlinux │ ├── patches │ │ ├── linux6.11.patch │ │ ├── linux6.12.patch │ │ ├── linux6.3.patch │ │ └── linux6.8.patch │ └── template ├── xonotic-data-low │ └── template ├── xonotic-data │ └── template ├── xonotic │ └── template ├── xonsh │ └── template ├── xorg-apps │ └── template ├── xorg-cf-files │ ├── patches │ │ └── linuxconfig.patch │ └── template ├── xorg-docs │ └── template ├── xorg-fonts │ └── template ├── xorg-input-drivers │ └── template ├── xorg-minimal │ └── template ├── xorg-server-common ├── xorg-server-devel ├── xorg-server-xephyr ├── xorg-server-xnest ├── xorg-server-xvfb ├── xorg-server-xwayland │ ├── template │ └── update ├── xorg-server │ ├── files │ │ └── Xwrapper.config │ ├── patches │ │ ├── autoconfig-ati.patch │ │ ├── autoconfig-sis.patch │ │ └── fix-libshadow-2.patch │ ├── template │ └── update ├── xorg-util-macros │ ├── template │ └── update ├── xorg-video-drivers │ └── template ├── xorg │ └── template ├── xorgproto │ └── template ├── xoris │ └── template ├── xorriso │ ├── template │ └── update ├── xosd │ └── template ├── xosview │ ├── patches │ │ └── musl-fix.patch │ └── template ├── xournal ├── xournalpp │ ├── patches │ │ └── 0001-backtrace.patch │ └── template ├── xpadneo │ └── template ├── xpdf │ ├── patches │ │ └── permissions.patch │ ├── template │ └── update ├── xplanet │ ├── patches │ │ └── fix-gcc6-nullptr.patch │ └── template ├── xpldd │ └── template ├── xplugd │ └── template ├── xpr │ └── template ├── xpra │ ├── files │ │ └── README.voidlinux │ ├── patches │ │ └── setup.patch │ └── template ├── xprintidle │ └── template ├── xprop │ └── template ├── xq-api │ ├── files │ │ └── xq-api │ │ │ ├── conf │ │ │ └── run │ └── template ├── xq │ ├── INSTALL.msg │ └── template ├── xrandr │ └── template ├── xrdb │ └── template ├── xreader │ └── template ├── xrectsel │ └── template ├── xrefresh │ └── template ├── xrestop │ └── template ├── xrick │ ├── files │ │ └── xrick-launcher │ ├── patches │ │ └── flags.patch │ └── template ├── xrootconsole │ ├── template │ └── update ├── xrootd │ └── template ├── xsane │ ├── patches │ │ ├── fix-png_jmpbuf.patch │ │ └── xdg-open.patch │ └── template ├── xscope │ └── template ├── xscreensaver-elogind ├── xscreensaver │ ├── patches │ │ └── autoconf.patch │ ├── template │ └── update ├── xsecurelock │ └── template ├── xsel │ └── template ├── xset │ └── template ├── xseticon │ ├── patches │ │ └── fix-makefile.patch │ └── template ├── xsetroot │ └── template ├── xsettingsd │ ├── patches │ │ └── scons.patch │ └── template ├── xshogi │ └── template ├── xsimd │ └── template ├── xskat │ ├── template │ └── update ├── xsm │ └── template ├── xsnow │ ├── template │ └── update ├── xspringies │ └── template ├── xss-lock │ └── template ├── xssstate │ └── template ├── xst │ ├── patches │ │ └── xrdb_cursor.patch │ └── template ├── xstarter │ ├── patches │ │ └── cmake-build-type-none.patch │ └── template ├── xstow │ └── template ├── xsv │ └── template ├── xteddy │ └── template ├── xterm │ ├── patches │ │ └── musl.patch │ └── template ├── xtermcontrol │ └── template ├── xtitle │ └── template ├── xtools-minimal ├── xtools │ └── template ├── xtrans │ └── template ├── xtrlock │ └── template ├── xtruss │ └── template ├── xurls │ └── template ├── xvfb-run │ ├── template │ └── update ├── xvidcore-devel ├── xvidcore │ ├── template │ └── update ├── xvidtune │ └── template ├── xvinfo │ └── template ├── xvkbd │ ├── template │ └── update ├── xwallpaper │ └── template ├── xwayland-satellite │ └── template ├── xwd │ └── template ├── xwininfo │ └── template ├── xwinwrap │ └── template ├── xwmfs │ └── template ├── xwud │ └── template ├── xxHash-devel ├── xxHash │ └── template ├── xxd ├── xxkb │ ├── files │ │ └── XXkb │ └── template ├── xye │ ├── patches │ │ └── fix-gcc6-narrowing.patch │ ├── template │ └── update ├── xz │ └── template ├── xzoom │ ├── files │ │ └── COPYING │ ├── patches │ │ └── xzoom_0.3-23.patch │ └── template ├── yabar │ ├── patches │ │ └── gcc7.patch │ └── template ├── yabasic │ ├── template │ └── update ├── yaboot │ ├── patches │ │ ├── 0001-xfs-support.patch │ │ ├── 0002-new-fsf-address.patch │ │ ├── 0003-build-system.patch │ │ ├── 0004-no-proc-scsi.patch │ │ ├── 0005-no-unix-block-names.patch │ │ ├── 0006-yadl-powerstation.patch │ │ ├── 0007-wrong-path.patch │ │ ├── 0008-cell-support.patch │ │ ├── 0009-typo.patch │ │ └── 0010-cd.patch │ └── template ├── yad │ └── template ├── yadm │ └── template ├── yajl-devel ├── yajl │ └── template ├── yakuake │ └── template ├── yambar-devel ├── yambar │ └── template ├── yaml-cpp-devel ├── yaml-cpp │ ├── patches │ │ └── 4aad2b1666a4742743b04e765a34742512915674.patch │ └── template ├── yamlfmt │ └── template ├── yandex-disk │ └── template ├── yank │ └── template ├── yara-devel ├── yara │ └── template ├── yarn-bin │ ├── patches │ │ └── yarn.patch │ └── template ├── yarn │ ├── patches │ │ └── yarn.patch │ └── template ├── yaru-plus │ └── template ├── yaru │ ├── template │ └── update ├── yascreen-devel ├── yascreen │ └── template ├── yash │ └── template ├── yasm │ └── template ├── yass │ └── template ├── yaydl │ ├── template │ └── update ├── yaz-devel ├── yaz │ ├── patches │ │ └── implicit-function-decl.patch │ └── template ├── yazi │ └── template ├── yeahconsole │ ├── patches │ │ └── make.patch │ ├── template │ └── update ├── yeahwm │ ├── patches │ │ ├── fix-makefile.patch │ │ └── fix-shape.patch │ ├── template │ └── update ├── yelp-devel ├── yelp-tools │ └── template ├── yelp-xsl │ └── template ├── yelp │ └── template ├── yersinia │ ├── patches │ │ └── fix_crossbuild.patch │ └── template ├── yewtube │ └── template ├── yggdrasil │ ├── INSTALL.msg │ ├── files │ │ └── yggdrasil │ │ │ └── run │ └── template ├── yggdrasilctl ├── yj │ └── template ├── ykclient-devel ├── ykclient │ └── template ├── ykneomgr │ ├── template │ └── update ├── ykpers-gui │ ├── template │ └── update ├── ykpers │ └── template ├── ykpivmgr ├── ymir │ └── template ├── ympd │ ├── patches │ │ └── fix-cflags.patch │ └── template ├── ymuse │ └── template ├── yoshimi │ └── template ├── yosys-abc │ ├── patches │ │ ├── remove_bzlib_convenience.patch │ │ ├── remove_zlib_convenience.patch │ │ └── reproducibility.patch │ └── template ├── yosys │ ├── template │ └── update ├── you-get │ ├── patches │ │ └── strip-version.patch │ └── template ├── youtube-dl ├── youtube-viewer │ └── template ├── yq-go │ └── template ├── yq │ └── template ├── yquake2 │ ├── files │ │ ├── README.voidlinux │ │ └── yquake2.desktop │ ├── template │ └── update ├── yt-dlp │ └── template ├── ytcc │ └── template ├── ytmdl │ └── template ├── ytnef-devel ├── ytnef │ └── template ├── yubico-piv-tool │ ├── template │ └── update ├── yubikey-manager │ ├── template │ └── update ├── yyjson-devel ├── yyjson │ └── template ├── z3-devel ├── z3-ocaml ├── z3 │ ├── patches │ │ └── ocaml.patch │ └── template ├── z80ex-devel ├── z80ex │ ├── patches │ │ └── fix-cflags.patch │ └── template ├── zabbix-agent ├── zabbix-frontend-php ├── zabbix-proxy ├── zabbix-utils ├── zabbix │ ├── files │ │ ├── zabbix-agent │ │ │ └── run │ │ ├── zabbix-proxy │ │ │ └── run │ │ └── zabbix-server │ │ │ └── run │ ├── patches │ │ └── fix-libxml2_m4.patch │ ├── template │ └── update ├── zanshin │ └── template ├── zathura-cb │ └── template ├── zathura-devel ├── zathura-djvu │ └── template ├── zathura-pdf-mupdf │ └── template ├── zathura-pdf-poppler │ ├── template │ └── update ├── zathura-ps │ └── template ├── zathura │ └── template ├── zaz │ ├── patches │ │ └── Makefile.in.patch │ └── template ├── zbar-qt ├── zbar │ ├── patches │ │ ├── PyEval_InitThreads.patch │ │ ├── python-3.11.patch │ │ ├── python-3.12.patch │ │ └── python-3.9.patch │ ├── template │ └── update ├── zcfan │ ├── files │ │ ├── README.voidlinux │ │ └── zcfan │ │ │ └── run │ └── template ├── zchunk-devel ├── zchunk │ └── template ├── zd1211-firmware │ └── template ├── zeal │ ├── template │ └── update ├── zeek-devel ├── zeek │ ├── files │ │ ├── bro │ │ │ └── run │ │ └── zeek │ │ │ └── run │ └── template ├── zeitgeist-devel ├── zeitgeist │ ├── patches │ │ └── skip-log-tests.patch │ └── template ├── zelbar │ └── template ├── zellij │ └── template ├── zenity │ └── template ├── zenmap ├── zeroc-mcpp │ ├── patches │ │ ├── Makefile-install.diff │ │ └── no-m32.patch │ └── template ├── zerofree │ ├── patches │ │ └── fix-musl.patch │ └── template ├── zeroinstall-injector ├── zeroinstall │ ├── template │ └── update ├── zeromq-devel ├── zeromq │ └── template ├── zet │ └── template ├── zeux-volk │ ├── template │ └── update ├── zf │ └── template ├── zfs-auto-snapshot │ ├── template │ └── update ├── zfs-devel ├── zfs-lts-devel ├── zfs-lts-pam ├── zfs-lts │ ├── files │ │ └── zed │ │ │ └── run │ ├── patches │ │ ├── 0001-only-build-the-module-in-dkms.conf.patch │ │ └── 0003-fix-seektest-musl.patch │ ├── template │ └── update ├── zfs-pam ├── zfs-prune-snapshots │ └── template ├── zfs │ ├── files │ │ └── zed │ │ │ └── run │ ├── patches │ │ ├── 0001-only-build-the-module-in-dkms.conf.patch │ │ └── 0002-fix-seektest-musl.patch │ ├── template │ └── update ├── zfsbootmenu │ ├── INSTALL │ └── template ├── zig │ ├── template │ └── update ├── zile │ ├── patches │ │ └── zile.1.in.patch │ └── template ├── zim-tools │ └── template ├── zim │ ├── patches │ │ └── xdg-rename.patch │ └── template ├── zimg-devel ├── zimg │ ├── patches │ │ └── fix-size_t.patch │ ├── template │ └── update ├── zimwriterfs ├── zinnia │ ├── patches │ │ ├── Fix-compile-error-of-std-make_pair-in-C-11.patch │ │ └── minimum-distance-precision.patch │ └── template ├── zint-devel ├── zint-qt ├── zint │ ├── patches │ │ └── 0001-Fix-installation-of-cmake-files.patch │ └── template ├── zip │ ├── patches │ │ ├── exec-stack.patch │ │ ├── fix_install.diff │ │ ├── reproducible-build.patch │ │ └── zipnote.patch │ ├── template │ └── update ├── ziptuner │ └── template ├── zisofs-tools │ └── template ├── zita-ajbridge │ └── template ├── zita-alsa-pcmi-devel ├── zita-alsa-pcmi │ └── template ├── zita-at1 │ └── template ├── zita-convolver-devel ├── zita-convolver │ └── template ├── zita-njbridge │ └── template ├── zita-resampler-devel ├── zita-resampler │ └── template ├── zix-devel ├── zix │ └── template ├── zk │ └── template ├── zlib-devel ├── zlib-ng-devel ├── zlib-ng │ └── template ├── zlib │ ├── patches │ │ └── makefile_ranlib_syntax.patch │ ├── template │ └── update ├── zls │ ├── template │ └── update ├── zmap │ └── template ├── zn_poly │ ├── files │ │ ├── tuning-32.c │ │ └── tuning-64.c │ └── template ├── znc-devel ├── znc-perl ├── znc-python3 ├── znc-tcl ├── znc │ ├── files │ │ ├── README.voidlinux │ │ └── znc │ │ │ └── run │ └── template ├── zola │ └── template ├── zoom │ ├── files │ │ └── DISTRIBUTION-DETAILS │ ├── template │ └── update ├── zopfli-devel ├── zopfli │ └── template ├── zoxide │ └── template ├── zpaq │ ├── template │ └── update ├── zproto │ └── template ├── zps │ └── template ├── zr │ └── template ├── zramen │ └── template ├── zrandr │ └── template ├── zrepl │ ├── files │ │ ├── zrepl.yml │ │ └── zrepl │ │ │ └── run │ └── template ├── zsh-autosuggestions │ └── template ├── zsh-completions │ └── template ├── zsh-history-substring-search │ ├── files │ │ └── README.voidlinux │ └── template ├── zsh-syntax-highlighting │ └── template ├── zsh │ ├── files │ │ └── zprofile │ ├── patches │ │ ├── 50278.patch │ │ ├── 50325.patch │ │ └── gcc14.patch │ └── template ├── zsnes │ ├── files │ │ ├── zsnes.desktop │ │ └── zsnes.png │ ├── patches │ │ ├── patch-makefilein.diff │ │ ├── patch-tools_strutil.h.diff │ │ ├── patch-zip_zpng.c.diff │ │ └── zsnes.patch │ ├── template │ └── update ├── zstd │ ├── patches │ │ ├── dynamic-pzstd.patch │ │ └── ldflags.patch │ └── template ├── zsync │ ├── template │ └── update ├── zug │ └── template ├── zulip-desktop │ └── template ├── zulip-term │ └── template ├── zulucrypt-devel ├── zulucrypt-gui ├── zulucrypt │ ├── patches │ │ ├── 20-disable-auto-update.patch │ │ ├── 30-fix-cflags.patch │ │ └── 40-libcryptsetup-is-always-available.patch │ └── template ├── zutils │ ├── files │ │ └── README.voidlinux │ ├── patches │ │ └── cflags.patch │ └── template ├── zutty │ └── template ├── zwm │ ├── patches │ │ ├── fix-makefile.patch │ │ └── fix-musl.patch │ └── template ├── zxcvbn-c-devel ├── zxcvbn-c │ ├── patches │ │ └── cross-run-dictgen.patch │ └── template ├── zxing-cpp-devel ├── zxing-cpp │ └── template ├── zynaddsubfx │ ├── patches │ │ ├── cmake-build-type-none.patch │ │ ├── fix-bogus-strstr.patch │ │ └── fix-memset.patch │ └── template ├── zziplib-devel ├── zziplib-utils ├── zziplib │ ├── patches │ │ └── cmake-build-type-none-soname.patch │ └── template ├── zzuf │ └── template ├── zzz-user-hooks │ └── template └── zzzy │ └── template └── xbps-src /srcpkgs/66-devel: -------------------------------------------------------------------------------- 1 | 66 -------------------------------------------------------------------------------- /srcpkgs/66-doc: -------------------------------------------------------------------------------- 1 | 66 -------------------------------------------------------------------------------- /srcpkgs/7zip-unrar: -------------------------------------------------------------------------------- 1 | 7zip -------------------------------------------------------------------------------- /srcpkgs/CSFML-devel: -------------------------------------------------------------------------------- 1 | CSFML -------------------------------------------------------------------------------- /srcpkgs/CUnit-devel: -------------------------------------------------------------------------------- 1 | CUnit -------------------------------------------------------------------------------- /srcpkgs/Carla-devel: -------------------------------------------------------------------------------- 1 | Carla -------------------------------------------------------------------------------- /srcpkgs/CoinMP-devel: -------------------------------------------------------------------------------- 1 | CoinMP -------------------------------------------------------------------------------- /srcpkgs/FAudio-devel: -------------------------------------------------------------------------------- 1 | FAudio -------------------------------------------------------------------------------- /srcpkgs/Field3D-devel: -------------------------------------------------------------------------------- 1 | Field3D -------------------------------------------------------------------------------- /srcpkgs/GPaste-devel: -------------------------------------------------------------------------------- 1 | GPaste -------------------------------------------------------------------------------- /srcpkgs/Gifsicle: -------------------------------------------------------------------------------- 1 | gifsicle -------------------------------------------------------------------------------- /srcpkgs/Haru-devel: -------------------------------------------------------------------------------- 1 | Haru -------------------------------------------------------------------------------- /srcpkgs/Ice-devel: -------------------------------------------------------------------------------- 1 | Ice -------------------------------------------------------------------------------- /srcpkgs/KDSoap-devel: -------------------------------------------------------------------------------- 1 | KDSoap -------------------------------------------------------------------------------- /srcpkgs/LuaJIT-devel: -------------------------------------------------------------------------------- 1 | LuaJIT -------------------------------------------------------------------------------- /srcpkgs/MEGAsdk-devel: -------------------------------------------------------------------------------- 1 | MEGAsdk -------------------------------------------------------------------------------- /srcpkgs/MEGAsdk-qt: -------------------------------------------------------------------------------- 1 | MEGAsdk -------------------------------------------------------------------------------- /srcpkgs/MesaLib-devel: -------------------------------------------------------------------------------- 1 | mesa -------------------------------------------------------------------------------- /srcpkgs/ORBit2-devel: -------------------------------------------------------------------------------- 1 | ORBit2 -------------------------------------------------------------------------------- /srcpkgs/OpenCPN-doc: -------------------------------------------------------------------------------- 1 | OpenCPN -------------------------------------------------------------------------------- /srcpkgs/QMPlay2-devel: -------------------------------------------------------------------------------- 1 | QMPlay2 -------------------------------------------------------------------------------- /srcpkgs/SDL: -------------------------------------------------------------------------------- 1 | sdl12-compat -------------------------------------------------------------------------------- /srcpkgs/SDL2-devel: -------------------------------------------------------------------------------- 1 | SDL2 -------------------------------------------------------------------------------- /srcpkgs/SDL3-devel: -------------------------------------------------------------------------------- 1 | SDL3 -------------------------------------------------------------------------------- /srcpkgs/SDL_gfx-devel: -------------------------------------------------------------------------------- 1 | SDL_gfx -------------------------------------------------------------------------------- /srcpkgs/SDL_net-devel: -------------------------------------------------------------------------------- 1 | SDL_net -------------------------------------------------------------------------------- /srcpkgs/SDL_ttf-devel: -------------------------------------------------------------------------------- 1 | SDL_ttf -------------------------------------------------------------------------------- /srcpkgs/SFML-devel: -------------------------------------------------------------------------------- 1 | SFML -------------------------------------------------------------------------------- /srcpkgs/SoapyLMS7: -------------------------------------------------------------------------------- 1 | LimeSuite -------------------------------------------------------------------------------- /srcpkgs/Thunar-devel: -------------------------------------------------------------------------------- 1 | Thunar -------------------------------------------------------------------------------- /srcpkgs/WildMidi: -------------------------------------------------------------------------------- 1 | wildmidi -------------------------------------------------------------------------------- /srcpkgs/XQilla-devel: -------------------------------------------------------------------------------- 1 | XQilla -------------------------------------------------------------------------------- /srcpkgs/ZMusic-devel: -------------------------------------------------------------------------------- 1 | ZMusic -------------------------------------------------------------------------------- /srcpkgs/a52dec: -------------------------------------------------------------------------------- 1 | liba52 -------------------------------------------------------------------------------- /srcpkgs/aalib-devel: -------------------------------------------------------------------------------- 1 | aalib -------------------------------------------------------------------------------- /srcpkgs/aalib-utils: -------------------------------------------------------------------------------- 1 | aalib -------------------------------------------------------------------------------- /srcpkgs/abiword-devel: -------------------------------------------------------------------------------- 1 | abiword -------------------------------------------------------------------------------- /srcpkgs/acl-devel: -------------------------------------------------------------------------------- 1 | acl -------------------------------------------------------------------------------- /srcpkgs/acl-progs: -------------------------------------------------------------------------------- 1 | acl -------------------------------------------------------------------------------- /srcpkgs/ada-devel: -------------------------------------------------------------------------------- 1 | ada -------------------------------------------------------------------------------- /srcpkgs/afflib-devel: -------------------------------------------------------------------------------- 1 | afflib -------------------------------------------------------------------------------- /srcpkgs/agg-devel: -------------------------------------------------------------------------------- 1 | agg -------------------------------------------------------------------------------- /srcpkgs/aldumb: -------------------------------------------------------------------------------- 1 | dumb -------------------------------------------------------------------------------- /srcpkgs/alembic-devel: -------------------------------------------------------------------------------- 1 | alembic -------------------------------------------------------------------------------- /srcpkgs/alure-devel: -------------------------------------------------------------------------------- 1 | alure -------------------------------------------------------------------------------- /srcpkgs/aml-devel: -------------------------------------------------------------------------------- 1 | aml -------------------------------------------------------------------------------- /srcpkgs/amtk-devel: -------------------------------------------------------------------------------- 1 | amtk -------------------------------------------------------------------------------- /srcpkgs/anjuta-devel: -------------------------------------------------------------------------------- 1 | anjuta -------------------------------------------------------------------------------- /srcpkgs/annie: -------------------------------------------------------------------------------- 1 | lux -------------------------------------------------------------------------------- /srcpkgs/anthy-devel: -------------------------------------------------------------------------------- 1 | anthy -------------------------------------------------------------------------------- /srcpkgs/antimicro: -------------------------------------------------------------------------------- 1 | antimicrox -------------------------------------------------------------------------------- /srcpkgs/apache-devel: -------------------------------------------------------------------------------- 1 | apache -------------------------------------------------------------------------------- /srcpkgs/apr-devel: -------------------------------------------------------------------------------- 1 | apr -------------------------------------------------------------------------------- /srcpkgs/apr-util-db: -------------------------------------------------------------------------------- 1 | apr-util -------------------------------------------------------------------------------- /srcpkgs/apt-devel: -------------------------------------------------------------------------------- 1 | apt -------------------------------------------------------------------------------- /srcpkgs/apt-doc: -------------------------------------------------------------------------------- 1 | apt -------------------------------------------------------------------------------- /srcpkgs/arb: -------------------------------------------------------------------------------- 1 | flintlib -------------------------------------------------------------------------------- /srcpkgs/arb-devel: -------------------------------------------------------------------------------- 1 | flintlib -------------------------------------------------------------------------------- /srcpkgs/arcan-devel: -------------------------------------------------------------------------------- 1 | arcan -------------------------------------------------------------------------------- /srcpkgs/arcan_sdl: -------------------------------------------------------------------------------- 1 | arcan -------------------------------------------------------------------------------- /srcpkgs/argtable-doc: -------------------------------------------------------------------------------- 1 | argtable -------------------------------------------------------------------------------- /srcpkgs/aspell-devel: -------------------------------------------------------------------------------- 1 | aspell -------------------------------------------------------------------------------- /srcpkgs/atf-devel: -------------------------------------------------------------------------------- 1 | atf -------------------------------------------------------------------------------- /srcpkgs/atf-libs: -------------------------------------------------------------------------------- 1 | atf -------------------------------------------------------------------------------- /srcpkgs/atk: -------------------------------------------------------------------------------- 1 | at-spi2-core -------------------------------------------------------------------------------- /srcpkgs/atkmm-devel: -------------------------------------------------------------------------------- 1 | atkmm -------------------------------------------------------------------------------- /srcpkgs/atril-dvi: -------------------------------------------------------------------------------- 1 | atril -------------------------------------------------------------------------------- /srcpkgs/attica-devel: -------------------------------------------------------------------------------- 1 | attica -------------------------------------------------------------------------------- /srcpkgs/attica-qt5: -------------------------------------------------------------------------------- 1 | attica -------------------------------------------------------------------------------- /srcpkgs/attr-devel: -------------------------------------------------------------------------------- 1 | attr -------------------------------------------------------------------------------- /srcpkgs/attr-progs: -------------------------------------------------------------------------------- 1 | attr -------------------------------------------------------------------------------- /srcpkgs/aubio-devel: -------------------------------------------------------------------------------- 1 | aubio -------------------------------------------------------------------------------- /srcpkgs/augeas-devel: -------------------------------------------------------------------------------- 1 | augeas -------------------------------------------------------------------------------- /srcpkgs/avahi-autoipd: -------------------------------------------------------------------------------- 1 | avahi -------------------------------------------------------------------------------- /srcpkgs/avahi-libs: -------------------------------------------------------------------------------- 1 | avahi -------------------------------------------------------------------------------- /srcpkgs/avahi-utils: -------------------------------------------------------------------------------- 1 | avahi -------------------------------------------------------------------------------- /srcpkgs/avfs-devel: -------------------------------------------------------------------------------- 1 | avfs -------------------------------------------------------------------------------- /srcpkgs/babl-devel: -------------------------------------------------------------------------------- 1 | babl -------------------------------------------------------------------------------- /srcpkgs/bamf-devel: -------------------------------------------------------------------------------- 1 | bamf -------------------------------------------------------------------------------- /srcpkgs/baresip-devel: -------------------------------------------------------------------------------- 1 | baresip -------------------------------------------------------------------------------- /srcpkgs/barrier: -------------------------------------------------------------------------------- 1 | input-leap -------------------------------------------------------------------------------- /srcpkgs/bash-devel: -------------------------------------------------------------------------------- 1 | bash -------------------------------------------------------------------------------- /srcpkgs/basu-devel: -------------------------------------------------------------------------------- 1 | basu -------------------------------------------------------------------------------- /srcpkgs/bcc-devel: -------------------------------------------------------------------------------- 1 | bcc -------------------------------------------------------------------------------- /srcpkgs/bcc-tools: -------------------------------------------------------------------------------- 1 | bcc -------------------------------------------------------------------------------- /srcpkgs/bcg729-devel: -------------------------------------------------------------------------------- 1 | bcg729 -------------------------------------------------------------------------------- /srcpkgs/bcnc: -------------------------------------------------------------------------------- 1 | bCNC -------------------------------------------------------------------------------- /srcpkgs/bcunit-devel: -------------------------------------------------------------------------------- 1 | bcunit -------------------------------------------------------------------------------- /srcpkgs/bdf2psf: -------------------------------------------------------------------------------- 1 | console-setup -------------------------------------------------------------------------------- /srcpkgs/bearssl-devel: -------------------------------------------------------------------------------- 1 | bearssl -------------------------------------------------------------------------------- /srcpkgs/belcard-devel: -------------------------------------------------------------------------------- 1 | belcard -------------------------------------------------------------------------------- /srcpkgs/belr-devel: -------------------------------------------------------------------------------- 1 | belr -------------------------------------------------------------------------------- /srcpkgs/bemenu-devel: -------------------------------------------------------------------------------- 1 | bemenu -------------------------------------------------------------------------------- /srcpkgs/bglibs-devel: -------------------------------------------------------------------------------- 1 | bglibs -------------------------------------------------------------------------------- /srcpkgs/bin86: -------------------------------------------------------------------------------- 1 | dev86 -------------------------------------------------------------------------------- /srcpkgs/bind-devel: -------------------------------------------------------------------------------- 1 | bind -------------------------------------------------------------------------------- /srcpkgs/bind-libs: -------------------------------------------------------------------------------- 1 | bind -------------------------------------------------------------------------------- /srcpkgs/bind-utils: -------------------------------------------------------------------------------- 1 | bind -------------------------------------------------------------------------------- /srcpkgs/binpac: -------------------------------------------------------------------------------- 1 | zeek -------------------------------------------------------------------------------- /srcpkgs/binpac-devel: -------------------------------------------------------------------------------- 1 | zeek -------------------------------------------------------------------------------- /srcpkgs/binutils-doc: -------------------------------------------------------------------------------- 1 | binutils -------------------------------------------------------------------------------- /srcpkgs/bitcoin-devel: -------------------------------------------------------------------------------- 1 | bitcoin -------------------------------------------------------------------------------- /srcpkgs/bitcoin-qt: -------------------------------------------------------------------------------- 1 | bitcoin -------------------------------------------------------------------------------- /srcpkgs/bitlbee-devel: -------------------------------------------------------------------------------- 1 | bitlbee -------------------------------------------------------------------------------- /srcpkgs/blas: -------------------------------------------------------------------------------- 1 | lapack -------------------------------------------------------------------------------- /srcpkgs/blas-devel: -------------------------------------------------------------------------------- 1 | lapack -------------------------------------------------------------------------------- /srcpkgs/bluez-cups: -------------------------------------------------------------------------------- 1 | bluez -------------------------------------------------------------------------------- /srcpkgs/bluez-hid2hci: -------------------------------------------------------------------------------- 1 | bluez -------------------------------------------------------------------------------- /srcpkgs/bluez-mesh: -------------------------------------------------------------------------------- 1 | bluez -------------------------------------------------------------------------------- /srcpkgs/bluez-obex: -------------------------------------------------------------------------------- 1 | bluez -------------------------------------------------------------------------------- /srcpkgs/boinc-devel: -------------------------------------------------------------------------------- 1 | boinc -------------------------------------------------------------------------------- /srcpkgs/boinc-nox: -------------------------------------------------------------------------------- 1 | boinc -------------------------------------------------------------------------------- /srcpkgs/boost-build: -------------------------------------------------------------------------------- 1 | boost -------------------------------------------------------------------------------- /srcpkgs/boost-devel: -------------------------------------------------------------------------------- 1 | boost -------------------------------------------------------------------------------- /srcpkgs/boost-python3: -------------------------------------------------------------------------------- 1 | boost -------------------------------------------------------------------------------- /srcpkgs/boswars-data: -------------------------------------------------------------------------------- 1 | boswars -------------------------------------------------------------------------------- /srcpkgs/botan-devel: -------------------------------------------------------------------------------- 1 | botan -------------------------------------------------------------------------------- /srcpkgs/botan-doc: -------------------------------------------------------------------------------- 1 | botan -------------------------------------------------------------------------------- /srcpkgs/box2d-devel: -------------------------------------------------------------------------------- 1 | box2d -------------------------------------------------------------------------------- /srcpkgs/bpftool: -------------------------------------------------------------------------------- 1 | linux-tools -------------------------------------------------------------------------------- /srcpkgs/brasero-devel: -------------------------------------------------------------------------------- 1 | brasero -------------------------------------------------------------------------------- /srcpkgs/brial-devel: -------------------------------------------------------------------------------- 1 | brial -------------------------------------------------------------------------------- /srcpkgs/brltty-devel: -------------------------------------------------------------------------------- 1 | brltty -------------------------------------------------------------------------------- /srcpkgs/bro: -------------------------------------------------------------------------------- 1 | zeek -------------------------------------------------------------------------------- /srcpkgs/brotli-devel: -------------------------------------------------------------------------------- 1 | brotli -------------------------------------------------------------------------------- /srcpkgs/bsatool: -------------------------------------------------------------------------------- 1 | openmw -------------------------------------------------------------------------------- /srcpkgs/bsdtar: -------------------------------------------------------------------------------- 1 | libarchive -------------------------------------------------------------------------------- /srcpkgs/bsdunzip: -------------------------------------------------------------------------------- 1 | libarchive -------------------------------------------------------------------------------- /srcpkgs/bullet-devel: -------------------------------------------------------------------------------- 1 | bullet -------------------------------------------------------------------------------- /srcpkgs/busybox-core: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /srcpkgs/busybox-huge: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /srcpkgs/bzip2-devel: -------------------------------------------------------------------------------- 1 | bzip2 -------------------------------------------------------------------------------- /srcpkgs/bzip3-devel: -------------------------------------------------------------------------------- 1 | bzip3 -------------------------------------------------------------------------------- /srcpkgs/bzrtp-devel: -------------------------------------------------------------------------------- 1 | bzrtp -------------------------------------------------------------------------------- /srcpkgs/c-ares-devel: -------------------------------------------------------------------------------- 1 | c-ares -------------------------------------------------------------------------------- /srcpkgs/c-blosc-devel: -------------------------------------------------------------------------------- 1 | c-blosc -------------------------------------------------------------------------------- /srcpkgs/cJSON-devel: -------------------------------------------------------------------------------- 1 | cJSON -------------------------------------------------------------------------------- /srcpkgs/cairo-devel: -------------------------------------------------------------------------------- 1 | cairo -------------------------------------------------------------------------------- /srcpkgs/cairomm-devel: -------------------------------------------------------------------------------- 1 | cairomm -------------------------------------------------------------------------------- /srcpkgs/caribou-devel: -------------------------------------------------------------------------------- 1 | caribou -------------------------------------------------------------------------------- /srcpkgs/cava-gui: -------------------------------------------------------------------------------- 1 | cava -------------------------------------------------------------------------------- /srcpkgs/cbang-devel: -------------------------------------------------------------------------------- 1 | cbang -------------------------------------------------------------------------------- /srcpkgs/cblas: -------------------------------------------------------------------------------- 1 | lapack -------------------------------------------------------------------------------- /srcpkgs/cblas-devel: -------------------------------------------------------------------------------- 1 | lapack -------------------------------------------------------------------------------- /srcpkgs/cddlib-devel: -------------------------------------------------------------------------------- 1 | cddlib -------------------------------------------------------------------------------- /srcpkgs/cdrskin: -------------------------------------------------------------------------------- 1 | libburn -------------------------------------------------------------------------------- /srcpkgs/cdrtools: -------------------------------------------------------------------------------- 1 | schilytools -------------------------------------------------------------------------------- /srcpkgs/cec-client: -------------------------------------------------------------------------------- 1 | libcec -------------------------------------------------------------------------------- /srcpkgs/cegui-devel: -------------------------------------------------------------------------------- 1 | cegui -------------------------------------------------------------------------------- /srcpkgs/cegui-doc: -------------------------------------------------------------------------------- 1 | cegui -------------------------------------------------------------------------------- /srcpkgs/celt-devel: -------------------------------------------------------------------------------- 1 | celt -------------------------------------------------------------------------------- /srcpkgs/cfitsio-devel: -------------------------------------------------------------------------------- 1 | cfitsio -------------------------------------------------------------------------------- /srcpkgs/cgal-devel: -------------------------------------------------------------------------------- 1 | cgal -------------------------------------------------------------------------------- /srcpkgs/chafa-devel: -------------------------------------------------------------------------------- 1 | chafa -------------------------------------------------------------------------------- /srcpkgs/check-devel: -------------------------------------------------------------------------------- 1 | check -------------------------------------------------------------------------------- /srcpkgs/cheese-devel: -------------------------------------------------------------------------------- 1 | cheese -------------------------------------------------------------------------------- /srcpkgs/chicken-devel: -------------------------------------------------------------------------------- 1 | chicken -------------------------------------------------------------------------------- /srcpkgs/cjs-devel: -------------------------------------------------------------------------------- 1 | cjs -------------------------------------------------------------------------------- /srcpkgs/ck-devel: -------------------------------------------------------------------------------- 1 | ck -------------------------------------------------------------------------------- /srcpkgs/ckbcomp: -------------------------------------------------------------------------------- 1 | console-setup -------------------------------------------------------------------------------- /srcpkgs/clamav-devel: -------------------------------------------------------------------------------- 1 | clamav -------------------------------------------------------------------------------- /srcpkgs/clang: -------------------------------------------------------------------------------- 1 | llvm -------------------------------------------------------------------------------- /srcpkgs/clang-analyzer: -------------------------------------------------------------------------------- 1 | llvm -------------------------------------------------------------------------------- /srcpkgs/clang17: -------------------------------------------------------------------------------- 1 | llvm17 -------------------------------------------------------------------------------- /srcpkgs/clang17-devel: -------------------------------------------------------------------------------- 1 | llvm17 -------------------------------------------------------------------------------- /srcpkgs/clang18: -------------------------------------------------------------------------------- 1 | llvm18 -------------------------------------------------------------------------------- /srcpkgs/clang18-devel: -------------------------------------------------------------------------------- 1 | llvm18 -------------------------------------------------------------------------------- /srcpkgs/clang19: -------------------------------------------------------------------------------- 1 | llvm19 -------------------------------------------------------------------------------- /srcpkgs/clang19-devel: -------------------------------------------------------------------------------- 1 | llvm19 -------------------------------------------------------------------------------- /srcpkgs/clapper-devel: -------------------------------------------------------------------------------- 1 | clapper -------------------------------------------------------------------------------- /srcpkgs/clapper-libs: -------------------------------------------------------------------------------- 1 | clapper -------------------------------------------------------------------------------- /srcpkgs/cld2-devel: -------------------------------------------------------------------------------- 1 | cld2 -------------------------------------------------------------------------------- /srcpkgs/cld2-full: -------------------------------------------------------------------------------- 1 | cld2 -------------------------------------------------------------------------------- /srcpkgs/clipper-devel: -------------------------------------------------------------------------------- 1 | clipper -------------------------------------------------------------------------------- /srcpkgs/cliquer-devel: -------------------------------------------------------------------------------- 1 | cliquer -------------------------------------------------------------------------------- /srcpkgs/cln-devel: -------------------------------------------------------------------------------- 1 | cln -------------------------------------------------------------------------------- /srcpkgs/cloog-devel: -------------------------------------------------------------------------------- 1 | cloog -------------------------------------------------------------------------------- /srcpkgs/clucene-devel: -------------------------------------------------------------------------------- 1 | clucene -------------------------------------------------------------------------------- /srcpkgs/clutter-devel: -------------------------------------------------------------------------------- 1 | clutter -------------------------------------------------------------------------------- /srcpkgs/cmake-gui: -------------------------------------------------------------------------------- 1 | cmake -------------------------------------------------------------------------------- /srcpkgs/cmark-devel: -------------------------------------------------------------------------------- 1 | cmark -------------------------------------------------------------------------------- /srcpkgs/cmocka-devel: -------------------------------------------------------------------------------- 1 | cmocka -------------------------------------------------------------------------------- /srcpkgs/cmus-cdio: -------------------------------------------------------------------------------- 1 | cmus -------------------------------------------------------------------------------- /srcpkgs/cmus-faad: -------------------------------------------------------------------------------- 1 | cmus -------------------------------------------------------------------------------- /srcpkgs/cmus-ffmpeg: -------------------------------------------------------------------------------- 1 | cmus -------------------------------------------------------------------------------- /srcpkgs/cmus-flac: -------------------------------------------------------------------------------- 1 | cmus -------------------------------------------------------------------------------- /srcpkgs/cmus-jack: -------------------------------------------------------------------------------- 1 | cmus -------------------------------------------------------------------------------- /srcpkgs/cmus-libao: -------------------------------------------------------------------------------- 1 | cmus -------------------------------------------------------------------------------- /srcpkgs/cmus-modplug: -------------------------------------------------------------------------------- 1 | cmus -------------------------------------------------------------------------------- /srcpkgs/cmus-mpc: -------------------------------------------------------------------------------- 1 | cmus -------------------------------------------------------------------------------- /srcpkgs/cmus-opus: -------------------------------------------------------------------------------- 1 | cmus -------------------------------------------------------------------------------- /srcpkgs/cmus-oss: -------------------------------------------------------------------------------- 1 | cmus -------------------------------------------------------------------------------- /srcpkgs/cmus-pulseaudio: -------------------------------------------------------------------------------- 1 | cmus -------------------------------------------------------------------------------- /srcpkgs/cmus-sndio: -------------------------------------------------------------------------------- 1 | cmus -------------------------------------------------------------------------------- /srcpkgs/cmus-wavpack: -------------------------------------------------------------------------------- 1 | cmus -------------------------------------------------------------------------------- /srcpkgs/codec2-devel: -------------------------------------------------------------------------------- 1 | codec2 -------------------------------------------------------------------------------- /srcpkgs/coeurl-devel: -------------------------------------------------------------------------------- 1 | coeurl -------------------------------------------------------------------------------- /srcpkgs/cogl-devel: -------------------------------------------------------------------------------- 1 | cogl -------------------------------------------------------------------------------- /srcpkgs/coin3-devel: -------------------------------------------------------------------------------- 1 | coin3 -------------------------------------------------------------------------------- /srcpkgs/coin3-doc: -------------------------------------------------------------------------------- 1 | coin3 -------------------------------------------------------------------------------- /srcpkgs/colord-devel: -------------------------------------------------------------------------------- 1 | colord -------------------------------------------------------------------------------- /srcpkgs/compiler-rt: -------------------------------------------------------------------------------- 1 | llvm -------------------------------------------------------------------------------- /srcpkgs/compiler-rt17: -------------------------------------------------------------------------------- 1 | llvm17 -------------------------------------------------------------------------------- /srcpkgs/compiler-rt18: -------------------------------------------------------------------------------- 1 | llvm18 -------------------------------------------------------------------------------- /srcpkgs/compiler-rt19: -------------------------------------------------------------------------------- 1 | llvm19 -------------------------------------------------------------------------------- /srcpkgs/composer: -------------------------------------------------------------------------------- 1 | php -------------------------------------------------------------------------------- /srcpkgs/compton: -------------------------------------------------------------------------------- 1 | picom -------------------------------------------------------------------------------- /srcpkgs/confuse-devel: -------------------------------------------------------------------------------- 1 | confuse -------------------------------------------------------------------------------- /srcpkgs/conky-cli: -------------------------------------------------------------------------------- 1 | conky -------------------------------------------------------------------------------- /srcpkgs/connman-devel: -------------------------------------------------------------------------------- 1 | connman -------------------------------------------------------------------------------- /srcpkgs/coturn-devel: -------------------------------------------------------------------------------- 1 | coturn -------------------------------------------------------------------------------- /srcpkgs/cowsql-devel: -------------------------------------------------------------------------------- 1 | cowsql -------------------------------------------------------------------------------- /srcpkgs/cppcheck-gui: -------------------------------------------------------------------------------- 1 | cppcheck -------------------------------------------------------------------------------- /srcpkgs/cppdap-devel: -------------------------------------------------------------------------------- 1 | cppdap -------------------------------------------------------------------------------- /srcpkgs/cppdb-devel: -------------------------------------------------------------------------------- 1 | cppdb -------------------------------------------------------------------------------- /srcpkgs/cpptest-devel: -------------------------------------------------------------------------------- 1 | cpptest -------------------------------------------------------------------------------- /srcpkgs/cpupower: -------------------------------------------------------------------------------- 1 | linux-tools -------------------------------------------------------------------------------- /srcpkgs/cri-o-devel: -------------------------------------------------------------------------------- 1 | cri-o -------------------------------------------------------------------------------- /srcpkgs/criu-devel: -------------------------------------------------------------------------------- 1 | criu -------------------------------------------------------------------------------- /srcpkgs/criu-python: -------------------------------------------------------------------------------- 1 | criu -------------------------------------------------------------------------------- /srcpkgs/ctpl-devel: -------------------------------------------------------------------------------- 1 | ctpl -------------------------------------------------------------------------------- /srcpkgs/cups-devel: -------------------------------------------------------------------------------- 1 | cups -------------------------------------------------------------------------------- /srcpkgs/curlpp-devel: -------------------------------------------------------------------------------- 1 | curlpp -------------------------------------------------------------------------------- /srcpkgs/cutter-devel: -------------------------------------------------------------------------------- 1 | cutter -------------------------------------------------------------------------------- /srcpkgs/cvm-devel: -------------------------------------------------------------------------------- 1 | cvm -------------------------------------------------------------------------------- /srcpkgs/czmq-devel: -------------------------------------------------------------------------------- 1 | czmq -------------------------------------------------------------------------------- /srcpkgs/d-spy-devel: -------------------------------------------------------------------------------- 1 | d-spy -------------------------------------------------------------------------------- /srcpkgs/dash-libedit: -------------------------------------------------------------------------------- 1 | dash -------------------------------------------------------------------------------- /srcpkgs/db-devel: -------------------------------------------------------------------------------- 1 | db -------------------------------------------------------------------------------- /srcpkgs/db-doc: -------------------------------------------------------------------------------- 1 | db -------------------------------------------------------------------------------- /srcpkgs/dbus-devel: -------------------------------------------------------------------------------- 1 | dbus -------------------------------------------------------------------------------- /srcpkgs/dbus-libs: -------------------------------------------------------------------------------- 1 | dbus -------------------------------------------------------------------------------- /srcpkgs/dbus-x11: -------------------------------------------------------------------------------- 1 | dbus -------------------------------------------------------------------------------- /srcpkgs/dcadec-devel: -------------------------------------------------------------------------------- 1 | dcadec -------------------------------------------------------------------------------- /srcpkgs/dconf-devel: -------------------------------------------------------------------------------- 1 | dconf -------------------------------------------------------------------------------- /srcpkgs/ddcutil-devel: -------------------------------------------------------------------------------- 1 | ddcutil -------------------------------------------------------------------------------- /srcpkgs/debuginfod: -------------------------------------------------------------------------------- 1 | elfutils -------------------------------------------------------------------------------- /srcpkgs/deluge-gtk: -------------------------------------------------------------------------------- 1 | deluge -------------------------------------------------------------------------------- /srcpkgs/deluge-web: -------------------------------------------------------------------------------- 1 | deluge -------------------------------------------------------------------------------- /srcpkgs/devhelp-devel: -------------------------------------------------------------------------------- 1 | devhelp -------------------------------------------------------------------------------- /srcpkgs/devhelp-libs: -------------------------------------------------------------------------------- 1 | devhelp -------------------------------------------------------------------------------- /srcpkgs/device-mapper: -------------------------------------------------------------------------------- 1 | lvm2 -------------------------------------------------------------------------------- /srcpkgs/devil-devel: -------------------------------------------------------------------------------- 1 | devil -------------------------------------------------------------------------------- /srcpkgs/dhclient: -------------------------------------------------------------------------------- 1 | dhcp -------------------------------------------------------------------------------- /srcpkgs/dict: -------------------------------------------------------------------------------- 1 | dictd -------------------------------------------------------------------------------- /srcpkgs/dispcalGUI: -------------------------------------------------------------------------------- 1 | DisplayCAL -------------------------------------------------------------------------------- /srcpkgs/distcc-pump: -------------------------------------------------------------------------------- 1 | distcc -------------------------------------------------------------------------------- /srcpkgs/dlib-devel: -------------------------------------------------------------------------------- 1 | dlib -------------------------------------------------------------------------------- /srcpkgs/dmd-doc: -------------------------------------------------------------------------------- 1 | dmd -------------------------------------------------------------------------------- /srcpkgs/dmd2.081-doc: -------------------------------------------------------------------------------- 1 | dmd2.081 -------------------------------------------------------------------------------- /srcpkgs/dmraid-devel: -------------------------------------------------------------------------------- 1 | dmraid -------------------------------------------------------------------------------- /srcpkgs/docker: -------------------------------------------------------------------------------- 1 | docker-cli -------------------------------------------------------------------------------- /srcpkgs/doctest-devel: -------------------------------------------------------------------------------- 1 | doctest -------------------------------------------------------------------------------- /srcpkgs/dotconf-devel: -------------------------------------------------------------------------------- 1 | dotconf -------------------------------------------------------------------------------- /srcpkgs/dovecot-devel: -------------------------------------------------------------------------------- 1 | dovecot -------------------------------------------------------------------------------- /srcpkgs/dpdk-devel: -------------------------------------------------------------------------------- 1 | dpdk -------------------------------------------------------------------------------- /srcpkgs/dpdk-dkms: -------------------------------------------------------------------------------- 1 | dpdk -------------------------------------------------------------------------------- /srcpkgs/dpdk-doc: -------------------------------------------------------------------------------- 1 | dpdk -------------------------------------------------------------------------------- /srcpkgs/dpkg-devel: -------------------------------------------------------------------------------- 1 | dpkg -------------------------------------------------------------------------------- /srcpkgs/dpp-devel: -------------------------------------------------------------------------------- 1 | dpp -------------------------------------------------------------------------------- /srcpkgs/dqlite-devel: -------------------------------------------------------------------------------- 1 | dqlite -------------------------------------------------------------------------------- /srcpkgs/draco-devel: -------------------------------------------------------------------------------- 1 | draco -------------------------------------------------------------------------------- /srcpkgs/dracut-network: -------------------------------------------------------------------------------- 1 | dracut -------------------------------------------------------------------------------- /srcpkgs/dracut-uefi: -------------------------------------------------------------------------------- 1 | dracut -------------------------------------------------------------------------------- /srcpkgs/dssi-devel: -------------------------------------------------------------------------------- 1 | dssi -------------------------------------------------------------------------------- /srcpkgs/dtc-devel: -------------------------------------------------------------------------------- 1 | dtc -------------------------------------------------------------------------------- /srcpkgs/duckdb-devel: -------------------------------------------------------------------------------- 1 | duckdb -------------------------------------------------------------------------------- /srcpkgs/duktape-devel: -------------------------------------------------------------------------------- 1 | duktape -------------------------------------------------------------------------------- /srcpkgs/dumb-devel: -------------------------------------------------------------------------------- 1 | dumb -------------------------------------------------------------------------------- /srcpkgs/dumbplay: -------------------------------------------------------------------------------- 1 | dumb -------------------------------------------------------------------------------- /srcpkgs/eclib-devel: -------------------------------------------------------------------------------- 1 | eclib -------------------------------------------------------------------------------- /srcpkgs/ecm-devel: -------------------------------------------------------------------------------- 1 | ecm -------------------------------------------------------------------------------- /srcpkgs/edk2-shell: -------------------------------------------------------------------------------- 1 | edk2-ovmf -------------------------------------------------------------------------------- /srcpkgs/efitools-efi: -------------------------------------------------------------------------------- 1 | efitools -------------------------------------------------------------------------------- /srcpkgs/efl-devel: -------------------------------------------------------------------------------- 1 | efl -------------------------------------------------------------------------------- /srcpkgs/eid-mw-devel: -------------------------------------------------------------------------------- 1 | eid-mw -------------------------------------------------------------------------------- /srcpkgs/ell-devel: -------------------------------------------------------------------------------- 1 | ell -------------------------------------------------------------------------------- /srcpkgs/elogind-devel: -------------------------------------------------------------------------------- 1 | elogind -------------------------------------------------------------------------------- /srcpkgs/emacs-common: -------------------------------------------------------------------------------- 1 | emacs -------------------------------------------------------------------------------- /srcpkgs/emacs-gtk3: -------------------------------------------------------------------------------- 1 | emacs -------------------------------------------------------------------------------- /srcpkgs/emacs-pgtk: -------------------------------------------------------------------------------- 1 | emacs -------------------------------------------------------------------------------- /srcpkgs/emacs-x11: -------------------------------------------------------------------------------- 1 | emacs -------------------------------------------------------------------------------- /srcpkgs/embb-devel: -------------------------------------------------------------------------------- 1 | embb -------------------------------------------------------------------------------- /srcpkgs/embb-doc: -------------------------------------------------------------------------------- 1 | embb -------------------------------------------------------------------------------- /srcpkgs/embree-devel: -------------------------------------------------------------------------------- 1 | embree -------------------------------------------------------------------------------- /srcpkgs/emerald-devel: -------------------------------------------------------------------------------- 1 | emerald -------------------------------------------------------------------------------- /srcpkgs/enca-devel: -------------------------------------------------------------------------------- 1 | enca -------------------------------------------------------------------------------- /srcpkgs/enigma-doc: -------------------------------------------------------------------------------- 1 | enigma -------------------------------------------------------------------------------- /srcpkgs/eog-devel: -------------------------------------------------------------------------------- 1 | eog -------------------------------------------------------------------------------- /srcpkgs/eom-devel: -------------------------------------------------------------------------------- 1 | eom -------------------------------------------------------------------------------- /srcpkgs/erlang-doc: -------------------------------------------------------------------------------- 1 | erlang -------------------------------------------------------------------------------- /srcpkgs/erlang-wx: -------------------------------------------------------------------------------- 1 | erlang -------------------------------------------------------------------------------- /srcpkgs/esmtool: -------------------------------------------------------------------------------- 1 | openmw -------------------------------------------------------------------------------- /srcpkgs/espeak: -------------------------------------------------------------------------------- 1 | espeak-ng -------------------------------------------------------------------------------- /srcpkgs/eudev-libudev: -------------------------------------------------------------------------------- 1 | eudev -------------------------------------------------------------------------------- /srcpkgs/evemu-devel: -------------------------------------------------------------------------------- 1 | evemu -------------------------------------------------------------------------------- /srcpkgs/evince-devel: -------------------------------------------------------------------------------- 1 | evince -------------------------------------------------------------------------------- /srcpkgs/exa: -------------------------------------------------------------------------------- 1 | eza -------------------------------------------------------------------------------- /srcpkgs/execline-doc: -------------------------------------------------------------------------------- 1 | execline -------------------------------------------------------------------------------- /srcpkgs/exempi-devel: -------------------------------------------------------------------------------- 1 | exempi -------------------------------------------------------------------------------- /srcpkgs/exiv2-devel: -------------------------------------------------------------------------------- 1 | exiv2 -------------------------------------------------------------------------------- /srcpkgs/exo-devel: -------------------------------------------------------------------------------- 1 | exo -------------------------------------------------------------------------------- /srcpkgs/expat-devel: -------------------------------------------------------------------------------- 1 | expat -------------------------------------------------------------------------------- /srcpkgs/expect-devel: -------------------------------------------------------------------------------- 1 | expect -------------------------------------------------------------------------------- /srcpkgs/faac-devel: -------------------------------------------------------------------------------- 1 | faac -------------------------------------------------------------------------------- /srcpkgs/faad2-devel: -------------------------------------------------------------------------------- 1 | faad2 -------------------------------------------------------------------------------- /srcpkgs/facter-devel: -------------------------------------------------------------------------------- 1 | facter -------------------------------------------------------------------------------- /srcpkgs/fann-devel: -------------------------------------------------------------------------------- 1 | fann -------------------------------------------------------------------------------- /srcpkgs/fbida-exiftran: -------------------------------------------------------------------------------- 1 | fbida -------------------------------------------------------------------------------- /srcpkgs/fbida-fbi: -------------------------------------------------------------------------------- 1 | fbida -------------------------------------------------------------------------------- /srcpkgs/fbida-fbpdf: -------------------------------------------------------------------------------- 1 | fbida -------------------------------------------------------------------------------- /srcpkgs/fbida-ida: -------------------------------------------------------------------------------- 1 | fbida -------------------------------------------------------------------------------- /srcpkgs/fcft-devel: -------------------------------------------------------------------------------- 1 | fcft -------------------------------------------------------------------------------- /srcpkgs/fcgi-devel: -------------------------------------------------------------------------------- 1 | fcgi -------------------------------------------------------------------------------- /srcpkgs/fcitx: -------------------------------------------------------------------------------- 1 | fcitx5 -------------------------------------------------------------------------------- /srcpkgs/fcitx5-mozc: -------------------------------------------------------------------------------- 1 | mozc -------------------------------------------------------------------------------- /srcpkgs/fcitx5-qt5: -------------------------------------------------------------------------------- 1 | fcitx5-qt -------------------------------------------------------------------------------- /srcpkgs/fcitx5-qt6: -------------------------------------------------------------------------------- 1 | fcitx5-qt -------------------------------------------------------------------------------- /srcpkgs/fdk-aac-devel: -------------------------------------------------------------------------------- 1 | fdk-aac -------------------------------------------------------------------------------- /srcpkgs/ffcall-devel: -------------------------------------------------------------------------------- 1 | ffcall -------------------------------------------------------------------------------- /srcpkgs/ffmpeg-devel: -------------------------------------------------------------------------------- 1 | ffmpeg -------------------------------------------------------------------------------- /srcpkgs/ffmpeg6-devel: -------------------------------------------------------------------------------- 1 | ffmpeg6 -------------------------------------------------------------------------------- /srcpkgs/ffplay: -------------------------------------------------------------------------------- 1 | ffmpeg -------------------------------------------------------------------------------- /srcpkgs/ffplay6: -------------------------------------------------------------------------------- 1 | ffmpeg6 -------------------------------------------------------------------------------- /srcpkgs/fftw-devel: -------------------------------------------------------------------------------- 1 | fftw -------------------------------------------------------------------------------- /srcpkgs/file-devel: -------------------------------------------------------------------------------- 1 | file -------------------------------------------------------------------------------- /srcpkgs/finch: -------------------------------------------------------------------------------- 1 | pidgin -------------------------------------------------------------------------------- /srcpkgs/finch-devel: -------------------------------------------------------------------------------- 1 | pidgin -------------------------------------------------------------------------------- /srcpkgs/flang17: -------------------------------------------------------------------------------- 1 | llvm17 -------------------------------------------------------------------------------- /srcpkgs/flang17-devel: -------------------------------------------------------------------------------- 1 | llvm17 -------------------------------------------------------------------------------- /srcpkgs/flang18: -------------------------------------------------------------------------------- 1 | llvm18 -------------------------------------------------------------------------------- /srcpkgs/flang18-devel: -------------------------------------------------------------------------------- 1 | llvm18 -------------------------------------------------------------------------------- /srcpkgs/flang19: -------------------------------------------------------------------------------- 1 | llvm19 -------------------------------------------------------------------------------- /srcpkgs/flang19-devel: -------------------------------------------------------------------------------- 1 | llvm19 -------------------------------------------------------------------------------- /srcpkgs/flann-devel: -------------------------------------------------------------------------------- 1 | flann -------------------------------------------------------------------------------- /srcpkgs/flatpak-devel: -------------------------------------------------------------------------------- 1 | flatpak -------------------------------------------------------------------------------- /srcpkgs/flite-devel: -------------------------------------------------------------------------------- 1 | flite -------------------------------------------------------------------------------- /srcpkgs/fltk-devel: -------------------------------------------------------------------------------- 1 | fltk -------------------------------------------------------------------------------- /srcpkgs/fmt-devel: -------------------------------------------------------------------------------- 1 | fmt -------------------------------------------------------------------------------- /srcpkgs/folks-devel: -------------------------------------------------------------------------------- 1 | folks -------------------------------------------------------------------------------- /srcpkgs/foot-terminfo: -------------------------------------------------------------------------------- 1 | foot -------------------------------------------------------------------------------- /srcpkgs/fotoxx: -------------------------------------------------------------------------------- 1 | fotocx -------------------------------------------------------------------------------- /srcpkgs/fox-devel: -------------------------------------------------------------------------------- 1 | fox -------------------------------------------------------------------------------- /srcpkgs/fox-utils: -------------------------------------------------------------------------------- 1 | fox -------------------------------------------------------------------------------- /srcpkgs/fplll-devel: -------------------------------------------------------------------------------- 1 | fplll -------------------------------------------------------------------------------- /srcpkgs/frame-devel: -------------------------------------------------------------------------------- 1 | frame -------------------------------------------------------------------------------- /srcpkgs/freeciv-gtk2: -------------------------------------------------------------------------------- 1 | freeciv -------------------------------------------------------------------------------- /srcpkgs/freeciv-gtk3: -------------------------------------------------------------------------------- 1 | freeciv -------------------------------------------------------------------------------- /srcpkgs/freeciv-qt5: -------------------------------------------------------------------------------- 1 | freeciv -------------------------------------------------------------------------------- /srcpkgs/freeciv-qt6: -------------------------------------------------------------------------------- 1 | freeciv -------------------------------------------------------------------------------- /srcpkgs/freeciv-sdl: -------------------------------------------------------------------------------- 1 | freeciv -------------------------------------------------------------------------------- /srcpkgs/freeciv-xaw: -------------------------------------------------------------------------------- 1 | freeciv -------------------------------------------------------------------------------- /srcpkgs/freefall: -------------------------------------------------------------------------------- 1 | linux-tools -------------------------------------------------------------------------------- /srcpkgs/freerdp-devel: -------------------------------------------------------------------------------- 1 | freerdp -------------------------------------------------------------------------------- /srcpkgs/freetds-devel: -------------------------------------------------------------------------------- 1 | freetds -------------------------------------------------------------------------------- /srcpkgs/freetds-doc: -------------------------------------------------------------------------------- 1 | freetds -------------------------------------------------------------------------------- /srcpkgs/freexl-devel: -------------------------------------------------------------------------------- 1 | freexl -------------------------------------------------------------------------------- /srcpkgs/fribidi-devel: -------------------------------------------------------------------------------- 1 | fribidi -------------------------------------------------------------------------------- /srcpkgs/frobby-devel: -------------------------------------------------------------------------------- 1 | frobby -------------------------------------------------------------------------------- /srcpkgs/frr-devel: -------------------------------------------------------------------------------- 1 | frr -------------------------------------------------------------------------------- /srcpkgs/frr-flush: -------------------------------------------------------------------------------- 1 | frr -------------------------------------------------------------------------------- /srcpkgs/frr-reload: -------------------------------------------------------------------------------- 1 | frr -------------------------------------------------------------------------------- /srcpkgs/fstrcmp-doc: -------------------------------------------------------------------------------- 1 | fstrcmp -------------------------------------------------------------------------------- /srcpkgs/fstrm-devel: -------------------------------------------------------------------------------- 1 | fstrm -------------------------------------------------------------------------------- /srcpkgs/ftgl-devel: -------------------------------------------------------------------------------- 1 | ftgl -------------------------------------------------------------------------------- /srcpkgs/fuse-devel: -------------------------------------------------------------------------------- 1 | fuse -------------------------------------------------------------------------------- /srcpkgs/fuse2fs: -------------------------------------------------------------------------------- 1 | e2fsprogs -------------------------------------------------------------------------------- /srcpkgs/fuse3-devel: -------------------------------------------------------------------------------- 1 | fuse3 -------------------------------------------------------------------------------- /srcpkgs/fwknopd: -------------------------------------------------------------------------------- 1 | fwknop -------------------------------------------------------------------------------- /srcpkgs/fwupd-devel: -------------------------------------------------------------------------------- 1 | fwupd -------------------------------------------------------------------------------- /srcpkgs/fwupd-tests: -------------------------------------------------------------------------------- 1 | fwupd -------------------------------------------------------------------------------- /srcpkgs/gajim-omemo: -------------------------------------------------------------------------------- 1 | gajim -------------------------------------------------------------------------------- /srcpkgs/gameconqueror: -------------------------------------------------------------------------------- 1 | scanmem -------------------------------------------------------------------------------- /srcpkgs/gamin-devel: -------------------------------------------------------------------------------- 1 | gamin -------------------------------------------------------------------------------- /srcpkgs/gammu-devel: -------------------------------------------------------------------------------- 1 | gammu -------------------------------------------------------------------------------- /srcpkgs/gammu-smsd: -------------------------------------------------------------------------------- 1 | gammu -------------------------------------------------------------------------------- /srcpkgs/ganv-devel: -------------------------------------------------------------------------------- 1 | ganv -------------------------------------------------------------------------------- /srcpkgs/gap-devel: -------------------------------------------------------------------------------- 1 | gap -------------------------------------------------------------------------------- /srcpkgs/garcon-devel: -------------------------------------------------------------------------------- 1 | garcon -------------------------------------------------------------------------------- /srcpkgs/gavl-devel: -------------------------------------------------------------------------------- 1 | gavl -------------------------------------------------------------------------------- /srcpkgs/gc-devel: -------------------------------------------------------------------------------- 1 | gc -------------------------------------------------------------------------------- /srcpkgs/gcab-devel: -------------------------------------------------------------------------------- 1 | gcab -------------------------------------------------------------------------------- /srcpkgs/gcc-ada: -------------------------------------------------------------------------------- 1 | gcc -------------------------------------------------------------------------------- /srcpkgs/gcc-fortran: -------------------------------------------------------------------------------- 1 | gcc -------------------------------------------------------------------------------- /srcpkgs/gcc-go: -------------------------------------------------------------------------------- 1 | gcc -------------------------------------------------------------------------------- /srcpkgs/gcc-go-tools: -------------------------------------------------------------------------------- 1 | gcc -------------------------------------------------------------------------------- /srcpkgs/gcc-objc: -------------------------------------------------------------------------------- 1 | gcc -------------------------------------------------------------------------------- /srcpkgs/gcc-objc++: -------------------------------------------------------------------------------- 1 | gcc -------------------------------------------------------------------------------- /srcpkgs/gcc6-gcj: -------------------------------------------------------------------------------- 1 | gcc6 -------------------------------------------------------------------------------- /srcpkgs/gcc6-gcj-ecj: -------------------------------------------------------------------------------- 1 | gcc6 -------------------------------------------------------------------------------- /srcpkgs/gcr-devel: -------------------------------------------------------------------------------- 1 | gcr -------------------------------------------------------------------------------- /srcpkgs/gcr4-devel: -------------------------------------------------------------------------------- 1 | gcr4 -------------------------------------------------------------------------------- /srcpkgs/gd-devel: -------------------------------------------------------------------------------- 1 | gd -------------------------------------------------------------------------------- /srcpkgs/gd-progs: -------------------------------------------------------------------------------- 1 | gd -------------------------------------------------------------------------------- /srcpkgs/gdb-common: -------------------------------------------------------------------------------- 1 | gdb -------------------------------------------------------------------------------- /srcpkgs/gdb-multiarch: -------------------------------------------------------------------------------- 1 | gdb -------------------------------------------------------------------------------- /srcpkgs/gdbm-devel: -------------------------------------------------------------------------------- 1 | gdbm -------------------------------------------------------------------------------- /srcpkgs/gdl-devel: -------------------------------------------------------------------------------- 1 | gdl -------------------------------------------------------------------------------- /srcpkgs/gdm-devel: -------------------------------------------------------------------------------- 1 | gdm -------------------------------------------------------------------------------- /srcpkgs/geany-devel: -------------------------------------------------------------------------------- 1 | geany -------------------------------------------------------------------------------- /srcpkgs/gedit-devel: -------------------------------------------------------------------------------- 1 | gedit -------------------------------------------------------------------------------- /srcpkgs/gegl-devel: -------------------------------------------------------------------------------- 1 | gegl -------------------------------------------------------------------------------- /srcpkgs/geis-devel: -------------------------------------------------------------------------------- 1 | geis -------------------------------------------------------------------------------- /srcpkgs/geis-python3: -------------------------------------------------------------------------------- 1 | geis -------------------------------------------------------------------------------- /srcpkgs/geoip-devel: -------------------------------------------------------------------------------- 1 | geoip -------------------------------------------------------------------------------- /srcpkgs/geos-devel: -------------------------------------------------------------------------------- 1 | geos -------------------------------------------------------------------------------- /srcpkgs/getdns-devel: -------------------------------------------------------------------------------- 1 | getdns -------------------------------------------------------------------------------- /srcpkgs/gettext-devel: -------------------------------------------------------------------------------- 1 | gettext -------------------------------------------------------------------------------- /srcpkgs/gettext-libs: -------------------------------------------------------------------------------- 1 | gettext -------------------------------------------------------------------------------- /srcpkgs/gf2x-devel: -------------------------------------------------------------------------------- 1 | gf2x -------------------------------------------------------------------------------- /srcpkgs/gflags-devel: -------------------------------------------------------------------------------- 1 | gflags -------------------------------------------------------------------------------- /srcpkgs/ghc-doc: -------------------------------------------------------------------------------- 1 | ghc -------------------------------------------------------------------------------- /srcpkgs/ghdl-llvm: -------------------------------------------------------------------------------- 1 | ghdl -------------------------------------------------------------------------------- /srcpkgs/ghdl-mcode: -------------------------------------------------------------------------------- 1 | ghdl -------------------------------------------------------------------------------- /srcpkgs/ghex-devel: -------------------------------------------------------------------------------- 1 | ghex -------------------------------------------------------------------------------- /srcpkgs/giac-devel: -------------------------------------------------------------------------------- 1 | giac -------------------------------------------------------------------------------- /srcpkgs/giac-doc: -------------------------------------------------------------------------------- 1 | giac -------------------------------------------------------------------------------- /srcpkgs/giblib-devel: -------------------------------------------------------------------------------- 1 | giblib -------------------------------------------------------------------------------- /srcpkgs/giflib-devel: -------------------------------------------------------------------------------- 1 | giflib -------------------------------------------------------------------------------- /srcpkgs/giflib-tools: -------------------------------------------------------------------------------- 1 | giflib -------------------------------------------------------------------------------- /srcpkgs/giggle-devel: -------------------------------------------------------------------------------- 1 | giggle -------------------------------------------------------------------------------- /srcpkgs/gimp-devel: -------------------------------------------------------------------------------- 1 | gimp -------------------------------------------------------------------------------- /srcpkgs/girara-devel: -------------------------------------------------------------------------------- 1 | girara -------------------------------------------------------------------------------- /srcpkgs/git-all: -------------------------------------------------------------------------------- 1 | git -------------------------------------------------------------------------------- /srcpkgs/git-cvs: -------------------------------------------------------------------------------- 1 | git -------------------------------------------------------------------------------- /srcpkgs/git-gui: -------------------------------------------------------------------------------- 1 | git -------------------------------------------------------------------------------- /srcpkgs/git-libsecret: -------------------------------------------------------------------------------- 1 | git -------------------------------------------------------------------------------- /srcpkgs/git-netrc: -------------------------------------------------------------------------------- 1 | git/ -------------------------------------------------------------------------------- /srcpkgs/git-scalar: -------------------------------------------------------------------------------- 1 | git -------------------------------------------------------------------------------- /srcpkgs/git-svn: -------------------------------------------------------------------------------- 1 | git -------------------------------------------------------------------------------- /srcpkgs/gitk: -------------------------------------------------------------------------------- 1 | git -------------------------------------------------------------------------------- /srcpkgs/givaro-devel: -------------------------------------------------------------------------------- 1 | givaro -------------------------------------------------------------------------------- /srcpkgs/gjs-devel: -------------------------------------------------------------------------------- 1 | gjs -------------------------------------------------------------------------------- /srcpkgs/gl2ps-devel: -------------------------------------------------------------------------------- 1 | gl2ps -------------------------------------------------------------------------------- /srcpkgs/glade3-devel: -------------------------------------------------------------------------------- 1 | glade3 -------------------------------------------------------------------------------- /srcpkgs/glew-devel: -------------------------------------------------------------------------------- 1 | glew -------------------------------------------------------------------------------- /srcpkgs/glfw-devel: -------------------------------------------------------------------------------- 1 | glfw -------------------------------------------------------------------------------- /srcpkgs/glfw-wayland: -------------------------------------------------------------------------------- 1 | glfw -------------------------------------------------------------------------------- /srcpkgs/glib-devel: -------------------------------------------------------------------------------- 1 | glib -------------------------------------------------------------------------------- /srcpkgs/glibc-devel: -------------------------------------------------------------------------------- 1 | glibc -------------------------------------------------------------------------------- /srcpkgs/glibc-locales: -------------------------------------------------------------------------------- 1 | glibc -------------------------------------------------------------------------------- /srcpkgs/glibmm-devel: -------------------------------------------------------------------------------- 1 | glibmm -------------------------------------------------------------------------------- /srcpkgs/glog-devel: -------------------------------------------------------------------------------- 1 | glog -------------------------------------------------------------------------------- /srcpkgs/gloox-devel: -------------------------------------------------------------------------------- 1 | gloox -------------------------------------------------------------------------------- /srcpkgs/glpk-devel: -------------------------------------------------------------------------------- 1 | glpk -------------------------------------------------------------------------------- /srcpkgs/glslang-devel: -------------------------------------------------------------------------------- 1 | glslang -------------------------------------------------------------------------------- /srcpkgs/glu-devel: -------------------------------------------------------------------------------- 1 | glu -------------------------------------------------------------------------------- /srcpkgs/glxinfo: -------------------------------------------------------------------------------- 1 | mesa-demos -------------------------------------------------------------------------------- /srcpkgs/glycin-devel: -------------------------------------------------------------------------------- 1 | glycin -------------------------------------------------------------------------------- /srcpkgs/glycin-gtk4: -------------------------------------------------------------------------------- 1 | glycin -------------------------------------------------------------------------------- /srcpkgs/glycin-loaders: -------------------------------------------------------------------------------- 1 | glycin -------------------------------------------------------------------------------- /srcpkgs/glyphy-devel: -------------------------------------------------------------------------------- 1 | glyphy -------------------------------------------------------------------------------- /srcpkgs/glyr-devel: -------------------------------------------------------------------------------- 1 | glyr -------------------------------------------------------------------------------- /srcpkgs/gmic-devel: -------------------------------------------------------------------------------- 1 | gmic -------------------------------------------------------------------------------- /srcpkgs/gmic-gimp: -------------------------------------------------------------------------------- 1 | gmic -------------------------------------------------------------------------------- /srcpkgs/gmic-zart: -------------------------------------------------------------------------------- 1 | gmic -------------------------------------------------------------------------------- /srcpkgs/gmime-devel: -------------------------------------------------------------------------------- 1 | gmime -------------------------------------------------------------------------------- /srcpkgs/gmime3: -------------------------------------------------------------------------------- 1 | gmime -------------------------------------------------------------------------------- /srcpkgs/gmime3-devel: -------------------------------------------------------------------------------- 1 | gmime -------------------------------------------------------------------------------- /srcpkgs/gmio-devel: -------------------------------------------------------------------------------- 1 | gmio -------------------------------------------------------------------------------- /srcpkgs/gmp-devel: -------------------------------------------------------------------------------- 1 | gmp -------------------------------------------------------------------------------- /srcpkgs/gmpxx: -------------------------------------------------------------------------------- 1 | gmp -------------------------------------------------------------------------------- /srcpkgs/gmpxx-devel: -------------------------------------------------------------------------------- 1 | gmp -------------------------------------------------------------------------------- /srcpkgs/gmsh-doc: -------------------------------------------------------------------------------- 1 | gmsh -------------------------------------------------------------------------------- /srcpkgs/gmtk-devel: -------------------------------------------------------------------------------- 1 | gmtk -------------------------------------------------------------------------------- /srcpkgs/gnome-apps: -------------------------------------------------------------------------------- 1 | gnome -------------------------------------------------------------------------------- /srcpkgs/gnome-latex: -------------------------------------------------------------------------------- 1 | enter-tex -------------------------------------------------------------------------------- /srcpkgs/gnome-mpv: -------------------------------------------------------------------------------- 1 | celluloid -------------------------------------------------------------------------------- /srcpkgs/gnome-todo: -------------------------------------------------------------------------------- 1 | Endeavour -------------------------------------------------------------------------------- /srcpkgs/gnucash-devel: -------------------------------------------------------------------------------- 1 | gnucash -------------------------------------------------------------------------------- /srcpkgs/gnunet-devel: -------------------------------------------------------------------------------- 1 | gnunet -------------------------------------------------------------------------------- /srcpkgs/gnupg2: -------------------------------------------------------------------------------- 1 | gnupg -------------------------------------------------------------------------------- /srcpkgs/gnupg2-scdaemon: -------------------------------------------------------------------------------- 1 | gnupg -------------------------------------------------------------------------------- /srcpkgs/gnuplot-qt: -------------------------------------------------------------------------------- 1 | gnuplot -------------------------------------------------------------------------------- /srcpkgs/gnuplot-wx: -------------------------------------------------------------------------------- 1 | gnuplot -------------------------------------------------------------------------------- /srcpkgs/gnuradio-doc: -------------------------------------------------------------------------------- 1 | gnuradio -------------------------------------------------------------------------------- /srcpkgs/gnutls-devel: -------------------------------------------------------------------------------- 1 | gnutls -------------------------------------------------------------------------------- /srcpkgs/gnutls-tools: -------------------------------------------------------------------------------- 1 | gnutls -------------------------------------------------------------------------------- /srcpkgs/go-ipfs: -------------------------------------------------------------------------------- 1 | kubo -------------------------------------------------------------------------------- /srcpkgs/goffice-devel: -------------------------------------------------------------------------------- 1 | goffice -------------------------------------------------------------------------------- /srcpkgs/gom-devel: -------------------------------------------------------------------------------- 1 | gom -------------------------------------------------------------------------------- /srcpkgs/gosu-devel: -------------------------------------------------------------------------------- 1 | gosu -------------------------------------------------------------------------------- /srcpkgs/gpgme-devel: -------------------------------------------------------------------------------- 1 | gpgme -------------------------------------------------------------------------------- /srcpkgs/gpgme-python3: -------------------------------------------------------------------------------- 1 | gpgme -------------------------------------------------------------------------------- /srcpkgs/gpgmepp: -------------------------------------------------------------------------------- 1 | gpgme -------------------------------------------------------------------------------- /srcpkgs/gpgmepp-devel: -------------------------------------------------------------------------------- 1 | gpgme -------------------------------------------------------------------------------- /srcpkgs/gpgmeqt: -------------------------------------------------------------------------------- 1 | gpgme-qt6 -------------------------------------------------------------------------------- /srcpkgs/gpm-devel: -------------------------------------------------------------------------------- 1 | gpm -------------------------------------------------------------------------------- /srcpkgs/gpsd-devel: -------------------------------------------------------------------------------- 1 | gpsd -------------------------------------------------------------------------------- /srcpkgs/gpsd-python: -------------------------------------------------------------------------------- 1 | gpsd -------------------------------------------------------------------------------- /srcpkgs/gpsd-qt: -------------------------------------------------------------------------------- 1 | gpsd -------------------------------------------------------------------------------- /srcpkgs/gpsd-qt-devel: -------------------------------------------------------------------------------- 1 | gpsd -------------------------------------------------------------------------------- /srcpkgs/gpsd-xgps: -------------------------------------------------------------------------------- 1 | gpsd -------------------------------------------------------------------------------- /srcpkgs/gpsim-devel: -------------------------------------------------------------------------------- 1 | gpsim -------------------------------------------------------------------------------- /srcpkgs/grail-devel: -------------------------------------------------------------------------------- 1 | grail -------------------------------------------------------------------------------- /srcpkgs/granite-devel: -------------------------------------------------------------------------------- 1 | granite -------------------------------------------------------------------------------- /srcpkgs/grass-devel: -------------------------------------------------------------------------------- 1 | grass -------------------------------------------------------------------------------- /srcpkgs/grilo-devel: -------------------------------------------------------------------------------- 1 | grilo -------------------------------------------------------------------------------- /srcpkgs/groff-doc: -------------------------------------------------------------------------------- 1 | groff -------------------------------------------------------------------------------- /srcpkgs/grpc-devel: -------------------------------------------------------------------------------- 1 | grpc -------------------------------------------------------------------------------- /srcpkgs/grub-arm64-efi: -------------------------------------------------------------------------------- 1 | grub -------------------------------------------------------------------------------- /srcpkgs/grub-i386-efi: -------------------------------------------------------------------------------- 1 | grub -------------------------------------------------------------------------------- /srcpkgs/grub-utils: -------------------------------------------------------------------------------- 1 | grub -------------------------------------------------------------------------------- /srcpkgs/grub-x86_64-efi: -------------------------------------------------------------------------------- 1 | grub -------------------------------------------------------------------------------- /srcpkgs/grub-xen: -------------------------------------------------------------------------------- 1 | grub -------------------------------------------------------------------------------- /srcpkgs/gsasl-devel: -------------------------------------------------------------------------------- 1 | gsasl -------------------------------------------------------------------------------- /srcpkgs/gsl-devel: -------------------------------------------------------------------------------- 1 | gsl -------------------------------------------------------------------------------- /srcpkgs/gsoap-devel: -------------------------------------------------------------------------------- 1 | gsoap -------------------------------------------------------------------------------- /srcpkgs/gsound-devel: -------------------------------------------------------------------------------- 1 | gsound -------------------------------------------------------------------------------- /srcpkgs/gspell-devel: -------------------------------------------------------------------------------- 1 | gspell -------------------------------------------------------------------------------- /srcpkgs/gssdp-devel: -------------------------------------------------------------------------------- 1 | gssdp -------------------------------------------------------------------------------- /srcpkgs/gtest-devel: -------------------------------------------------------------------------------- 1 | gtest -------------------------------------------------------------------------------- /srcpkgs/gthumb-devel: -------------------------------------------------------------------------------- 1 | gthumb -------------------------------------------------------------------------------- /srcpkgs/gtk+-demo: -------------------------------------------------------------------------------- 1 | gtk+ -------------------------------------------------------------------------------- /srcpkgs/gtk+-devel: -------------------------------------------------------------------------------- 1 | gtk+ -------------------------------------------------------------------------------- /srcpkgs/gtk+3-demo: -------------------------------------------------------------------------------- 1 | gtk+3 -------------------------------------------------------------------------------- /srcpkgs/gtk+3-devel: -------------------------------------------------------------------------------- 1 | gtk+3 -------------------------------------------------------------------------------- /srcpkgs/gtk-lshw: -------------------------------------------------------------------------------- 1 | lshw -------------------------------------------------------------------------------- /srcpkgs/gtk-vnc-devel: -------------------------------------------------------------------------------- 1 | gtk-vnc -------------------------------------------------------------------------------- /srcpkgs/gtk4-demo: -------------------------------------------------------------------------------- 1 | gtk4 -------------------------------------------------------------------------------- /srcpkgs/gtk4-devel: -------------------------------------------------------------------------------- 1 | gtk4 -------------------------------------------------------------------------------- /srcpkgs/gtk4-doc: -------------------------------------------------------------------------------- 1 | gtk4 -------------------------------------------------------------------------------- /srcpkgs/gtkd-devel: -------------------------------------------------------------------------------- 1 | gtkd -------------------------------------------------------------------------------- /srcpkgs/gtkmm-devel: -------------------------------------------------------------------------------- 1 | gtkmm -------------------------------------------------------------------------------- /srcpkgs/gtkmm2-devel: -------------------------------------------------------------------------------- 1 | gtkmm2 -------------------------------------------------------------------------------- /srcpkgs/gtkmm4-devel: -------------------------------------------------------------------------------- 1 | gtkmm4 -------------------------------------------------------------------------------- /srcpkgs/gts-devel: -------------------------------------------------------------------------------- 1 | gts -------------------------------------------------------------------------------- /srcpkgs/guile-devel: -------------------------------------------------------------------------------- 1 | guile -------------------------------------------------------------------------------- /srcpkgs/gupnp-devel: -------------------------------------------------------------------------------- 1 | gupnp -------------------------------------------------------------------------------- /srcpkgs/gutenberg: -------------------------------------------------------------------------------- 1 | zola -------------------------------------------------------------------------------- /srcpkgs/gvfs-afc: -------------------------------------------------------------------------------- 1 | gvfs -------------------------------------------------------------------------------- /srcpkgs/gvfs-afp: -------------------------------------------------------------------------------- 1 | gvfs -------------------------------------------------------------------------------- /srcpkgs/gvfs-cdda: -------------------------------------------------------------------------------- 1 | gvfs -------------------------------------------------------------------------------- /srcpkgs/gvfs-devel: -------------------------------------------------------------------------------- 1 | gvfs -------------------------------------------------------------------------------- /srcpkgs/gvfs-goa: -------------------------------------------------------------------------------- 1 | gvfs -------------------------------------------------------------------------------- /srcpkgs/gvfs-gphoto2: -------------------------------------------------------------------------------- 1 | gvfs -------------------------------------------------------------------------------- /srcpkgs/gvfs-mtp: -------------------------------------------------------------------------------- 1 | gvfs -------------------------------------------------------------------------------- /srcpkgs/gvfs-smb: -------------------------------------------------------------------------------- 1 | gvfs -------------------------------------------------------------------------------- /srcpkgs/gvim: -------------------------------------------------------------------------------- 1 | vim -------------------------------------------------------------------------------- /srcpkgs/gvim-huge: -------------------------------------------------------------------------------- 1 | vim -------------------------------------------------------------------------------- /srcpkgs/gxi: -------------------------------------------------------------------------------- 1 | tau -------------------------------------------------------------------------------- /srcpkgs/gxml-devel: -------------------------------------------------------------------------------- 1 | gxml -------------------------------------------------------------------------------- /srcpkgs/h2o-devel: -------------------------------------------------------------------------------- 1 | h2o -------------------------------------------------------------------------------- /srcpkgs/hamlib-devel: -------------------------------------------------------------------------------- 1 | hamlib -------------------------------------------------------------------------------- /srcpkgs/hdf5-devel: -------------------------------------------------------------------------------- 1 | hdf5 -------------------------------------------------------------------------------- /srcpkgs/hexchat-devel: -------------------------------------------------------------------------------- 1 | hexchat -------------------------------------------------------------------------------- /srcpkgs/hexchat-lua: -------------------------------------------------------------------------------- 1 | hexchat -------------------------------------------------------------------------------- /srcpkgs/hexchat-perl: -------------------------------------------------------------------------------- 1 | hexchat -------------------------------------------------------------------------------- /srcpkgs/hidapi-devel: -------------------------------------------------------------------------------- 1 | hidapi -------------------------------------------------------------------------------- /srcpkgs/hidrd-devel: -------------------------------------------------------------------------------- 1 | hidrd -------------------------------------------------------------------------------- /srcpkgs/highway-devel: -------------------------------------------------------------------------------- 1 | highway -------------------------------------------------------------------------------- /srcpkgs/hiredis-devel: -------------------------------------------------------------------------------- 1 | hiredis -------------------------------------------------------------------------------- /srcpkgs/hledger-ui: -------------------------------------------------------------------------------- 1 | hledger -------------------------------------------------------------------------------- /srcpkgs/hledger-web: -------------------------------------------------------------------------------- 1 | hledger -------------------------------------------------------------------------------- /srcpkgs/hplip-gui: -------------------------------------------------------------------------------- 1 | hplip -------------------------------------------------------------------------------- /srcpkgs/htmlcxx-devel: -------------------------------------------------------------------------------- 1 | htmlcxx -------------------------------------------------------------------------------- /srcpkgs/httrack-devel: -------------------------------------------------------------------------------- 1 | httrack -------------------------------------------------------------------------------- /srcpkgs/hwinfo-devel: -------------------------------------------------------------------------------- 1 | hwinfo -------------------------------------------------------------------------------- /srcpkgs/hyphen-devel: -------------------------------------------------------------------------------- 1 | hyphen -------------------------------------------------------------------------------- /srcpkgs/hyphen-tools: -------------------------------------------------------------------------------- 1 | hyphen -------------------------------------------------------------------------------- /srcpkgs/i2pd-devel: -------------------------------------------------------------------------------- 1 | i2pd -------------------------------------------------------------------------------- /srcpkgs/i3-devel: -------------------------------------------------------------------------------- 1 | i3 -------------------------------------------------------------------------------- /srcpkgs/i3-gaps: -------------------------------------------------------------------------------- 1 | i3 -------------------------------------------------------------------------------- /srcpkgs/ibus-devel: -------------------------------------------------------------------------------- 1 | ibus -------------------------------------------------------------------------------- /srcpkgs/ibus-gtk+: -------------------------------------------------------------------------------- 1 | ibus -------------------------------------------------------------------------------- /srcpkgs/ibus-gtk+3: -------------------------------------------------------------------------------- 1 | ibus -------------------------------------------------------------------------------- /srcpkgs/ibus-gtk4: -------------------------------------------------------------------------------- 1 | ibus -------------------------------------------------------------------------------- /srcpkgs/ibus-mozc: -------------------------------------------------------------------------------- 1 | mozc -------------------------------------------------------------------------------- /srcpkgs/icu-devel: -------------------------------------------------------------------------------- 1 | icu -------------------------------------------------------------------------------- /srcpkgs/icu-libs: -------------------------------------------------------------------------------- 1 | icu -------------------------------------------------------------------------------- /srcpkgs/id3lib-devel: -------------------------------------------------------------------------------- 1 | id3lib -------------------------------------------------------------------------------- /srcpkgs/idle-python: -------------------------------------------------------------------------------- 1 | python -------------------------------------------------------------------------------- /srcpkgs/idle-python2: -------------------------------------------------------------------------------- 1 | python2 -------------------------------------------------------------------------------- /srcpkgs/igraph-devel: -------------------------------------------------------------------------------- 1 | igraph -------------------------------------------------------------------------------- /srcpkgs/imath-devel: -------------------------------------------------------------------------------- 1 | imath -------------------------------------------------------------------------------- /srcpkgs/imath-python3: -------------------------------------------------------------------------------- 1 | imath -------------------------------------------------------------------------------- /srcpkgs/imhex-patterns: -------------------------------------------------------------------------------- 1 | imhex -------------------------------------------------------------------------------- /srcpkgs/iml-devel: -------------------------------------------------------------------------------- 1 | iml -------------------------------------------------------------------------------- /srcpkgs/imlib2-devel: -------------------------------------------------------------------------------- 1 | imlib2 -------------------------------------------------------------------------------- /srcpkgs/imlib2-tools: -------------------------------------------------------------------------------- 1 | imlib2 -------------------------------------------------------------------------------- /srcpkgs/imlib2-webp: -------------------------------------------------------------------------------- 1 | imlib2 -------------------------------------------------------------------------------- /srcpkgs/incus-client: -------------------------------------------------------------------------------- 1 | incus -------------------------------------------------------------------------------- /srcpkgs/incus-tools: -------------------------------------------------------------------------------- 1 | incus -------------------------------------------------------------------------------- /srcpkgs/inih-devel: -------------------------------------------------------------------------------- 1 | inih -------------------------------------------------------------------------------- /srcpkgs/injeqt-devel: -------------------------------------------------------------------------------- 1 | injeqt -------------------------------------------------------------------------------- /srcpkgs/ipe-devel: -------------------------------------------------------------------------------- 1 | ipe -------------------------------------------------------------------------------- /srcpkgs/iperf3-devel: -------------------------------------------------------------------------------- 1 | iperf3 -------------------------------------------------------------------------------- /srcpkgs/iptables-nft: -------------------------------------------------------------------------------- 1 | iptables -------------------------------------------------------------------------------- /srcpkgs/irssi-devel: -------------------------------------------------------------------------------- 1 | irssi -------------------------------------------------------------------------------- /srcpkgs/irssi-otr: -------------------------------------------------------------------------------- 1 | irssi -------------------------------------------------------------------------------- /srcpkgs/irssi-perl: -------------------------------------------------------------------------------- 1 | irssi -------------------------------------------------------------------------------- /srcpkgs/ischroot: -------------------------------------------------------------------------------- 1 | run-parts -------------------------------------------------------------------------------- /srcpkgs/isl-devel: -------------------------------------------------------------------------------- 1 | isl -------------------------------------------------------------------------------- /srcpkgs/isl15-devel: -------------------------------------------------------------------------------- 1 | isl15 -------------------------------------------------------------------------------- /srcpkgs/jack-devel: -------------------------------------------------------------------------------- 1 | jack -------------------------------------------------------------------------------- /srcpkgs/janet-devel: -------------------------------------------------------------------------------- 1 | janet -------------------------------------------------------------------------------- /srcpkgs/jansson-devel: -------------------------------------------------------------------------------- 1 | jansson -------------------------------------------------------------------------------- /srcpkgs/jasper-devel: -------------------------------------------------------------------------------- 1 | jasper -------------------------------------------------------------------------------- /srcpkgs/jbigkit-devel: -------------------------------------------------------------------------------- 1 | jbigkit -------------------------------------------------------------------------------- /srcpkgs/jbigkit-libs: -------------------------------------------------------------------------------- 1 | jbigkit -------------------------------------------------------------------------------- /srcpkgs/jcat-tests: -------------------------------------------------------------------------------- 1 | libjcat -------------------------------------------------------------------------------- /srcpkgs/jcat-tool: -------------------------------------------------------------------------------- 1 | libjcat -------------------------------------------------------------------------------- /srcpkgs/jimtcl-devel: -------------------------------------------------------------------------------- 1 | jimtcl -------------------------------------------------------------------------------- /srcpkgs/jose-devel: -------------------------------------------------------------------------------- 1 | jose -------------------------------------------------------------------------------- /srcpkgs/jq-devel: -------------------------------------------------------------------------------- 1 | jq -------------------------------------------------------------------------------- /srcpkgs/jreen-devel: -------------------------------------------------------------------------------- 1 | jreen -------------------------------------------------------------------------------- /srcpkgs/jreen-qt5: -------------------------------------------------------------------------------- 1 | jreen -------------------------------------------------------------------------------- /srcpkgs/jreen-qt5-devel: -------------------------------------------------------------------------------- 1 | jreen -------------------------------------------------------------------------------- /srcpkgs/json-c-devel: -------------------------------------------------------------------------------- 1 | json-c -------------------------------------------------------------------------------- /srcpkgs/jsoncpp-devel: -------------------------------------------------------------------------------- 1 | jsoncpp -------------------------------------------------------------------------------- /srcpkgs/jsonnet-devel: -------------------------------------------------------------------------------- 1 | jsonnet -------------------------------------------------------------------------------- /srcpkgs/judy-devel: -------------------------------------------------------------------------------- 1 | judy -------------------------------------------------------------------------------- /srcpkgs/jxrlib-devel: -------------------------------------------------------------------------------- 1 | jxrlib/ -------------------------------------------------------------------------------- /srcpkgs/kafkacat: -------------------------------------------------------------------------------- 1 | kcat -------------------------------------------------------------------------------- /srcpkgs/kalendar: -------------------------------------------------------------------------------- 1 | merkuro -------------------------------------------------------------------------------- /srcpkgs/kate5: -------------------------------------------------------------------------------- 1 | kate -------------------------------------------------------------------------------- /srcpkgs/kauth-devel: -------------------------------------------------------------------------------- 1 | kauth -------------------------------------------------------------------------------- /srcpkgs/kbfs: -------------------------------------------------------------------------------- 1 | keybase -------------------------------------------------------------------------------- /srcpkgs/kcodecs-devel: -------------------------------------------------------------------------------- 1 | kcodecs -------------------------------------------------------------------------------- /srcpkgs/kconfig-devel: -------------------------------------------------------------------------------- 1 | kconfig -------------------------------------------------------------------------------- /srcpkgs/kcrash-devel: -------------------------------------------------------------------------------- 1 | kcrash -------------------------------------------------------------------------------- /srcpkgs/kdb-devel: -------------------------------------------------------------------------------- 1 | kdb -------------------------------------------------------------------------------- /srcpkgs/kde5: -------------------------------------------------------------------------------- 1 | kde-plasma -------------------------------------------------------------------------------- /srcpkgs/kded-devel: -------------------------------------------------------------------------------- 1 | kded -------------------------------------------------------------------------------- /srcpkgs/kf6-kio-devel: -------------------------------------------------------------------------------- 1 | kf6-kio -------------------------------------------------------------------------------- /srcpkgs/kgamma5: -------------------------------------------------------------------------------- 1 | kgamma -------------------------------------------------------------------------------- /srcpkgs/khtml-devel: -------------------------------------------------------------------------------- 1 | khtml -------------------------------------------------------------------------------- /srcpkgs/ki18n-devel: -------------------------------------------------------------------------------- 1 | ki18n -------------------------------------------------------------------------------- /srcpkgs/kimap-devel: -------------------------------------------------------------------------------- 1 | kimap -------------------------------------------------------------------------------- /srcpkgs/kinit-devel: -------------------------------------------------------------------------------- 1 | kinit -------------------------------------------------------------------------------- /srcpkgs/kio-devel: -------------------------------------------------------------------------------- 1 | kio -------------------------------------------------------------------------------- /srcpkgs/kitty-kitten: -------------------------------------------------------------------------------- 1 | kitty -------------------------------------------------------------------------------- /srcpkgs/kitty-terminfo: -------------------------------------------------------------------------------- 1 | kitty -------------------------------------------------------------------------------- /srcpkgs/kjs-devel: -------------------------------------------------------------------------------- 1 | kjs -------------------------------------------------------------------------------- /srcpkgs/kldap-devel: -------------------------------------------------------------------------------- 1 | kldap -------------------------------------------------------------------------------- /srcpkgs/klibc-devel: -------------------------------------------------------------------------------- 1 | klibc -------------------------------------------------------------------------------- /srcpkgs/kmbox-devel: -------------------------------------------------------------------------------- 1 | kmbox -------------------------------------------------------------------------------- /srcpkgs/kmime6-devel: -------------------------------------------------------------------------------- 1 | kmime6 -------------------------------------------------------------------------------- /srcpkgs/knot-utils: -------------------------------------------------------------------------------- 1 | knot -------------------------------------------------------------------------------- /srcpkgs/kodi-devel: -------------------------------------------------------------------------------- 1 | kodi -------------------------------------------------------------------------------- /srcpkgs/kodi-rpi: -------------------------------------------------------------------------------- 1 | kodi -------------------------------------------------------------------------------- /srcpkgs/konsole5: -------------------------------------------------------------------------------- 1 | konsole -------------------------------------------------------------------------------- /srcpkgs/kparts-devel: -------------------------------------------------------------------------------- 1 | kparts -------------------------------------------------------------------------------- /srcpkgs/kpeople-devel: -------------------------------------------------------------------------------- 1 | kpeople -------------------------------------------------------------------------------- /srcpkgs/kpkpass-devel: -------------------------------------------------------------------------------- 1 | kpkpass -------------------------------------------------------------------------------- /srcpkgs/kpmcore-devel: -------------------------------------------------------------------------------- 1 | kpmcore -------------------------------------------------------------------------------- /srcpkgs/krdc-devel: -------------------------------------------------------------------------------- 1 | krdc -------------------------------------------------------------------------------- /srcpkgs/kreport-devel: -------------------------------------------------------------------------------- 1 | kreport -------------------------------------------------------------------------------- /srcpkgs/krita-devel: -------------------------------------------------------------------------------- 1 | krita -------------------------------------------------------------------------------- /srcpkgs/kross-devel: -------------------------------------------------------------------------------- 1 | kross -------------------------------------------------------------------------------- /srcpkgs/krunner-devel: -------------------------------------------------------------------------------- 1 | krunner -------------------------------------------------------------------------------- /srcpkgs/ksh-devel: -------------------------------------------------------------------------------- 1 | ksh -------------------------------------------------------------------------------- /srcpkgs/ksmtp-devel: -------------------------------------------------------------------------------- 1 | ksmtp -------------------------------------------------------------------------------- /srcpkgs/ksolid-devel: -------------------------------------------------------------------------------- 1 | ksolid -------------------------------------------------------------------------------- /srcpkgs/ktnef-devel: -------------------------------------------------------------------------------- 1 | ktnef -------------------------------------------------------------------------------- /srcpkgs/kubectl: -------------------------------------------------------------------------------- 1 | kubernetes -------------------------------------------------------------------------------- /srcpkgs/kwallet-devel: -------------------------------------------------------------------------------- 1 | kwallet -------------------------------------------------------------------------------- /srcpkgs/kwin-devel: -------------------------------------------------------------------------------- 1 | kwin -------------------------------------------------------------------------------- /srcpkgs/kwrite: -------------------------------------------------------------------------------- 1 | kate5 -------------------------------------------------------------------------------- /srcpkgs/kxmlgui-devel: -------------------------------------------------------------------------------- 1 | kxmlgui -------------------------------------------------------------------------------- /srcpkgs/kyua-tests: -------------------------------------------------------------------------------- 1 | kyua -------------------------------------------------------------------------------- /srcpkgs/lame-devel: -------------------------------------------------------------------------------- 1 | lame -------------------------------------------------------------------------------- /srcpkgs/lapack-devel: -------------------------------------------------------------------------------- 1 | lapack -------------------------------------------------------------------------------- /srcpkgs/lapacke: -------------------------------------------------------------------------------- 1 | lapack -------------------------------------------------------------------------------- /srcpkgs/lapacke-devel: -------------------------------------------------------------------------------- 1 | lapack -------------------------------------------------------------------------------- /srcpkgs/lc3-tools: -------------------------------------------------------------------------------- 1 | liblc3 -------------------------------------------------------------------------------- /srcpkgs/lcalc-devel: -------------------------------------------------------------------------------- 1 | lcalc -------------------------------------------------------------------------------- /srcpkgs/lcms-devel: -------------------------------------------------------------------------------- 1 | lcms -------------------------------------------------------------------------------- /srcpkgs/lcms2-devel: -------------------------------------------------------------------------------- 1 | lcms2 -------------------------------------------------------------------------------- /srcpkgs/lcms2-tools: -------------------------------------------------------------------------------- 1 | lcms2 -------------------------------------------------------------------------------- /srcpkgs/ldacBT-devel: -------------------------------------------------------------------------------- 1 | ldacBT -------------------------------------------------------------------------------- /srcpkgs/ldb-devel: -------------------------------------------------------------------------------- 1 | ldb -------------------------------------------------------------------------------- /srcpkgs/ldb-python3: -------------------------------------------------------------------------------- 1 | ldb -------------------------------------------------------------------------------- /srcpkgs/ldc-runtime: -------------------------------------------------------------------------------- 1 | ldc -------------------------------------------------------------------------------- /srcpkgs/lensfun-devel: -------------------------------------------------------------------------------- 1 | lensfun -------------------------------------------------------------------------------- /srcpkgs/leocad-data: -------------------------------------------------------------------------------- 1 | leocad -------------------------------------------------------------------------------- /srcpkgs/leveldb-devel: -------------------------------------------------------------------------------- 1 | leveldb -------------------------------------------------------------------------------- /srcpkgs/lgi: -------------------------------------------------------------------------------- 1 | lua54-lgi -------------------------------------------------------------------------------- /srcpkgs/lhasa-devel: -------------------------------------------------------------------------------- 1 | lhasa -------------------------------------------------------------------------------- /srcpkgs/libClp: -------------------------------------------------------------------------------- 1 | Clp -------------------------------------------------------------------------------- /srcpkgs/libClp-devel: -------------------------------------------------------------------------------- 1 | Clp -------------------------------------------------------------------------------- /srcpkgs/libHX-devel: -------------------------------------------------------------------------------- 1 | libHX -------------------------------------------------------------------------------- /srcpkgs/libICE-devel: -------------------------------------------------------------------------------- 1 | libICE -------------------------------------------------------------------------------- /srcpkgs/libIDL-devel: -------------------------------------------------------------------------------- 1 | libIDL -------------------------------------------------------------------------------- /srcpkgs/libIce: -------------------------------------------------------------------------------- 1 | Ice -------------------------------------------------------------------------------- /srcpkgs/libORBit2: -------------------------------------------------------------------------------- 1 | ORBit2 -------------------------------------------------------------------------------- /srcpkgs/libSM-devel: -------------------------------------------------------------------------------- 1 | libSM -------------------------------------------------------------------------------- /srcpkgs/libX11-devel: -------------------------------------------------------------------------------- 1 | libX11 -------------------------------------------------------------------------------- /srcpkgs/libXau-devel: -------------------------------------------------------------------------------- 1 | libXau -------------------------------------------------------------------------------- /srcpkgs/libXaw-devel: -------------------------------------------------------------------------------- 1 | libXaw -------------------------------------------------------------------------------- /srcpkgs/libXext-devel: -------------------------------------------------------------------------------- 1 | libXext -------------------------------------------------------------------------------- /srcpkgs/libXft-devel: -------------------------------------------------------------------------------- 1 | libXft -------------------------------------------------------------------------------- /srcpkgs/libXi-devel: -------------------------------------------------------------------------------- 1 | libXi -------------------------------------------------------------------------------- /srcpkgs/libXmu-devel: -------------------------------------------------------------------------------- 1 | libXmu -------------------------------------------------------------------------------- /srcpkgs/libXp-devel: -------------------------------------------------------------------------------- 1 | libXp -------------------------------------------------------------------------------- /srcpkgs/libXpm-devel: -------------------------------------------------------------------------------- 1 | libXpm -------------------------------------------------------------------------------- /srcpkgs/libXres-devel: -------------------------------------------------------------------------------- 1 | libXres -------------------------------------------------------------------------------- /srcpkgs/libXt-devel: -------------------------------------------------------------------------------- 1 | libXt -------------------------------------------------------------------------------- /srcpkgs/libXtst-devel: -------------------------------------------------------------------------------- 1 | libXtst -------------------------------------------------------------------------------- /srcpkgs/libXv-devel: -------------------------------------------------------------------------------- 1 | libXv -------------------------------------------------------------------------------- /srcpkgs/libXvMC-devel: -------------------------------------------------------------------------------- 1 | libXvMC -------------------------------------------------------------------------------- /srcpkgs/liba52-devel: -------------------------------------------------------------------------------- 1 | liba52 -------------------------------------------------------------------------------- /srcpkgs/libaacs-devel: -------------------------------------------------------------------------------- 1 | libaacs -------------------------------------------------------------------------------- /srcpkgs/libaal-devel: -------------------------------------------------------------------------------- 1 | libaal -------------------------------------------------------------------------------- /srcpkgs/libabiword: -------------------------------------------------------------------------------- 1 | abiword -------------------------------------------------------------------------------- /srcpkgs/libabw-devel: -------------------------------------------------------------------------------- 1 | libabw -------------------------------------------------------------------------------- /srcpkgs/libabw-tools: -------------------------------------------------------------------------------- 1 | libabw -------------------------------------------------------------------------------- /srcpkgs/libada: -------------------------------------------------------------------------------- 1 | gcc -------------------------------------------------------------------------------- /srcpkgs/libada-devel: -------------------------------------------------------------------------------- 1 | gcc -------------------------------------------------------------------------------- /srcpkgs/libaio-devel: -------------------------------------------------------------------------------- 1 | libaio -------------------------------------------------------------------------------- /srcpkgs/libairspy: -------------------------------------------------------------------------------- 1 | airspy -------------------------------------------------------------------------------- /srcpkgs/libairspyhf: -------------------------------------------------------------------------------- 1 | airspyhf -------------------------------------------------------------------------------- /srcpkgs/libalkimia: -------------------------------------------------------------------------------- 1 | alkimia -------------------------------------------------------------------------------- /srcpkgs/libanthy: -------------------------------------------------------------------------------- 1 | anthy -------------------------------------------------------------------------------- /srcpkgs/libao-devel: -------------------------------------------------------------------------------- 1 | libao -------------------------------------------------------------------------------- /srcpkgs/libao-pulse: -------------------------------------------------------------------------------- 1 | libao -------------------------------------------------------------------------------- /srcpkgs/libao-sndio: -------------------------------------------------------------------------------- 1 | libao -------------------------------------------------------------------------------- /srcpkgs/libaom-devel: -------------------------------------------------------------------------------- 1 | libaom -------------------------------------------------------------------------------- /srcpkgs/libaom-tools: -------------------------------------------------------------------------------- 1 | libaom -------------------------------------------------------------------------------- /srcpkgs/libapparmor: -------------------------------------------------------------------------------- 1 | apparmor -------------------------------------------------------------------------------- /srcpkgs/libaravis: -------------------------------------------------------------------------------- 1 | aravis -------------------------------------------------------------------------------- /srcpkgs/libargon2: -------------------------------------------------------------------------------- 1 | argon2 -------------------------------------------------------------------------------- /srcpkgs/libaria2: -------------------------------------------------------------------------------- 1 | aria2 -------------------------------------------------------------------------------- /srcpkgs/libaria2-devel: -------------------------------------------------------------------------------- 1 | aria2 -------------------------------------------------------------------------------- /srcpkgs/libart-devel: -------------------------------------------------------------------------------- 1 | libart -------------------------------------------------------------------------------- /srcpkgs/libaspell: -------------------------------------------------------------------------------- 1 | aspell -------------------------------------------------------------------------------- /srcpkgs/libass-devel: -------------------------------------------------------------------------------- 1 | libass -------------------------------------------------------------------------------- /srcpkgs/libassimp: -------------------------------------------------------------------------------- 1 | assimp -------------------------------------------------------------------------------- /srcpkgs/libatomic: -------------------------------------------------------------------------------- 1 | gcc -------------------------------------------------------------------------------- /srcpkgs/libatomic-devel: -------------------------------------------------------------------------------- 1 | gcc -------------------------------------------------------------------------------- /srcpkgs/libatril: -------------------------------------------------------------------------------- 1 | atril -------------------------------------------------------------------------------- /srcpkgs/libatril-devel: -------------------------------------------------------------------------------- 1 | atril -------------------------------------------------------------------------------- /srcpkgs/libaubio: -------------------------------------------------------------------------------- 1 | aubio -------------------------------------------------------------------------------- /srcpkgs/libaudit: -------------------------------------------------------------------------------- 1 | audit -------------------------------------------------------------------------------- /srcpkgs/libaudit-common: -------------------------------------------------------------------------------- 1 | audit -------------------------------------------------------------------------------- /srcpkgs/libaudit-devel: -------------------------------------------------------------------------------- 1 | audit -------------------------------------------------------------------------------- /srcpkgs/libauparse: -------------------------------------------------------------------------------- 1 | audit -------------------------------------------------------------------------------- /srcpkgs/libavcodec: -------------------------------------------------------------------------------- 1 | ffmpeg -------------------------------------------------------------------------------- /srcpkgs/libavcodec6: -------------------------------------------------------------------------------- 1 | ffmpeg6 -------------------------------------------------------------------------------- /srcpkgs/libavdevice: -------------------------------------------------------------------------------- 1 | ffmpeg -------------------------------------------------------------------------------- /srcpkgs/libavdevice6: -------------------------------------------------------------------------------- 1 | ffmpeg6 -------------------------------------------------------------------------------- /srcpkgs/libavfilter: -------------------------------------------------------------------------------- 1 | ffmpeg -------------------------------------------------------------------------------- /srcpkgs/libavfilter6: -------------------------------------------------------------------------------- 1 | ffmpeg6 -------------------------------------------------------------------------------- /srcpkgs/libavformat: -------------------------------------------------------------------------------- 1 | ffmpeg -------------------------------------------------------------------------------- /srcpkgs/libavformat6: -------------------------------------------------------------------------------- 1 | ffmpeg6 -------------------------------------------------------------------------------- /srcpkgs/libavfs: -------------------------------------------------------------------------------- 1 | avfs -------------------------------------------------------------------------------- /srcpkgs/libavif-devel: -------------------------------------------------------------------------------- 1 | libavif -------------------------------------------------------------------------------- /srcpkgs/libavresample: -------------------------------------------------------------------------------- 1 | ffmpeg -------------------------------------------------------------------------------- /srcpkgs/libavutil: -------------------------------------------------------------------------------- 1 | ffmpeg -------------------------------------------------------------------------------- /srcpkgs/libavutil6: -------------------------------------------------------------------------------- 1 | ffmpeg6 -------------------------------------------------------------------------------- /srcpkgs/libax25-devel: -------------------------------------------------------------------------------- 1 | libax25 -------------------------------------------------------------------------------- /srcpkgs/libb2-devel: -------------------------------------------------------------------------------- 1 | libb2 -------------------------------------------------------------------------------- /srcpkgs/libb64-devel: -------------------------------------------------------------------------------- 1 | libb64 -------------------------------------------------------------------------------- /srcpkgs/libbfb: -------------------------------------------------------------------------------- 1 | obexftp -------------------------------------------------------------------------------- /srcpkgs/libbfb-devel: -------------------------------------------------------------------------------- 1 | obexftp -------------------------------------------------------------------------------- /srcpkgs/libbluetooth: -------------------------------------------------------------------------------- 1 | bluez -------------------------------------------------------------------------------- /srcpkgs/libboost_atomic: -------------------------------------------------------------------------------- 1 | boost -------------------------------------------------------------------------------- /srcpkgs/libboost_chrono: -------------------------------------------------------------------------------- 1 | boost -------------------------------------------------------------------------------- /srcpkgs/libboost_fiber: -------------------------------------------------------------------------------- 1 | boost -------------------------------------------------------------------------------- /srcpkgs/libboost_graph: -------------------------------------------------------------------------------- 1 | boost -------------------------------------------------------------------------------- /srcpkgs/libboost_json: -------------------------------------------------------------------------------- 1 | boost -------------------------------------------------------------------------------- /srcpkgs/libboost_locale: -------------------------------------------------------------------------------- 1 | boost -------------------------------------------------------------------------------- /srcpkgs/libboost_log: -------------------------------------------------------------------------------- 1 | boost -------------------------------------------------------------------------------- /srcpkgs/libboost_mpi: -------------------------------------------------------------------------------- 1 | boost -------------------------------------------------------------------------------- /srcpkgs/libboost_nowide: -------------------------------------------------------------------------------- 1 | boost -------------------------------------------------------------------------------- /srcpkgs/libboost_random: -------------------------------------------------------------------------------- 1 | boost -------------------------------------------------------------------------------- /srcpkgs/libboost_regex: -------------------------------------------------------------------------------- 1 | boost -------------------------------------------------------------------------------- /srcpkgs/libboost_sync: -------------------------------------------------------------------------------- 1 | boost -------------------------------------------------------------------------------- /srcpkgs/libboost_system: -------------------------------------------------------------------------------- 1 | boost -------------------------------------------------------------------------------- /srcpkgs/libboost_thread: -------------------------------------------------------------------------------- 1 | boost -------------------------------------------------------------------------------- /srcpkgs/libboost_timer: -------------------------------------------------------------------------------- 1 | boost -------------------------------------------------------------------------------- /srcpkgs/libboost_url: -------------------------------------------------------------------------------- 1 | boost -------------------------------------------------------------------------------- /srcpkgs/libboost_wave: -------------------------------------------------------------------------------- 1 | boost -------------------------------------------------------------------------------- /srcpkgs/libbpf-devel: -------------------------------------------------------------------------------- 1 | libbpf -------------------------------------------------------------------------------- /srcpkgs/libbs2b-devel: -------------------------------------------------------------------------------- 1 | libbs2b -------------------------------------------------------------------------------- /srcpkgs/libbsd-devel: -------------------------------------------------------------------------------- 1 | libbsd -------------------------------------------------------------------------------- /srcpkgs/libbtrfs: -------------------------------------------------------------------------------- 1 | btrfs-progs -------------------------------------------------------------------------------- /srcpkgs/libburn-devel: -------------------------------------------------------------------------------- 1 | libburn -------------------------------------------------------------------------------- /srcpkgs/libcaca-devel: -------------------------------------------------------------------------------- 1 | libcaca -------------------------------------------------------------------------------- /srcpkgs/libcaja: -------------------------------------------------------------------------------- 1 | caja -------------------------------------------------------------------------------- /srcpkgs/libcaja-devel: -------------------------------------------------------------------------------- 1 | caja -------------------------------------------------------------------------------- /srcpkgs/libcalc: -------------------------------------------------------------------------------- 1 | calc -------------------------------------------------------------------------------- /srcpkgs/libcalc-devel: -------------------------------------------------------------------------------- 1 | calc -------------------------------------------------------------------------------- /srcpkgs/libcap-devel: -------------------------------------------------------------------------------- 1 | libcap -------------------------------------------------------------------------------- /srcpkgs/libcap-pam: -------------------------------------------------------------------------------- 1 | libcap -------------------------------------------------------------------------------- /srcpkgs/libcap-progs: -------------------------------------------------------------------------------- 1 | libcap -------------------------------------------------------------------------------- /srcpkgs/libcaribou: -------------------------------------------------------------------------------- 1 | caribou -------------------------------------------------------------------------------- /srcpkgs/libcbor-devel: -------------------------------------------------------------------------------- 1 | libcbor -------------------------------------------------------------------------------- /srcpkgs/libchafa: -------------------------------------------------------------------------------- 1 | chafa -------------------------------------------------------------------------------- /srcpkgs/libcheese: -------------------------------------------------------------------------------- 1 | cheese -------------------------------------------------------------------------------- /srcpkgs/libchmlib: -------------------------------------------------------------------------------- 1 | chmlib -------------------------------------------------------------------------------- /srcpkgs/libclang: -------------------------------------------------------------------------------- 1 | llvm -------------------------------------------------------------------------------- /srcpkgs/libclc19: -------------------------------------------------------------------------------- 1 | llvm19 -------------------------------------------------------------------------------- /srcpkgs/libcolord: -------------------------------------------------------------------------------- 1 | colord -------------------------------------------------------------------------------- /srcpkgs/libcups: -------------------------------------------------------------------------------- 1 | cups -------------------------------------------------------------------------------- /srcpkgs/libcurl: -------------------------------------------------------------------------------- 1 | curl -------------------------------------------------------------------------------- /srcpkgs/libcxx: -------------------------------------------------------------------------------- 1 | llvm19 -------------------------------------------------------------------------------- /srcpkgs/libcxxabi: -------------------------------------------------------------------------------- 1 | llvm19 -------------------------------------------------------------------------------- /srcpkgs/libdar: -------------------------------------------------------------------------------- 1 | dar -------------------------------------------------------------------------------- /srcpkgs/libdar-devel: -------------------------------------------------------------------------------- 1 | dar -------------------------------------------------------------------------------- /srcpkgs/libdav1d: -------------------------------------------------------------------------------- 1 | dav1d -------------------------------------------------------------------------------- /srcpkgs/libdav1d6: -------------------------------------------------------------------------------- 1 | dav1d -------------------------------------------------------------------------------- /srcpkgs/libdaxctl: -------------------------------------------------------------------------------- 1 | ndctl -------------------------------------------------------------------------------- /srcpkgs/libdb: -------------------------------------------------------------------------------- 1 | db -------------------------------------------------------------------------------- /srcpkgs/libdb-cxx: -------------------------------------------------------------------------------- 1 | db -------------------------------------------------------------------------------- /srcpkgs/libeb: -------------------------------------------------------------------------------- 1 | eb -------------------------------------------------------------------------------- /srcpkgs/libeb-devel: -------------------------------------------------------------------------------- 1 | eb -------------------------------------------------------------------------------- /srcpkgs/libefivar: -------------------------------------------------------------------------------- 1 | efivar -------------------------------------------------------------------------------- /srcpkgs/libelf: -------------------------------------------------------------------------------- 1 | elfutils -------------------------------------------------------------------------------- /srcpkgs/libenca: -------------------------------------------------------------------------------- 1 | enca -------------------------------------------------------------------------------- /srcpkgs/libevince: -------------------------------------------------------------------------------- 1 | evince -------------------------------------------------------------------------------- /srcpkgs/libfcitx5: -------------------------------------------------------------------------------- 1 | fcitx5 -------------------------------------------------------------------------------- /srcpkgs/libffms2: -------------------------------------------------------------------------------- 1 | ffms2 -------------------------------------------------------------------------------- /srcpkgs/libfftw: -------------------------------------------------------------------------------- 1 | fftw -------------------------------------------------------------------------------- /srcpkgs/libfko: -------------------------------------------------------------------------------- 1 | fwknop -------------------------------------------------------------------------------- /srcpkgs/libfl-devel: -------------------------------------------------------------------------------- 1 | flex -------------------------------------------------------------------------------- /srcpkgs/libflac: -------------------------------------------------------------------------------- 1 | flac -------------------------------------------------------------------------------- /srcpkgs/libfrr: -------------------------------------------------------------------------------- 1 | frr -------------------------------------------------------------------------------- /srcpkgs/libfrr-devel: -------------------------------------------------------------------------------- 1 | frr -------------------------------------------------------------------------------- /srcpkgs/libfuzzy: -------------------------------------------------------------------------------- 1 | ssdeep -------------------------------------------------------------------------------- /srcpkgs/libgbm: -------------------------------------------------------------------------------- 1 | mesa -------------------------------------------------------------------------------- /srcpkgs/libgcc: -------------------------------------------------------------------------------- 1 | gcc -------------------------------------------------------------------------------- /srcpkgs/libgcc-devel: -------------------------------------------------------------------------------- 1 | gcc -------------------------------------------------------------------------------- /srcpkgs/libgcj: -------------------------------------------------------------------------------- 1 | gcc6 -------------------------------------------------------------------------------- /srcpkgs/libgdm: -------------------------------------------------------------------------------- 1 | gdm -------------------------------------------------------------------------------- /srcpkgs/libgee08: -------------------------------------------------------------------------------- 1 | libgee -------------------------------------------------------------------------------- /srcpkgs/libgeoip: -------------------------------------------------------------------------------- 1 | geoip -------------------------------------------------------------------------------- /srcpkgs/libgfortran: -------------------------------------------------------------------------------- 1 | gcc -------------------------------------------------------------------------------- /srcpkgs/libgiac: -------------------------------------------------------------------------------- 1 | giac -------------------------------------------------------------------------------- /srcpkgs/libgiggle: -------------------------------------------------------------------------------- 1 | giggle -------------------------------------------------------------------------------- /srcpkgs/libgimp: -------------------------------------------------------------------------------- 1 | gimp -------------------------------------------------------------------------------- /srcpkgs/libgmic: -------------------------------------------------------------------------------- 1 | gmic -------------------------------------------------------------------------------- /srcpkgs/libgo: -------------------------------------------------------------------------------- 1 | gcc -------------------------------------------------------------------------------- /srcpkgs/libgo-devel: -------------------------------------------------------------------------------- 1 | gcc -------------------------------------------------------------------------------- /srcpkgs/libgomp: -------------------------------------------------------------------------------- 1 | gcc -------------------------------------------------------------------------------- /srcpkgs/libgpaste: -------------------------------------------------------------------------------- 1 | GPaste -------------------------------------------------------------------------------- /srcpkgs/libgpgme: -------------------------------------------------------------------------------- 1 | gpgme -------------------------------------------------------------------------------- /srcpkgs/libgpm: -------------------------------------------------------------------------------- 1 | gpm -------------------------------------------------------------------------------- /srcpkgs/libgrpc: -------------------------------------------------------------------------------- 1 | grpc -------------------------------------------------------------------------------- /srcpkgs/libgsasl: -------------------------------------------------------------------------------- 1 | gsasl -------------------------------------------------------------------------------- /srcpkgs/libgtkdgl: -------------------------------------------------------------------------------- 1 | gtkd -------------------------------------------------------------------------------- /srcpkgs/libgtkdsv: -------------------------------------------------------------------------------- 1 | gtkd -------------------------------------------------------------------------------- /srcpkgs/libgtkhex: -------------------------------------------------------------------------------- 1 | ghex -------------------------------------------------------------------------------- /srcpkgs/libguile: -------------------------------------------------------------------------------- 1 | guile -------------------------------------------------------------------------------- /srcpkgs/libhackrf: -------------------------------------------------------------------------------- 1 | hackrf -------------------------------------------------------------------------------- /srcpkgs/libhwloc: -------------------------------------------------------------------------------- 1 | hwloc -------------------------------------------------------------------------------- /srcpkgs/libibus: -------------------------------------------------------------------------------- 1 | ibus -------------------------------------------------------------------------------- /srcpkgs/libipset: -------------------------------------------------------------------------------- 1 | ipset -------------------------------------------------------------------------------- /srcpkgs/libitm: -------------------------------------------------------------------------------- 1 | gcc -------------------------------------------------------------------------------- /srcpkgs/libitm-devel: -------------------------------------------------------------------------------- 1 | gcc -------------------------------------------------------------------------------- /srcpkgs/libjack: -------------------------------------------------------------------------------- 1 | jack -------------------------------------------------------------------------------- /srcpkgs/libjasper: -------------------------------------------------------------------------------- 1 | jasper -------------------------------------------------------------------------------- /srcpkgs/libjose: -------------------------------------------------------------------------------- 1 | jose -------------------------------------------------------------------------------- /srcpkgs/libkate: -------------------------------------------------------------------------------- 1 | kate5 -------------------------------------------------------------------------------- /srcpkgs/libkea: -------------------------------------------------------------------------------- 1 | kea -------------------------------------------------------------------------------- /srcpkgs/libkea-devel: -------------------------------------------------------------------------------- 1 | kea -------------------------------------------------------------------------------- /srcpkgs/libkmod: -------------------------------------------------------------------------------- 1 | kmod -------------------------------------------------------------------------------- /srcpkgs/libknot: -------------------------------------------------------------------------------- 1 | knot -------------------------------------------------------------------------------- /srcpkgs/libksolid: -------------------------------------------------------------------------------- 1 | ksolid -------------------------------------------------------------------------------- /srcpkgs/libldap: -------------------------------------------------------------------------------- 1 | openldap -------------------------------------------------------------------------------- /srcpkgs/libldns: -------------------------------------------------------------------------------- 1 | ldns -------------------------------------------------------------------------------- /srcpkgs/libledger: -------------------------------------------------------------------------------- 1 | ledger -------------------------------------------------------------------------------- /srcpkgs/liblilv: -------------------------------------------------------------------------------- 1 | lilv -------------------------------------------------------------------------------- /srcpkgs/liblldb17: -------------------------------------------------------------------------------- 1 | llvm17 -------------------------------------------------------------------------------- /srcpkgs/liblldb18: -------------------------------------------------------------------------------- 1 | llvm18 -------------------------------------------------------------------------------- /srcpkgs/liblldb19: -------------------------------------------------------------------------------- 1 | llvm19 -------------------------------------------------------------------------------- /srcpkgs/libllvm: -------------------------------------------------------------------------------- 1 | llvm -------------------------------------------------------------------------------- /srcpkgs/libllvm17: -------------------------------------------------------------------------------- 1 | llvm17 -------------------------------------------------------------------------------- /srcpkgs/libllvm18: -------------------------------------------------------------------------------- 1 | llvm18 -------------------------------------------------------------------------------- /srcpkgs/libllvm19: -------------------------------------------------------------------------------- 1 | llvm19 -------------------------------------------------------------------------------- /srcpkgs/libltdl: -------------------------------------------------------------------------------- 1 | libtool -------------------------------------------------------------------------------- /srcpkgs/liblxc: -------------------------------------------------------------------------------- 1 | lxc -------------------------------------------------------------------------------- /srcpkgs/liblz4: -------------------------------------------------------------------------------- 1 | lz4 -------------------------------------------------------------------------------- /srcpkgs/liblz4-devel: -------------------------------------------------------------------------------- 1 | lz4 -------------------------------------------------------------------------------- /srcpkgs/liblzf-devel: -------------------------------------------------------------------------------- 1 | lzf -------------------------------------------------------------------------------- /srcpkgs/liblzma: -------------------------------------------------------------------------------- 1 | xz -------------------------------------------------------------------------------- /srcpkgs/liblzma-devel: -------------------------------------------------------------------------------- 1 | xz -------------------------------------------------------------------------------- /srcpkgs/libmagic: -------------------------------------------------------------------------------- 1 | file -------------------------------------------------------------------------------- /srcpkgs/libmarco: -------------------------------------------------------------------------------- 1 | marco -------------------------------------------------------------------------------- /srcpkgs/libmcpp: -------------------------------------------------------------------------------- 1 | mcpp -------------------------------------------------------------------------------- /srcpkgs/libmd4c: -------------------------------------------------------------------------------- 1 | md4c -------------------------------------------------------------------------------- /srcpkgs/libmdb: -------------------------------------------------------------------------------- 1 | mdbtools -------------------------------------------------------------------------------- /srcpkgs/libmdnsd: -------------------------------------------------------------------------------- 1 | mdnsd -------------------------------------------------------------------------------- /srcpkgs/libmed: -------------------------------------------------------------------------------- 1 | med -------------------------------------------------------------------------------- /srcpkgs/libmed-devel: -------------------------------------------------------------------------------- 1 | med -------------------------------------------------------------------------------- /srcpkgs/libmgba: -------------------------------------------------------------------------------- 1 | mgba -------------------------------------------------------------------------------- /srcpkgs/libmitlm: -------------------------------------------------------------------------------- 1 | mitlm -------------------------------------------------------------------------------- /srcpkgs/libmj: -------------------------------------------------------------------------------- 1 | netpgp -------------------------------------------------------------------------------- /srcpkgs/libmpg123: -------------------------------------------------------------------------------- 1 | mpg123 -------------------------------------------------------------------------------- /srcpkgs/libndctl: -------------------------------------------------------------------------------- 1 | ndctl -------------------------------------------------------------------------------- /srcpkgs/libnemo: -------------------------------------------------------------------------------- 1 | nemo -------------------------------------------------------------------------------- /srcpkgs/libnetpbm: -------------------------------------------------------------------------------- 1 | netpbm -------------------------------------------------------------------------------- /srcpkgs/libnetpgp: -------------------------------------------------------------------------------- 1 | netpgp -------------------------------------------------------------------------------- /srcpkgs/libnuma: -------------------------------------------------------------------------------- 1 | numactl -------------------------------------------------------------------------------- /srcpkgs/libobjc: -------------------------------------------------------------------------------- 1 | gcc -------------------------------------------------------------------------------- /srcpkgs/libodbc: -------------------------------------------------------------------------------- 1 | unixodbc -------------------------------------------------------------------------------- /srcpkgs/libokular: -------------------------------------------------------------------------------- 1 | okular -------------------------------------------------------------------------------- /srcpkgs/libomp: -------------------------------------------------------------------------------- 1 | llvm -------------------------------------------------------------------------------- /srcpkgs/libomp17: -------------------------------------------------------------------------------- 1 | llvm17 -------------------------------------------------------------------------------- /srcpkgs/libomp18: -------------------------------------------------------------------------------- 1 | llvm18 -------------------------------------------------------------------------------- /srcpkgs/libomp19: -------------------------------------------------------------------------------- 1 | llvm19 -------------------------------------------------------------------------------- /srcpkgs/libopencv: -------------------------------------------------------------------------------- 1 | opencv -------------------------------------------------------------------------------- /srcpkgs/libopensc: -------------------------------------------------------------------------------- 1 | opensc -------------------------------------------------------------------------------- /srcpkgs/libopkg: -------------------------------------------------------------------------------- 1 | opkg -------------------------------------------------------------------------------- /srcpkgs/libopts: -------------------------------------------------------------------------------- 1 | autogen -------------------------------------------------------------------------------- /srcpkgs/libostree: -------------------------------------------------------------------------------- 1 | ostree -------------------------------------------------------------------------------- /srcpkgs/libpapers: -------------------------------------------------------------------------------- 1 | papers -------------------------------------------------------------------------------- /srcpkgs/libparted: -------------------------------------------------------------------------------- 1 | parted -------------------------------------------------------------------------------- /srcpkgs/libpcre: -------------------------------------------------------------------------------- 1 | pcre -------------------------------------------------------------------------------- /srcpkgs/libpcre2: -------------------------------------------------------------------------------- 1 | pcre2 -------------------------------------------------------------------------------- /srcpkgs/libpcrecpp: -------------------------------------------------------------------------------- 1 | pcre -------------------------------------------------------------------------------- /srcpkgs/libpeasd: -------------------------------------------------------------------------------- 1 | gtkd -------------------------------------------------------------------------------- /srcpkgs/libphobos: -------------------------------------------------------------------------------- 1 | dmd -------------------------------------------------------------------------------- /srcpkgs/libplplot: -------------------------------------------------------------------------------- 1 | plplot -------------------------------------------------------------------------------- /srcpkgs/libpodofo: -------------------------------------------------------------------------------- 1 | podofo -------------------------------------------------------------------------------- /srcpkgs/libpurple: -------------------------------------------------------------------------------- 1 | pidgin -------------------------------------------------------------------------------- /srcpkgs/libqhull: -------------------------------------------------------------------------------- 1 | qhull -------------------------------------------------------------------------------- /srcpkgs/libqpdf: -------------------------------------------------------------------------------- 1 | qpdf -------------------------------------------------------------------------------- /srcpkgs/libquadmath: -------------------------------------------------------------------------------- 1 | gcc -------------------------------------------------------------------------------- /srcpkgs/libraptor: -------------------------------------------------------------------------------- 1 | raptor -------------------------------------------------------------------------------- /srcpkgs/librasqal: -------------------------------------------------------------------------------- 1 | rasqal -------------------------------------------------------------------------------- /srcpkgs/librdf: -------------------------------------------------------------------------------- 1 | redland -------------------------------------------------------------------------------- /srcpkgs/librec1: -------------------------------------------------------------------------------- 1 | recutils -------------------------------------------------------------------------------- /srcpkgs/librecode: -------------------------------------------------------------------------------- 1 | recode -------------------------------------------------------------------------------- /srcpkgs/libresvg0: -------------------------------------------------------------------------------- 1 | resvg -------------------------------------------------------------------------------- /srcpkgs/librpm: -------------------------------------------------------------------------------- 1 | rpm -------------------------------------------------------------------------------- /srcpkgs/librpm-devel: -------------------------------------------------------------------------------- 1 | rpm -------------------------------------------------------------------------------- /srcpkgs/librpmbuild: -------------------------------------------------------------------------------- 1 | rpm -------------------------------------------------------------------------------- /srcpkgs/librpmio: -------------------------------------------------------------------------------- 1 | rpm -------------------------------------------------------------------------------- /srcpkgs/librpmsign: -------------------------------------------------------------------------------- 1 | rpm -------------------------------------------------------------------------------- /srcpkgs/librtmp: -------------------------------------------------------------------------------- 1 | rtmpdump -------------------------------------------------------------------------------- /srcpkgs/librygel: -------------------------------------------------------------------------------- 1 | rygel -------------------------------------------------------------------------------- /srcpkgs/libsane: -------------------------------------------------------------------------------- 1 | sane -------------------------------------------------------------------------------- /srcpkgs/libsanitizer: -------------------------------------------------------------------------------- 1 | gcc -------------------------------------------------------------------------------- /srcpkgs/libseat: -------------------------------------------------------------------------------- 1 | seatd -------------------------------------------------------------------------------- /srcpkgs/libserd: -------------------------------------------------------------------------------- 1 | serd -------------------------------------------------------------------------------- /srcpkgs/libsndio: -------------------------------------------------------------------------------- 1 | sndio -------------------------------------------------------------------------------- /srcpkgs/libsonic: -------------------------------------------------------------------------------- 1 | sonic -------------------------------------------------------------------------------- /srcpkgs/libsord: -------------------------------------------------------------------------------- 1 | sord -------------------------------------------------------------------------------- /srcpkgs/libspdlog: -------------------------------------------------------------------------------- 1 | spdlog -------------------------------------------------------------------------------- /srcpkgs/libspeex: -------------------------------------------------------------------------------- 1 | speex -------------------------------------------------------------------------------- /srcpkgs/libsrt: -------------------------------------------------------------------------------- 1 | srt -------------------------------------------------------------------------------- /srcpkgs/libssl3: -------------------------------------------------------------------------------- 1 | openssl -------------------------------------------------------------------------------- /srcpkgs/libstdc++: -------------------------------------------------------------------------------- 1 | gcc -------------------------------------------------------------------------------- /srcpkgs/libstk: -------------------------------------------------------------------------------- 1 | stk -------------------------------------------------------------------------------- /srcpkgs/libstk-devel: -------------------------------------------------------------------------------- 1 | stk -------------------------------------------------------------------------------- /srcpkgs/libsword: -------------------------------------------------------------------------------- 1 | sword -------------------------------------------------------------------------------- /srcpkgs/libswtpm: -------------------------------------------------------------------------------- 1 | swtpm -------------------------------------------------------------------------------- /srcpkgs/libt1: -------------------------------------------------------------------------------- 1 | t1lib -------------------------------------------------------------------------------- /srcpkgs/libtdb: -------------------------------------------------------------------------------- 1 | tdb -------------------------------------------------------------------------------- /srcpkgs/libteckit: -------------------------------------------------------------------------------- 1 | teckit -------------------------------------------------------------------------------- /srcpkgs/libtexpdf: -------------------------------------------------------------------------------- 1 | sile -------------------------------------------------------------------------------- /srcpkgs/libtidy5: -------------------------------------------------------------------------------- 1 | tidy5 -------------------------------------------------------------------------------- /srcpkgs/libtotem: -------------------------------------------------------------------------------- 1 | totem -------------------------------------------------------------------------------- /srcpkgs/libunrar: -------------------------------------------------------------------------------- 1 | unrar -------------------------------------------------------------------------------- /srcpkgs/libvala: -------------------------------------------------------------------------------- 1 | vala -------------------------------------------------------------------------------- /srcpkgs/libvde2: -------------------------------------------------------------------------------- 1 | vde2 -------------------------------------------------------------------------------- /srcpkgs/libvips: -------------------------------------------------------------------------------- 1 | vips -------------------------------------------------------------------------------- /srcpkgs/libvips-doc: -------------------------------------------------------------------------------- 1 | vips -------------------------------------------------------------------------------- /srcpkgs/libvips-jxl: -------------------------------------------------------------------------------- 1 | vips -------------------------------------------------------------------------------- /srcpkgs/libvlc: -------------------------------------------------------------------------------- 1 | vlc -------------------------------------------------------------------------------- /srcpkgs/libvted: -------------------------------------------------------------------------------- 1 | gtkd -------------------------------------------------------------------------------- /srcpkgs/libvtv: -------------------------------------------------------------------------------- 1 | gcc -------------------------------------------------------------------------------- /srcpkgs/libvtv-devel: -------------------------------------------------------------------------------- 1 | gcc -------------------------------------------------------------------------------- /srcpkgs/libwv: -------------------------------------------------------------------------------- 1 | wv -------------------------------------------------------------------------------- /srcpkgs/libxbps: -------------------------------------------------------------------------------- 1 | xbps -------------------------------------------------------------------------------- /srcpkgs/libxine: -------------------------------------------------------------------------------- 1 | xine-lib -------------------------------------------------------------------------------- /srcpkgs/libxxHash: -------------------------------------------------------------------------------- 1 | xxHash -------------------------------------------------------------------------------- /srcpkgs/libyara: -------------------------------------------------------------------------------- 1 | yara -------------------------------------------------------------------------------- /srcpkgs/libykpers: -------------------------------------------------------------------------------- 1 | ykpers -------------------------------------------------------------------------------- /srcpkgs/libz3: -------------------------------------------------------------------------------- 1 | z3 -------------------------------------------------------------------------------- /srcpkgs/libzbar: -------------------------------------------------------------------------------- 1 | zbar -------------------------------------------------------------------------------- /srcpkgs/libzbar-qt: -------------------------------------------------------------------------------- 1 | zbar -------------------------------------------------------------------------------- /srcpkgs/libzfs: -------------------------------------------------------------------------------- 1 | zfs -------------------------------------------------------------------------------- /srcpkgs/libzinnia: -------------------------------------------------------------------------------- 1 | zinnia -------------------------------------------------------------------------------- /srcpkgs/libzint: -------------------------------------------------------------------------------- 1 | zint -------------------------------------------------------------------------------- /srcpkgs/libzstd: -------------------------------------------------------------------------------- 1 | zstd -------------------------------------------------------------------------------- /srcpkgs/lilv-devel: -------------------------------------------------------------------------------- 1 | lilv -------------------------------------------------------------------------------- /srcpkgs/lily-devel: -------------------------------------------------------------------------------- 1 | lily -------------------------------------------------------------------------------- /srcpkgs/lld: -------------------------------------------------------------------------------- 1 | llvm -------------------------------------------------------------------------------- /srcpkgs/lld17: -------------------------------------------------------------------------------- 1 | llvm17 -------------------------------------------------------------------------------- /srcpkgs/lld18: -------------------------------------------------------------------------------- 1 | llvm18 -------------------------------------------------------------------------------- /srcpkgs/lld19: -------------------------------------------------------------------------------- 1 | llvm19 -------------------------------------------------------------------------------- /srcpkgs/lldb: -------------------------------------------------------------------------------- 1 | llvm -------------------------------------------------------------------------------- /srcpkgs/lldb17: -------------------------------------------------------------------------------- 1 | llvm17 -------------------------------------------------------------------------------- /srcpkgs/lldb18: -------------------------------------------------------------------------------- 1 | llvm18 -------------------------------------------------------------------------------- /srcpkgs/lldb19: -------------------------------------------------------------------------------- 1 | llvm19 -------------------------------------------------------------------------------- /srcpkgs/lmdb-devel: -------------------------------------------------------------------------------- 1 | lmdb -------------------------------------------------------------------------------- /srcpkgs/lua: -------------------------------------------------------------------------------- 1 | lua53 -------------------------------------------------------------------------------- /srcpkgs/lua-devel: -------------------------------------------------------------------------------- 1 | lua53 -------------------------------------------------------------------------------- /srcpkgs/lxc-devel: -------------------------------------------------------------------------------- 1 | lxc -------------------------------------------------------------------------------- /srcpkgs/lzo-devel: -------------------------------------------------------------------------------- 1 | lzo -------------------------------------------------------------------------------- /srcpkgs/m4ri-devel: -------------------------------------------------------------------------------- 1 | m4ri -------------------------------------------------------------------------------- /srcpkgs/mash-devel: -------------------------------------------------------------------------------- 1 | mash -------------------------------------------------------------------------------- /srcpkgs/mcpp-devel: -------------------------------------------------------------------------------- 1 | mcpp -------------------------------------------------------------------------------- /srcpkgs/mdevd-doc: -------------------------------------------------------------------------------- 1 | mdevd -------------------------------------------------------------------------------- /srcpkgs/med-doc: -------------------------------------------------------------------------------- 1 | med -------------------------------------------------------------------------------- /srcpkgs/mesa-dri: -------------------------------------------------------------------------------- 1 | mesa -------------------------------------------------------------------------------- /srcpkgs/mesa-opencl: -------------------------------------------------------------------------------- 1 | mesa -------------------------------------------------------------------------------- /srcpkgs/mesa-vaapi: -------------------------------------------------------------------------------- 1 | mesa -------------------------------------------------------------------------------- /srcpkgs/mesa-vdpau: -------------------------------------------------------------------------------- 1 | mesa -------------------------------------------------------------------------------- /srcpkgs/mgba-qt: -------------------------------------------------------------------------------- 1 | mgba -------------------------------------------------------------------------------- /srcpkgs/minetest: -------------------------------------------------------------------------------- 1 | luanti -------------------------------------------------------------------------------- /srcpkgs/mkpasswd: -------------------------------------------------------------------------------- 1 | whois -------------------------------------------------------------------------------- /srcpkgs/mlir17: -------------------------------------------------------------------------------- 1 | llvm17 -------------------------------------------------------------------------------- /srcpkgs/mlir18: -------------------------------------------------------------------------------- 1 | llvm18 -------------------------------------------------------------------------------- /srcpkgs/mlir19: -------------------------------------------------------------------------------- 1 | llvm19 -------------------------------------------------------------------------------- /srcpkgs/mlt7-data: -------------------------------------------------------------------------------- 1 | mlt7 -------------------------------------------------------------------------------- /srcpkgs/mlt7-devel: -------------------------------------------------------------------------------- 1 | mlt7 -------------------------------------------------------------------------------- /srcpkgs/mlt7-doc: -------------------------------------------------------------------------------- 1 | mlt7 -------------------------------------------------------------------------------- /srcpkgs/mono-devel: -------------------------------------------------------------------------------- 1 | mono -------------------------------------------------------------------------------- /srcpkgs/motif-mwm: -------------------------------------------------------------------------------- 1 | motif -------------------------------------------------------------------------------- /srcpkgs/mozc-base: -------------------------------------------------------------------------------- 1 | mozc -------------------------------------------------------------------------------- /srcpkgs/mpeg4ip: -------------------------------------------------------------------------------- 1 | libmp4v2 -------------------------------------------------------------------------------- /srcpkgs/mpfi-devel: -------------------------------------------------------------------------------- 1 | mpfi -------------------------------------------------------------------------------- /srcpkgs/mpfr-devel: -------------------------------------------------------------------------------- 1 | mpfr -------------------------------------------------------------------------------- /srcpkgs/mpv-devel: -------------------------------------------------------------------------------- 1 | mpv -------------------------------------------------------------------------------- /srcpkgs/mtr-x11: -------------------------------------------------------------------------------- 1 | mtr -------------------------------------------------------------------------------- /srcpkgs/mujs-devel: -------------------------------------------------------------------------------- 1 | mujs -------------------------------------------------------------------------------- /srcpkgs/munge-libs: -------------------------------------------------------------------------------- 1 | munge -------------------------------------------------------------------------------- /srcpkgs/murmur: -------------------------------------------------------------------------------- 1 | mumble -------------------------------------------------------------------------------- /srcpkgs/musl-devel: -------------------------------------------------------------------------------- 1 | musl -------------------------------------------------------------------------------- /srcpkgs/mxml-devel: -------------------------------------------------------------------------------- 1 | mxml -------------------------------------------------------------------------------- /srcpkgs/mysql: -------------------------------------------------------------------------------- 1 | mariadb -------------------------------------------------------------------------------- /srcpkgs/nasm-doc: -------------------------------------------------------------------------------- 1 | nasm -------------------------------------------------------------------------------- /srcpkgs/ndpi-devel: -------------------------------------------------------------------------------- 1 | ndpi -------------------------------------------------------------------------------- /srcpkgs/nemo-devel: -------------------------------------------------------------------------------- 1 | nemo -------------------------------------------------------------------------------- /srcpkgs/neon-devel: -------------------------------------------------------------------------------- 1 | neon -------------------------------------------------------------------------------- /srcpkgs/newt-devel: -------------------------------------------------------------------------------- 1 | newt -------------------------------------------------------------------------------- /srcpkgs/next: -------------------------------------------------------------------------------- 1 | nyxt -------------------------------------------------------------------------------- /srcpkgs/nih-devel: -------------------------------------------------------------------------------- 1 | libnih -------------------------------------------------------------------------------- /srcpkgs/nng-devel: -------------------------------------------------------------------------------- 1 | nng -------------------------------------------------------------------------------- /srcpkgs/npth-devel: -------------------------------------------------------------------------------- 1 | npth -------------------------------------------------------------------------------- /srcpkgs/nscd: -------------------------------------------------------------------------------- 1 | glibc -------------------------------------------------------------------------------- /srcpkgs/nspr-devel: -------------------------------------------------------------------------------- 1 | nspr -------------------------------------------------------------------------------- /srcpkgs/nss-devel: -------------------------------------------------------------------------------- 1 | nss -------------------------------------------------------------------------------- /srcpkgs/nsss-devel: -------------------------------------------------------------------------------- 1 | nsss -------------------------------------------------------------------------------- /srcpkgs/nsss-doc: -------------------------------------------------------------------------------- 1 | nsss -------------------------------------------------------------------------------- /srcpkgs/ntl-devel: -------------------------------------------------------------------------------- 1 | ntl -------------------------------------------------------------------------------- /srcpkgs/ntp-perl: -------------------------------------------------------------------------------- 1 | ntp -------------------------------------------------------------------------------- /srcpkgs/obs-devel: -------------------------------------------------------------------------------- 1 | obs -------------------------------------------------------------------------------- /srcpkgs/occt-devel: -------------------------------------------------------------------------------- 1 | occt -------------------------------------------------------------------------------- /srcpkgs/ois-devel: -------------------------------------------------------------------------------- 1 | ois -------------------------------------------------------------------------------- /srcpkgs/olm-devel: -------------------------------------------------------------------------------- 1 | olm -------------------------------------------------------------------------------- /srcpkgs/omxplayer: -------------------------------------------------------------------------------- 1 | vlc -------------------------------------------------------------------------------- /srcpkgs/opencv4: -------------------------------------------------------------------------------- 1 | opencv -------------------------------------------------------------------------------- /srcpkgs/openmw-cs: -------------------------------------------------------------------------------- 1 | openmw -------------------------------------------------------------------------------- /srcpkgs/opus-devel: -------------------------------------------------------------------------------- 1 | opus -------------------------------------------------------------------------------- /srcpkgs/oragono: -------------------------------------------------------------------------------- 1 | ergo/ -------------------------------------------------------------------------------- /srcpkgs/orc-devel: -------------------------------------------------------------------------------- 1 | orc -------------------------------------------------------------------------------- /srcpkgs/ortp-devel: -------------------------------------------------------------------------------- 1 | ortp -------------------------------------------------------------------------------- /srcpkgs/osg-devel: -------------------------------------------------------------------------------- 1 | osg -------------------------------------------------------------------------------- /srcpkgs/p7zip: -------------------------------------------------------------------------------- 1 | 7zip -------------------------------------------------------------------------------- /srcpkgs/p7zip-unrar: -------------------------------------------------------------------------------- 1 | 7zip -------------------------------------------------------------------------------- /srcpkgs/pam-devel: -------------------------------------------------------------------------------- 1 | pam -------------------------------------------------------------------------------- /srcpkgs/pam-libs: -------------------------------------------------------------------------------- 1 | pam -------------------------------------------------------------------------------- /srcpkgs/pam-userdb: -------------------------------------------------------------------------------- 1 | pam -------------------------------------------------------------------------------- /srcpkgs/pango-view: -------------------------------------------------------------------------------- 1 | pango -------------------------------------------------------------------------------- /srcpkgs/pango-xft: -------------------------------------------------------------------------------- 1 | pango -------------------------------------------------------------------------------- /srcpkgs/papi-devel: -------------------------------------------------------------------------------- 1 | papi -------------------------------------------------------------------------------- /srcpkgs/pari-devel: -------------------------------------------------------------------------------- 1 | pari -------------------------------------------------------------------------------- /srcpkgs/passmenu: -------------------------------------------------------------------------------- 1 | pass -------------------------------------------------------------------------------- /srcpkgs/pcc-libs: -------------------------------------------------------------------------------- 1 | pcc -------------------------------------------------------------------------------- /srcpkgs/pcre-devel: -------------------------------------------------------------------------------- 1 | pcre -------------------------------------------------------------------------------- /srcpkgs/pd-devel: -------------------------------------------------------------------------------- 1 | pd -------------------------------------------------------------------------------- /srcpkgs/pdftk: -------------------------------------------------------------------------------- 1 | pdftk-java -------------------------------------------------------------------------------- /srcpkgs/perf: -------------------------------------------------------------------------------- 1 | linux-tools -------------------------------------------------------------------------------- /srcpkgs/perl-Stow: -------------------------------------------------------------------------------- 1 | stow -------------------------------------------------------------------------------- /srcpkgs/php-apache: -------------------------------------------------------------------------------- 1 | php -------------------------------------------------------------------------------- /srcpkgs/php-apcu: -------------------------------------------------------------------------------- 1 | php -------------------------------------------------------------------------------- /srcpkgs/php-ast: -------------------------------------------------------------------------------- 1 | php -------------------------------------------------------------------------------- /srcpkgs/php-cgi: -------------------------------------------------------------------------------- 1 | php -------------------------------------------------------------------------------- /srcpkgs/php-devel: -------------------------------------------------------------------------------- 1 | php -------------------------------------------------------------------------------- /srcpkgs/php-embed: -------------------------------------------------------------------------------- 1 | php -------------------------------------------------------------------------------- /srcpkgs/php-enchant: -------------------------------------------------------------------------------- 1 | php -------------------------------------------------------------------------------- /srcpkgs/php-ffi: -------------------------------------------------------------------------------- 1 | php -------------------------------------------------------------------------------- /srcpkgs/php-fpm: -------------------------------------------------------------------------------- 1 | php -------------------------------------------------------------------------------- /srcpkgs/php-gd: -------------------------------------------------------------------------------- 1 | php -------------------------------------------------------------------------------- /srcpkgs/php-igbinary: -------------------------------------------------------------------------------- 1 | php -------------------------------------------------------------------------------- /srcpkgs/php-imagick: -------------------------------------------------------------------------------- 1 | php -------------------------------------------------------------------------------- /srcpkgs/php-intl: -------------------------------------------------------------------------------- 1 | php -------------------------------------------------------------------------------- /srcpkgs/php-ldap: -------------------------------------------------------------------------------- 1 | php -------------------------------------------------------------------------------- /srcpkgs/php-mongodb: -------------------------------------------------------------------------------- 1 | php -------------------------------------------------------------------------------- /srcpkgs/php-mysql: -------------------------------------------------------------------------------- 1 | php -------------------------------------------------------------------------------- /srcpkgs/php-odbc: -------------------------------------------------------------------------------- 1 | php -------------------------------------------------------------------------------- /srcpkgs/php-pear: -------------------------------------------------------------------------------- 1 | php -------------------------------------------------------------------------------- /srcpkgs/php-pgsql: -------------------------------------------------------------------------------- 1 | php -------------------------------------------------------------------------------- /srcpkgs/php-phpdbg: -------------------------------------------------------------------------------- 1 | php -------------------------------------------------------------------------------- /srcpkgs/php-redis: -------------------------------------------------------------------------------- 1 | php -------------------------------------------------------------------------------- /srcpkgs/php-snmp: -------------------------------------------------------------------------------- 1 | php -------------------------------------------------------------------------------- /srcpkgs/php-sodium: -------------------------------------------------------------------------------- 1 | php -------------------------------------------------------------------------------- /srcpkgs/php-sqlite: -------------------------------------------------------------------------------- 1 | php -------------------------------------------------------------------------------- /srcpkgs/php-tidy: -------------------------------------------------------------------------------- 1 | php -------------------------------------------------------------------------------- /srcpkgs/php-xsl: -------------------------------------------------------------------------------- 1 | php -------------------------------------------------------------------------------- /srcpkgs/php8.1-gd: -------------------------------------------------------------------------------- 1 | php8.1 -------------------------------------------------------------------------------- /srcpkgs/php8.2-gd: -------------------------------------------------------------------------------- 1 | php8.2 -------------------------------------------------------------------------------- /srcpkgs/php8.3-gd: -------------------------------------------------------------------------------- 1 | php8.3 -------------------------------------------------------------------------------- /srcpkgs/php8.4-gd: -------------------------------------------------------------------------------- 1 | php8.4 -------------------------------------------------------------------------------- /srcpkgs/planner: -------------------------------------------------------------------------------- 1 | planify -------------------------------------------------------------------------------- /srcpkgs/plib-devel: -------------------------------------------------------------------------------- 1 | plib -------------------------------------------------------------------------------- /srcpkgs/png++-doc: -------------------------------------------------------------------------------- 1 | png++ -------------------------------------------------------------------------------- /srcpkgs/poco-devel: -------------------------------------------------------------------------------- 1 | poco -------------------------------------------------------------------------------- /srcpkgs/poke-devel: -------------------------------------------------------------------------------- 1 | poke -------------------------------------------------------------------------------- /srcpkgs/popt-devel: -------------------------------------------------------------------------------- 1 | popt -------------------------------------------------------------------------------- /srcpkgs/ppl-devel: -------------------------------------------------------------------------------- 1 | ppl -------------------------------------------------------------------------------- /srcpkgs/ppp-devel: -------------------------------------------------------------------------------- 1 | ppp -------------------------------------------------------------------------------- /srcpkgs/proj-devel: -------------------------------------------------------------------------------- 1 | proj -------------------------------------------------------------------------------- /srcpkgs/prs-gtk3: -------------------------------------------------------------------------------- 1 | prs -------------------------------------------------------------------------------- /srcpkgs/ptex-devel: -------------------------------------------------------------------------------- 1 | ptex -------------------------------------------------------------------------------- /srcpkgs/python3-bcc: -------------------------------------------------------------------------------- 1 | bcc -------------------------------------------------------------------------------- /srcpkgs/python3-pex: -------------------------------------------------------------------------------- 1 | pex -------------------------------------------------------------------------------- /srcpkgs/qemu-common: -------------------------------------------------------------------------------- 1 | qemu -------------------------------------------------------------------------------- /srcpkgs/qemu-doc: -------------------------------------------------------------------------------- 1 | qemu -------------------------------------------------------------------------------- /srcpkgs/qemu-ga: -------------------------------------------------------------------------------- 1 | qemu -------------------------------------------------------------------------------- /srcpkgs/qemu-img: -------------------------------------------------------------------------------- 1 | qemu -------------------------------------------------------------------------------- /srcpkgs/qemu-tools: -------------------------------------------------------------------------------- 1 | qemu -------------------------------------------------------------------------------- /srcpkgs/qmmp-devel: -------------------------------------------------------------------------------- 1 | qmmp -------------------------------------------------------------------------------- /srcpkgs/qt5-3d: -------------------------------------------------------------------------------- 1 | qt5 -------------------------------------------------------------------------------- /srcpkgs/qt5-3d-devel: -------------------------------------------------------------------------------- 1 | qt5 -------------------------------------------------------------------------------- /srcpkgs/qt5-charts: -------------------------------------------------------------------------------- 1 | qt5 -------------------------------------------------------------------------------- /srcpkgs/qt5-core: -------------------------------------------------------------------------------- 1 | qt5 -------------------------------------------------------------------------------- /srcpkgs/qt5-dbus: -------------------------------------------------------------------------------- 1 | qt5 -------------------------------------------------------------------------------- /srcpkgs/qt5-devel: -------------------------------------------------------------------------------- 1 | qt5 -------------------------------------------------------------------------------- /srcpkgs/qt5-examples: -------------------------------------------------------------------------------- 1 | qt5 -------------------------------------------------------------------------------- /srcpkgs/qt5-gamepad: -------------------------------------------------------------------------------- 1 | qt5 -------------------------------------------------------------------------------- /srcpkgs/qt5-gui: -------------------------------------------------------------------------------- 1 | qt5 -------------------------------------------------------------------------------- /srcpkgs/qt5-location: -------------------------------------------------------------------------------- 1 | qt5 -------------------------------------------------------------------------------- /srcpkgs/qt5-lottie: -------------------------------------------------------------------------------- 1 | qt5 -------------------------------------------------------------------------------- /srcpkgs/qt5-network: -------------------------------------------------------------------------------- 1 | qt5 -------------------------------------------------------------------------------- /srcpkgs/qt5-opengl: -------------------------------------------------------------------------------- 1 | qt5 -------------------------------------------------------------------------------- /srcpkgs/qt5-qmake: -------------------------------------------------------------------------------- 1 | qt5 -------------------------------------------------------------------------------- /srcpkgs/qt5-script: -------------------------------------------------------------------------------- 1 | qt5 -------------------------------------------------------------------------------- /srcpkgs/qt5-scxml: -------------------------------------------------------------------------------- 1 | qt5 -------------------------------------------------------------------------------- /srcpkgs/qt5-sensors: -------------------------------------------------------------------------------- 1 | qt5 -------------------------------------------------------------------------------- /srcpkgs/qt5-sql: -------------------------------------------------------------------------------- 1 | qt5 -------------------------------------------------------------------------------- /srcpkgs/qt5-svg: -------------------------------------------------------------------------------- 1 | qt5 -------------------------------------------------------------------------------- /srcpkgs/qt5-test: -------------------------------------------------------------------------------- 1 | qt5 -------------------------------------------------------------------------------- /srcpkgs/qt5-tools: -------------------------------------------------------------------------------- 1 | qt5 -------------------------------------------------------------------------------- /srcpkgs/qt5-wayland: -------------------------------------------------------------------------------- 1 | qt5 -------------------------------------------------------------------------------- /srcpkgs/qt5-widgets: -------------------------------------------------------------------------------- 1 | qt5 -------------------------------------------------------------------------------- /srcpkgs/qt5-xml: -------------------------------------------------------------------------------- 1 | qt5 -------------------------------------------------------------------------------- /srcpkgs/qt6-gui: -------------------------------------------------------------------------------- 1 | qt6-base -------------------------------------------------------------------------------- /srcpkgs/qt6-sql: -------------------------------------------------------------------------------- 1 | qt6-base -------------------------------------------------------------------------------- /srcpkgs/qt6-xml: -------------------------------------------------------------------------------- 1 | qt6-base -------------------------------------------------------------------------------- /srcpkgs/qwt-devel: -------------------------------------------------------------------------------- 1 | qwt -------------------------------------------------------------------------------- /srcpkgs/qwt-doc: -------------------------------------------------------------------------------- 1 | qwt -------------------------------------------------------------------------------- /srcpkgs/qwt-headers: -------------------------------------------------------------------------------- 1 | qwt -------------------------------------------------------------------------------- /srcpkgs/qwt-qt6: -------------------------------------------------------------------------------- 1 | qwt -------------------------------------------------------------------------------- /srcpkgs/raft-devel: -------------------------------------------------------------------------------- 1 | raft -------------------------------------------------------------------------------- /srcpkgs/re-devel: -------------------------------------------------------------------------------- 1 | re -------------------------------------------------------------------------------- /srcpkgs/re2-devel: -------------------------------------------------------------------------------- 1 | re2 -------------------------------------------------------------------------------- /srcpkgs/rest-devel: -------------------------------------------------------------------------------- 1 | rest -------------------------------------------------------------------------------- /srcpkgs/rio-terminfo: -------------------------------------------------------------------------------- 1 | rio -------------------------------------------------------------------------------- /srcpkgs/rofi-devel: -------------------------------------------------------------------------------- 1 | rofi -------------------------------------------------------------------------------- /srcpkgs/root-R: -------------------------------------------------------------------------------- 1 | root -------------------------------------------------------------------------------- /srcpkgs/rpm-python3: -------------------------------------------------------------------------------- 1 | rpm -------------------------------------------------------------------------------- /srcpkgs/rtv: -------------------------------------------------------------------------------- 1 | tuir -------------------------------------------------------------------------------- /srcpkgs/rtx: -------------------------------------------------------------------------------- 1 | ./mise -------------------------------------------------------------------------------- /srcpkgs/ruby-devel: -------------------------------------------------------------------------------- 1 | ruby -------------------------------------------------------------------------------- /srcpkgs/ruby-ri: -------------------------------------------------------------------------------- 1 | ruby -------------------------------------------------------------------------------- /srcpkgs/rust-doc: -------------------------------------------------------------------------------- 1 | rust -------------------------------------------------------------------------------- /srcpkgs/rust-src: -------------------------------------------------------------------------------- 1 | rust -------------------------------------------------------------------------------- /srcpkgs/rust-std: -------------------------------------------------------------------------------- 1 | rust -------------------------------------------------------------------------------- /srcpkgs/s6-devel: -------------------------------------------------------------------------------- 1 | s6 -------------------------------------------------------------------------------- /srcpkgs/s6-doc: -------------------------------------------------------------------------------- 1 | s6 -------------------------------------------------------------------------------- /srcpkgs/s6-rc-doc: -------------------------------------------------------------------------------- 1 | s6-rc -------------------------------------------------------------------------------- /srcpkgs/samba-ctdb: -------------------------------------------------------------------------------- 1 | samba -------------------------------------------------------------------------------- /srcpkgs/samba-cups: -------------------------------------------------------------------------------- 1 | samba -------------------------------------------------------------------------------- /srcpkgs/samba-dc: -------------------------------------------------------------------------------- 1 | samba -------------------------------------------------------------------------------- /srcpkgs/samba-libs: -------------------------------------------------------------------------------- 1 | samba -------------------------------------------------------------------------------- /srcpkgs/sane-devel: -------------------------------------------------------------------------------- 1 | sane -------------------------------------------------------------------------------- /srcpkgs/sbc-devel: -------------------------------------------------------------------------------- 1 | sbc -------------------------------------------------------------------------------- /srcpkgs/sbcl-source: -------------------------------------------------------------------------------- 1 | sbcl -------------------------------------------------------------------------------- /srcpkgs/sccs: -------------------------------------------------------------------------------- 1 | schilytools -------------------------------------------------------------------------------- /srcpkgs/sdb-devel: -------------------------------------------------------------------------------- 1 | sdb -------------------------------------------------------------------------------- /srcpkgs/sdd: -------------------------------------------------------------------------------- 1 | schilytools -------------------------------------------------------------------------------- /srcpkgs/serd-devel: -------------------------------------------------------------------------------- 1 | serd -------------------------------------------------------------------------------- /srcpkgs/serf-devel: -------------------------------------------------------------------------------- 1 | serf -------------------------------------------------------------------------------- /srcpkgs/slop-devel: -------------------------------------------------------------------------------- 1 | slop -------------------------------------------------------------------------------- /srcpkgs/smbclient: -------------------------------------------------------------------------------- 1 | samba -------------------------------------------------------------------------------- /srcpkgs/soci-devel: -------------------------------------------------------------------------------- 1 | soci -------------------------------------------------------------------------------- /srcpkgs/sord-devel: -------------------------------------------------------------------------------- 1 | sord -------------------------------------------------------------------------------- /srcpkgs/sox-devel: -------------------------------------------------------------------------------- 1 | sox -------------------------------------------------------------------------------- /srcpkgs/srt-devel: -------------------------------------------------------------------------------- 1 | srt -------------------------------------------------------------------------------- /srcpkgs/sssd-devel: -------------------------------------------------------------------------------- 1 | sssd -------------------------------------------------------------------------------- /srcpkgs/st-terminfo: -------------------------------------------------------------------------------- 1 | st -------------------------------------------------------------------------------- /srcpkgs/star: -------------------------------------------------------------------------------- 1 | schilytools -------------------------------------------------------------------------------- /srcpkgs/stfl-devel: -------------------------------------------------------------------------------- 1 | stfl -------------------------------------------------------------------------------- /srcpkgs/stk-data: -------------------------------------------------------------------------------- 1 | stk -------------------------------------------------------------------------------- /srcpkgs/stk-examples: -------------------------------------------------------------------------------- 1 | stk -------------------------------------------------------------------------------- /srcpkgs/suil-devel: -------------------------------------------------------------------------------- 1 | suil -------------------------------------------------------------------------------- /srcpkgs/sxiv: -------------------------------------------------------------------------------- 1 | nsxiv -------------------------------------------------------------------------------- /srcpkgs/tbb-devel: -------------------------------------------------------------------------------- 1 | tbb -------------------------------------------------------------------------------- /srcpkgs/tcl-devel: -------------------------------------------------------------------------------- 1 | tcl -------------------------------------------------------------------------------- /srcpkgs/tdb-devel: -------------------------------------------------------------------------------- 1 | tdb -------------------------------------------------------------------------------- /srcpkgs/tdb-python3: -------------------------------------------------------------------------------- 1 | tdb -------------------------------------------------------------------------------- /srcpkgs/tepl-devel: -------------------------------------------------------------------------------- 1 | tepl -------------------------------------------------------------------------------- /srcpkgs/tiff-devel: -------------------------------------------------------------------------------- 1 | tiff -------------------------------------------------------------------------------- /srcpkgs/tint2conf: -------------------------------------------------------------------------------- 1 | tint2 -------------------------------------------------------------------------------- /srcpkgs/tk-devel: -------------------------------------------------------------------------------- 1 | tk -------------------------------------------------------------------------------- /srcpkgs/tlp-rdw: -------------------------------------------------------------------------------- 1 | tlp -------------------------------------------------------------------------------- /srcpkgs/tlsh-devel: -------------------------------------------------------------------------------- 1 | tlsh -------------------------------------------------------------------------------- /srcpkgs/tmon: -------------------------------------------------------------------------------- 1 | linux-tools -------------------------------------------------------------------------------- /srcpkgs/tre-devel: -------------------------------------------------------------------------------- 1 | tre -------------------------------------------------------------------------------- /srcpkgs/tzdata: -------------------------------------------------------------------------------- 1 | tzutils -------------------------------------------------------------------------------- /srcpkgs/udns-devel: -------------------------------------------------------------------------------- 1 | udns -------------------------------------------------------------------------------- /srcpkgs/ufraw: -------------------------------------------------------------------------------- 1 | nufraw -------------------------------------------------------------------------------- /srcpkgs/uhd-devel: -------------------------------------------------------------------------------- 1 | uhd -------------------------------------------------------------------------------- /srcpkgs/uhd-doc: -------------------------------------------------------------------------------- 1 | uhd -------------------------------------------------------------------------------- /srcpkgs/uim-anthy: -------------------------------------------------------------------------------- 1 | uim -------------------------------------------------------------------------------- /srcpkgs/uim-devel: -------------------------------------------------------------------------------- 1 | uim -------------------------------------------------------------------------------- /srcpkgs/uim-gtk2: -------------------------------------------------------------------------------- 1 | uim -------------------------------------------------------------------------------- /srcpkgs/uim-gtk3: -------------------------------------------------------------------------------- 1 | uim -------------------------------------------------------------------------------- /srcpkgs/uim-qt: -------------------------------------------------------------------------------- 1 | uim -------------------------------------------------------------------------------- /srcpkgs/uim-qt6: -------------------------------------------------------------------------------- 1 | uim -------------------------------------------------------------------------------- /srcpkgs/uim-skk: -------------------------------------------------------------------------------- 1 | uim -------------------------------------------------------------------------------- /srcpkgs/uwsgi-cgi: -------------------------------------------------------------------------------- 1 | uwsgi -------------------------------------------------------------------------------- /srcpkgs/vala-devel: -------------------------------------------------------------------------------- 1 | vala -------------------------------------------------------------------------------- /srcpkgs/vala-doc: -------------------------------------------------------------------------------- 1 | vala -------------------------------------------------------------------------------- /srcpkgs/vde2-devel: -------------------------------------------------------------------------------- 1 | vde2 -------------------------------------------------------------------------------- /srcpkgs/ved: -------------------------------------------------------------------------------- 1 | schilytools -------------------------------------------------------------------------------- /srcpkgs/vigra-doc: -------------------------------------------------------------------------------- 1 | vigra -------------------------------------------------------------------------------- /srcpkgs/vim-common: -------------------------------------------------------------------------------- 1 | vim -------------------------------------------------------------------------------- /srcpkgs/vim-huge: -------------------------------------------------------------------------------- 1 | vim -------------------------------------------------------------------------------- /srcpkgs/vim-x11: -------------------------------------------------------------------------------- 1 | vim -------------------------------------------------------------------------------- /srcpkgs/vlc-devel: -------------------------------------------------------------------------------- 1 | vlc -------------------------------------------------------------------------------- /srcpkgs/vmaf-devel: -------------------------------------------------------------------------------- 1 | vmaf -------------------------------------------------------------------------------- /srcpkgs/volk-devel: -------------------------------------------------------------------------------- 1 | volk -------------------------------------------------------------------------------- /srcpkgs/vte3-demo: -------------------------------------------------------------------------------- 1 | vte3 -------------------------------------------------------------------------------- /srcpkgs/vte3-devel: -------------------------------------------------------------------------------- 1 | vte3 -------------------------------------------------------------------------------- /srcpkgs/vte3-gtk4: -------------------------------------------------------------------------------- 1 | vte3 -------------------------------------------------------------------------------- /srcpkgs/vtk-devel: -------------------------------------------------------------------------------- 1 | vtk -------------------------------------------------------------------------------- /srcpkgs/vtk-python3: -------------------------------------------------------------------------------- 1 | vtk -------------------------------------------------------------------------------- /srcpkgs/w3m-img: -------------------------------------------------------------------------------- 1 | w3m -------------------------------------------------------------------------------- /srcpkgs/wine-common: -------------------------------------------------------------------------------- 1 | wine -------------------------------------------------------------------------------- /srcpkgs/wine-devel: -------------------------------------------------------------------------------- 1 | wine -------------------------------------------------------------------------------- /srcpkgs/wine-tools: -------------------------------------------------------------------------------- 1 | wine -------------------------------------------------------------------------------- /srcpkgs/wt-devel: -------------------------------------------------------------------------------- 1 | wt -------------------------------------------------------------------------------- /srcpkgs/wv-devel: -------------------------------------------------------------------------------- 1 | wv -------------------------------------------------------------------------------- /srcpkgs/x264-devel: -------------------------------------------------------------------------------- 1 | x264 -------------------------------------------------------------------------------- /srcpkgs/x265-devel: -------------------------------------------------------------------------------- 1 | x265 -------------------------------------------------------------------------------- /srcpkgs/xar-devel: -------------------------------------------------------------------------------- 1 | xar -------------------------------------------------------------------------------- /srcpkgs/xava: -------------------------------------------------------------------------------- 1 | cava -------------------------------------------------------------------------------- /srcpkgs/xbps-tests: -------------------------------------------------------------------------------- 1 | xbps -------------------------------------------------------------------------------- /srcpkgs/xdebug: -------------------------------------------------------------------------------- 1 | php -------------------------------------------------------------------------------- /srcpkgs/xen-devel: -------------------------------------------------------------------------------- 1 | xen -------------------------------------------------------------------------------- /srcpkgs/xen-doc: -------------------------------------------------------------------------------- 1 | xen -------------------------------------------------------------------------------- /srcpkgs/xen-libs: -------------------------------------------------------------------------------- 1 | xen -------------------------------------------------------------------------------- /srcpkgs/xmaxima: -------------------------------------------------------------------------------- 1 | maxima -------------------------------------------------------------------------------- /srcpkgs/xmlwf: -------------------------------------------------------------------------------- 1 | expat -------------------------------------------------------------------------------- /srcpkgs/xmoto-data: -------------------------------------------------------------------------------- 1 | xmoto -------------------------------------------------------------------------------- /srcpkgs/xxd: -------------------------------------------------------------------------------- 1 | vim -------------------------------------------------------------------------------- /srcpkgs/yajl-devel: -------------------------------------------------------------------------------- 1 | yajl -------------------------------------------------------------------------------- /srcpkgs/yara-devel: -------------------------------------------------------------------------------- 1 | yara -------------------------------------------------------------------------------- /srcpkgs/yaz-devel: -------------------------------------------------------------------------------- 1 | yaz -------------------------------------------------------------------------------- /srcpkgs/yelp-devel: -------------------------------------------------------------------------------- 1 | yelp -------------------------------------------------------------------------------- /srcpkgs/z3-devel: -------------------------------------------------------------------------------- 1 | z3 -------------------------------------------------------------------------------- /srcpkgs/z3-ocaml: -------------------------------------------------------------------------------- 1 | z3 -------------------------------------------------------------------------------- /srcpkgs/zbar-qt: -------------------------------------------------------------------------------- 1 | zbar -------------------------------------------------------------------------------- /srcpkgs/zeek-devel: -------------------------------------------------------------------------------- 1 | zeek -------------------------------------------------------------------------------- /srcpkgs/zenmap: -------------------------------------------------------------------------------- 1 | nmap -------------------------------------------------------------------------------- /srcpkgs/zfs-devel: -------------------------------------------------------------------------------- 1 | zfs -------------------------------------------------------------------------------- /srcpkgs/zfs-pam: -------------------------------------------------------------------------------- 1 | zfs -------------------------------------------------------------------------------- /srcpkgs/zimg-devel: -------------------------------------------------------------------------------- 1 | zimg -------------------------------------------------------------------------------- /srcpkgs/zint-devel: -------------------------------------------------------------------------------- 1 | zint -------------------------------------------------------------------------------- /srcpkgs/zint-qt: -------------------------------------------------------------------------------- 1 | zint -------------------------------------------------------------------------------- /srcpkgs/zix-devel: -------------------------------------------------------------------------------- 1 | zix -------------------------------------------------------------------------------- /srcpkgs/zlib-devel: -------------------------------------------------------------------------------- 1 | zlib -------------------------------------------------------------------------------- /srcpkgs/znc-devel: -------------------------------------------------------------------------------- 1 | znc -------------------------------------------------------------------------------- /srcpkgs/znc-perl: -------------------------------------------------------------------------------- 1 | znc -------------------------------------------------------------------------------- /srcpkgs/znc-python3: -------------------------------------------------------------------------------- 1 | znc -------------------------------------------------------------------------------- /srcpkgs/znc-tcl: -------------------------------------------------------------------------------- 1 | znc --------------------------------------------------------------------------------