gitextract_8s_13j_i/ ├── .cirrus.yml ├── .github/ │ └── main.workflow ├── .gitignore ├── LICENSE.md ├── README.md ├── build-all.sh ├── build-package.sh ├── clean.sh ├── disabled-packages/ │ ├── abuild/ │ │ ├── Makefile.patch │ │ ├── abuild-fetch.c.patch │ │ ├── abuild-keygen.in.patch │ │ ├── abuild-rmtemp.c.patch │ │ ├── abuild-sign.in.patch │ │ ├── abuild.conf.patch │ │ ├── abuild.in.patch │ │ ├── build.sh │ │ ├── checkapk.in.patch │ │ ├── functions.sh.in.patch │ │ └── sample.APKBUILD.patch │ ├── alsa-lib/ │ │ ├── alsa-conf-dir.patch │ │ ├── build.sh │ │ ├── pcm_direct.c.patch │ │ ├── pcm_mmap.c.patch.old │ │ └── versionsort.patch │ ├── alsa-plugins/ │ │ ├── asound.conf │ │ └── build.sh │ ├── alsa-utils/ │ │ ├── build.sh │ │ ├── configure.patch │ │ └── volume_mapping.c.patch │ ├── ant/ │ │ ├── ant │ │ └── build.sh │ ├── apk-tools/ │ │ ├── Make.rules.patch │ │ ├── Makefile.patch │ │ ├── build.sh │ │ ├── libfetch-http.c.patch │ │ ├── src-apk.c.patch │ │ ├── src-archive.c.patch │ │ ├── src-commit.c.patch │ │ ├── src-database.c.patch │ │ ├── src-io.c.patch │ │ ├── src-package.c.patch │ │ └── src-termux_prefix.h.patch │ ├── apt-updated/ │ │ ├── CMakeLists.txt.patch │ │ ├── apt-pkg-contrib-fileutl.patch │ │ ├── apt-pkg-contrib-srvrec.cc.patch │ │ ├── apt-pkg-contrib-strutl.cc.patch │ │ ├── apt-pkg-deb-debrecords.cc.patch │ │ ├── apt-pkg-init-dir.patch │ │ ├── apt-private-private-download.cc.patch │ │ ├── build.sh │ │ ├── cmdline-apt-key.in.patch │ │ ├── cmndline-no-strchrnul.patch │ │ ├── debsrcrecords.patch │ │ ├── methods-cmakelist.patch │ │ ├── methods-connect.cc.patch │ │ ├── private-output-no-langinfo.patch │ │ ├── trusted.gpg │ │ └── vendor.patch │ ├── cadaver/ │ │ └── build.sh │ ├── checkinstall/ │ │ ├── Makefile.patch │ │ ├── build.sh │ │ ├── checkinstall.patch │ │ ├── checkinstallrc-dist.patch │ │ ├── installwatch-Makefile.patch │ │ └── installwatch.c.patch │ ├── clisp/ │ │ ├── build.sh │ │ ├── src-gllib-stdint.in.h.patch │ │ └── src-makefile.in.patch │ ├── crawl/ │ │ └── build.sh │ ├── cups/ │ │ ├── build.sh │ │ ├── cups-thread.c.patch │ │ ├── file.c.patch │ │ └── lockf.cpp.patch │ ├── d8/ │ │ ├── build.sh │ │ └── d8 │ ├── deborphan/ │ │ ├── build.sh │ │ ├── configure.patch │ │ ├── errno.patch │ │ ├── src-Makefile.in.patch │ │ ├── src-deborphan.c.patch │ │ └── src-pkginfo.c.patch │ ├── dovecot/ │ │ ├── build.sh │ │ ├── configure.patch │ │ └── src-lib-connection.h.patch │ ├── easy-rsa/ │ │ └── build.sh │ ├── ghc/ │ │ ├── bitcast.patch │ │ ├── build.sh │ │ ├── compiler-llvmGen-LlvmCodeGen-Ppr.hs.patch │ │ ├── compiler-main-DriverPipeline.hs.patch │ │ └── configure.patch │ ├── groff/ │ │ └── build.sh │ ├── gst-libav/ │ │ └── build.sh │ ├── gst123/ │ │ └── build.sh │ ├── guile/ │ │ └── build.sh │ ├── javac/ │ │ ├── build.sh │ │ └── javac │ ├── libfakechroot/ │ │ └── build.sh │ ├── libffi-updated/ │ │ └── build.sh │ ├── libjemalloc/ │ │ └── build.sh │ ├── libressl/ │ │ └── build.sh │ ├── lrzsz/ │ │ ├── build.sh │ │ └── src-Makefile.in.patch │ ├── man-db/ │ │ └── build.sh │ ├── mono/ │ │ ├── build.sh │ │ ├── complex.h │ │ ├── math_private.h │ │ └── tkill.patch │ ├── ocaml/ │ │ └── build.sh │ ├── openjdk-9-jre-headless/ │ │ ├── build.sh │ │ ├── build_ldflags.patch │ │ ├── elfFile.hpp.patch │ │ ├── generated-configure.sh.patch │ │ ├── getgr_r.patch │ │ ├── hotspot-jvm_home.patch │ │ ├── jdk-java_home.patch │ │ ├── libpthread.patch │ │ ├── openjdk-9-jdk-headless.subpackage.sh │ │ ├── openjdk-9-source.subpackage.sh │ │ ├── osName.patch │ │ ├── os_linux_aarch64.cpp.patch │ │ └── sendfile64.patch │ ├── openvpn/ │ │ ├── build.sh │ │ ├── configure.ac.patch.old │ │ ├── netbsd_getpass.c │ │ ├── src-openvpn-console_builtin.c.patch │ │ ├── src-openvpn-tun.c.patch │ │ └── termux-openvpn │ ├── pacman/ │ │ ├── build.sh │ │ ├── ensure-matching-database-and-package-version.patch │ │ ├── makepkg.conf │ │ ├── pacman.conf │ │ └── pacman.patch │ ├── pkgconf/ │ │ └── build.sh │ ├── premake/ │ │ ├── build-gmake.unix-Premake4.make.patch │ │ └── build.sh │ ├── sbcl/ │ │ ├── build.sh │ │ └── make-config.sh.patch │ ├── sslscan/ │ │ ├── Makefile.patch │ │ ├── build.sh │ │ └── sslscan.c.patch │ ├── tf/ │ │ └── build.sh │ ├── toybox/ │ │ └── build.sh │ └── unnethack/ │ ├── build.sh │ ├── dat_town_wildcard.patch │ └── dont_delete_makedefs.patch ├── generate-bootstraps.sh ├── ndk-patches/ │ ├── asm-generic-termbits.h.patch │ ├── bits-struct_file.h.patch │ ├── grp.h.patch │ ├── ifaddrs.h │ ├── langinfo.h │ ├── langinfo.h.patch │ ├── libintl.h │ ├── linux-fcntl.h.patch │ ├── paths.h.patch │ ├── pwd.h.patch │ ├── stdio.h.patch │ ├── stdlib.h.patch │ ├── sys-cdefs.h.patch │ ├── sys-wait.h.patch │ ├── syslog.patch │ └── unistd.h.patch ├── packages/ │ ├── aapt/ │ │ ├── aapt-Main.cpp.patch.txt │ │ ├── build.sh │ │ ├── libbase-patch.txt │ │ ├── libcutils-patch.txt │ │ ├── libziparchive.patch.txt │ │ └── log.h.patch.txt │ ├── abduco/ │ │ └── build.sh │ ├── abook/ │ │ ├── build.sh │ │ ├── database.h.patch │ │ └── filter.c.patch │ ├── ack-grep/ │ │ └── build.sh │ ├── acr/ │ │ ├── build.sh │ │ └── no_dev-stderr.patch │ ├── algernon/ │ │ ├── build.sh │ │ └── fix-hardcoded-paths.patch │ ├── alpine/ │ │ ├── build.sh │ │ ├── configure.patch │ │ ├── env_unix.c.patch │ │ ├── fdstring.c.patch │ │ ├── imap-src-osdep-unix-Makefile.patch │ │ ├── imapmkf.patch │ │ ├── mlockmake.patch │ │ ├── mtest.c.patch │ │ ├── os_lnx.c.patch │ │ ├── os_lnx.h.patch │ │ ├── pine.conf │ │ └── pw_stuff.c.patch │ ├── antiword/ │ │ ├── Makefile.Linux.patch │ │ ├── antiword.h.patch │ │ └── build.sh │ ├── apache2/ │ │ ├── Termux.layout │ │ ├── build-instdso.sh.patch │ │ ├── build.sh │ │ └── configure.patch │ ├── apg/ │ │ ├── Makefile.patch │ │ ├── build.sh │ │ └── install-sh.patch │ ├── apksigner/ │ │ └── build.sh │ ├── apr/ │ │ ├── Makefile.in.patch │ │ └── build.sh │ ├── apr-util/ │ │ └── build.sh │ ├── apt/ │ │ ├── 0000-cmake-fix.patch │ │ ├── 0001-hardcoded-paths-fix.patch │ │ ├── 0002-glob.patch │ │ ├── 0003-langinfo-and-codeset.patch │ │ ├── 0004-srv-records.patch │ │ ├── 0005-http2-fix.patch │ │ ├── 0006-apt-key-nonroot.patch │ │ ├── 0007-termux-apt-vendor.patch │ │ ├── 0008-apt-init.patch │ │ ├── 0009-fix-macro-redefinition.patch │ │ ├── 0010-prevent-usage-as-root.patch │ │ ├── apt-ftparchive.subpackage.sh │ │ ├── apt-transport-tor.subpackage.sh │ │ ├── build.sh │ │ ├── man/ │ │ │ ├── man5/ │ │ │ │ ├── apt.conf.5 │ │ │ │ ├── apt_preferences.5 │ │ │ │ └── sources.list.5 │ │ │ └── man8/ │ │ │ ├── apt-cache.8 │ │ │ ├── apt-config.8 │ │ │ ├── apt-get.8 │ │ │ ├── apt-key.8 │ │ │ ├── apt-mark.8 │ │ │ ├── apt-secure.8 │ │ │ └── apt.8 │ │ └── trusted.gpg │ ├── aptly/ │ │ ├── Makefile.patch │ │ └── build.sh │ ├── argp/ │ │ ├── argp-fmtstream.h.patch │ │ └── build.sh │ ├── aria2/ │ │ └── build.sh │ ├── arj/ │ │ ├── 001_arches_align.patch │ │ ├── 002_no_remove_static_const.patch │ │ ├── 003_64_bit_clean.patch │ │ ├── 004_parallel_build.patch │ │ ├── 005_use_system_strnlen.patch │ │ ├── 006_use_safe_strcpy.patch │ │ ├── build.sh │ │ ├── doc_refer_robert_k_jung.patch │ │ ├── gnu_build_fix.patch │ │ ├── gnu_build_flags.patch │ │ ├── gnu_build_pie.patch │ │ ├── gnu_build_strip.patch │ │ ├── hurd_no_fcntl_getlk.patch │ │ ├── integr.patch │ │ ├── mode.patch │ │ ├── out-of-bounds-read.patch │ │ ├── security-afl.patch │ │ ├── security-traversal-dir.patch │ │ ├── security-traversal-symlink.patch │ │ ├── security_format.patch │ │ ├── self_integrity_64bit.patch │ │ └── z_cross_compile.patch │ ├── asciidoc/ │ │ └── build.sh │ ├── asciinema/ │ │ ├── asciinema-__main__.py.patch │ │ └── build.sh │ ├── assimp/ │ │ ├── build.sh │ │ └── test-CMakeLists.txt.patch │ ├── atomicparsley/ │ │ └── build.sh │ ├── attr/ │ │ ├── build.sh │ │ ├── tools-attr.c.patch │ │ └── walk_tree.c.patch │ ├── autoconf/ │ │ ├── General.pm.patch │ │ └── build.sh │ ├── automake/ │ │ └── build.sh │ ├── autossh/ │ │ └── build.sh │ ├── axel/ │ │ └── build.sh │ ├── babl/ │ │ ├── babl-meson.build.patch │ │ ├── build.sh │ │ ├── tests-meson.build.patch │ │ └── tools-meson.build.patch │ ├── barcode/ │ │ └── build.sh │ ├── bash/ │ │ ├── build.sh │ │ ├── config-top.h.patch │ │ ├── error.c.patch │ │ ├── etc-bash.bashrc │ │ ├── etc-profile │ │ ├── lib-malloc-stats.c.patch │ │ ├── lib-malloc-table.c.patch │ │ ├── lib-malloc-trace.c.patch │ │ ├── lib-readline-complete.c.patch │ │ ├── lib-readline-rlconf.h.patch │ │ ├── lib-readline-util.c.patch │ │ ├── lib-sh-tmpfile.c.patch │ │ ├── pathnames.h.in.patch │ │ └── shell.c.patch │ ├── bash-completion/ │ │ ├── build.sh │ │ └── completions-man.patch │ ├── bat/ │ │ └── build.sh │ ├── bc/ │ │ └── build.sh │ ├── beanshell/ │ │ └── build.sh │ ├── binutils/ │ │ ├── binutils-gold.subpackage.sh │ │ ├── binutils.patch │ │ ├── build.sh │ │ ├── dirsearch.cc.patch │ │ ├── ld-emultempl-elf32.em.patch │ │ ├── ldd │ │ ├── native_lib_dirs.patch32 │ │ ├── native_lib_dirs.patch64 │ │ ├── options.cc.patch32 │ │ └── options.cc.patch64 │ ├── bison/ │ │ └── build.sh │ ├── bitcoin/ │ │ ├── 0001-android-patches.patch │ │ ├── build-aux-m4-ax_boost_thread.m4.patch │ │ └── build.sh │ ├── blogc/ │ │ ├── build.sh │ │ └── termux-prefix.patch │ ├── bmon/ │ │ ├── build.sh │ │ └── config.h.patch │ ├── boost/ │ │ ├── bootstrap.sh.patch │ │ ├── build.sh │ │ ├── python.jam.patch │ │ └── tools-build-src-tools-common.jam.patch │ ├── brotli/ │ │ ├── CMakeLists.txt.patch │ │ └── build.sh │ ├── build-essential/ │ │ └── build.sh │ ├── busybox/ │ │ ├── 0000-use-clang.patch │ │ ├── 0001-clang-fix.patch │ │ ├── 0002-hardcoded-paths-fix.patch │ │ ├── 0003-strchrnul-fix.patch │ │ ├── 0004-missing-syscalls.patch │ │ ├── 0005-no-change-identity.patch │ │ ├── 0006-no-crypt.h.patch │ │ ├── 0007-miscutils-crond.patch │ │ ├── 0008-miscutils-crontab.patch │ │ ├── 0009-networking-ftpd-no-chroot.patch │ │ ├── 0010-networking-httpd-default-port.patch │ │ ├── 0011-networking-telnetd-default-port.patch │ │ ├── 0012-networking-tftp-no-chroot.patch │ │ ├── build.sh │ │ └── busybox.config │ ├── bvi/ │ │ ├── Makefile.in.patch │ │ ├── build.sh │ │ ├── column_number_bugfix.patch │ │ └── comm.c.patch │ ├── byobu/ │ │ ├── build.sh │ │ └── usr-bin-byobu.in.patch │ ├── c-ares/ │ │ ├── build.sh │ │ ├── disable-ares-android.patch │ │ └── fix-path-etc-hosts.patch │ ├── c-toxcore/ │ │ └── build.sh │ ├── ca-certificates/ │ │ ├── build.sh │ │ └── ca-certificates-java.subpackage.sh │ ├── cabextract/ │ │ └── build.sh │ ├── caddy/ │ │ └── build.sh │ ├── calcurse/ │ │ ├── build.sh │ │ ├── io.c.patch │ │ ├── src-notify.c.patch │ │ └── src-ui-calendar.c.patch │ ├── capstone/ │ │ └── build.sh │ ├── cava/ │ │ ├── Makefile.am.patch │ │ ├── build.sh │ │ ├── config.c.patch │ │ └── configure.ac.patch │ ├── cboard/ │ │ ├── build.sh │ │ ├── configure.patch │ │ └── libchess-pgn.c.patch │ ├── ccache/ │ │ └── build.sh │ ├── ccnet/ │ │ ├── build.sh │ │ └── configure.ac.patch │ ├── ccrypt/ │ │ └── build.sh │ ├── cgdb/ │ │ ├── build.sh │ │ └── cgdb.cpp.patch │ ├── chromaprint/ │ │ └── build.sh │ ├── clamav/ │ │ ├── build.sh │ │ ├── clamd.conf.in │ │ ├── configure.patch │ │ ├── fix-hardcoded-paths.patch │ │ ├── freshclam.conf.in │ │ └── no-lutimes.patch │ ├── cmake/ │ │ ├── Modules-CMakeDetermineSystem.cmake.patch │ │ ├── Modules-Platform-Android-Clang.cmake.patch │ │ ├── Modules-Platform-Android-Determine-Compiler.cmake.patch │ │ ├── Modules-Platform-Android-Determine.cmake.patch │ │ ├── Modules-Platform-Android-Initialize.cmake.patch │ │ ├── Modules-Platform-Android.cmake.patch │ │ ├── Source-CMakeLists.txt.patch │ │ ├── Source-cmExecProgramCommand.cxx.patch │ │ ├── Source-cmLocalUnixMakefileGenerator3.cxx.patch │ │ ├── Source-cmStateSnapshot.cxx.patch │ │ ├── build.sh │ │ └── cmake-curses-gui.subpackage.sh │ ├── cmark/ │ │ └── build.sh │ ├── cmatrix/ │ │ └── build.sh │ ├── cmus/ │ │ ├── build.sh │ │ ├── checks.patch │ │ └── configure.patch │ ├── cmusfm/ │ │ └── build.sh │ ├── codecrypt/ │ │ ├── autogen.sh.patch │ │ ├── build.sh │ │ └── getpass.patch │ ├── colordiff/ │ │ ├── Makefile.patch │ │ └── build.sh │ ├── command-not-found/ │ │ └── build.sh │ ├── coreutils/ │ │ ├── build.sh │ │ ├── configure.patch │ │ ├── fix-paths.patch │ │ ├── nohup.c.patch │ │ ├── pwd.c.patch │ │ ├── src-ls.c.patch │ │ └── tests/ │ │ └── tails-c-flag.sh │ ├── corkscrew/ │ │ ├── build.sh │ │ └── corkscrew.1 │ ├── cowsay/ │ │ ├── build.sh │ │ └── install.sh.patch │ ├── cpio/ │ │ └── build.sh │ ├── cppi/ │ │ └── build.sh │ ├── crunch/ │ │ ├── Makefile.patch │ │ └── build.sh │ ├── cryptopp/ │ │ ├── build.sh │ │ ├── cpu.cpp.patch │ │ └── fix-lib-symlinks.patch │ ├── cscope/ │ │ ├── build.sh │ │ ├── errno.patch │ │ └── src-main.c.patch │ ├── ctags/ │ │ ├── build.sh │ │ └── configure.ac.patch │ ├── cvs/ │ │ ├── build.sh │ │ └── src-log.c.patch │ ├── daemonize/ │ │ ├── build.sh │ │ └── daemonize.c.patch │ ├── darkhttpd/ │ │ ├── Makefile.patch │ │ └── build.sh │ ├── dart/ │ │ ├── build.sh │ │ ├── dart-pub-bin.sh │ │ ├── fix-shell-path.patch │ │ └── sdk-runtime-bin-directory_android.cc.patch │ ├── dash/ │ │ ├── build.sh │ │ ├── etc-profile.patch │ │ ├── mktokens.patch │ │ └── src-var.c.patch │ ├── dasm/ │ │ └── build.sh │ ├── datamash/ │ │ └── build.sh │ ├── dcraw/ │ │ ├── build.sh │ │ └── swab.c │ ├── ddrescue/ │ │ ├── build.sh │ │ └── fix-configure.patch │ ├── debianutils/ │ │ ├── add-shell.patch │ │ ├── build.sh │ │ └── remove-shell.patch │ ├── debootstrap/ │ │ ├── Makefile.patch │ │ ├── build.sh │ │ ├── debootstrap.patch │ │ ├── fix-keyring-paths.patch │ │ ├── functions.patch │ │ └── scripts-debian-common.patch │ ├── deutex/ │ │ └── build.sh │ ├── dialog/ │ │ ├── build.sh │ │ └── configure.patch │ ├── dictd/ │ │ ├── build.sh │ │ └── dictd.patch │ ├── diffutils/ │ │ └── build.sh │ ├── direnv/ │ │ └── build.sh │ ├── direvent/ │ │ ├── build.sh │ │ └── preproc.c.patch │ ├── diskus/ │ │ └── build.sh │ ├── dnsutils/ │ │ ├── bin-delv-delv.c.patch │ │ ├── build.sh │ │ ├── lib-irs-context.c.patch │ │ └── lib-isc-pthreads-thread.c.patch │ ├── docbook-xml/ │ │ └── build.sh │ ├── docbook-xsl/ │ │ ├── 765567_non-recursive_string_subst.patch │ │ └── build.sh │ ├── dos2unix/ │ │ ├── Makefile.patch │ │ └── build.sh │ ├── double-conversion/ │ │ └── build.sh │ ├── doxygen/ │ │ ├── build.sh │ │ └── doxyparse.cpp.patch │ ├── dpkg/ │ │ ├── build.sh │ │ ├── configure.patch │ │ ├── dbmodify_dont_require_root.patch │ │ ├── extract.c.patch │ │ ├── lib-dpkg-atomic-file.c.patch │ │ ├── lib-dpkg-dpkg.h.patch │ │ ├── lib-dpkg-path-remove.c.patch │ │ ├── lib-dpkg-triglib.c.patch │ │ ├── src-archives.c.patch │ │ ├── src-configure.c.patch │ │ ├── src-help.c.patch │ │ └── src-statcmd.c.patch │ ├── dropbear/ │ │ ├── Makefile.in.patch │ │ ├── build.sh │ │ ├── common-session.c.patch │ │ ├── compat.c.patch │ │ ├── default_options.h.patch │ │ ├── gensignkey.c.patch │ │ ├── sshpty.c.patch │ │ ├── svr-agentfwd.c.patch │ │ ├── svr-auth.c.patch │ │ ├── svr-authpasswd.c.patch │ │ ├── svr-chansession.c.patch │ │ └── sysoptions.h.patch │ ├── dtc/ │ │ └── build.sh │ ├── dte/ │ │ └── build.sh │ ├── duc/ │ │ ├── build.sh │ │ └── cmd-ls.c.patch │ ├── dvtm/ │ │ ├── build.sh │ │ ├── fix-fifo-path.patch │ │ └── vt.c.patch │ ├── dx/ │ │ ├── build.sh │ │ └── dx │ ├── e2fsprogs/ │ │ ├── build.sh │ │ ├── clang-compat.patch │ │ ├── doc-Makefile.in.patch │ │ ├── fix-hardcoded-paths.patch │ │ ├── fsmap.h.patch │ │ └── hasmntopt.patch │ ├── ecj/ │ │ ├── build.sh │ │ ├── ecj │ │ └── ecj-24 │ ├── ed/ │ │ ├── build.sh │ │ └── configure.patch │ ├── elinks/ │ │ ├── build.sh │ │ └── elinks-fix-paths.patch │ ├── elixir/ │ │ └── build.sh │ ├── emacs/ │ │ ├── build.sh │ │ ├── lib-src-emacsclient.c.patch │ │ ├── lisp-cus-start.el.patch.beforehostbuild │ │ ├── lisp-loadup.el-2.patch.beforehostbuild │ │ ├── lisp-net-tramp.el.patch.beforehostbuild │ │ ├── lisp-server.el.patch.beforehostbuild │ │ ├── lisp-subr.el.patch.beforehostbuild │ │ ├── lisp-term.el.patch.beforehostbuild │ │ ├── lisp-textmodes-ispell.el.patch.beforehostbuild │ │ ├── no_user_fullname.patch │ │ ├── site-init.el │ │ ├── src-callproc.c.patch │ │ ├── src-filelock.c.patch │ │ └── src-keyboard.c.patch │ ├── erlang/ │ │ ├── build.sh │ │ ├── erts-emulator-Makefile.in.patch │ │ └── prefix.patch │ ├── espeak/ │ │ ├── Makefile.patch │ │ ├── build.sh │ │ └── compat-stdint.h.patch │ ├── exa/ │ │ ├── build.sh │ │ └── src-output-table.rs.patch │ ├── exiftool/ │ │ └── build.sh │ ├── exiv2/ │ │ ├── build.sh │ │ └── exiv2json.cpp.patch │ ├── expect/ │ │ ├── Makefile.in.patch │ │ ├── build.sh │ │ └── configure.in.patch │ ├── fakeroot/ │ │ ├── build.sh │ │ ├── fakeroot-1.23_faked.c.patch │ │ ├── fakeroot-1.23_libfakeroot.c.patch │ │ └── fakeroot-1.23_scripts_fakeroot.in.patch │ ├── fasd/ │ │ └── build.sh │ ├── fastmod/ │ │ ├── build.sh │ │ └── vi-as-default-editor.patch │ ├── fbless/ │ │ └── build.sh │ ├── fcgi/ │ │ └── build.sh │ ├── fcgiwrap/ │ │ ├── build.sh │ │ └── fix-kill-parameters.patch │ ├── fd/ │ │ ├── Cargo.toml.patch │ │ ├── build.sh │ │ └── src-main.rs.patch │ ├── fdupes/ │ │ └── build.sh │ ├── ffmpeg/ │ │ ├── build.sh │ │ └── libavutil-file_open.c.patch │ ├── ffsend/ │ │ └── build.sh │ ├── fftw/ │ │ ├── build.sh │ │ └── fix-wisdom_dir.patch │ ├── figlet/ │ │ ├── build.sh │ │ ├── figlet.c.patch │ │ └── makefile.patch │ ├── file/ │ │ ├── build.sh │ │ └── fix-paths.patch │ ├── finch/ │ │ ├── arpa/ │ │ │ ├── nameser.h │ │ │ └── nameser_compat.h │ │ ├── bonjour-makefile.patch │ │ ├── build.sh │ │ ├── configure.patch │ │ ├── dont-build-nullclient-example.patch │ │ ├── gg-makefile.patch │ │ ├── irc-makefile.patch │ │ ├── jabber-makefile.patch │ │ ├── libgnt-gntmain.c.patch │ │ ├── oscar-makefile.patch │ │ ├── sametime-makefile.patch │ │ ├── silc-makefile.patch │ │ ├── silc10-makefile.patch │ │ ├── simple-makefile.patch │ │ └── ssl-makefile.patch │ ├── findutils/ │ │ ├── build.sh │ │ ├── configure.patch │ │ ├── find-parser.c.patch │ │ └── gl-lib-mountlist.c.patch │ ├── fish/ │ │ ├── build.sh │ │ ├── create_manpage_completions.py.patch │ │ ├── share-functions-__fish_print_help.fish.patch │ │ ├── src-env.cpp.patch │ │ ├── src-fish.cpp.patch │ │ └── src-wutil.cpp.patch │ ├── flex/ │ │ ├── Makefile.in.patch │ │ └── build.sh │ ├── fontconfig/ │ │ ├── build.sh │ │ ├── fcatomic.c.patch │ │ └── fontconfig-utils.subpackage.sh │ ├── fortune/ │ │ ├── build.sh │ │ └── fortune.c.patch │ ├── fossil/ │ │ ├── build.sh │ │ ├── src-main.c.patch │ │ ├── src-popen.c.patch │ │ └── src-user.c.patch │ ├── freetype/ │ │ └── build.sh │ ├── fribidi/ │ │ └── build.sh │ ├── frobtads/ │ │ ├── build.sh │ │ └── no_asprintf.patch │ ├── fsmon/ │ │ └── build.sh │ ├── fwknop/ │ │ └── build.sh │ ├── fzf/ │ │ ├── bin-fzf-tmux.patch │ │ └── build.sh │ ├── game-repo/ │ │ └── build.sh │ ├── gawk/ │ │ ├── build.sh │ │ ├── io.c.patch │ │ ├── main.c.patch │ │ ├── no_pw_gecos.patch │ │ └── stack_index.patch │ ├── gbt/ │ │ └── build.sh │ ├── gcal/ │ │ └── build.sh │ ├── gdb/ │ │ ├── archive_c_st_mtime.patch │ │ ├── build.sh │ │ ├── fix-tmp_prefix.patch │ │ ├── gdb-amd64-linux-nat.c.patch │ │ ├── gdb-cli-cli-cmds.c.patch │ │ ├── gdb-common-job-control.c.patch │ │ ├── gdb-common-pathstuff.c.patch │ │ ├── gdb-common-signals-state-save-restore.c.patch │ │ ├── gdb-gdbserver-configure.patch │ │ ├── gdb-gnulib-import-string.in.h.patch │ │ ├── gdb-ser-pipe.c.patch │ │ ├── gdb-solib.c.patch │ │ ├── gregset.h.patch │ │ ├── linux_thread_db_no_th_unique.patch │ │ ├── readline-histlib.h.patch.debug │ │ └── readline.patch │ ├── gdbm/ │ │ ├── build.sh │ │ └── termios_h.patch │ ├── gdk-pixbuf/ │ │ └── build.sh │ ├── gegl/ │ │ ├── 6bcf95fd0f32cf5e8b1ddbe17b14d9ad049bded8.patch │ │ └── build.sh │ ├── geoip2-database/ │ │ └── build.sh │ ├── getconf/ │ │ └── build.sh │ ├── geth/ │ │ ├── build.sh │ │ ├── fix-names-conflict.patch │ │ └── geth-utils.subpackage.sh │ ├── getmail/ │ │ ├── build.sh │ │ └── utilities.py.patch │ ├── gettext/ │ │ ├── build.sh │ │ ├── gnulib-libmakefile.am.patch │ │ └── msginit.c.patch │ ├── gflags/ │ │ └── build.sh │ ├── ghostscript/ │ │ ├── arch-aarch64.h │ │ ├── arch-arm.h │ │ ├── arch-i686.h │ │ ├── arch-x86_64.h │ │ ├── build.sh │ │ ├── configure.patch │ │ └── gserrors.h.patch │ ├── giflib/ │ │ ├── Makefile.patch │ │ ├── build.sh │ │ └── giflib-utils.subpackage.sh │ ├── gifsicle/ │ │ └── build.sh │ ├── git/ │ │ ├── build.sh │ │ ├── config.c.patch │ │ ├── config.mak.uname.patch │ │ ├── disable_daemon_syslog.patch │ │ ├── git.patch │ │ ├── help.c.patch │ │ ├── run-command.c.patch │ │ └── tempfile.c.patch │ ├── git-crypt/ │ │ └── build.sh │ ├── git-lfs/ │ │ └── build.sh │ ├── gitea/ │ │ ├── app.ini │ │ ├── build.sh │ │ └── gitea-service.sh │ ├── gkermit/ │ │ ├── build.sh │ │ └── makefile.patch │ ├── glib/ │ │ ├── build.sh │ │ ├── fix-hardcoded-paths.patch │ │ ├── glib-bin.subpackage.sh │ │ ├── glib-gspawn.c.patch │ │ ├── glib-gtimezone.c.patch │ │ ├── glib-gutils.c.patch │ │ └── meson.build.patch │ ├── global/ │ │ ├── build.sh │ │ ├── echo-path.patch │ │ └── libutil-makepath.c.patch │ ├── gmic/ │ │ ├── CImg.h.patch │ │ ├── Makefile.patch │ │ ├── build.sh │ │ └── gmic-gm.subpackage.sh │ ├── gnuchess/ │ │ ├── build.sh │ │ ├── components.cc.patch │ │ └── main.cc.patch │ ├── gnuit/ │ │ ├── build.sh │ │ ├── system.c.patch │ │ └── tilde.c-history.c.patch.debug │ ├── gnupg/ │ │ ├── agent-agent.h.patch │ │ ├── build.sh │ │ ├── common-dotlock.c.patch │ │ ├── configure.patch │ │ ├── fix-paths.patch │ │ └── gpgv.subpackage.sh │ ├── gnuplot/ │ │ ├── Makefile.patch │ │ ├── build.sh │ │ ├── plot.c.patch │ │ └── src-command.c.patch │ ├── go-findimagedupes/ │ │ └── build.sh │ ├── goaccess/ │ │ ├── Makefile.in.patch │ │ ├── build.sh │ │ ├── configure.patch │ │ ├── tcbtdb.h.patch │ │ └── websocket.h.patch │ ├── golang/ │ │ ├── build.sh │ │ ├── golang-doc.subpackage.sh │ │ ├── src-os-file_unix.go.patch │ │ ├── src-runtime-cgo-cgo.go.patch │ │ └── src-runtime-cgo-gcc_android.c.patch │ ├── google-glog/ │ │ └── build.sh │ ├── googletest/ │ │ └── build.sh │ ├── gotty/ │ │ └── build.sh │ ├── gperf/ │ │ ├── build.sh │ │ └── output.cc.patch │ ├── gpgme/ │ │ └── build.sh │ ├── gpsbabel/ │ │ └── build.sh │ ├── graphicsmagick/ │ │ └── build.sh │ ├── graphviz/ │ │ ├── add-libcommon-to-gc.patch │ │ ├── build.sh │ │ ├── cmd-edgepaint-Makefile.in.patch │ │ ├── configure.patch │ │ ├── no-configure-dot-plugins.patch │ │ ├── no-mkdefs.patch │ │ └── sfdpgen-free.patch │ ├── grep/ │ │ └── build.sh │ ├── gsl/ │ │ └── build.sh │ ├── gst-plugins-bad/ │ │ └── build.sh │ ├── gst-plugins-base/ │ │ └── build.sh │ ├── gst-plugins-good/ │ │ ├── autoplug_libcaca.patch │ │ └── build.sh │ ├── gst-plugins-ugly/ │ │ └── build.sh │ ├── gstreamer/ │ │ └── build.sh │ ├── gtypist/ │ │ ├── build.sh │ │ ├── dont_build_manpage.patch │ │ ├── src-cursmenu.c.patch │ │ ├── src-gtypist.c.patch │ │ └── src-utf8.c.patch │ ├── gumbo-parser/ │ │ └── build.sh │ ├── gzip/ │ │ ├── build.sh │ │ ├── fix-gzexe.patch │ │ ├── lib-stdio-impl.h.patch │ │ ├── zdiff.in.patch │ │ └── zgrep.in.patch │ ├── harfbuzz/ │ │ ├── build.sh │ │ ├── harfbuzz-icu.subpackage.sh │ │ └── harfbuzz-utils.subpackage.sh │ ├── hashdeep/ │ │ ├── PRIu_PRId.patch │ │ ├── build.sh │ │ ├── configure.ac.patch │ │ └── hash.patch │ ├── help2man/ │ │ └── build.sh │ ├── hexcurse/ │ │ ├── build.sh │ │ └── hexcurse.c.patch │ ├── hexedit/ │ │ └── build.sh │ ├── hexyl/ │ │ └── build.sh │ ├── heyu/ │ │ └── build.sh │ ├── hfsutils/ │ │ ├── build.sh │ │ ├── lfs.patch │ │ └── replace_hardlink_with_symlink.patch │ ├── hiptext/ │ │ ├── artiste.cc.patch │ │ ├── build.sh │ │ ├── font.cc.patch │ │ └── movie.cc.patch │ ├── hoedown/ │ │ ├── Makefile.patch │ │ └── build.sh │ ├── htop/ │ │ ├── build.sh │ │ └── fix-missing-macros.patch │ ├── httping/ │ │ ├── build.sh │ │ ├── fix-spam_file-path.patch │ │ └── mssl.c.patch │ ├── httrack/ │ │ ├── build.sh │ │ ├── htsglobal.h.patch │ │ └── store.c.patch │ ├── hub/ │ │ ├── build.sh │ │ └── utils-utils.go.patch │ ├── hugo/ │ │ └── build.sh │ ├── hunspell/ │ │ ├── build.sh │ │ ├── fix-hardcoded-paths.patch │ │ └── src-tools-hunspell.cxx.patch │ ├── hunspell-en-us/ │ │ └── build.sh │ ├── hunspell-ru/ │ │ └── build.sh │ ├── hydra/ │ │ ├── build.sh │ │ └── hydra.c.patch │ ├── hyperfine/ │ │ └── build.sh │ ├── icecast/ │ │ ├── build.sh │ │ └── thread.c.patch │ ├── imagemagick/ │ │ └── build.sh │ ├── imgflo/ │ │ ├── Makefile.patch │ │ ├── build.sh │ │ ├── env.sh.in.patch │ │ └── library.c.patch │ ├── imlib2/ │ │ ├── build.sh │ │ ├── imlib2-1.5.1_src_bin_imlib2_show.c.patch │ │ ├── imlib2-1.5.1_src_lib_ximage.c.patch │ │ ├── imlib2-1.5.1_src_modules_loaders_loader_bz2.c.patch │ │ ├── imlib2-1.5.1_src_modules_loaders_loader_id3.c.patch │ │ ├── imlib2-1.5.1_src_modules_loaders_loader_xpm.c.patch │ │ └── imlib2-1.5.1_src_modules_loaders_loader_zlib.c.patch │ ├── indent/ │ │ ├── Makefile.in.patch │ │ ├── build.sh │ │ └── code_io.c.patch │ ├── inetutils/ │ │ ├── build.sh │ │ ├── configure-pthreads-no-weak.patch │ │ ├── ftp-getpass.patch │ │ ├── ftpd.c.patch │ │ ├── if_index.c.patch │ │ └── utmp_logout.c.patch │ ├── inotify-tools/ │ │ ├── build.sh │ │ └── src-Makefile.am.patch │ ├── ipcalc/ │ │ └── build.sh │ ├── iperf3/ │ │ ├── build.sh │ │ ├── main_Makefile.in.patch │ │ └── src-iperf_api.c.patch │ ├── ipfs/ │ │ ├── build.sh │ │ └── go-ipfs-0.4.15_bin_dist_get.patch │ ├── ipmitool/ │ │ ├── build.sh │ │ ├── index-strchr.patch │ │ └── openssl-1.1.patch │ ├── ired/ │ │ └── build.sh │ ├── irssi/ │ │ ├── build.sh │ │ └── fix-paths.patch │ ├── isync/ │ │ ├── build.sh │ │ └── isync.patch │ ├── iverilog/ │ │ ├── Makefile.in.patch │ │ ├── build.sh │ │ ├── driver-main.c.patch │ │ └── vvp-Makefile.in.patch │ ├── jbig2dec/ │ │ └── build.sh │ ├── jhead/ │ │ └── build.sh │ ├── joe/ │ │ ├── build.sh │ │ ├── do_not_build_utils.patch │ │ ├── fix_errno.patch │ │ └── no_getpwent.patch │ ├── jp2a/ │ │ └── build.sh │ ├── jq/ │ │ └── build.sh │ ├── json-c/ │ │ └── build.sh │ ├── json-glib/ │ │ └── build.sh │ ├── jsoncpp/ │ │ └── build.sh │ ├── jupp/ │ │ └── build.sh │ ├── kakoune/ │ │ ├── build.sh │ │ └── src-cs-path-compat.patch │ ├── keybase/ │ │ ├── build.sh │ │ └── go-libkb-env.go.patch │ ├── keystone/ │ │ └── build.sh │ ├── kona/ │ │ ├── Makefile.patch │ │ ├── build.sh │ │ ├── getline_android.c.patch │ │ ├── src-0.c.patch │ │ ├── src-bswap.c.patch │ │ ├── src-getline.h.patch │ │ ├── src-kn.c.patch │ │ ├── src-p.c.patch │ │ └── src-v.h.patch │ ├── krb5/ │ │ ├── build.sh │ │ ├── config-files-kdc.conf.patch │ │ ├── include-osconf.hin.patch │ │ ├── krb5-config_LDFLAGS.patch │ │ ├── netbsd_getpass.c │ │ ├── plugins-kdb-db2.patch │ │ └── sethostent.patch │ ├── kubectl/ │ │ └── build.sh │ ├── ldc/ │ │ ├── build.sh │ │ ├── ldc-readme.patch │ │ ├── ldc-x64-sprintf.patch │ │ └── tests/ │ │ └── hello_world.sh │ ├── ldns/ │ │ ├── build.sh │ │ ├── fix-hardcoded-paths.patch │ │ └── keys.c.patch │ ├── ledger/ │ │ └── build.sh │ ├── leptonica/ │ │ ├── build.sh │ │ ├── silence-tmpfile-warnings.patch │ │ └── src-recogbasic.c.patch │ ├── less/ │ │ ├── build.sh │ │ ├── configure.patch │ │ └── less_multilib.patch │ ├── leveldb/ │ │ └── build.sh │ ├── lftp/ │ │ ├── build.sh │ │ ├── lftp_ssl.cc.patch │ │ ├── lib-vasnprintf.c.patch │ │ ├── src-Filter.cc.patch │ │ ├── src-PtyShell.cc.patch │ │ ├── src-SysCmdJob.cc.patch │ │ └── src-commands.cc.patch │ ├── lhasa/ │ │ └── build.sh │ ├── libandroid-glob/ │ │ ├── build.sh │ │ ├── glob.c │ │ └── glob.h │ ├── libandroid-shmem/ │ │ └── build.sh │ ├── libandroid-spawn/ │ │ ├── build.sh │ │ ├── posix_spawn.cpp │ │ └── posix_spawn.h │ ├── libandroid-support/ │ │ └── build.sh │ ├── libao/ │ │ ├── ao_private.h.patch │ │ ├── ao_pulse.c.patch │ │ ├── build.sh │ │ └── configure.ac.patch │ ├── libarchive/ │ │ ├── archive.h.patch │ │ ├── archive_entry.h.patch │ │ ├── archive_string.c.patch │ │ ├── archive_util.c.patch │ │ ├── archive_write_disk_posix.c.patch │ │ ├── archive_write_set_format_zip.c.patch │ │ ├── bsdtar.subpackage.sh │ │ └── build.sh │ ├── libass/ │ │ └── build.sh │ ├── libassuan/ │ │ └── build.sh │ ├── libbsd/ │ │ ├── build.sh │ │ ├── endian.h.patch │ │ ├── funopen.c.patch │ │ ├── local-elf.h.patch │ │ └── nlist.c.patch │ ├── libbz2/ │ │ ├── build.sh │ │ ├── bzdiff.patch │ │ ├── bzip2.subpackage.sh │ │ ├── cross_compile.patch │ │ └── shared_library.patch │ ├── libc++/ │ │ └── build.sh │ ├── libcaca/ │ │ └── build.sh │ ├── libcairo/ │ │ ├── android-shmem.patch │ │ ├── build.sh │ │ ├── cairo-script-operators.c.patch │ │ └── fdr.c.patch │ ├── libcap/ │ │ ├── build.sh │ │ ├── libcap-makefile.patch │ │ └── progs-capsh.patch │ ├── libcln/ │ │ ├── build.sh │ │ ├── revert_configure_tests.patch │ │ ├── src-base-low-cl_low_div.cc.patch │ │ └── src-base-low-cl_low_mul.cc.patch │ ├── libcoap/ │ │ └── build.sh │ ├── libconfig/ │ │ └── build.sh │ ├── libconfuse/ │ │ └── build.sh │ ├── libcroco/ │ │ └── build.sh │ ├── libcrypt/ │ │ ├── build.sh │ │ ├── crypt.h │ │ └── crypt3.c │ ├── libcue/ │ │ └── build.sh │ ├── libcurl/ │ │ ├── build.sh │ │ └── curl.subpackage.sh │ ├── libdav1d/ │ │ └── build.sh │ ├── libdb/ │ │ ├── build.sh │ │ ├── db.subpackage.sh │ │ ├── fix-tmpdir.patch │ │ ├── lang-sql-generated-sqlite3.c.patch │ │ └── lang-sql-sqlite-src-os_unix.c.patch │ ├── libdispatch/ │ │ ├── build.sh │ │ └── src-CMakeLists.txt.patch │ ├── libduktape/ │ │ ├── build.sh │ │ └── duktape.subpackage.sh │ ├── libedit/ │ │ ├── build.sh │ │ ├── src-readline.c.patch │ │ └── src-vi.c.patch │ ├── libelf/ │ │ ├── aligned_alloc.c │ │ ├── build.sh │ │ ├── dwfl_error.c.patch │ │ ├── elf_getarsym.c.patch │ │ ├── elf_update.c.patch │ │ ├── error.h │ │ ├── lib-color.c.patch │ │ ├── libdwflP.h.patch │ │ ├── libelfmakefile.am.patch │ │ ├── obstack.h │ │ ├── qsort_r.h │ │ ├── ranlib.c.patch │ │ ├── src-readelf.c.patch │ │ ├── stdio_ext.h │ │ ├── strings.c.patch │ │ ├── strip.c.patch │ │ └── unstrip.c.patch │ ├── libev/ │ │ ├── Makefile.in.patch │ │ └── build.sh │ ├── libevent/ │ │ ├── build.sh │ │ ├── evdns.c.patch │ │ ├── evutil.c.patch │ │ └── evutil_rand.c.patch │ ├── libexif/ │ │ └── build.sh │ ├── libexpat/ │ │ └── build.sh │ ├── libffi/ │ │ └── build.sh │ ├── libflac/ │ │ ├── build.sh │ │ └── flac.subpackage.sh │ ├── libgc/ │ │ ├── build.sh │ │ └── include-private-gcconfig.h.patch │ ├── libgcrypt/ │ │ ├── build.sh │ │ └── fix-hardcoded-paths.patch │ ├── libgd/ │ │ └── build.sh │ ├── libgfshare/ │ │ └── build.sh │ ├── libgit2/ │ │ ├── build.sh │ │ └── fix-etc-dir-path.patch │ ├── libgmime/ │ │ ├── build.sh │ │ └── iconv-detect.h.patch │ ├── libgmp/ │ │ └── build.sh │ ├── libgnutls/ │ │ ├── build.sh │ │ └── gnutls.subpackage.sh │ ├── libgpg-error/ │ │ ├── atexit.patch │ │ ├── build.sh │ │ ├── gawk5.0-support.patch │ │ └── lock-obj-pub.aarch64-unknown-linux-android.h │ ├── libgraphite/ │ │ ├── CMakeLists.txt.patch │ │ ├── build.sh │ │ └── src-CMakeLists.txt.patch │ ├── libgrpc/ │ │ ├── CMakeLists.txt.diff │ │ ├── CMakeLists.txt.patch │ │ ├── Makefile.patch │ │ ├── build.sh │ │ ├── fix-arg-list-too-long.patch.beforehostbuild │ │ ├── log_android.cc.patch │ │ └── src-core-lib-grpc-wrap_memcpy.cc.patch │ ├── libgsasl/ │ │ └── build.sh │ ├── libical/ │ │ ├── CMakeLists.txt.patch │ │ ├── build.sh │ │ └── src-libical-CMakeLists.txt.patch │ ├── libiconv/ │ │ ├── build.sh │ │ └── iconv.subpackage.sh │ ├── libicu/ │ │ ├── build.sh │ │ └── icu-devtools.subpackage.sh │ ├── libid3tag/ │ │ └── build.sh │ ├── libidn/ │ │ └── build.sh │ ├── libidn2/ │ │ └── build.sh │ ├── libisl/ │ │ └── build.sh │ ├── libjansson/ │ │ └── build.sh │ ├── libjasper/ │ │ ├── CMakeLists.txt.patch │ │ ├── build.sh │ │ └── libjasper-utils.subpackage.sh │ ├── libjpeg-turbo/ │ │ ├── build.sh │ │ └── libjpeg-turbo-progs.subpackage.sh │ ├── libksba/ │ │ └── build.sh │ ├── libllvm/ │ │ ├── ORCv2.rst.patch │ │ ├── build.sh │ │ ├── clang.subpackage.sh │ │ ├── cxx-libm.patch │ │ ├── lld.subpackage.sh │ │ ├── llvm-config.in │ │ ├── llvm.subpackage.sh │ │ ├── nl_types.h │ │ ├── nltypes_stubs.cpp │ │ ├── openmp-config-ix-m32.patch │ │ ├── project-openmp-runtime-src-CMakeLists.txt.patch │ │ ├── tools-clang-lib-Driver-ToolChain.cpp.patch │ │ ├── tools-clang-lib-Driver-ToolChains-Gnu.cpp.patch │ │ ├── tools-clang-lib-Driver-ToolChains-Linux.cpp.patch │ │ └── tools-llvm-shlib-CMakeLists.txt.patch │ ├── liblua/ │ │ ├── Makefile.patch │ │ ├── build.sh │ │ ├── fix-lua_tmpnametemplate.patch │ │ ├── lua.subpackage.sh │ │ ├── src-Makefile.patch │ │ ├── src-loslib.c.patch │ │ └── src-luaconf.h.patch │ ├── liblua52/ │ │ ├── build.sh │ │ ├── lua-5.2.4_Makefile.patch │ │ ├── lua-5.2.4_src_Makefile.patch │ │ ├── lua-5.2.4_src_loslib.c.patch │ │ ├── lua-5.2.4_src_luaconf.h.patch │ │ ├── lua.pc.in │ │ └── lua52.subpackage.sh │ ├── libluajit/ │ │ ├── build.sh │ │ ├── etc-luajit.pc.patch │ │ ├── luajit.subpackage.sh │ │ └── src-Makefile.patch │ ├── liblz4/ │ │ ├── Makefile.inc.patch │ │ ├── build.sh │ │ └── lz4.subpackage.sh │ ├── liblzma/ │ │ ├── build.sh │ │ ├── configure.patch │ │ └── xz-utils.subpackage.sh │ ├── liblzo/ │ │ └── build.sh │ ├── libmaa/ │ │ ├── build.sh │ │ └── libmaa.patch │ ├── libmad/ │ │ └── build.sh │ ├── libmaxminddb/ │ │ ├── build.sh │ │ └── libmaxminddb-tools.subpackage.sh │ ├── libmcrypt/ │ │ └── build.sh │ ├── libmesode/ │ │ └── build.sh │ ├── libmhash/ │ │ └── build.sh │ ├── libmicrohttpd/ │ │ └── build.sh │ ├── libmnl/ │ │ └── build.sh │ ├── libmosquitto/ │ │ ├── CMakeLists.txt.patch │ │ ├── build.sh │ │ └── mosquitto.subpackage.sh │ ├── libmp3lame/ │ │ ├── build.sh │ │ └── lame.subpackage.sh │ ├── libmp3splt/ │ │ └── build.sh │ ├── libmpc/ │ │ └── build.sh │ ├── libmpdclient/ │ │ └── build.sh │ ├── libmpfr/ │ │ └── build.sh │ ├── libmsgpack/ │ │ └── build.sh │ ├── libnet/ │ │ └── build.sh │ ├── libnettle/ │ │ ├── build.sh │ │ ├── configure.patch │ │ └── nettle.subpackage.sh │ ├── libnfs/ │ │ ├── add-timeh.patch │ │ └── build.sh │ ├── libnftnl/ │ │ └── build.sh │ ├── libnghttp2/ │ │ └── build.sh │ ├── libnl/ │ │ ├── build.sh │ │ ├── include-netlink-private-netlink.h.patch │ │ ├── nf-log.c.patch │ │ ├── nf-monitor.c.patch │ │ ├── nf-queue.c.patch │ │ └── nl-monitor.c.patch │ ├── libnpth/ │ │ └── build.sh │ ├── libogg/ │ │ └── build.sh │ ├── liboggz/ │ │ └── build.sh │ ├── libopus/ │ │ └── build.sh │ ├── libopusenc/ │ │ └── build.sh │ ├── libotr/ │ │ ├── build.sh │ │ └── configure.patch │ ├── libpcap/ │ │ ├── build.sh │ │ └── fix-path-etc-ethers.patch │ ├── libpipeline/ │ │ └── build.sh │ ├── libpixman/ │ │ ├── build.sh │ │ └── pixman-arm.c.patch │ ├── libpng/ │ │ └── build.sh │ ├── libpopt/ │ │ ├── build.sh │ │ └── fix-hardcoded-paths.patch │ ├── libprotobuf/ │ │ ├── build.sh │ │ ├── protobuf.subpackage.sh │ │ └── remove-android-logging.patch │ ├── libprotobuf-c/ │ │ └── build.sh │ ├── libpsl/ │ │ ├── build-fix.patch │ │ └── build.sh │ ├── libqrencode/ │ │ └── build.sh │ ├── librsvg/ │ │ └── build.sh │ ├── librsync/ │ │ ├── build.sh │ │ └── rdiff.subpackage.sh │ ├── libsasl/ │ │ ├── auth_getpwent.c.patch │ │ └── build.sh │ ├── libsearpc/ │ │ ├── build.sh │ │ └── lib-Makefile.am.patch │ ├── libsignal-protocol-c/ │ │ └── build.sh │ ├── libsigsegv/ │ │ └── build.sh │ ├── libsndfile/ │ │ ├── Makefile.am.patch │ │ ├── autogen.sh.patch │ │ ├── build.sh │ │ └── tmpdir.patch │ ├── libsodium/ │ │ └── build.sh │ ├── libsoup/ │ │ └── build.sh │ ├── libsoxr/ │ │ ├── build.sh │ │ └── go.patch │ ├── libsqlite/ │ │ ├── build.sh │ │ ├── sqlite.subpackage.sh │ │ └── sqlite3.c.patch │ ├── libssh/ │ │ ├── build.sh │ │ └── fix-paths.patch │ ├── libssh2/ │ │ └── build.sh │ ├── libtalloc/ │ │ ├── build.sh │ │ ├── lib-replace-wscript.patch │ │ └── wscript.patch │ ├── libtermkey/ │ │ └── build.sh │ ├── libtiff/ │ │ ├── build.sh │ │ └── libtiff-utils.subpackage.sh │ ├── libtool/ │ │ ├── build.sh │ │ └── libltdl.subpackage.sh │ ├── libunibilium/ │ │ └── build.sh │ ├── libunistring/ │ │ └── build.sh │ ├── libusb/ │ │ └── build.sh │ ├── libuuid/ │ │ ├── build.sh │ │ ├── gen_uuid.c.patch │ │ └── uuidP.h.patch │ ├── libuv/ │ │ ├── build.sh │ │ ├── pthread-sigmask.patch │ │ └── src-unix-fs.c.patch │ ├── libvorbis/ │ │ ├── build.sh │ │ └── configure.patch │ ├── libvpx/ │ │ ├── arm_cpudetect-always-neon.patch │ │ ├── build-make-configure.sh.patch │ │ ├── build.sh │ │ └── configure.patch │ ├── libvterm/ │ │ └── build.sh │ ├── libwebp/ │ │ ├── CMakeLists.txt.patch │ │ └── build.sh │ ├── libwebsockets/ │ │ └── build.sh │ ├── libx11/ │ │ ├── build.sh │ │ ├── src-CrGlCur.c.patch │ │ └── src-XlibInt.c.patch │ ├── libx264/ │ │ ├── build.sh │ │ └── x264.subpackage.sh │ ├── libx265/ │ │ ├── build.sh │ │ ├── source-CMakeLists.txt.patch │ │ └── x265.subpackage.sh │ ├── libxapian/ │ │ ├── build.sh │ │ └── xapian-tools.subpackage.sh │ ├── libxau/ │ │ ├── build.sh │ │ └── libXau-1.0.8_AuLock.c.patch │ ├── libxcb/ │ │ ├── build.sh │ │ ├── libxcb-1.12_configure.patch │ │ └── libxcb-1.12_src_xcb_util.c.patch │ ├── libxdmcp/ │ │ └── build.sh │ ├── libxext/ │ │ └── build.sh │ ├── libxft/ │ │ └── build.sh │ ├── libxml2/ │ │ ├── build.sh │ │ ├── fix-catalog-paths.patch │ │ └── libxml2-utils.subpackage.sh │ ├── libxrender/ │ │ └── build.sh │ ├── libxslt/ │ │ ├── build.sh │ │ └── xsltproc.subpackage.sh │ ├── libxss/ │ │ └── build.sh │ ├── libyaml/ │ │ └── build.sh │ ├── libzip/ │ │ └── build.sh │ ├── libzmq/ │ │ └── build.sh │ ├── libzopfli/ │ │ ├── build.sh │ │ └── zopfli.subpackage.sh │ ├── lighttpd/ │ │ └── build.sh │ ├── links/ │ │ ├── build.sh │ │ └── fix-hardcoded-paths.patch │ ├── linux-man-pages/ │ │ └── build.sh │ ├── littlecms/ │ │ ├── build.sh │ │ └── littlecms-utils.subpackage.sh │ ├── llbuild/ │ │ ├── CMakeLists.txt.patch │ │ ├── build.sh │ │ ├── include-llbuild-BuildSystem-BuildSystemFrontend.h.patch │ │ ├── include-llvm-Config-config.h.patch │ │ ├── lib-Basic-PlatformUtility.cpp.patch │ │ ├── lib-llvm-Support-CmakeLists.txt.patch │ │ └── products-llbuild-CMakeLists.txt.patch │ ├── lldb/ │ │ ├── ArchSpec.cpp.patch │ │ ├── Editline.h.patch │ │ ├── LLDBStandalone.cmake.patch │ │ ├── ProcessLauncherPosixFork.cpp.patch │ │ ├── build.sh │ │ └── cmakelists.txt.patch │ ├── lnd/ │ │ └── build.sh │ ├── loksh/ │ │ ├── Makefile.patch │ │ ├── build.sh │ │ ├── clock_monotonic.patch │ │ ├── fix-hardcoded-paths.patch │ │ └── no-cs_path.patch │ ├── ltrace/ │ │ ├── build.sh │ │ ├── ltrace-elf.c.patch │ │ └── sysdeps-linux-gnu-proc.c.patch │ ├── lua-lpeg/ │ │ ├── build.sh │ │ └── makefile.patch │ ├── luarocks/ │ │ ├── GNUmakefile.patch │ │ ├── build.sh │ │ ├── configure.patch │ │ ├── lua.lua.patch │ │ ├── src-luarocks-core-cfg.lua.patch │ │ └── unix-tools.lua.patch │ ├── luv/ │ │ ├── CMakeLists.txt.patch │ │ └── build.sh │ ├── lynx/ │ │ ├── build.sh │ │ ├── fix-paths.patch │ │ ├── lynx2.8.9dev.19_WWW_Library_Implementation_www_tcp.h.patch │ │ ├── lynx2.8.9dev.19_src_LYMain.c.patch │ │ └── lynx2.8.9dev.19_userdefs.h.patch │ ├── lzip/ │ │ ├── build.sh │ │ └── configure.patch │ ├── lzlib/ │ │ ├── build.sh │ │ └── configure.patch │ ├── lzop/ │ │ └── build.sh │ ├── m4/ │ │ ├── build.sh │ │ ├── fix-paths.patch │ │ ├── lib-vasnprintf.c.patch │ │ ├── lib-xalloc-oversized.h.patch │ │ └── spawn.patch │ ├── make/ │ │ ├── build.sh │ │ ├── make.patch │ │ └── no-append.patch │ ├── man/ │ │ ├── build.sh │ │ ├── configure.patch │ │ ├── main.c.patch │ │ ├── mandocdb.c.patch │ │ ├── tag.c.patch │ │ └── tag.h.patch │ ├── mariadb/ │ │ ├── CMakeLists.txt.patch │ │ ├── build.sh │ │ ├── client-CMakeLists.txt.patch │ │ ├── client-mysql.cc.patch │ │ ├── cmake-install_layout.cmake.patch │ │ ├── cmake-mariadb_connector_c.cmake.patch.beforehostbuild │ │ ├── cmake-pcre.cmake.patch │ │ ├── cmake-readline.cmake.patch │ │ ├── etc-my.cnf.patch │ │ ├── libmariadb-libmariadb-CMakeLists.txt.patch │ │ ├── scripts-mysql_install_db.sh.patch │ │ └── sql-CMakeLists.txt.patch │ ├── mathomatic/ │ │ ├── build.sh │ │ └── fix-paths.patch │ ├── mbedtls/ │ │ └── build.sh │ ├── mc/ │ │ ├── build.sh │ │ ├── configure.patch │ │ ├── filegui_magics.patch │ │ ├── filemanager_ext.c.patch │ │ ├── lib-shell.c.patch │ │ ├── lib-tty-key.c.patch │ │ ├── lib-tty-tty.c.patch │ │ ├── lib-utilunix.c.patch │ │ ├── lib-widget-input_complete.c.patch │ │ ├── man2hlp.in.patch │ │ ├── src-filemanager-achown.c.patch │ │ ├── src-filemanager-chown.c.patch │ │ ├── src-filemanager-file.c.patch │ │ ├── src-usermenu.c.patch │ │ ├── src-vfs-sfs-sfs.c.patch │ │ ├── tmpdir_default.patch │ │ └── use-python2-for-extfs-helpers.patch │ ├── mdp/ │ │ └── build.sh │ ├── megatools/ │ │ ├── build.sh │ │ └── lib-mega.c.patch │ ├── memcached/ │ │ ├── build.sh │ │ ├── getsubopt.c │ │ ├── getsubopt.h │ │ └── memcached.c.patch │ ├── mg/ │ │ ├── GNUmakefile.patch │ │ └── build.sh │ ├── micro/ │ │ └── build.sh │ ├── mime-support/ │ │ └── build.sh │ ├── minicom/ │ │ ├── build.sh │ │ ├── dial.c.patch │ │ ├── file.c.patch │ │ ├── getdir.c.patch │ │ ├── getdir.h.patch │ │ ├── script.h.patch │ │ └── wkeys.c.patch │ ├── miniupnpc/ │ │ ├── build.sh │ │ ├── miniupnpc-2.1_minissdpc.c.patch │ │ └── miniupnpc-2.1_miniupnpc.c.patch │ ├── mksh/ │ │ ├── build.sh │ │ └── sh.h.patch │ ├── mktorrent/ │ │ ├── build.sh │ │ └── seekdir_telldir.patch │ ├── mlocate/ │ │ ├── build.sh │ │ ├── conf.c.patch │ │ ├── no_getid.patch │ │ ├── src-locate.c.patch │ │ └── updatedb.c.patch │ ├── morse2ascii/ │ │ ├── Makefile.patch │ │ └── build.sh │ ├── mosh/ │ │ ├── build.sh │ │ ├── mosh-server.cc.patch │ │ ├── mosh.cc │ │ ├── mosh.pl.patch │ │ └── src-network-network.cc.patch │ ├── mp3splt/ │ │ └── build.sh │ ├── mpc/ │ │ ├── build.sh │ │ └── meson.build.patch │ ├── mpd/ │ │ ├── HybridDsdDecoderPlugin.cxx.patch │ │ ├── build.sh │ │ ├── doc-mpdconf.example.patch │ │ ├── mpd-script.sh │ │ ├── registry.cxx.patch │ │ ├── src-fs-io-FileOutputStream.hxx.patch │ │ ├── src-input-Error.cxx.patch │ │ ├── src-lib-gcrypt-meson.build.patch │ │ ├── src-output-plugins-meson.build.patch │ │ └── thread-Util.cxx.patch │ ├── mpdscribble/ │ │ ├── Makefile.am.patch │ │ ├── build.sh │ │ ├── file.c.patch │ │ └── mpdscribble.conf.patch │ ├── mpv/ │ │ ├── build.sh │ │ ├── main.c.patch │ │ ├── mpv.conf │ │ └── wscript.patch │ ├── msmtp/ │ │ └── build.sh │ ├── mtd-utils/ │ │ ├── build.sh │ │ └── mkfs.jffs2.c.patch │ ├── mtools/ │ │ ├── build.sh │ │ └── sysinc.patch │ ├── mu/ │ │ └── build.sh │ ├── multitail/ │ │ ├── Makefile.patch │ │ ├── build.sh │ │ ├── mt.c.patch │ │ ├── my_pty.c.patch │ │ ├── term.c.patch │ │ └── utils.c.patch │ ├── mutt/ │ │ ├── build.sh │ │ ├── getdomain.c.patch │ │ ├── init.c.patch │ │ ├── lib.c.patch │ │ ├── muttlib.c.patch │ │ └── smime_keys_path.patch │ ├── myrepos/ │ │ └── build.sh │ ├── nano/ │ │ ├── build.sh │ │ ├── src-files.c.patch │ │ └── src-text.c.patch │ ├── ncdc/ │ │ └── build.sh │ ├── ncdu/ │ │ └── build.sh │ ├── ncmpcpp/ │ │ ├── build.sh │ │ ├── config.patch │ │ ├── configure.ac.patch │ │ ├── locale.patch │ │ ├── ncmpcpp.cpp.patch │ │ └── settings.cpp.patch │ ├── ncompress/ │ │ └── build.sh │ ├── ncurses/ │ │ ├── build.sh │ │ ├── fix-paths.patch │ │ ├── ncurses-tinfo-lib_setup.c.patch │ │ ├── ncurses-tinfo-tinfo_driver.c.patch │ │ ├── ncurses-ui-libs-static.subpackage.sh │ │ ├── ncurses-ui-libs.subpackage.sh │ │ └── ncurses-utils.subpackage.sh │ ├── ndk-multilib/ │ │ └── build.sh │ ├── ndk-sysroot/ │ │ ├── build.sh │ │ └── math-header.diff │ ├── ne/ │ │ └── build.sh │ ├── neofetch/ │ │ └── build.sh │ ├── neovim/ │ │ ├── build.sh │ │ ├── runtime-CMakeLists.txt.patch │ │ ├── runtime-autoload-man.vim.patch │ │ ├── runtime-autoload-provider-clipboard.vim.patch │ │ ├── src-nvim-os-stdpaths.c.patch │ │ └── sysinit.vim │ ├── net-tools/ │ │ ├── arp.c.patch │ │ ├── build.sh │ │ ├── ifconfig.c.patch │ │ ├── lib-inet.c.patch │ │ ├── lib-inet6.c.patch │ │ ├── lib-inet6_sr.c.patch │ │ ├── lib-pathnames.h.patch │ │ ├── nameif.c.patch │ │ ├── rarp.c.patch │ │ ├── slattach.c.patch │ │ └── unknown_state.patch │ ├── netpbm/ │ │ ├── GNUmakefile.patch │ │ ├── build.sh │ │ ├── buildtools-Makefile.patch │ │ ├── buildtools-installnetpbm.pl.patch │ │ ├── camera.c.patch │ │ ├── lib-Makefile.patch │ │ ├── standardppmdfont.c │ │ └── util.c.patch │ ├── netsed/ │ │ └── build.sh │ ├── newsboat/ │ │ ├── Makefile.patch │ │ ├── avoid-gettext.patch │ │ ├── build.sh │ │ ├── fix-paths.patch │ │ └── mbc-buffer-length-fix.patch │ ├── nginx/ │ │ ├── Android-crossfile.patch32 │ │ ├── Android-crossfile.patch64 │ │ ├── auto-threads.patch │ │ ├── build.sh │ │ ├── cross-compile-nginx.patch │ │ ├── src-core-ngx_cycle.c.patch │ │ ├── src-core-ngx_file.c.patch │ │ └── src-event-modules-ngx_epoll_module.c.patch │ ├── nim/ │ │ ├── build.sh │ │ └── osproc.nim.patch │ ├── ninja/ │ │ ├── build.sh │ │ ├── src-subprocess-posix.cc.patch │ │ └── src-util.cc.patch │ ├── nmap/ │ │ ├── build.sh │ │ ├── fix-paths.patch │ │ ├── netcat.subpackage.sh │ │ └── nping-EchoServer.cc.patch │ ├── nnn/ │ │ └── build.sh │ ├── nodejs/ │ │ ├── build.sh │ │ ├── configure.py.patch │ │ ├── deps-uv-src-unix-core.c.patch │ │ ├── deps-uv-src-unix-process.c.patch │ │ ├── deps-uv-uv.gyp.patch │ │ ├── deps-v8-src-flags-flag-definitions.h.patch │ │ ├── deps-v8-src-logging-log.cc.patch │ │ ├── fix_multiple_definitions.patch │ │ ├── lib-child_process.js.patch │ │ ├── lib-os.js.patch │ │ ├── node.gyp.patch │ │ ├── npm-link-patch.patch │ │ ├── src-cares_wrap.cc.patch │ │ ├── src-node_internals.h.patch │ │ ├── src-node_main.cc.patch │ │ └── tools-v8_gypfiles-v8.gyp.patch │ ├── nodejs-lts/ │ │ ├── build.sh │ │ ├── configure.py.patch │ │ ├── deps-uv-src-unix-core.c.patch │ │ ├── deps-uv-uv.gyp.patch │ │ ├── deps-v8-src-flags-flag-definitions.h.patch │ │ ├── deps-v8-src-logging-log.cc.patch │ │ ├── fix_multiple_definitions.patch │ │ ├── lib-child_process.js.patch │ │ ├── lib-os.js.patch │ │ ├── node.gyp.patch │ │ ├── npm-link-patch.patch │ │ ├── src-cares_wrap.cc.patch │ │ ├── src-node_internals.h.patch │ │ ├── src-node_main.cc.patch │ │ └── tools-v8_gypfiles-v8.gyp.patch │ ├── notmuch/ │ │ ├── Makefile.global.patch │ │ ├── build.sh │ │ ├── configure.patch │ │ └── notmuch-config.c.patch │ ├── nyancat/ │ │ ├── build.sh │ │ └── makefile.patch │ ├── nzbget/ │ │ ├── build.sh │ │ └── options.cpp.patch │ ├── oathtool/ │ │ └── build.sh │ ├── obfs4proxy/ │ │ └── build.sh │ ├── ocrad/ │ │ ├── build.sh │ │ └── configure.patch │ ├── odt2txt/ │ │ ├── Makefile.patch │ │ └── build.sh │ ├── oleo/ │ │ ├── basic.h.patch │ │ ├── build.sh │ │ ├── global.h.patch │ │ ├── io-term.c.patch │ │ ├── io-term.h.patch │ │ ├── plotter.c.patch │ │ ├── texi2html.in.patch │ │ └── xrdb.c.patch │ ├── openal-soft/ │ │ ├── alc-alconfig.cpp.patch │ │ ├── build.sh │ │ └── native-tools-CMakeLists.txt.patch │ ├── openjpeg/ │ │ ├── CMakeLists.txt.patch │ │ ├── build.sh │ │ └── openjpeg-tools.subpackage.sh │ ├── openssh/ │ │ ├── Makefile.in.patch │ │ ├── auth.c.patch │ │ ├── auth2-passwd.c.patch │ │ ├── build.sh │ │ ├── fix-hardcoded-paths.patch │ │ ├── hostfile.c.patch │ │ ├── misc_c.patch │ │ ├── mux.c.patch │ │ ├── no_loginrec.patch │ │ ├── no_tty_chmod.patch │ │ ├── openbsd-compat-explicit_bzero.c.patch │ │ ├── openbsd-compat-xcrypt.c.patch │ │ ├── servconf.c.patch │ │ ├── session.c.patch │ │ ├── sftp-server.c.patch │ │ ├── sftp-with-agent.sh │ │ ├── source-ssh-agent.sh │ │ ├── ssh-agent.c.patch │ │ ├── ssh-keygen.c.patch │ │ ├── ssh-with-agent.sh │ │ ├── sshd.c.patch │ │ └── sshd_config.5.patch │ ├── openssl/ │ │ ├── Configurations-15-android.conf.patch │ │ ├── add-trusted-certificate │ │ ├── apps-ocsp.c.patch │ │ ├── build.sh │ │ ├── crypto-armcap.c.patch │ │ ├── e_os.h.patch │ │ └── openssl-tool.subpackage.sh │ ├── optipng/ │ │ ├── build.sh │ │ └── configure.patch │ ├── opus-tools/ │ │ └── build.sh │ ├── opusfile/ │ │ └── build.sh │ ├── ossp-uuid/ │ │ ├── build.sh │ │ ├── ossp.patch │ │ ├── uuid-aarch64.patch │ │ └── z-no-docs-no-strip.patch │ ├── p7zip/ │ │ ├── 1-CVE-2016-9296.patch │ │ ├── 2-CVE-2017-17969.patch │ │ ├── 3-CVE-2018-5996.patch │ │ ├── 4-CVE-2018-10115.patch │ │ ├── build.sh │ │ └── makefile.patch │ ├── pango/ │ │ ├── bsearch-fix.patch │ │ ├── build.sh │ │ └── pango-view.1 │ ├── par2/ │ │ └── build.sh │ ├── parallel/ │ │ ├── build.sh │ │ ├── parallel.patch │ │ └── sem.patch │ ├── parted/ │ │ ├── 01_devmapper.patch │ │ ├── 02_lseek.patch │ │ ├── 03_minormajor.patch │ │ ├── build.sh │ │ └── configure-pthreads-no-weak.patch │ ├── pass/ │ │ ├── build.sh │ │ └── src-password-store.sh.patch │ ├── pass-otp/ │ │ └── build.sh │ ├── pastebinit/ │ │ ├── build.sh │ │ └── pastebinit.patch │ ├── patch/ │ │ ├── build.sh │ │ └── tmpdir-path.patch │ ├── patchelf/ │ │ └── build.sh │ ├── pathpicker/ │ │ └── build.sh │ ├── pcre/ │ │ ├── build.sh │ │ └── libpcreposix.subpackage.sh │ ├── pcre2/ │ │ └── build.sh │ ├── pdfgrep/ │ │ └── build.sh │ ├── perl/ │ │ ├── Cwd.pm.patch │ │ ├── build.sh │ │ ├── cnf-configure_func.sh.patch │ │ ├── cnf-configure_path.sh.patch │ │ ├── file-spec-unix.pm.patch │ │ └── perlio.c.patch │ ├── pforth/ │ │ └── build.sh │ ├── php/ │ │ ├── Makefile.global.patch │ │ ├── build.sh │ │ ├── ext-opcache-config.m4.patch │ │ ├── ext-opcache-zend_accelerator_module.c.patch │ │ ├── ext-pdo_pgsql-config.m4.patch │ │ ├── ext-pgsql-config.m4.patch │ │ ├── ext-phar-Makefile.frag.patch │ │ ├── ext-posix-posix.c.patch │ │ ├── ext-standard-basic_functions.c.patch │ │ ├── ext-standard-dns.c.patch │ │ ├── ext-standard-php_fopen_wrapper.c.patch │ │ ├── ext-standard-proc_open.c.patch │ │ ├── iconv-config.m4.patch │ │ ├── pear-Makefile.frag.patch │ │ ├── php-apache.subpackage.sh │ │ ├── php-fpm.patch │ │ ├── php-fpm.subpackage.sh │ │ ├── php-pgsql.subpackage.sh │ │ └── sapi-apache2handler-config.m4.patch │ ├── pianobar/ │ │ ├── Makefile.patch │ │ └── build.sh │ ├── pick/ │ │ ├── build.sh │ │ ├── configure.patch │ │ └── pick.c.patch │ ├── picolisp/ │ │ ├── build.sh │ │ ├── src-Makefile.patch │ │ ├── src-ext.c.patch │ │ └── src64-mkAsm.patch │ ├── pigz/ │ │ ├── build.sh │ │ ├── pigz-2.4_Makefile.patch │ │ └── pigz-2.4_yarn.c.patch │ ├── pinentry/ │ │ ├── build.sh │ │ ├── pinentry-emacs.c.patch │ │ └── pinentry-pinentry.c.patch │ ├── pkg-config/ │ │ └── build.sh │ ├── play-audio/ │ │ └── build.sh │ ├── plzip/ │ │ ├── Makefile.in.patch │ │ ├── build.sh │ │ └── configure.patch │ ├── pngquant/ │ │ ├── build.sh │ │ └── configure.patch │ ├── poppler/ │ │ ├── build.sh │ │ ├── gstrtod.cc.patch │ │ └── poppler-Form.cc.patch │ ├── postgresql/ │ │ ├── build.sh │ │ ├── src-backend-Makefile.patch │ │ ├── src-backend-commands-collationcmds.c.patch │ │ ├── src-bin-initdb-initdb.c.patch │ │ ├── src-bin-pg_ctl-pg_ctl.c.patch │ │ ├── src-bin-pg_upgrade-check.c.patch │ │ ├── src-bin-psql-command.c.patch │ │ ├── src-include-pg_config_manual.h.patch │ │ └── src-timezone-zic.c.patch.beforehostbuild │ ├── potrace/ │ │ └── build.sh │ ├── privoxy/ │ │ ├── GNUmakefile.in.patch │ │ ├── build.sh │ │ ├── jcc.c.patch │ │ └── project.h.patch │ ├── procps/ │ │ ├── Makefile.in.patch │ │ ├── build.sh │ │ ├── pgrep.c.patch │ │ ├── pmap.c.patch │ │ ├── proc-sysinfo.c.patch │ │ ├── procio.c.patch │ │ ├── sysctl.c.patch │ │ ├── top-top.c.patch │ │ └── w.c.patch │ ├── profanity/ │ │ ├── build.sh │ │ ├── cmd_funcs.c.patch │ │ └── ui-inputwin.c.patch │ ├── progress/ │ │ ├── Makefile.patch │ │ ├── WithoutWordexp.patch │ │ └── build.sh │ ├── proot/ │ │ ├── build.sh │ │ └── termux-chroot │ ├── proxychains-ng/ │ │ ├── Makefile.patch │ │ ├── build.sh │ │ ├── hostreader.c.patch │ │ └── libproxychains.c.patch │ ├── psmisc/ │ │ ├── build.sh │ │ ├── pstree.patch │ │ └── src-fuser.c.patch │ ├── pulseaudio/ │ │ ├── 0001-atomic-Explicitly-cast-void-to-unsigned-long.patch │ │ ├── aaudio.patch │ │ ├── build.sh │ │ ├── fix-paths.patch │ │ ├── module-aaudio-sink.c │ │ ├── module-sles-sink.c │ │ ├── module-sles-source.c │ │ ├── no_priv_drop.patch │ │ └── sles.patch │ ├── pure-ftpd/ │ │ ├── build.sh │ │ ├── pure-pwconvert.c.patch │ │ ├── src-ftpd.h.patch │ │ └── src-ftpd_p.h.patch │ ├── pv/ │ │ ├── build.sh │ │ ├── header.in.patch │ │ └── src-pv-cursor.c.patch │ ├── pwgen/ │ │ └── build.sh │ ├── python/ │ │ ├── 0001-compileall-Fix-ddir-when-recursing.patch │ │ ├── Lib-pathlib.py.patch │ │ ├── Lib-subprocess.py.patch │ │ ├── Lib-tmpfile.py.patch │ │ ├── Modules-socketmodule.c.patch │ │ ├── _cursesmodule.c.patch │ │ ├── build.sh │ │ ├── configure.patch │ │ ├── cryptmodule.c.patch │ │ ├── distutils-command-build.py.patch │ │ ├── fix-paths.patch │ │ ├── python-tkinter.subpackage.sh │ │ └── setup.py.patch │ ├── python2/ │ │ ├── Lib-subprocess.py.patch │ │ ├── Lib-tempfile.py.patch │ │ ├── Makefile.pre.in.patch │ │ ├── Modules-pwdmodule.c.patch │ │ ├── Python-bltinmodule.c.patch │ │ ├── build.sh │ │ ├── configure.patch │ │ ├── cryptmodule.c.patch │ │ ├── fix-dlfcn.patch32 │ │ ├── fix-dlfcn.patch64 │ │ ├── fix-paths.patch │ │ └── setup.py.patch │ ├── qalc/ │ │ ├── build.sh │ │ └── util.cc.patch │ ├── qpdf/ │ │ └── build.sh │ ├── quickjs/ │ │ └── build.sh │ ├── radare2/ │ │ ├── 5d76b9ff992b1b7dd64b1ccb89afa40318ff25fa.patch │ │ ├── build.sh │ │ ├── f639c3b6a17a57c9a0fa1790811eff27dd124b59.patch │ │ ├── libr-core-cconfig.c.patch │ │ ├── libr-include-r_magic.h.patch │ │ ├── libr-util-diff.c.patch │ │ ├── libr-util-file.c.patch │ │ ├── libr-util-sandbox.c.patch │ │ ├── mk-termux-host.mk.patch │ │ └── sys-ldconfig.sh.patch │ ├── ragel/ │ │ └── build.sh │ ├── ranger/ │ │ ├── build.sh │ │ ├── ranger-core-actions.py.patch │ │ └── ranger.patch │ ├── rclone/ │ │ └── build.sh │ ├── rcs/ │ │ ├── build.sh │ │ └── noreturn.patch │ ├── readline/ │ │ ├── build.sh │ │ ├── inputrc │ │ └── rlconf.h.patch │ ├── redir/ │ │ ├── build.sh │ │ └── redir.c.patch │ ├── redis/ │ │ ├── bio.c.patch │ │ ├── build.sh │ │ ├── config.h.patch │ │ ├── redis.conf.patch │ │ ├── src-Makefile.patch │ │ └── src-server.h.patch │ ├── remind/ │ │ └── build.sh │ ├── resolv-conf/ │ │ └── build.sh │ ├── restic/ │ │ └── build.sh │ ├── rgbds/ │ │ ├── Makefile.patch │ │ └── build.sh │ ├── rhash/ │ │ ├── build.sh │ │ ├── configure.patch │ │ ├── librhash-byte_order.h.patch │ │ └── parse_cmdline.c.patch │ ├── ripgrep/ │ │ └── build.sh │ ├── rlwrap/ │ │ ├── build.sh │ │ ├── fix-hardcoded-paths.patch │ │ └── ptytty.c.patch │ ├── root-repo/ │ │ └── build.sh │ ├── rsync/ │ │ ├── build.sh │ │ ├── rsync-3.1.3_lib_getpass.c.patch │ │ └── rsync.h.patch │ ├── rtmpdump/ │ │ ├── Makefile.patch │ │ └── build.sh │ ├── ruby/ │ │ ├── Makefile.in.patch │ │ ├── build.sh │ │ ├── ext-etc-etc.c.patch │ │ ├── ext-syslog-extconf.rb.patch │ │ ├── fix-paths.patch │ │ ├── lib-rubygems-install_update_options.rb.patch │ │ ├── lib-tmpdir.rb.patch │ │ ├── mkmf.rb.patch │ │ ├── process.c.patch │ │ ├── pty.c.patch │ │ ├── ruby-ri.subpackage.sh │ │ ├── src-signal.c.patch │ │ ├── tests/ │ │ │ ├── default_encoding_isutf8.sh │ │ │ └── extension_modules_installed.sh │ │ └── tool-rbinstall.rb.patch │ ├── rust/ │ │ ├── build.sh │ │ ├── config.toml │ │ ├── os-tmpdir.patch │ │ ├── rust-std-wasm32.subpackage.sh │ │ └── src-librustc_llvm-build.rs.patch │ ├── samefile/ │ │ └── build.sh │ ├── sc/ │ │ ├── Makefile.patch │ │ ├── build.sh │ │ └── cmds.c.patch │ ├── sc-im/ │ │ ├── Makefile.patch │ │ ├── build.sh │ │ ├── cmds_command.c.patch │ │ ├── cmds_normal.c.patch │ │ ├── cmds_visual.c.patch │ │ ├── file.c.patch │ │ └── main.c.patch │ ├── science-repo/ │ │ └── build.sh │ ├── screen/ │ │ ├── attacher.c.patch │ │ ├── build.sh │ │ ├── config.h.in.patch │ │ ├── fileio.c.patch │ │ ├── misc.c.patch │ │ ├── no-setuid.patch │ │ ├── os.h.patch │ │ ├── osdef.h.in.patch │ │ ├── screen.h.patch │ │ ├── utmp.c.patch │ │ └── window.c.patch │ ├── screenfetch/ │ │ ├── build.sh │ │ └── screenfetch-dev.patch │ ├── scrypt/ │ │ └── build.sh │ ├── sdcv/ │ │ ├── build.sh │ │ └── src-mapfile.hpp.patch │ ├── seafile-client/ │ │ ├── build.sh │ │ └── configure.ac.patch │ ├── seccure/ │ │ ├── Makefile.patch │ │ └── build.sh │ ├── secure-delete/ │ │ ├── 000-from-debian.patch │ │ ├── 001-makefile-cc.patch │ │ └── build.sh │ ├── sed/ │ │ └── build.sh │ ├── sensible-utils/ │ │ └── build.sh │ ├── serf/ │ │ ├── build.sh │ │ └── sconstruct.patch │ ├── sharutils/ │ │ ├── build.sh │ │ └── config.h.in.patch │ ├── shellharden/ │ │ └── build.sh │ ├── silversearcher-ag/ │ │ └── build.sh │ ├── sl/ │ │ ├── build.sh │ │ └── makefile.patch │ ├── socat/ │ │ ├── build.sh │ │ ├── dont_use_resolv_h.patch │ │ ├── no-o_append.patch │ │ └── openpty.c.patch │ ├── sox/ │ │ └── build.sh │ ├── speexdsp/ │ │ └── build.sh │ ├── spiped/ │ │ ├── Makefile.patch │ │ └── build.sh │ ├── squid/ │ │ ├── CpuAffinitySet.cc.patch │ │ ├── build.sh │ │ ├── dns_internal.cc.patch │ │ ├── src-esi-VarState.cc.patch │ │ └── sys-stat.h.patch │ ├── sshpass/ │ │ └── build.sh │ ├── ssss/ │ │ ├── Makefile.patch │ │ ├── build.sh │ │ └── ssss.1 │ ├── stag/ │ │ ├── Makefile.patch │ │ ├── build.sh │ │ └── stag.c.patch │ ├── starship/ │ │ └── build.sh │ ├── steghide/ │ │ ├── build.sh │ │ ├── gcc-4.2.patch │ │ ├── libtool-fix.patch │ │ ├── steghide-climits.patch │ │ └── steghide-gcc6.patch │ ├── stfl/ │ │ ├── 001-makefile.patch │ │ └── build.sh │ ├── stow/ │ │ └── build.sh │ ├── strace/ │ │ ├── build.sh │ │ ├── ipc_msgctl.c.patch │ │ ├── ipc_shmctl.c.patch │ │ └── strace.c.patch │ ├── stunnel/ │ │ └── build.sh │ ├── subversion/ │ │ ├── build.sh │ │ ├── configure.patch │ │ └── no_setlocale.patch │ ├── swi-prolog/ │ │ └── build.sh │ ├── swig/ │ │ └── build.sh │ ├── syncthing/ │ │ └── build.sh │ ├── taglib/ │ │ └── build.sh │ ├── tar/ │ │ ├── build.sh │ │ ├── gnu-stdio-impl.h.patch │ │ ├── gnu-vasnprintf.c.patch │ │ ├── src-system.c.patch │ │ └── tmpdir-path.patch │ ├── tasksh/ │ │ └── build.sh │ ├── taskwarrior/ │ │ ├── CMakeLists.txt.patch │ │ └── build.sh │ ├── tcl/ │ │ └── build.sh │ ├── tcsh/ │ │ ├── Makefile.in.patch │ │ ├── build.sh │ │ └── sh.h.patch │ ├── teckit/ │ │ └── build.sh │ ├── tergent/ │ │ └── build.sh │ ├── termimage/ │ │ └── build.sh │ ├── termux-am/ │ │ └── build.sh │ ├── termux-api/ │ │ └── build.sh │ ├── termux-apt-repo/ │ │ └── build.sh │ ├── termux-auth/ │ │ └── build.sh │ ├── termux-create-package/ │ │ └── build.sh │ ├── termux-elf-cleaner/ │ │ └── build.sh │ ├── termux-exec/ │ │ └── build.sh │ ├── termux-keyring/ │ │ ├── build.sh │ │ ├── fornwall.gpg │ │ ├── grimler.gpg │ │ ├── termux-autobuilds.gpg │ │ └── xeffyr.gpg │ ├── termux-licenses/ │ │ ├── LICENSES/ │ │ │ ├── AGPL-V3.txt │ │ │ ├── Apache-2.0.txt │ │ │ ├── Artistic-License-2.0.txt │ │ │ ├── BSD 2-Clause.txt │ │ │ ├── BSD 3-Clause.txt │ │ │ ├── BSD.txt │ │ │ ├── BSL-1.0.txt │ │ │ ├── CC0-1.0.txt │ │ │ ├── CeCILL-2.1.txt │ │ │ ├── EPL-1.0.txt │ │ │ ├── EPL-2.0.txt │ │ │ ├── GPL-2.0.txt │ │ │ ├── GPL-3.0.txt │ │ │ ├── ISC.txt │ │ │ ├── ImageMagick.txt │ │ │ ├── LGPL-2.0.txt │ │ │ ├── LGPL-2.1.txt │ │ │ ├── LGPL-3.0.txt │ │ │ ├── Libpng.txt │ │ │ ├── MIT.txt │ │ │ ├── MPL-2.0.txt │ │ │ ├── NCSA.txt │ │ │ ├── Nethack.txt │ │ │ ├── OpenLDAP.txt │ │ │ ├── PHP-3.0.txt │ │ │ ├── Public Domain.txt │ │ │ ├── PythonPL.txt │ │ │ ├── Unlicense.txt │ │ │ ├── VIM License.txt │ │ │ ├── WTFPL.txt │ │ │ ├── ZLIB.txt │ │ │ └── wxWindows.txt │ │ └── build.sh │ ├── termux-services/ │ │ └── build.sh │ ├── termux-tools/ │ │ ├── build.sh │ │ ├── chsh │ │ ├── dalvikvm │ │ ├── login │ │ ├── motd │ │ ├── pkg │ │ ├── su │ │ ├── termux-fix-shebang │ │ ├── termux-info │ │ ├── termux-open │ │ ├── termux-open-url │ │ ├── termux-reload-settings │ │ ├── termux-setup-storage │ │ ├── termux-wake-lock │ │ └── termux-wake-unlock │ ├── teseq/ │ │ └── build.sh │ ├── tesseract/ │ │ └── build.sh │ ├── texinfo/ │ │ ├── build.sh │ │ └── texindex-texindex.in.patch │ ├── texlive/ │ │ ├── build.sh │ │ ├── check_for_conflicts.py │ │ ├── fmtutil.cnf.patch │ │ ├── parse_tlpdb.py │ │ ├── texlive-bibtexextra.subpackage.sh │ │ ├── texlive-binextra.subpackage.sh │ │ ├── texlive-context.subpackage.sh │ │ ├── texlive-fontsextra.subpackage.sh │ │ ├── texlive-fontsrecommended.subpackage.sh │ │ ├── texlive-fontutils.subpackage.sh │ │ ├── texlive-formatsextra.subpackage.sh │ │ ├── texlive-full.subpackage.sh │ │ ├── texlive-games.subpackage.sh │ │ ├── texlive-humanities.subpackage.sh │ │ ├── texlive-langarabic.subpackage.sh │ │ ├── texlive-langchinese.subpackage.sh │ │ ├── texlive-langcjk.subpackage.sh │ │ ├── texlive-langcyrillic.subpackage.sh │ │ ├── texlive-langczechslovak.subpackage.sh │ │ ├── texlive-langenglish.subpackage.sh │ │ ├── texlive-langeuropean.subpackage.sh │ │ ├── texlive-langfrench.subpackage.sh │ │ ├── texlive-langgerman.subpackage.sh │ │ ├── texlive-langgreek.subpackage.sh │ │ ├── texlive-langitalian.subpackage.sh │ │ ├── texlive-langjapanese.subpackage.sh │ │ ├── texlive-langkorean.subpackage.sh │ │ ├── texlive-langother.subpackage.sh │ │ ├── texlive-langpolish.subpackage.sh │ │ ├── texlive-langportuguese.subpackage.sh │ │ ├── texlive-langspanish.subpackage.sh │ │ ├── texlive-latexextra.subpackage.sh │ │ ├── texlive-latexrecommended.subpackage.sh │ │ ├── texlive-luatex.subpackage.sh │ │ ├── texlive-mathscience.subpackage.sh │ │ ├── texlive-metapost.subpackage.sh │ │ ├── texlive-music.subpackage.sh │ │ ├── texlive-pictures.subpackage.sh │ │ ├── texlive-plaingeneric.subpackage.sh │ │ ├── texlive-pstricks.subpackage.sh │ │ ├── texlive-publishers.subpackage.sh │ │ ├── texlive-xetex.subpackage.sh │ │ ├── texmf.cnf.patch │ │ └── web2c-texmf.cnf │ ├── texlive-bin/ │ │ ├── build.sh │ │ ├── pdftoepdf-poppler0.76.0.cc │ │ ├── pdftosrc-poppler0.76.0.cc │ │ ├── texk-kpathsea-texmf.cnf.patch │ │ ├── texk-web2c-luatexdir-luaffi-ffi.h.patch │ │ ├── xetex-poppler-fixes.patch │ │ └── zziplib_disable_have_dirent.patch │ ├── texlive-tlmgr/ │ │ ├── TLConfig.pm.patch │ │ ├── TLUtils.pm.patch │ │ ├── build.sh │ │ └── texlive.tlpdb │ ├── tidy/ │ │ ├── build.sh │ │ └── disable-target-manpages.patch │ ├── tig/ │ │ └── build.sh │ ├── timewarrior/ │ │ ├── build.sh │ │ ├── cmake-CXXSniffer.cmake.patch │ │ └── src-CMakeLists.txt.patch │ ├── tintin++/ │ │ ├── build.sh │ │ └── src-system.c.patch │ ├── tinyproxy/ │ │ ├── build.sh │ │ ├── child.c.patch │ │ ├── configure.patch │ │ └── heap.c.patch │ ├── tinyscheme/ │ │ ├── build.sh │ │ ├── makefile.patch │ │ └── schema.c.patch │ ├── tk/ │ │ ├── build.sh │ │ └── no-hardlinks.patch │ ├── tmate/ │ │ ├── build.sh │ │ └── tmux.h.patch │ ├── tmux/ │ │ ├── build.sh │ │ ├── compat-imsg.c.patch │ │ ├── compat-setproctitle.c.patch │ │ ├── configure.patch │ │ ├── socket-path.patch │ │ └── tmux.conf │ ├── toilet/ │ │ └── build.sh │ ├── tokei/ │ │ └── build.sh │ ├── tor/ │ │ ├── build.sh │ │ ├── src-app-main-main.c.patch │ │ └── src-feature-relay-dns.c.patch │ ├── torsocks/ │ │ ├── Makefile.am.patch │ │ ├── build.sh │ │ ├── configure.ac.patch │ │ ├── src-common-compat.h.patch │ │ ├── src-common-config-file.h.patch │ │ ├── src-lib-gethostbyname.c.patch │ │ └── src-lib-syscall.c.patch │ ├── toxic/ │ │ ├── Makefile.patch │ │ ├── build.sh │ │ └── cfg-checks-audio.mk.patch │ ├── tracepath/ │ │ ├── build.sh │ │ └── tracepath.c.patch │ ├── translate-shell/ │ │ └── build.sh │ ├── transmission/ │ │ ├── arpa_inet_h.patch │ │ ├── build.sh │ │ ├── libtransmission-fdlimit.c.patch │ │ ├── miniwget_min.patch │ │ ├── no_locale.patch │ │ └── no_quota.patch │ ├── tree/ │ │ ├── build.sh │ │ └── tree.c.patch │ ├── tsocks/ │ │ ├── 00_patch_from_1.8beta5-9.2.patch │ │ ├── 01_symbolexport.patch │ │ ├── 02_hyphenfix.patch │ │ ├── 03_fixloop.patch │ │ ├── 04_getpeername.patch │ │ ├── 05_config_in_home.patch │ │ ├── 06_fallback.patch │ │ ├── 07_tsocks-1.8_beta5-hostname-config-fix.patch │ │ ├── 08_manpages-fixes.patch │ │ ├── 10_hardening.patch │ │ ├── build.sh │ │ ├── configure.patch │ │ ├── no-static-linking.patch │ │ ├── tsocks.c.patch │ │ └── tsocks.patch │ ├── tsu/ │ │ └── build.sh │ ├── tty-clock/ │ │ ├── Makefile.patch │ │ └── build.sh │ ├── ttyd/ │ │ ├── CMakeLists.txt.patch │ │ ├── build.sh │ │ └── src-utils.c.patch │ ├── ttyrec/ │ │ ├── Makefile.patch │ │ ├── build.sh │ │ └── ttyrec.c.patch │ ├── tweego/ │ │ └── build.sh │ ├── uftrace/ │ │ ├── arm-clang-mcount-hook.patch │ │ ├── build.sh │ │ ├── cmds-live.c.patch │ │ ├── cmds-record.c.patch │ │ ├── disable-librt.patch │ │ ├── kernel.c.patch │ │ ├── libmcount-record.c.patch │ │ ├── libmcount-wrap.c.patch │ │ └── pr_warn.patch │ ├── unicorn/ │ │ ├── build.sh │ │ └── samples-Makefile.patch │ ├── unifdef/ │ │ └── build.sh │ ├── units/ │ │ ├── build.sh │ │ └── units.h.patch.debug │ ├── unrar/ │ │ ├── build.sh │ │ ├── makefile.patch │ │ └── os.hpp.patch │ ├── unstable-repo/ │ │ └── build.sh │ ├── unzip/ │ │ ├── bugfix-crc32.patch │ │ ├── bugfix-csiz-underflow.patch │ │ ├── bugfix-cve20149636.patch │ │ ├── bugfix-empty-input.patch │ │ ├── bugfix-getZip64Data.patch │ │ ├── bugfix-nextbyte-overflow.patch │ │ ├── bugfix-overflow-fsize.patch │ │ ├── bugfix-test_compr_eb.patch │ │ ├── build.sh │ │ ├── makefile.patch │ │ ├── unix-configure.patch │ │ └── unzip.c.patch │ ├── utf8cpp/ │ │ └── build.sh │ ├── utf8proc/ │ │ ├── Makefile.patch │ │ └── build.sh │ ├── utfdecode/ │ │ └── build.sh │ ├── util-linux/ │ │ ├── build.sh │ │ ├── configure.patch │ │ ├── fix-paths.patch │ │ ├── lib-ismounted.c.patch │ │ ├── sys-utils-ipcutils.c.patch │ │ └── sys-utils-ipcutils.h.patch │ ├── valac/ │ │ ├── build.sh │ │ └── valadoc.subpackage.sh │ ├── valgrind/ │ │ ├── aarch64-setjmp.S │ │ ├── build.sh │ │ ├── coregrind-vgdb.c.patch │ │ ├── coregrindmake.am.patch │ │ ├── dont-redefine-elf32_nhdr.patch │ │ ├── libcsetjmp.h.patch │ │ ├── memcheckmake.am.patch │ │ └── vg_preloaded.c.patch │ ├── vcsh/ │ │ └── build.sh │ ├── vegeta/ │ │ └── build.sh │ ├── vifm/ │ │ ├── build.sh │ │ ├── cmd_completion.c.patch │ │ ├── configure.ac.patch │ │ ├── file_info.c.patch │ │ ├── src-Makefile.am.patch │ │ ├── src-registers.c.patch │ │ ├── src-utils-path.c.patch │ │ └── src-utils-shmem_nix.c.patch │ ├── vim/ │ │ ├── build.sh │ │ ├── option.c.patch │ │ ├── os_unix.h.patch │ │ ├── src-auto-configure.patch │ │ ├── src-if_cscope.c.patch │ │ ├── vim-runtime.subpackage.sh │ │ ├── vimrc │ │ ├── vimtutor.patch │ │ └── vterm_internal.h.patch │ ├── vim-python/ │ │ ├── build.sh │ │ ├── option.c.patch │ │ ├── os_unix.h.patch │ │ ├── src-auto-configure.patch │ │ ├── src-if_cscope.c.patch │ │ ├── vimrc │ │ ├── vimtutor.patch │ │ └── vterm_internal.h.patch │ ├── virustotal-cli/ │ │ └── build.sh │ ├── vis/ │ │ ├── build.sh │ │ └── configure.patch │ ├── vorbis-tools/ │ │ └── build.sh │ ├── vttest/ │ │ └── build.sh │ ├── vtutils/ │ │ └── build.sh │ ├── w3m/ │ │ ├── Makefile.in.patch │ │ ├── Str.h.patch │ │ ├── build.sh │ │ └── gc.h │ ├── wcalc/ │ │ └── build.sh │ ├── weechat/ │ │ ├── build.sh │ │ ├── cmake-FindPerl.cmake.patch │ │ ├── no-setuid.patch │ │ ├── src-core-wee-config.c.patch │ │ ├── src-core-weechat.c.patch │ │ ├── src-gui-curses-CMakeLists.txt.patch │ │ ├── weechat-lua-plugin.subpackage.sh │ │ ├── weechat-perl-plugin.subpackage.sh │ │ ├── weechat-python-plugin.subpackage.sh │ │ ├── weechat-python38.patch │ │ └── weechat-ruby-plugin.subpackage.sh │ ├── wget/ │ │ ├── build.sh │ │ ├── lib-stdio-impl.h.patch │ │ └── tmpdir-path.patch │ ├── wireguard-tools/ │ │ ├── android.c.patch │ │ └── build.sh │ ├── wol/ │ │ ├── build.sh │ │ ├── lib-getline.h.patch │ │ └── src-magic.c.patch │ ├── wordgrinder/ │ │ ├── Makefile.patch │ │ ├── build.lua.patch │ │ └── build.sh │ ├── wren/ │ │ ├── build.sh │ │ ├── libuv-sys-include.patch │ │ └── util-wren.mk.patch │ ├── wuzz/ │ │ └── build.sh │ ├── x11-repo/ │ │ └── build.sh │ ├── xcb-proto/ │ │ └── build.sh │ ├── xmlsec/ │ │ └── build.sh │ ├── xmlstarlet/ │ │ └── build.sh │ ├── xorg-util-macros/ │ │ ├── build.sh │ │ └── util-macros-1.19.1_xorg-macros.m4.in.patch │ ├── xorgproto/ │ │ ├── build.sh │ │ ├── include-x11-Xos_r.h.patch │ │ ├── include-x11-Xpoll.h.in.patch │ │ └── meson.build.patch │ ├── xorriso/ │ │ ├── build.sh │ │ └── pthread.patch │ ├── xtrans/ │ │ ├── build.sh │ │ ├── xtrans-1.3.5_Xtransutil.c.patch │ │ ├── xtrans-1.4.0_Xtranslcl.c.patch │ │ └── xtrans-1.4.0_Xtranssock.c.patch │ ├── xvidcore/ │ │ └── build.sh │ ├── yadm/ │ │ └── build.sh │ ├── yajl/ │ │ └── build.sh │ ├── yarn/ │ │ └── build.sh │ ├── yasm/ │ │ └── build.sh │ ├── zbar/ │ │ ├── build.sh │ │ ├── configure.ac.patch │ │ └── zbarimg.c.patch │ ├── zile/ │ │ ├── build.sh │ │ ├── configure-pthreads-no-weak.patch │ │ ├── lib-vasnprintf.c.patch │ │ ├── spawn.patch │ │ └── zile.1 │ ├── zip/ │ │ ├── build.sh │ │ ├── makefile.patch │ │ └── unix-configure.patch │ ├── zlib/ │ │ └── build.sh │ ├── zsh/ │ │ ├── Src-exec.c.patch │ │ ├── build.sh │ │ ├── compaudit.patch │ │ ├── configure.patch │ │ ├── etc-zshrc │ │ ├── src-init.c.patch │ │ ├── src-module.c.patch │ │ └── tmp_path.patch │ ├── zstd/ │ │ ├── build.sh │ │ └── no-timespec_get.patch │ └── zsync/ │ └── build.sh ├── print.txt ├── sample/ │ ├── build.sh │ └── sample-sub.subpackage.sh └── scripts/ ├── Dockerfile ├── Vagrantfile ├── apt-compare-versions ├── build/ │ ├── ci/ │ │ └── cirrus-ci_dispatcher.sh │ ├── configure/ │ │ ├── termux_step_configure.sh │ │ ├── termux_step_configure_autotools.sh │ │ ├── termux_step_configure_cmake.sh │ │ └── termux_step_configure_meson.sh │ ├── setup/ │ │ ├── termux_setup_cmake.sh │ │ ├── termux_setup_golang.sh │ │ ├── termux_setup_meson.sh │ │ ├── termux_setup_ninja.sh │ │ ├── termux_setup_protobuf.sh │ │ └── termux_setup_rust.sh │ ├── termux_create_subpackages.sh │ ├── termux_download.sh │ ├── termux_download_deb.sh │ ├── termux_error_exit.sh │ ├── termux_extract_dep_info.sh │ ├── termux_get_repo_files.sh │ ├── termux_step_create_datatar.sh │ ├── termux_step_create_debfile.sh │ ├── termux_step_extract_into_massagedir.sh │ ├── termux_step_extract_package.sh │ ├── termux_step_finish_build.sh │ ├── termux_step_handle_buildarch.sh │ ├── termux_step_handle_hostbuild.sh │ ├── termux_step_host_build.sh │ ├── termux_step_install_license.sh │ ├── termux_step_make.sh │ ├── termux_step_make_install.sh │ ├── termux_step_massage.sh │ ├── termux_step_patch_package.sh │ ├── termux_step_replace_guess_scripts.sh │ ├── termux_step_setup_toolchain.sh │ ├── termux_step_setup_variables.sh │ └── termux_step_start_build.sh ├── buildorder.py ├── check-built-packages.py ├── check-pie.sh ├── check-versions.sh ├── config.guess ├── config.sub ├── get_hash_from_file.py ├── ldd ├── lint-packages.sh ├── list-packages.sh ├── list-versions.sh ├── package_uploader.sh ├── print.txt ├── properties.sh ├── run-docker.ps1 ├── run-docker.sh ├── setup-android-sdk.sh ├── setup-archlinux.sh ├── setup-termux.sh ├── setup-ubuntu.sh ├── test-runner.sh └── update-docker.sh