├── .gitattributes ├── .gitignore ├── LICENSE ├── README ├── dir ├── etc │ ├── doas.conf │ ├── fonts │ │ └── fonts.conf │ ├── group │ ├── inputrc │ ├── ld-musl-x86_64.path │ ├── ntp.conf │ ├── os-release │ ├── passwd │ ├── profile │ ├── protocols │ ├── pulse │ │ ├── client.conf │ │ ├── default.pa │ │ └── system.pa │ ├── services │ ├── shells │ ├── ssh │ │ └── sshd_config │ ├── udev │ │ └── rules.d │ │ │ ├── 50-xkeebshit.rules │ │ │ └── 60-ioschedulers.rules │ └── vimrc └── usr │ └── share │ └── yash │ └── initialization │ └── default ├── init ├── files │ ├── acpi.script │ ├── ainitmgr │ ├── events │ ├── funcs │ ├── init │ ├── iptables.script │ ├── services │ ├── setapathy │ ├── setefi │ ├── udhcpc.script │ └── udhcpd.conf ├── meson.build └── src │ ├── LICENSE.ubase │ ├── arg.h │ ├── ctrlaltdel.c │ ├── getty.c │ ├── halt.c │ ├── killall5.c │ ├── libutil │ ├── agetcwd.c │ ├── agetline.c │ ├── apathmax.c │ ├── concat.c │ ├── ealloc.c │ ├── eprintf.c │ ├── estrtol.c │ ├── estrtoul.c │ ├── explicit_bzero.c │ ├── passwd.c │ ├── proc.c │ ├── putword.c │ ├── recurse.c │ ├── strlcat.c │ ├── strlcpy.c │ ├── strtonum.c │ └── tty.c │ ├── login.c │ ├── passwd.h │ ├── proc.h │ ├── queue.h │ ├── reboot.h │ ├── respawn.c │ ├── text.h │ └── util.h ├── landfill ├── config │ ├── dmenu_conf.h.in │ ├── dwm_conf.h.in │ └── st_conf.h.in ├── dmenu │ ├── arg.h │ ├── dmenu.c │ ├── dmenu_path │ ├── dmenu_run │ ├── drw.c │ ├── drw.h │ ├── stest.c │ ├── util.c │ └── util.h ├── dwm │ ├── drw.c │ ├── drw.h │ ├── dwm.c │ ├── util.c │ └── util.h ├── meson.build ├── meson_options.txt └── st │ ├── arg.h │ ├── st.c │ ├── st.h │ ├── win.h │ └── x.c ├── misc ├── acl-attr-removal-details.txt ├── alsa-to-pulse.txt ├── bad-memory.txt ├── baked-in-build-env-rebuild.txt ├── cryptsetup.txt ├── detect-sigill.txt ├── expat-fuckery.txt ├── ffi-things.txt ├── ffmpeg-4-to-5-rebuilds.txt ├── fftw-removal-notes.txt ├── gcc-binutils-to-llvm-switch.txt ├── gettext-removal-rebuild-notes.txt ├── gnutls-removal-details.txt ├── icu-removal-notes.txt ├── interesting.png ├── interesting2.png ├── interesting3.png ├── interesting4.png ├── libressl-tlsv1.3.txt ├── libressl-update-notes.txt ├── libvdpau-removal-notes.txt ├── libxcb-libraries.txt ├── llvm-compat.txt ├── luks-with-lvm.txt ├── media-libs-cleanup-details.txt ├── mesa-libs.txt ├── nfs-from-ground-up.txt ├── openssl-1.1.1-to-3.0.txt ├── rustc-1.46.0-target-cpu-list.txt ├── rustc-1.46.0-target-feature-list.txt ├── rustc-native-ish-flags-for-core2duo-t8100.txt ├── save-static-libs.txt ├── shall-i-openssl.txt ├── t61-acpi-events.txt ├── uid-gid-rearrangement-details.txt ├── util-linux-libs.txt ├── x230-acpi-events.txt ├── x230t-acpi-events.txt └── xorg-apps-libs-mental-illness.txt ├── pkg ├── packages-t61.txt ├── packages-x230.txt ├── recipes │ ├── acpid │ │ ├── recipe │ │ └── ver │ ├── android-tools │ │ ├── patches │ │ │ └── 0001-protobuf-musl-fix.patch │ │ ├── recipe │ │ └── ver │ ├── atk │ │ ├── recipe │ │ └── ver │ ├── audioshit │ │ ├── patches │ │ │ └── 0001-remove-neon-from-simd_variants.patch │ │ ├── recipe │ │ └── ver │ ├── autoconf │ │ ├── recipe │ │ └── ver │ ├── automake │ │ ├── recipe │ │ └── ver │ ├── bc │ │ ├── recipe │ │ └── ver │ ├── bind │ │ ├── files │ │ │ ├── 127.zone │ │ │ ├── localhost.zone │ │ │ ├── named.conf │ │ │ └── rndc.conf │ │ ├── recipe │ │ └── ver │ ├── bison │ │ ├── recipe │ │ └── ver │ ├── boost │ │ ├── recipe │ │ └── ver │ ├── browserlibs │ │ ├── patches │ │ │ ├── 0001-nspr-prtime.patch │ │ │ ├── 0002-nspr-link-flags.patch │ │ │ ├── 0003-nspr-nspr_config.patch │ │ │ └── 0004-nspr-musl-fixes.patch │ │ ├── recipe │ │ └── ver │ ├── busybox │ │ ├── files │ │ │ ├── bbsuid.c │ │ │ ├── config │ │ │ └── config-initramfs │ │ ├── patches │ │ │ ├── 0001-test-libbb-lineedit-ash-fix-clang-UB.patch │ │ │ ├── 0002-install-fix-chown.patch │ │ │ ├── 0003-libbb-print-unicode.patch │ │ │ ├── 0004-unzip-exit-with-0-after-printing-usage.patch │ │ │ └── 0005-ping-use-SOCK_DGRAM-to-avoid-root.patch │ │ ├── recipe │ │ └── ver │ ├── bzip2 │ │ ├── recipe │ │ └── ver │ ├── chromium │ │ ├── files │ │ │ ├── chromium │ │ │ └── gn-args │ │ ├── patches │ │ │ ├── 0001-musl-import-version.patch │ │ │ ├── 0002-musl-no-execinfo.patch │ │ │ ├── 0003-musl-no-mallinfo.patch │ │ │ ├── 0004-musl-no-res-ninit-nclose.patch │ │ │ ├── 0005-musl-partition-atfork.patch │ │ │ ├── 0006-musl-sandbox.patch │ │ │ ├── 0007-musl-scoped-file-no-close.patch │ │ │ ├── 0008-musl-temp-failure-retry.patch │ │ │ ├── 0009-musl-tid-caching.patch │ │ │ ├── 0010-musl-v8-monotonic-pthread-cont_timedwait.patch │ │ │ ├── 0011-fc-cache-version.patch │ │ │ ├── 0012-llvm-nuke-atomic.patch │ │ │ └── 0013-optional-atk-dbus.patch │ │ ├── recipe │ │ └── ver │ ├── clzip │ │ ├── recipe │ │ └── ver │ ├── cmake │ │ ├── patches │ │ │ └── 0001-no-execinfo.patch │ │ ├── recipe │ │ └── ver │ ├── cryptshit │ │ ├── patches │ │ │ ├── 0001-libaio-makefile-fixes.patch │ │ │ ├── 0002-lvm2-fix-stdio-usage.patch │ │ │ ├── 0003-lvm2-fix-includes.patch │ │ │ ├── 0004-lvm2-set-cache-backup-archive-paths-to-run-lvm.patch │ │ │ └── 0005-cryptsetup-flush-stdout.patch │ │ ├── recipe │ │ └── ver │ ├── curl │ │ ├── recipe │ │ └── ver │ ├── diffutils │ │ ├── recipe │ │ └── ver │ ├── dragon │ │ ├── recipe │ │ └── ver │ ├── e2fsprogs │ │ ├── recipe │ │ └── ver │ ├── efibootmgr │ │ ├── patches │ │ │ ├── 0001-efivar-musl-fixes.patch │ │ │ ├── 0002-efivar-lld-fixes.patch │ │ │ ├── 0003-efivar-do-not-build-native.patch │ │ │ └── 0004-efivar-disable-docs.patch │ │ ├── recipe │ │ └── ver │ ├── eudev │ │ ├── recipe │ │ └── ver │ ├── expat │ │ ├── recipe │ │ └── ver │ ├── fbcat │ │ ├── recipe │ │ └── ver │ ├── fdupes │ │ ├── recipe │ │ └── ver │ ├── feh │ │ ├── recipe │ │ └── ver │ ├── ffmpeg │ │ ├── patches │ │ │ ├── 0001-add-av_stream_get_first_dts-for-chromium.patch │ │ │ └── 0002-bump-libswrescale-soname.patch │ │ ├── recipe │ │ └── ver │ ├── file │ │ ├── recipe │ │ └── ver │ ├── findutils │ │ ├── recipe │ │ └── ver │ ├── firefox │ │ ├── files │ │ │ ├── default-bookmarks.html │ │ │ ├── libmozwayland.c │ │ │ ├── mozconfig │ │ │ ├── policies.json │ │ │ ├── search-config.json │ │ │ └── vendor.js │ │ ├── patches │ │ │ ├── 0001-musl-fixes.patch │ │ │ ├── 0002-libcxx-fixes.patch │ │ │ ├── 0003-do-not-wrap-features.h.patch │ │ │ ├── 0004-use-thinlto-for-rust.patch │ │ │ ├── 0005-allow-RUST_TARGET.patch │ │ │ ├── 0006-allow-system-harfbuzz.patch │ │ │ ├── 0007-allow-searchengines-in-mainline-builds.patch │ │ │ ├── 0008-nuke-no-integrated-as.patch │ │ │ ├── 0009-nuke-discoverystream-and-topsites.patch │ │ │ ├── 0010-nuke-pocket.patch │ │ │ ├── 0011-nuke-addons.patch │ │ │ ├── 0012-nuke-urlbarprovider.patch │ │ │ ├── 0013-nuke-compile-time-data-reporting.patch │ │ │ ├── 0014-nuke-handlers.patch │ │ │ └── 0015-nuke-dbus-and-atk.patch │ │ ├── recipe │ │ ├── recipe-prereq │ │ └── ver │ ├── flac │ │ ├── recipe │ │ └── ver │ ├── flex │ │ ├── recipe │ │ └── ver │ ├── freeglut │ │ ├── recipe │ │ └── ver │ ├── fribidi │ │ ├── recipe │ │ └── ver │ ├── gamelibs │ │ ├── recipe │ │ └── ver │ ├── gdk-pixbuf │ │ ├── recipe │ │ └── ver │ ├── giflib │ │ ├── patches │ │ │ └── 0001-restore-deprecated-functions.patch │ │ ├── recipe │ │ └── ver │ ├── git │ │ ├── patches │ │ │ └── 0001-tinify-git.patch │ │ ├── recipe │ │ └── ver │ ├── glu │ │ ├── recipe │ │ └── ver │ ├── gnupg-and-friends │ │ ├── patches │ │ │ ├── 0001-gnupg-Include-sys-select.h-for-FD_SETSIZE.patch │ │ │ └── 0002-gnupg-fix-i18n.patch │ │ ├── recipe │ │ └── ver │ ├── go │ │ ├── recipe │ │ ├── recipe-bootstrap │ │ └── ver │ ├── gperf │ │ ├── recipe │ │ └── ver │ ├── gpm │ │ ├── patches │ │ │ ├── 0001-error-format.patch │ │ │ ├── 0002-fix-highly-illegal-return-of-in-as-char.patch │ │ │ ├── 0003-fix-signedness-issue.patch │ │ │ ├── 0004-musl-fixes.patch │ │ │ ├── 0005-constify-format-strings.patch │ │ │ ├── 0006-gpm-include-sysmacros.patch │ │ │ └── 0007-gcc-10.patch │ │ ├── recipe │ │ └── ver │ ├── grep │ │ ├── recipe │ │ └── ver │ ├── gtk3 │ │ ├── recipe │ │ └── ver │ ├── htop │ │ ├── recipe │ │ └── ver │ ├── imagemagick │ │ ├── recipe │ │ └── ver │ ├── imlib2 │ │ ├── recipe │ │ └── ver │ ├── initramfs │ │ ├── files │ │ │ └── init │ │ ├── recipe │ │ └── ver │ ├── inputery │ │ ├── recipe │ │ └── ver │ ├── intel-vaapi-driver │ │ ├── recipe │ │ └── ver │ ├── ioquake3 │ │ ├── patches │ │ │ └── 0001-lc++-for-openal.patch │ │ ├── recipe │ │ └── ver │ ├── iptables │ │ ├── patches │ │ │ ├── 0001-fix-xtables.patch │ │ │ └── 0002-fix-u_int16_t.patch │ │ ├── recipe │ │ └── ver │ ├── irssi │ │ ├── recipe │ │ └── ver │ ├── jq │ │ ├── recipe │ │ └── ver │ ├── lame │ │ ├── recipe │ │ └── ver │ ├── landfill │ │ ├── recipe │ │ └── ver │ ├── lcms2 │ │ ├── recipe │ │ └── ver │ ├── less │ │ ├── recipe │ │ └── ver │ ├── libass │ │ ├── recipe │ │ └── ver │ ├── libdrm │ │ ├── recipe │ │ └── ver │ ├── libelf │ │ ├── patches │ │ │ └── 0001-musl-fix.patch │ │ ├── recipe │ │ └── ver │ ├── libepoxy │ │ ├── recipe │ │ └── ver │ ├── libevent │ │ ├── recipe │ │ └── ver │ ├── libffi │ │ ├── recipe │ │ └── ver │ ├── libid3tag │ │ ├── files │ │ │ └── id3tag.pc │ │ ├── patches │ │ │ └── 0001-CVE-2008-2109.patch │ │ ├── recipe │ │ └── ver │ ├── libjpeg-turbo │ │ ├── recipe │ │ └── ver │ ├── libnl3 │ │ ├── patches │ │ │ └── 0001-musl-fixes.patch │ │ ├── recipe │ │ └── ver │ ├── libogg │ │ ├── recipe │ │ └── ver │ ├── libssh2 │ │ ├── patches │ │ │ └── 0001-CVE-2019-17498.patch │ │ ├── recipe │ │ └── ver │ ├── libtirpc │ │ ├── recipe │ │ └── ver │ ├── libtool │ │ ├── recipe │ │ └── ver │ ├── libusb │ │ ├── patches │ │ │ ├── 0001-f6d2cb56.patch │ │ │ └── 0002-f38f09da.patch │ │ ├── recipe │ │ └── ver │ ├── libva │ │ ├── recipe │ │ └── ver │ ├── libvorbis │ │ ├── recipe │ │ └── ver │ ├── libvpx │ │ ├── recipe │ │ └── ver │ ├── lilo │ │ ├── patches │ │ │ ├── 0001-bin86-x86_64.patch │ │ │ ├── 0002-lilo-novga.patch │ │ │ ├── 0003-lilo-remove-O_ACCMODE.patch │ │ │ ├── 0004-lilo-remove__GLIBC__.patch │ │ │ ├── 0005-lilo-fix-gcc-10.patch │ │ │ └── 0006-lilo-fix-compile-time-constant.patch │ │ ├── recipe │ │ └── ver │ ├── links │ │ ├── recipe │ │ └── ver │ ├── linux │ │ ├── files │ │ │ └── unified.config │ │ ├── patches │ │ │ ├── 0001-hda-disable-auto_mic-by-default.patch │ │ │ ├── 0002-build-with-O3.patch │ │ │ ├── 0003-initialize-ata-before-graphics.patch │ │ │ ├── 0004-le9.patch │ │ │ └── 0005-iwlwifi-enable-11n-11ac-disable-mimo-force-enable-si.patch │ │ ├── recipe-headers │ │ ├── recipe.sh │ │ └── ver │ ├── llvm │ │ ├── patches │ │ │ ├── 0001-llvm-musl-fixes.patch │ │ │ ├── 0002-llvm-set-stack-size-to-8M.patch │ │ │ ├── 0003-llvm-move-FeatureAES-back-to-FeaturesSandyBridge.patch │ │ │ ├── 0004-llvm-do-not-build-llvm-locstats.patch │ │ │ ├── 0005-llvm-do-not-enforce-CMAKE_BUILD_TYPE.patch │ │ │ ├── 0006-clang-disable-multiarch-layout.patch │ │ │ ├── 0007-clang-modify-error-triggers.patch │ │ │ ├── 0008-libcxx-musl-locale-fixes.patch │ │ │ ├── 0009-libcxx-disable-per-target-runtime-dir.patch │ │ │ ├── 0010-libcxxabi-disable-per-target-runtime-dir.patch │ │ │ └── 0011-libunwind-disable-per-target-runtime-dir.patch │ │ ├── recipe │ │ └── ver │ ├── lz4 │ │ ├── recipe │ │ └── ver │ ├── m4 │ │ ├── recipe │ │ └── ver │ ├── maim │ │ ├── recipe │ │ └── ver │ ├── make │ │ ├── recipe │ │ └── ver │ ├── mawk │ │ ├── recipe │ │ └── ver │ ├── mesa │ │ ├── recipe │ │ └── ver │ ├── meson │ │ ├── recipe │ │ └── ver │ ├── mimalloc │ │ ├── patches │ │ │ └── 0001-fix-mi_basename.patch │ │ ├── recipe │ │ └── ver │ ├── minetest │ │ ├── recipe │ │ └── ver │ ├── mpv │ │ ├── files │ │ │ └── lua.pc │ │ ├── recipe │ │ └── ver │ ├── mss-core │ │ ├── recipe │ │ └── ver │ ├── mss-ec │ │ ├── recipe │ │ └── ver │ ├── mss-fw │ │ ├── recipe │ │ └── ver │ ├── mtr │ │ ├── recipe │ │ └── ver │ ├── mupdf │ │ ├── patches │ │ │ ├── 0001-openssl-x11.patch │ │ │ └── 0002-lld-fixes.patch │ │ ├── recipe │ │ └── ver │ ├── musl │ │ ├── files │ │ │ ├── cdefs.h │ │ │ ├── getconf.c │ │ │ ├── getent.c │ │ │ ├── iconv.c │ │ │ ├── queue.h │ │ │ └── tree.h │ │ ├── patches │ │ │ ├── 0001-handle-aux-AT_BASE.patch │ │ │ └── 0002-bring-back-lfs64-aliases.patch │ │ ├── recipe │ │ └── ver │ ├── muzak │ │ ├── files │ │ │ └── mpd.conf │ │ ├── patches │ │ │ └── 0001-mpd-stacksize.patch │ │ ├── recipe │ │ └── ver │ ├── nasm │ │ ├── recipe │ │ └── ver │ ├── ncurses │ │ ├── patches │ │ │ ├── 0001-no-toolchain-artifacts-in-libs.patch │ │ │ └── 0002-no-toolchain-artifacts-in-pkgconfig.patch │ │ ├── recipe │ │ └── ver │ ├── nfqws │ │ ├── patches │ │ │ ├── 0001-libmnl-fix-includes.patch │ │ │ └── 0002-libnfnetlink-fix-includes.patch │ │ ├── recipe │ │ └── ver │ ├── nfs-utils │ │ ├── recipe │ │ └── ver │ ├── nginx │ │ ├── recipe │ │ └── ver │ ├── node.js │ │ ├── patches │ │ │ ├── 0001-remove-latomic.patch │ │ │ └── 0002-fix-libc++.patch │ │ ├── recipe │ │ └── ver │ ├── ookla-speedtest │ │ ├── recipe │ │ └── ver │ ├── opendoas │ │ ├── recipe │ │ └── ver │ ├── openjpeg │ │ ├── patches │ │ │ ├── 0001-fix-cmakelists.patch │ │ │ └── 0002-CVE-2021-29338.patch │ │ ├── recipe │ │ └── ver │ ├── openmw │ │ ├── patches │ │ │ ├── 0001-collada-dom-fix-libcxx16.patch │ │ │ ├── 0002-openscenegraph-cmake.patch │ │ │ ├── 0003-openscenegraph-docdir.patch │ │ │ ├── 0004-openscenegraph-musl-fixes.patch │ │ │ ├── 0005-openmw-fix-includes.patch │ │ │ ├── 0006-openmw-fix-ffmpeg.patch │ │ │ ├── 0007-openmw-fix-static-linking.patch │ │ │ ├── 0008-openmw-autism-paths-1.patch │ │ │ └── 0009-openmw-autism-paths-2.patch │ │ ├── recipe │ │ └── ver │ ├── openssh │ │ ├── recipe │ │ └── ver │ ├── openssl │ │ ├── recipe │ │ └── ver │ ├── openvpn │ │ ├── recipe │ │ └── ver │ ├── opus │ │ ├── recipe │ │ └── ver │ ├── pango │ │ ├── recipe │ │ └── ver │ ├── patch │ │ ├── recipe │ │ └── ver │ ├── patchelf │ │ ├── recipe │ │ └── ver │ ├── pavucontrol │ │ ├── patches │ │ │ └── 0001-link-against-lltdl.patch │ │ ├── recipe │ │ └── ver │ ├── pciutils │ │ ├── patches │ │ │ └── 0001-pread.patch │ │ ├── recipe │ │ └── ver │ ├── pcre2 │ │ ├── recipe │ │ └── ver │ ├── perl │ │ ├── recipe │ │ └── ver │ ├── picom │ │ ├── patches │ │ │ └── 0001-libev-add-pkgconfig-support.patch │ │ ├── recipe │ │ └── ver │ ├── pigz │ │ ├── recipe │ │ └── ver │ ├── pkgconf │ │ ├── recipe │ │ └── ver │ ├── profanity │ │ ├── recipe │ │ └── ver │ ├── pulsemixer │ │ ├── recipe │ │ └── ver │ ├── python │ │ ├── patches │ │ │ └── 0001-always-pip.patch │ │ ├── recipe │ │ └── ver │ ├── qemu │ │ ├── patches │ │ │ └── 0001-fix-datadir.patch │ │ ├── recipe │ │ └── ver │ ├── quakespasm-spiked │ │ ├── recipe │ │ └── ver │ ├── reX │ │ ├── patches │ │ │ └── 0001-reVC-fix-libcxx16.patch │ │ ├── recipe │ │ └── ver │ ├── readline │ │ ├── patches │ │ │ └── 0001-fix-ncurses-underlinking.patch │ │ ├── recipe │ │ └── ver │ ├── redshift │ │ ├── patches │ │ │ └── 0001-nuke-gettext.patch │ │ ├── recipe │ │ └── ver │ ├── rpcbind │ │ ├── patches │ │ │ └── 0001-rpcinfo-Fix-stack-buffer-overflow.patch │ │ ├── recipe │ │ └── ver │ ├── rsync │ │ ├── recipe │ │ └── ver │ ├── rust │ │ ├── files │ │ │ ├── config-bootstrap.toml │ │ │ └── config.toml │ │ ├── patches │ │ │ ├── 0001-use-lib-instead-of-libexec.patch │ │ │ ├── 0002-libunwind-adjustments.patch │ │ │ ├── 0003-use-system-libunwind.patch │ │ │ ├── 0004-use-c-to-compile-c-code-on-musl.patch │ │ │ ├── 0005-fix-curl-cert-error-with-cargo.patch │ │ │ └── 0006-add-x86_64-apathy-linux-musl-triplet.patch │ │ ├── recipe │ │ └── ver │ ├── samurai │ │ ├── recipe │ │ └── ver │ ├── sed │ │ ├── recipe │ │ └── ver │ ├── smartmontools │ │ ├── recipe │ │ └── ver │ ├── spoofshit │ │ ├── patches │ │ │ ├── 0001-libnet-fix-types.patch │ │ │ ├── 0002-dsniff-time.h.patch │ │ │ ├── 0003-dsniff-mailsnarf_corrupt.patch │ │ │ ├── 0004-dsniff-pcap_read_dump.patch │ │ │ ├── 0005-dsniff-multiple_intf.patch │ │ │ ├── 0006-dsniff-amd64_fix.patch │ │ │ ├── 0007-dsniff-urlsnarf_zeropad.patch │ │ │ ├── 0008-dsniff-libnet_1.1.patch │ │ │ ├── 0009-dsniff-openssl-0.9.8.patch │ │ │ ├── 0010-dsniff-sysconf_clocks.patch │ │ │ ├── 0011-dsniff-urlsnarf_escape.patch │ │ │ ├── 0012-dsniff-string_header.patch │ │ │ ├── 0013-dsniff-arpa_inet_header.patch │ │ │ ├── 0014-dsniff-pop_with_version.patch │ │ │ ├── 0015-dsniff-obsolete_time.patch │ │ │ ├── 0016-dsniff-checksum_libnids.patch │ │ │ ├── 0017-dsniff-TDS_decoder.patch │ │ │ ├── 0018-dsniff-checksum.patch │ │ │ ├── 0019-dsniff-sshcrypto.patch │ │ │ ├── 0020-dsniff-rewrite-and-modernize-POP-decoder.patch │ │ │ ├── 0021-dsniff-debian_dirs.patch │ │ │ ├── 0022-dsniff-msgsnarf_segfault.patch │ │ │ ├── 0023-dsniff-handlepp.patch │ │ │ ├── 0024-dsniff-urlsnarf_timestamp.patch │ │ │ ├── 0025-dsniff-Fix-OpenSSL1.1.0-Build.patch │ │ │ ├── 0026-dsniff-fix-spelling-errors.patch │ │ │ ├── 0027-dsniff-arpspoof-add-r-switch-to-poison-both-directions.patch │ │ │ ├── 0028-dsniff-arpspoof-allow-use-of-of-multiple-targets.patch │ │ │ ├── 0029-dsniff-arpspoof-allow-selection-of-source-hw-address.patch │ │ │ ├── 0030-dsniff-libnet_name2addr4.patch │ │ │ ├── 0031-dsniff-pntohl_shift.patch │ │ │ ├── 0032-dsniff-sysconf_clocks.patch │ │ │ ├── 0033-dsniff-rpc_segfault.patch │ │ │ ├── 0034-dsniff-sshcrypto_DES.patch │ │ │ ├── 0035-dsniff-fix-parallel-FTBFS.patch │ │ │ ├── 0036-dsniff-Add_CPPFLAGS.patch │ │ │ ├── 0037-dsniff-implicit_declarations.patch │ │ │ ├── 0038-dsniff-httppostfix.patch │ │ │ ├── 0039-dsniff-macof-size-calculation.patch │ │ │ └── 0040-dsniff-rpc.patch │ │ ├── recipe │ │ └── ver │ ├── sqlite │ │ ├── recipe │ │ └── ver │ ├── tar │ │ ├── recipe │ │ └── ver │ ├── thinkfan │ │ ├── patches │ │ │ └── 0001-fix-build-with-llvm-libc++.patch │ │ ├── recipe │ │ └── ver │ ├── tiff-webp │ │ ├── recipe │ │ └── ver │ ├── tmux │ │ ├── recipe │ │ └── ver │ ├── torshit │ │ ├── recipe │ │ └── ver │ ├── transmission │ │ ├── recipe │ │ └── ver │ ├── tzdb │ │ ├── recipe │ │ └── ver │ ├── unrar │ │ ├── patches │ │ │ └── 0001-makefile.patch │ │ ├── recipe │ │ └── ver │ ├── usbutils │ │ ├── files │ │ │ └── usb.ids │ │ ├── recipe │ │ └── ver │ ├── util-linux │ │ ├── recipe │ │ └── ver │ ├── v4l-utils │ │ ├── patches │ │ │ ├── 0001-argp-standalone-throw-in-funcdef.patch │ │ │ ├── 0002-argp-standalone-gnu89-inline.patch │ │ │ ├── 0003-v4l-utils-getsubopt.patch │ │ │ └── 0004-v4l-utils-types.patch │ │ ├── recipe │ │ └── ver │ ├── vifm │ │ ├── recipe │ │ └── ver │ ├── vim │ │ ├── recipe │ │ └── ver │ ├── wlanshit │ │ ├── patches │ │ │ ├── 0001-iw-lld13-fix.patch │ │ │ └── 0001-libpcap-fix-headers.patch │ │ ├── recipe │ │ └── ver │ ├── wpa-supplicant │ │ ├── files │ │ │ └── config │ │ ├── patches │ │ │ └── 0001-eloop.patch │ │ ├── recipe │ │ └── ver │ ├── x264 │ │ ├── patches │ │ │ └── 0001-no-bash.patch │ │ ├── recipe │ │ └── ver │ ├── x265 │ │ ├── recipe │ │ └── ver │ ├── xclip │ │ ├── recipe │ │ └── ver │ ├── xinit │ │ ├── patches │ │ │ └── 0001-serverauthfile-in-tmp.patch │ │ ├── recipe │ │ └── ver │ ├── xorg-apps │ │ ├── recipe │ │ └── ver │ ├── xorg-libs-part1 │ │ ├── recipe │ │ └── ver │ ├── xorg-libs-part2 │ │ ├── patches │ │ │ ├── 0001-libpng-apng.patch │ │ │ ├── 0002-freetype2-enable-table-validation-modules.patch │ │ │ ├── 0003-freetype2-enable-subpixel-rendering.patch │ │ │ ├── 0004-freetype2-enable-infinality-subpixel-hinting.patch │ │ │ ├── 0005-freetype2-enable-long-pcf-family-names.patch │ │ │ ├── 0006-freetype2-parse_modules_cfg.py-handle-gxvalid-and.patch │ │ │ ├── 0007-pixman-fix-clang-lto.patch │ │ │ └── 0008-cairo-47a21c6e.patch │ │ ├── recipe │ │ └── ver │ ├── xorg-libs-part3 │ │ ├── patches │ │ │ └── 0001-libXft-bgra.patch │ │ ├── recipe │ │ └── ver │ ├── xorg-server │ │ ├── patches │ │ │ └── 0001-static-libxcvt.patch │ │ ├── recipe │ │ └── ver │ ├── xtrlock │ │ ├── recipe │ │ └── ver │ ├── xz │ │ ├── recipe │ │ └── ver │ ├── yash │ │ ├── recipe │ │ └── ver │ ├── yt-dlp │ │ ├── recipe │ │ └── ver │ ├── zlib │ │ ├── recipe │ │ └── ver │ └── zstd │ │ ├── recipe │ │ └── ver └── trees │ ├── blt │ ├── acpid-2.0.32.txt │ ├── android-tools-31.0.2.txt │ ├── atk-2.38.0.txt │ ├── audioshit-20230417_002330.txt │ ├── autoconf-2.70.txt │ ├── automake-1.16.3.txt │ ├── bc-4.0.1.txt │ ├── bison-3.7.4.txt │ ├── busybox-1.36.0.txt │ ├── bzip2-1.0.8.txt │ ├── clzip-1.12.txt │ ├── cmake-3.26.0.txt │ ├── curl-8.0.1.txt │ ├── diffutils-3.7.txt │ ├── dragon-0a56eb2d.txt │ ├── e2fsprogs-1.46.4.txt │ ├── efibootmgr-18.txt │ ├── eudev-3.2.11.txt │ ├── expat-2.4.2.txt │ ├── fbcat-25062ab1.txt │ ├── fdupes-2.1.2.txt │ ├── feh-3.7.1.txt │ ├── ffmpeg-6.0.txt │ ├── file-5.40.txt │ ├── findutils-4.8.0.txt │ ├── flac-1.3.3.txt │ ├── flex-2.6.4.txt │ ├── freeglut-3.2.1.txt │ ├── fribidi-1.0.10.txt │ ├── gdk-pixbuf-2.42.8.txt │ ├── giflib-5.2.1.txt │ ├── git-2.40.1.txt │ ├── glu-9.0.1.txt │ ├── gnupg-and-friends-20210619_190532.txt │ ├── gperf-3.1.txt │ ├── gpm-1.20.7.txt │ ├── grep-3.10.txt │ ├── gtk3-3.24.34.txt │ ├── htop-3.0.2.txt │ ├── imagemagick-7.0.10.23.txt │ ├── imlib2-1.6.1.txt │ ├── inputery-20230430_043219.txt │ ├── intel-vaapi-driver-2.4.1.txt │ ├── iptables-1.8.8.txt │ ├── irssi-1.4.3.txt │ ├── jq-1.6.txt │ ├── lame-3.100.txt │ ├── landfill-20211010_143930.txt │ ├── lcms2-2.12.txt │ ├── less-563.txt │ ├── libass-0.15.0.txt │ ├── libdrm-2.4.111.txt │ ├── libelf-0.186.txt │ ├── libepoxy-1.5.8.txt │ ├── libevent-2.1.11.txt │ ├── libffi-3.3.0.txt │ ├── libid3tag-0.15.1b.txt │ ├── libjpeg-turbo-2.0.5.txt │ ├── libnl3-3.5.0.txt │ ├── libogg-1.3.5.txt │ ├── libssh2-1.9.0.txt │ ├── libtirpc-1.3.1.txt │ ├── libtool-2.4.6.txt │ ├── libusb-1.0.24.txt │ ├── libva-2.14.0.txt │ ├── libvdpau-1.5.txt │ ├── libvorbis-1.3.7.txt │ ├── libvpx-1.10.0.txt │ ├── lilo-24.2.txt │ ├── links-2.27.txt │ ├── linux-headers-6.3.1.txt │ ├── lz4-1.9.3.txt │ ├── m4-1.4.18.txt │ ├── maim-5.5.3.txt │ ├── make-4.4.1.txt │ ├── mawk-1.3.4-20200120.txt │ ├── mesa-23.1.0-rc4.txt │ ├── meson-1.0.0.txt │ ├── mpv-0.35.1.txt │ ├── mss-core-20211003_142015.txt │ ├── mss-ec-b8b60fef.txt │ ├── mss-fw-57783b9a.txt │ ├── mtr-0.95.txt │ ├── mupdf-1.16.1.txt │ ├── musl-1.2.4.txt │ ├── nasm-2.15.05.txt │ ├── ncurses-6.3.txt │ ├── nfqws-16648485.txt │ ├── nfs-utils-2.5.2.txt │ ├── ookla-speedtest-1.2.0.txt │ ├── opendoas-6.8.2.txt │ ├── openjpeg-2.4.0.txt │ ├── openssh-9.3p1.txt │ ├── openssl-3.1.0.txt │ ├── openvpn-2.5.8.txt │ ├── opus-1.3.1.txt │ ├── pango-1.50.13.txt │ ├── patch-2.7.6.txt │ ├── patchelf-0.17.2.txt │ ├── pavucontrol-ee77d86e.txt │ ├── pciutils-3.7.0.txt │ ├── pcre2-10.40.txt │ ├── perl-5.36.0.txt │ ├── picom-10.2.txt │ ├── pigz-2.6.txt │ ├── pkgconf-1.7.4.txt │ ├── profanity-0.11.1.txt │ ├── pulsemixer-1.5.1.txt │ ├── python-3.10.6.txt │ ├── readline-8.1.txt │ ├── redshift-490ba2aa.txt │ ├── rpcbind-1.2.5.txt │ ├── rsync-3.2.7.txt │ ├── samurai-1.2.txt │ ├── sed-4.9.txt │ ├── smartmontools-7.2.txt │ ├── sqlite-3.40.0.txt │ ├── tar-1.34.txt │ ├── thinkfan-1.3.1.txt │ ├── tiff-webp-20221030_141510.txt │ ├── tmux-3.2a.txt │ ├── transmission-4.0.3.txt │ ├── tzdb-2021a.txt │ ├── unrar-6.0.7.txt │ ├── usbutils-013.txt │ ├── util-linux-2.37.2.txt │ ├── v4l-utils-1.20.0.txt │ ├── vifm-0.11.txt │ ├── vim-9.0.1261.txt │ ├── wpa-supplicant-2.10.txt │ ├── x264-20191119-2245.txt │ ├── x265-3.5.txt │ ├── xclip-0.13.txt │ ├── xf86-video-amdgpu-23.0.0.txt │ ├── xinit-1.4.1.txt │ ├── xorg-apps-20210615_030626.txt │ ├── xorg-libs-part1-20230106_152147.txt │ ├── xorg-libs-part2-20230430_004625.txt │ ├── xorg-libs-part3-20220826_023054.txt │ ├── xorg-server-21.1.8.txt │ ├── xtrlock-2.12.txt │ ├── xz-5.4.2.txt │ ├── yash-2.53.txt │ ├── yt-dlp-2023.03.04.txt │ ├── zlib-1.2.13.txt │ └── zstd-1.5.5.txt │ └── rmv │ ├── acl-attr-20230130_053556.txt │ ├── acpid-2.0.32.txt │ ├── aircrack-ng-1.6.txt │ ├── apulse-0f9f8487.txt │ ├── atk-2.36.0.txt │ ├── audioshit-20230302_162838.txt │ ├── busybox-1.36.0.txt │ ├── cmake-3.23.2.txt │ ├── compton-5.1.txt │ ├── cryptsetup-2.4.3.txt │ ├── curl-7.88.1.txt │ ├── e2fsprogs-1.46.4.txt │ ├── eudev-3.2.9.txt │ ├── expat-2.3.0.txt │ ├── fbcat-99a9aaed.txt │ ├── ffmpeg-5.1.2.txt │ ├── findutils-4.8.0.txt │ ├── gcompat-1.1.0.txt │ ├── gdk-pixbuf-2.42.4.txt │ ├── git-2.40.0.txt │ ├── grep-3.9.txt │ ├── gtk3-3.24.33.txt │ ├── innoextract-4c2bc0bb.txt │ ├── inputery-20230329_185201.txt │ ├── iptables-1.8.7.txt │ ├── irssi-1.4.1.txt │ ├── iw-5.9.txt │ ├── libdrm-2.4.111.txt │ ├── libelf-0.183.txt │ ├── libmpdclient-2.20.txt │ ├── libssh2-1.9.0.txt │ ├── libva-2.12.0.txt │ ├── links-2.20.2.txt │ ├── linux-headers-6.2.txt │ ├── listenbrainz-mpd-bbf84be.txt │ ├── m4-1.4.18.txt │ ├── make-4.4.txt │ ├── mesa-23.1.0-rc4.txt │ ├── meson-0.63.1.txt │ ├── mkvtoolnix-48.0.0.txt │ ├── mpc-0.33.txt │ ├── mpd-0.23.12.txt │ ├── mpdas-c81c480.txt │ ├── mpv-0.35.0.txt │ ├── mss-ec-376e33d2.txt │ ├── musl-1.2.3.txt │ ├── ncmpcpp-0.9.2.txt │ ├── ncurses-6.2.txt │ ├── nfqws-9a7d1e8e.txt │ ├── opendoas-6.8.1.txt │ ├── openrsync-f50d0f82.txt │ ├── openssh-9.2p1.txt │ ├── openssl-3.0.8.txt │ ├── openvpn-2.5.3.txt │ ├── pango-1.43.0.txt │ ├── pciutils-3.7.0.txt │ ├── perl-5.34.1.txt │ ├── picom-9.txt │ ├── procps-ng-3.3.17.txt │ ├── python-3.10.5.txt │ ├── sed-4.9.txt │ ├── sqlite-3.38.3.txt │ ├── suckless-20210829_061944.txt │ ├── tar-1.33.txt │ ├── thinkfan-0c29363.txt │ ├── tiff-4.1.0.txt │ ├── transmission-4.0.1.txt │ ├── usbutils-013.txt │ ├── util-linux-2.37.2.txt │ ├── vim-9.0.0004.txt │ ├── wpa-supplicant-2.9.txt │ ├── xf86-input-wacom-0.40.0.txt │ ├── xorg-libs-part1-20220821_190331.txt │ ├── xorg-libs-part2-20230315_013606.txt │ ├── xorg-libs-part3-20210615_030626.txt │ ├── xorg-server-636c9aa.txt │ ├── xz-5.4.0.txt │ ├── yash-2.52.txt │ ├── ympd-612f8fc0.txt │ ├── yt-dlp-2023.01.02.txt │ ├── zlib-1.2.12.txt │ └── zstd-1.5.2.txt └── utils ├── bin ├── 0x0 ├── cb ├── cblist ├── chr ├── cleancmake ├── cleanup ├── colortest ├── comptoggle ├── configtomusl ├── dn ├── fetch ├── kinst ├── ldir ├── maimclip ├── maimcrop ├── maimscrot ├── monmode ├── ossl ├── pkg ├── pkgup ├── printprof ├── setbright ├── setgov ├── setmon ├── setxkeeb ├── stripper ├── suspendtodisk ├── syncboi ├── trimall └── ttygrab ├── files ├── device.conf ├── funcs ├── machines │ ├── t61.conf │ ├── unrecognized.conf │ └── x230.conf ├── sourceme ├── sourceme-aliases └── sourceme-build └── meson.build /.gitattributes: -------------------------------------------------------------------------------- 1 | *recipe* linguist-language=sh 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/README -------------------------------------------------------------------------------- /dir/etc/doas.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/dir/etc/doas.conf -------------------------------------------------------------------------------- /dir/etc/fonts/fonts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/dir/etc/fonts/fonts.conf -------------------------------------------------------------------------------- /dir/etc/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/dir/etc/group -------------------------------------------------------------------------------- /dir/etc/inputrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/dir/etc/inputrc -------------------------------------------------------------------------------- /dir/etc/ld-musl-x86_64.path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/dir/etc/ld-musl-x86_64.path -------------------------------------------------------------------------------- /dir/etc/ntp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/dir/etc/ntp.conf -------------------------------------------------------------------------------- /dir/etc/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/dir/etc/os-release -------------------------------------------------------------------------------- /dir/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/dir/etc/passwd -------------------------------------------------------------------------------- /dir/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/dir/etc/profile -------------------------------------------------------------------------------- /dir/etc/protocols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/dir/etc/protocols -------------------------------------------------------------------------------- /dir/etc/pulse/client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/dir/etc/pulse/client.conf -------------------------------------------------------------------------------- /dir/etc/pulse/default.pa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/dir/etc/pulse/default.pa -------------------------------------------------------------------------------- /dir/etc/pulse/system.pa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/dir/etc/pulse/system.pa -------------------------------------------------------------------------------- /dir/etc/services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/dir/etc/services -------------------------------------------------------------------------------- /dir/etc/shells: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/dir/etc/shells -------------------------------------------------------------------------------- /dir/etc/ssh/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/dir/etc/ssh/sshd_config -------------------------------------------------------------------------------- /dir/etc/udev/rules.d/50-xkeebshit.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/dir/etc/udev/rules.d/50-xkeebshit.rules -------------------------------------------------------------------------------- /dir/etc/udev/rules.d/60-ioschedulers.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/dir/etc/udev/rules.d/60-ioschedulers.rules -------------------------------------------------------------------------------- /dir/etc/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/dir/etc/vimrc -------------------------------------------------------------------------------- /dir/usr/share/yash/initialization/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/dir/usr/share/yash/initialization/default -------------------------------------------------------------------------------- /init/files/acpi.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/files/acpi.script -------------------------------------------------------------------------------- /init/files/ainitmgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/files/ainitmgr -------------------------------------------------------------------------------- /init/files/events: -------------------------------------------------------------------------------- 1 | event=.* 2 | action=/mss/init/files/acpi.script %e 3 | -------------------------------------------------------------------------------- /init/files/funcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/files/funcs -------------------------------------------------------------------------------- /init/files/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/files/init -------------------------------------------------------------------------------- /init/files/iptables.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/files/iptables.script -------------------------------------------------------------------------------- /init/files/services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/files/services -------------------------------------------------------------------------------- /init/files/setapathy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/files/setapathy -------------------------------------------------------------------------------- /init/files/setefi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/files/setefi -------------------------------------------------------------------------------- /init/files/udhcpc.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/files/udhcpc.script -------------------------------------------------------------------------------- /init/files/udhcpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/files/udhcpd.conf -------------------------------------------------------------------------------- /init/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/meson.build -------------------------------------------------------------------------------- /init/src/LICENSE.ubase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/LICENSE.ubase -------------------------------------------------------------------------------- /init/src/arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/arg.h -------------------------------------------------------------------------------- /init/src/ctrlaltdel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/ctrlaltdel.c -------------------------------------------------------------------------------- /init/src/getty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/getty.c -------------------------------------------------------------------------------- /init/src/halt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/halt.c -------------------------------------------------------------------------------- /init/src/killall5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/killall5.c -------------------------------------------------------------------------------- /init/src/libutil/agetcwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/libutil/agetcwd.c -------------------------------------------------------------------------------- /init/src/libutil/agetline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/libutil/agetline.c -------------------------------------------------------------------------------- /init/src/libutil/apathmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/libutil/apathmax.c -------------------------------------------------------------------------------- /init/src/libutil/concat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/libutil/concat.c -------------------------------------------------------------------------------- /init/src/libutil/ealloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/libutil/ealloc.c -------------------------------------------------------------------------------- /init/src/libutil/eprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/libutil/eprintf.c -------------------------------------------------------------------------------- /init/src/libutil/estrtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/libutil/estrtol.c -------------------------------------------------------------------------------- /init/src/libutil/estrtoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/libutil/estrtoul.c -------------------------------------------------------------------------------- /init/src/libutil/explicit_bzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/libutil/explicit_bzero.c -------------------------------------------------------------------------------- /init/src/libutil/passwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/libutil/passwd.c -------------------------------------------------------------------------------- /init/src/libutil/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/libutil/proc.c -------------------------------------------------------------------------------- /init/src/libutil/putword.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/libutil/putword.c -------------------------------------------------------------------------------- /init/src/libutil/recurse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/libutil/recurse.c -------------------------------------------------------------------------------- /init/src/libutil/strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/libutil/strlcat.c -------------------------------------------------------------------------------- /init/src/libutil/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/libutil/strlcpy.c -------------------------------------------------------------------------------- /init/src/libutil/strtonum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/libutil/strtonum.c -------------------------------------------------------------------------------- /init/src/libutil/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/libutil/tty.c -------------------------------------------------------------------------------- /init/src/login.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/login.c -------------------------------------------------------------------------------- /init/src/passwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/passwd.h -------------------------------------------------------------------------------- /init/src/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/proc.h -------------------------------------------------------------------------------- /init/src/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/queue.h -------------------------------------------------------------------------------- /init/src/reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/reboot.h -------------------------------------------------------------------------------- /init/src/respawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/respawn.c -------------------------------------------------------------------------------- /init/src/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/text.h -------------------------------------------------------------------------------- /init/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/init/src/util.h -------------------------------------------------------------------------------- /landfill/config/dmenu_conf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/landfill/config/dmenu_conf.h.in -------------------------------------------------------------------------------- /landfill/config/dwm_conf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/landfill/config/dwm_conf.h.in -------------------------------------------------------------------------------- /landfill/config/st_conf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/landfill/config/st_conf.h.in -------------------------------------------------------------------------------- /landfill/dmenu/arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/landfill/dmenu/arg.h -------------------------------------------------------------------------------- /landfill/dmenu/dmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/landfill/dmenu/dmenu.c -------------------------------------------------------------------------------- /landfill/dmenu/dmenu_path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/landfill/dmenu/dmenu_path -------------------------------------------------------------------------------- /landfill/dmenu/dmenu_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/landfill/dmenu/dmenu_run -------------------------------------------------------------------------------- /landfill/dmenu/drw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/landfill/dmenu/drw.c -------------------------------------------------------------------------------- /landfill/dmenu/drw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/landfill/dmenu/drw.h -------------------------------------------------------------------------------- /landfill/dmenu/stest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/landfill/dmenu/stest.c -------------------------------------------------------------------------------- /landfill/dmenu/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/landfill/dmenu/util.c -------------------------------------------------------------------------------- /landfill/dmenu/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/landfill/dmenu/util.h -------------------------------------------------------------------------------- /landfill/dwm/drw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/landfill/dwm/drw.c -------------------------------------------------------------------------------- /landfill/dwm/drw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/landfill/dwm/drw.h -------------------------------------------------------------------------------- /landfill/dwm/dwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/landfill/dwm/dwm.c -------------------------------------------------------------------------------- /landfill/dwm/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/landfill/dwm/util.c -------------------------------------------------------------------------------- /landfill/dwm/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/landfill/dwm/util.h -------------------------------------------------------------------------------- /landfill/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/landfill/meson.build -------------------------------------------------------------------------------- /landfill/meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/landfill/meson_options.txt -------------------------------------------------------------------------------- /landfill/st/arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/landfill/st/arg.h -------------------------------------------------------------------------------- /landfill/st/st.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/landfill/st/st.c -------------------------------------------------------------------------------- /landfill/st/st.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/landfill/st/st.h -------------------------------------------------------------------------------- /landfill/st/win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/landfill/st/win.h -------------------------------------------------------------------------------- /landfill/st/x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/landfill/st/x.c -------------------------------------------------------------------------------- /misc/acl-attr-removal-details.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/acl-attr-removal-details.txt -------------------------------------------------------------------------------- /misc/alsa-to-pulse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/alsa-to-pulse.txt -------------------------------------------------------------------------------- /misc/bad-memory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/bad-memory.txt -------------------------------------------------------------------------------- /misc/baked-in-build-env-rebuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/baked-in-build-env-rebuild.txt -------------------------------------------------------------------------------- /misc/cryptsetup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/cryptsetup.txt -------------------------------------------------------------------------------- /misc/detect-sigill.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/detect-sigill.txt -------------------------------------------------------------------------------- /misc/expat-fuckery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/expat-fuckery.txt -------------------------------------------------------------------------------- /misc/ffi-things.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/ffi-things.txt -------------------------------------------------------------------------------- /misc/ffmpeg-4-to-5-rebuilds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/ffmpeg-4-to-5-rebuilds.txt -------------------------------------------------------------------------------- /misc/fftw-removal-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/fftw-removal-notes.txt -------------------------------------------------------------------------------- /misc/gcc-binutils-to-llvm-switch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/gcc-binutils-to-llvm-switch.txt -------------------------------------------------------------------------------- /misc/gettext-removal-rebuild-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/gettext-removal-rebuild-notes.txt -------------------------------------------------------------------------------- /misc/gnutls-removal-details.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/gnutls-removal-details.txt -------------------------------------------------------------------------------- /misc/icu-removal-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/icu-removal-notes.txt -------------------------------------------------------------------------------- /misc/interesting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/interesting.png -------------------------------------------------------------------------------- /misc/interesting2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/interesting2.png -------------------------------------------------------------------------------- /misc/interesting3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/interesting3.png -------------------------------------------------------------------------------- /misc/interesting4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/interesting4.png -------------------------------------------------------------------------------- /misc/libressl-tlsv1.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/libressl-tlsv1.3.txt -------------------------------------------------------------------------------- /misc/libressl-update-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/libressl-update-notes.txt -------------------------------------------------------------------------------- /misc/libvdpau-removal-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/libvdpau-removal-notes.txt -------------------------------------------------------------------------------- /misc/libxcb-libraries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/libxcb-libraries.txt -------------------------------------------------------------------------------- /misc/llvm-compat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/llvm-compat.txt -------------------------------------------------------------------------------- /misc/luks-with-lvm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/luks-with-lvm.txt -------------------------------------------------------------------------------- /misc/media-libs-cleanup-details.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/media-libs-cleanup-details.txt -------------------------------------------------------------------------------- /misc/mesa-libs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/mesa-libs.txt -------------------------------------------------------------------------------- /misc/nfs-from-ground-up.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/nfs-from-ground-up.txt -------------------------------------------------------------------------------- /misc/openssl-1.1.1-to-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/openssl-1.1.1-to-3.0.txt -------------------------------------------------------------------------------- /misc/rustc-1.46.0-target-cpu-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/rustc-1.46.0-target-cpu-list.txt -------------------------------------------------------------------------------- /misc/rustc-1.46.0-target-feature-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/rustc-1.46.0-target-feature-list.txt -------------------------------------------------------------------------------- /misc/rustc-native-ish-flags-for-core2duo-t8100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/rustc-native-ish-flags-for-core2duo-t8100.txt -------------------------------------------------------------------------------- /misc/save-static-libs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/save-static-libs.txt -------------------------------------------------------------------------------- /misc/shall-i-openssl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/shall-i-openssl.txt -------------------------------------------------------------------------------- /misc/t61-acpi-events.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/t61-acpi-events.txt -------------------------------------------------------------------------------- /misc/uid-gid-rearrangement-details.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/uid-gid-rearrangement-details.txt -------------------------------------------------------------------------------- /misc/util-linux-libs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/util-linux-libs.txt -------------------------------------------------------------------------------- /misc/x230-acpi-events.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/x230-acpi-events.txt -------------------------------------------------------------------------------- /misc/x230t-acpi-events.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/x230t-acpi-events.txt -------------------------------------------------------------------------------- /misc/xorg-apps-libs-mental-illness.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/misc/xorg-apps-libs-mental-illness.txt -------------------------------------------------------------------------------- /pkg/packages-t61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/packages-t61.txt -------------------------------------------------------------------------------- /pkg/packages-x230.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/packages-x230.txt -------------------------------------------------------------------------------- /pkg/recipes/acpid/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/acpid/recipe -------------------------------------------------------------------------------- /pkg/recipes/acpid/ver: -------------------------------------------------------------------------------- 1 | acpid 2.0.32 2 | -------------------------------------------------------------------------------- /pkg/recipes/android-tools/patches/0001-protobuf-musl-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/android-tools/patches/0001-protobuf-musl-fix.patch -------------------------------------------------------------------------------- /pkg/recipes/android-tools/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/android-tools/recipe -------------------------------------------------------------------------------- /pkg/recipes/android-tools/ver: -------------------------------------------------------------------------------- 1 | android-tools 31.0.2 2 | -------------------------------------------------------------------------------- /pkg/recipes/atk/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/atk/recipe -------------------------------------------------------------------------------- /pkg/recipes/atk/ver: -------------------------------------------------------------------------------- 1 | atk 2.38.0 2 | -------------------------------------------------------------------------------- /pkg/recipes/audioshit/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/audioshit/recipe -------------------------------------------------------------------------------- /pkg/recipes/audioshit/ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/audioshit/ver -------------------------------------------------------------------------------- /pkg/recipes/autoconf/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/autoconf/recipe -------------------------------------------------------------------------------- /pkg/recipes/autoconf/ver: -------------------------------------------------------------------------------- 1 | autoconf 2.70 2 | -------------------------------------------------------------------------------- /pkg/recipes/automake/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/automake/recipe -------------------------------------------------------------------------------- /pkg/recipes/automake/ver: -------------------------------------------------------------------------------- 1 | automake 1.16.3 2 | -------------------------------------------------------------------------------- /pkg/recipes/bc/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/bc/recipe -------------------------------------------------------------------------------- /pkg/recipes/bc/ver: -------------------------------------------------------------------------------- 1 | bc 4.0.1 2 | -------------------------------------------------------------------------------- /pkg/recipes/bind/files/127.zone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/bind/files/127.zone -------------------------------------------------------------------------------- /pkg/recipes/bind/files/localhost.zone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/bind/files/localhost.zone -------------------------------------------------------------------------------- /pkg/recipes/bind/files/named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/bind/files/named.conf -------------------------------------------------------------------------------- /pkg/recipes/bind/files/rndc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/bind/files/rndc.conf -------------------------------------------------------------------------------- /pkg/recipes/bind/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/bind/recipe -------------------------------------------------------------------------------- /pkg/recipes/bind/ver: -------------------------------------------------------------------------------- 1 | bind 9.18.11 2 | -------------------------------------------------------------------------------- /pkg/recipes/bison/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/bison/recipe -------------------------------------------------------------------------------- /pkg/recipes/bison/ver: -------------------------------------------------------------------------------- 1 | bison 3.7.4 2 | -------------------------------------------------------------------------------- /pkg/recipes/boost/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/boost/recipe -------------------------------------------------------------------------------- /pkg/recipes/boost/ver: -------------------------------------------------------------------------------- 1 | boost 1.76.0 2 | -------------------------------------------------------------------------------- /pkg/recipes/browserlibs/patches/0001-nspr-prtime.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/browserlibs/patches/0001-nspr-prtime.patch -------------------------------------------------------------------------------- /pkg/recipes/browserlibs/patches/0002-nspr-link-flags.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/browserlibs/patches/0002-nspr-link-flags.patch -------------------------------------------------------------------------------- /pkg/recipes/browserlibs/patches/0003-nspr-nspr_config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/browserlibs/patches/0003-nspr-nspr_config.patch -------------------------------------------------------------------------------- /pkg/recipes/browserlibs/patches/0004-nspr-musl-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/browserlibs/patches/0004-nspr-musl-fixes.patch -------------------------------------------------------------------------------- /pkg/recipes/browserlibs/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/browserlibs/recipe -------------------------------------------------------------------------------- /pkg/recipes/browserlibs/ver: -------------------------------------------------------------------------------- 1 | icu 72.1 2 | nspr 4.35 3 | nss 3.89 4 | -------------------------------------------------------------------------------- /pkg/recipes/busybox/files/bbsuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/busybox/files/bbsuid.c -------------------------------------------------------------------------------- /pkg/recipes/busybox/files/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/busybox/files/config -------------------------------------------------------------------------------- /pkg/recipes/busybox/files/config-initramfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/busybox/files/config-initramfs -------------------------------------------------------------------------------- /pkg/recipes/busybox/patches/0002-install-fix-chown.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/busybox/patches/0002-install-fix-chown.patch -------------------------------------------------------------------------------- /pkg/recipes/busybox/patches/0003-libbb-print-unicode.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/busybox/patches/0003-libbb-print-unicode.patch -------------------------------------------------------------------------------- /pkg/recipes/busybox/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/busybox/recipe -------------------------------------------------------------------------------- /pkg/recipes/busybox/ver: -------------------------------------------------------------------------------- 1 | busybox 1.36.0 2 | -------------------------------------------------------------------------------- /pkg/recipes/bzip2/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/bzip2/recipe -------------------------------------------------------------------------------- /pkg/recipes/bzip2/ver: -------------------------------------------------------------------------------- 1 | bzip2 1.0.8 2 | -------------------------------------------------------------------------------- /pkg/recipes/chromium/files/chromium: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/chromium/files/chromium -------------------------------------------------------------------------------- /pkg/recipes/chromium/files/gn-args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/chromium/files/gn-args -------------------------------------------------------------------------------- /pkg/recipes/chromium/patches/0001-musl-import-version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/chromium/patches/0001-musl-import-version.patch -------------------------------------------------------------------------------- /pkg/recipes/chromium/patches/0002-musl-no-execinfo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/chromium/patches/0002-musl-no-execinfo.patch -------------------------------------------------------------------------------- /pkg/recipes/chromium/patches/0003-musl-no-mallinfo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/chromium/patches/0003-musl-no-mallinfo.patch -------------------------------------------------------------------------------- /pkg/recipes/chromium/patches/0004-musl-no-res-ninit-nclose.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/chromium/patches/0004-musl-no-res-ninit-nclose.patch -------------------------------------------------------------------------------- /pkg/recipes/chromium/patches/0005-musl-partition-atfork.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/chromium/patches/0005-musl-partition-atfork.patch -------------------------------------------------------------------------------- /pkg/recipes/chromium/patches/0006-musl-sandbox.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/chromium/patches/0006-musl-sandbox.patch -------------------------------------------------------------------------------- /pkg/recipes/chromium/patches/0007-musl-scoped-file-no-close.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/chromium/patches/0007-musl-scoped-file-no-close.patch -------------------------------------------------------------------------------- /pkg/recipes/chromium/patches/0008-musl-temp-failure-retry.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/chromium/patches/0008-musl-temp-failure-retry.patch -------------------------------------------------------------------------------- /pkg/recipes/chromium/patches/0009-musl-tid-caching.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/chromium/patches/0009-musl-tid-caching.patch -------------------------------------------------------------------------------- /pkg/recipes/chromium/patches/0011-fc-cache-version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/chromium/patches/0011-fc-cache-version.patch -------------------------------------------------------------------------------- /pkg/recipes/chromium/patches/0012-llvm-nuke-atomic.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/chromium/patches/0012-llvm-nuke-atomic.patch -------------------------------------------------------------------------------- /pkg/recipes/chromium/patches/0013-optional-atk-dbus.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/chromium/patches/0013-optional-atk-dbus.patch -------------------------------------------------------------------------------- /pkg/recipes/chromium/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/chromium/recipe -------------------------------------------------------------------------------- /pkg/recipes/chromium/ver: -------------------------------------------------------------------------------- 1 | chromium 113.0.5672.63 2 | -------------------------------------------------------------------------------- /pkg/recipes/clzip/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/clzip/recipe -------------------------------------------------------------------------------- /pkg/recipes/clzip/ver: -------------------------------------------------------------------------------- 1 | clzip 1.12 2 | -------------------------------------------------------------------------------- /pkg/recipes/cmake/patches/0001-no-execinfo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/cmake/patches/0001-no-execinfo.patch -------------------------------------------------------------------------------- /pkg/recipes/cmake/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/cmake/recipe -------------------------------------------------------------------------------- /pkg/recipes/cmake/ver: -------------------------------------------------------------------------------- 1 | cmake 3.26.0 2 | -------------------------------------------------------------------------------- /pkg/recipes/cryptshit/patches/0001-libaio-makefile-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/cryptshit/patches/0001-libaio-makefile-fixes.patch -------------------------------------------------------------------------------- /pkg/recipes/cryptshit/patches/0002-lvm2-fix-stdio-usage.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/cryptshit/patches/0002-lvm2-fix-stdio-usage.patch -------------------------------------------------------------------------------- /pkg/recipes/cryptshit/patches/0003-lvm2-fix-includes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/cryptshit/patches/0003-lvm2-fix-includes.patch -------------------------------------------------------------------------------- /pkg/recipes/cryptshit/patches/0005-cryptsetup-flush-stdout.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/cryptshit/patches/0005-cryptsetup-flush-stdout.patch -------------------------------------------------------------------------------- /pkg/recipes/cryptshit/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/cryptshit/recipe -------------------------------------------------------------------------------- /pkg/recipes/cryptshit/ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/cryptshit/ver -------------------------------------------------------------------------------- /pkg/recipes/curl/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/curl/recipe -------------------------------------------------------------------------------- /pkg/recipes/curl/ver: -------------------------------------------------------------------------------- 1 | curl 8.0.1 2 | -------------------------------------------------------------------------------- /pkg/recipes/diffutils/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/diffutils/recipe -------------------------------------------------------------------------------- /pkg/recipes/diffutils/ver: -------------------------------------------------------------------------------- 1 | diffutils 3.7 2 | -------------------------------------------------------------------------------- /pkg/recipes/dragon/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/dragon/recipe -------------------------------------------------------------------------------- /pkg/recipes/dragon/ver: -------------------------------------------------------------------------------- 1 | dragon 0a56eb2d 2 | -------------------------------------------------------------------------------- /pkg/recipes/e2fsprogs/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/e2fsprogs/recipe -------------------------------------------------------------------------------- /pkg/recipes/e2fsprogs/ver: -------------------------------------------------------------------------------- 1 | e2fsprogs 1.46.4 2 | -------------------------------------------------------------------------------- /pkg/recipes/efibootmgr/patches/0001-efivar-musl-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/efibootmgr/patches/0001-efivar-musl-fixes.patch -------------------------------------------------------------------------------- /pkg/recipes/efibootmgr/patches/0002-efivar-lld-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/efibootmgr/patches/0002-efivar-lld-fixes.patch -------------------------------------------------------------------------------- /pkg/recipes/efibootmgr/patches/0004-efivar-disable-docs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/efibootmgr/patches/0004-efivar-disable-docs.patch -------------------------------------------------------------------------------- /pkg/recipes/efibootmgr/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/efibootmgr/recipe -------------------------------------------------------------------------------- /pkg/recipes/efibootmgr/ver: -------------------------------------------------------------------------------- 1 | efibootmgr 18 2 | -------------------------------------------------------------------------------- /pkg/recipes/eudev/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/eudev/recipe -------------------------------------------------------------------------------- /pkg/recipes/eudev/ver: -------------------------------------------------------------------------------- 1 | eudev 3.2.11 2 | -------------------------------------------------------------------------------- /pkg/recipes/expat/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/expat/recipe -------------------------------------------------------------------------------- /pkg/recipes/expat/ver: -------------------------------------------------------------------------------- 1 | expat 2.4.8 2 | -------------------------------------------------------------------------------- /pkg/recipes/fbcat/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/fbcat/recipe -------------------------------------------------------------------------------- /pkg/recipes/fbcat/ver: -------------------------------------------------------------------------------- 1 | fbcat 25062ab1 2 | -------------------------------------------------------------------------------- /pkg/recipes/fdupes/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/fdupes/recipe -------------------------------------------------------------------------------- /pkg/recipes/fdupes/ver: -------------------------------------------------------------------------------- 1 | fdupes 2.1.2 2 | -------------------------------------------------------------------------------- /pkg/recipes/feh/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/feh/recipe -------------------------------------------------------------------------------- /pkg/recipes/feh/ver: -------------------------------------------------------------------------------- 1 | feh 3.7.1 2 | -------------------------------------------------------------------------------- /pkg/recipes/ffmpeg/patches/0002-bump-libswrescale-soname.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/ffmpeg/patches/0002-bump-libswrescale-soname.patch -------------------------------------------------------------------------------- /pkg/recipes/ffmpeg/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/ffmpeg/recipe -------------------------------------------------------------------------------- /pkg/recipes/ffmpeg/ver: -------------------------------------------------------------------------------- 1 | ffmpeg 6.0 2 | -------------------------------------------------------------------------------- /pkg/recipes/file/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/file/recipe -------------------------------------------------------------------------------- /pkg/recipes/file/ver: -------------------------------------------------------------------------------- 1 | file 5.40 2 | -------------------------------------------------------------------------------- /pkg/recipes/findutils/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/findutils/recipe -------------------------------------------------------------------------------- /pkg/recipes/findutils/ver: -------------------------------------------------------------------------------- 1 | findutils 4.8.0 2 | -------------------------------------------------------------------------------- /pkg/recipes/firefox/files/default-bookmarks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/firefox/files/default-bookmarks.html -------------------------------------------------------------------------------- /pkg/recipes/firefox/files/libmozwayland.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/firefox/files/libmozwayland.c -------------------------------------------------------------------------------- /pkg/recipes/firefox/files/mozconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/firefox/files/mozconfig -------------------------------------------------------------------------------- /pkg/recipes/firefox/files/policies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/firefox/files/policies.json -------------------------------------------------------------------------------- /pkg/recipes/firefox/files/search-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/firefox/files/search-config.json -------------------------------------------------------------------------------- /pkg/recipes/firefox/files/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/firefox/files/vendor.js -------------------------------------------------------------------------------- /pkg/recipes/firefox/patches/0001-musl-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/firefox/patches/0001-musl-fixes.patch -------------------------------------------------------------------------------- /pkg/recipes/firefox/patches/0002-libcxx-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/firefox/patches/0002-libcxx-fixes.patch -------------------------------------------------------------------------------- /pkg/recipes/firefox/patches/0003-do-not-wrap-features.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/firefox/patches/0003-do-not-wrap-features.h.patch -------------------------------------------------------------------------------- /pkg/recipes/firefox/patches/0004-use-thinlto-for-rust.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/firefox/patches/0004-use-thinlto-for-rust.patch -------------------------------------------------------------------------------- /pkg/recipes/firefox/patches/0005-allow-RUST_TARGET.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/firefox/patches/0005-allow-RUST_TARGET.patch -------------------------------------------------------------------------------- /pkg/recipes/firefox/patches/0006-allow-system-harfbuzz.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/firefox/patches/0006-allow-system-harfbuzz.patch -------------------------------------------------------------------------------- /pkg/recipes/firefox/patches/0008-nuke-no-integrated-as.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/firefox/patches/0008-nuke-no-integrated-as.patch -------------------------------------------------------------------------------- /pkg/recipes/firefox/patches/0010-nuke-pocket.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/firefox/patches/0010-nuke-pocket.patch -------------------------------------------------------------------------------- /pkg/recipes/firefox/patches/0011-nuke-addons.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/firefox/patches/0011-nuke-addons.patch -------------------------------------------------------------------------------- /pkg/recipes/firefox/patches/0012-nuke-urlbarprovider.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/firefox/patches/0012-nuke-urlbarprovider.patch -------------------------------------------------------------------------------- /pkg/recipes/firefox/patches/0014-nuke-handlers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/firefox/patches/0014-nuke-handlers.patch -------------------------------------------------------------------------------- /pkg/recipes/firefox/patches/0015-nuke-dbus-and-atk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/firefox/patches/0015-nuke-dbus-and-atk.patch -------------------------------------------------------------------------------- /pkg/recipes/firefox/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/firefox/recipe -------------------------------------------------------------------------------- /pkg/recipes/firefox/recipe-prereq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/firefox/recipe-prereq -------------------------------------------------------------------------------- /pkg/recipes/firefox/ver: -------------------------------------------------------------------------------- 1 | firefox 112.0.2 2 | -------------------------------------------------------------------------------- /pkg/recipes/flac/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/flac/recipe -------------------------------------------------------------------------------- /pkg/recipes/flac/ver: -------------------------------------------------------------------------------- 1 | flac 1.3.3 2 | -------------------------------------------------------------------------------- /pkg/recipes/flex/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/flex/recipe -------------------------------------------------------------------------------- /pkg/recipes/flex/ver: -------------------------------------------------------------------------------- 1 | flex 2.6.4 2 | -------------------------------------------------------------------------------- /pkg/recipes/freeglut/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/freeglut/recipe -------------------------------------------------------------------------------- /pkg/recipes/freeglut/ver: -------------------------------------------------------------------------------- 1 | freeglut 3.2.1 2 | -------------------------------------------------------------------------------- /pkg/recipes/fribidi/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/fribidi/recipe -------------------------------------------------------------------------------- /pkg/recipes/fribidi/ver: -------------------------------------------------------------------------------- 1 | fribidi 1.0.10 2 | -------------------------------------------------------------------------------- /pkg/recipes/gamelibs/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/gamelibs/recipe -------------------------------------------------------------------------------- /pkg/recipes/gamelibs/ver: -------------------------------------------------------------------------------- 1 | openal 1.23.0 2 | sdl2 2.26.4 3 | -------------------------------------------------------------------------------- /pkg/recipes/gdk-pixbuf/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/gdk-pixbuf/recipe -------------------------------------------------------------------------------- /pkg/recipes/gdk-pixbuf/ver: -------------------------------------------------------------------------------- 1 | gdk-pixbuf 2.42.8 2 | -------------------------------------------------------------------------------- /pkg/recipes/giflib/patches/0001-restore-deprecated-functions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/giflib/patches/0001-restore-deprecated-functions.patch -------------------------------------------------------------------------------- /pkg/recipes/giflib/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/giflib/recipe -------------------------------------------------------------------------------- /pkg/recipes/giflib/ver: -------------------------------------------------------------------------------- 1 | giflib 5.2.1 2 | -------------------------------------------------------------------------------- /pkg/recipes/git/patches/0001-tinify-git.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/git/patches/0001-tinify-git.patch -------------------------------------------------------------------------------- /pkg/recipes/git/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/git/recipe -------------------------------------------------------------------------------- /pkg/recipes/git/ver: -------------------------------------------------------------------------------- 1 | git 2.40.1 2 | -------------------------------------------------------------------------------- /pkg/recipes/glu/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/glu/recipe -------------------------------------------------------------------------------- /pkg/recipes/glu/ver: -------------------------------------------------------------------------------- 1 | glu 9.0.1 2 | -------------------------------------------------------------------------------- /pkg/recipes/gnupg-and-friends/patches/0002-gnupg-fix-i18n.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/gnupg-and-friends/patches/0002-gnupg-fix-i18n.patch -------------------------------------------------------------------------------- /pkg/recipes/gnupg-and-friends/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/gnupg-and-friends/recipe -------------------------------------------------------------------------------- /pkg/recipes/gnupg-and-friends/ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/gnupg-and-friends/ver -------------------------------------------------------------------------------- /pkg/recipes/go/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/go/recipe -------------------------------------------------------------------------------- /pkg/recipes/go/recipe-bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/go/recipe-bootstrap -------------------------------------------------------------------------------- /pkg/recipes/go/ver: -------------------------------------------------------------------------------- 1 | go 1.20.1 2 | -------------------------------------------------------------------------------- /pkg/recipes/gperf/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/gperf/recipe -------------------------------------------------------------------------------- /pkg/recipes/gperf/ver: -------------------------------------------------------------------------------- 1 | gperf 3.1 2 | -------------------------------------------------------------------------------- /pkg/recipes/gpm/patches/0001-error-format.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/gpm/patches/0001-error-format.patch -------------------------------------------------------------------------------- /pkg/recipes/gpm/patches/0003-fix-signedness-issue.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/gpm/patches/0003-fix-signedness-issue.patch -------------------------------------------------------------------------------- /pkg/recipes/gpm/patches/0004-musl-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/gpm/patches/0004-musl-fixes.patch -------------------------------------------------------------------------------- /pkg/recipes/gpm/patches/0005-constify-format-strings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/gpm/patches/0005-constify-format-strings.patch -------------------------------------------------------------------------------- /pkg/recipes/gpm/patches/0006-gpm-include-sysmacros.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/gpm/patches/0006-gpm-include-sysmacros.patch -------------------------------------------------------------------------------- /pkg/recipes/gpm/patches/0007-gcc-10.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/gpm/patches/0007-gcc-10.patch -------------------------------------------------------------------------------- /pkg/recipes/gpm/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/gpm/recipe -------------------------------------------------------------------------------- /pkg/recipes/gpm/ver: -------------------------------------------------------------------------------- 1 | gpm 1.20.7 2 | -------------------------------------------------------------------------------- /pkg/recipes/grep/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/grep/recipe -------------------------------------------------------------------------------- /pkg/recipes/grep/ver: -------------------------------------------------------------------------------- 1 | grep 3.10 2 | -------------------------------------------------------------------------------- /pkg/recipes/gtk3/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/gtk3/recipe -------------------------------------------------------------------------------- /pkg/recipes/gtk3/ver: -------------------------------------------------------------------------------- 1 | gtk3 3.24.34 2 | -------------------------------------------------------------------------------- /pkg/recipes/htop/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/htop/recipe -------------------------------------------------------------------------------- /pkg/recipes/htop/ver: -------------------------------------------------------------------------------- 1 | htop 3.0.2 2 | -------------------------------------------------------------------------------- /pkg/recipes/imagemagick/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/imagemagick/recipe -------------------------------------------------------------------------------- /pkg/recipes/imagemagick/ver: -------------------------------------------------------------------------------- 1 | imagemagick 7.0.10.23 2 | -------------------------------------------------------------------------------- /pkg/recipes/imlib2/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/imlib2/recipe -------------------------------------------------------------------------------- /pkg/recipes/imlib2/ver: -------------------------------------------------------------------------------- 1 | imlib2 1.6.1 2 | -------------------------------------------------------------------------------- /pkg/recipes/initramfs/files/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/initramfs/files/init -------------------------------------------------------------------------------- /pkg/recipes/initramfs/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/initramfs/recipe -------------------------------------------------------------------------------- /pkg/recipes/initramfs/ver: -------------------------------------------------------------------------------- 1 | initramfs 14 2 | -------------------------------------------------------------------------------- /pkg/recipes/inputery/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/inputery/recipe -------------------------------------------------------------------------------- /pkg/recipes/inputery/ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/inputery/ver -------------------------------------------------------------------------------- /pkg/recipes/intel-vaapi-driver/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/intel-vaapi-driver/recipe -------------------------------------------------------------------------------- /pkg/recipes/intel-vaapi-driver/ver: -------------------------------------------------------------------------------- 1 | intel-vaapi-driver 2.4.1 2 | -------------------------------------------------------------------------------- /pkg/recipes/ioquake3/patches/0001-lc++-for-openal.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/ioquake3/patches/0001-lc++-for-openal.patch -------------------------------------------------------------------------------- /pkg/recipes/ioquake3/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/ioquake3/recipe -------------------------------------------------------------------------------- /pkg/recipes/ioquake3/ver: -------------------------------------------------------------------------------- 1 | ioquake3 18f3b6b5 2 | -------------------------------------------------------------------------------- /pkg/recipes/iptables/patches/0001-fix-xtables.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/iptables/patches/0001-fix-xtables.patch -------------------------------------------------------------------------------- /pkg/recipes/iptables/patches/0002-fix-u_int16_t.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/iptables/patches/0002-fix-u_int16_t.patch -------------------------------------------------------------------------------- /pkg/recipes/iptables/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/iptables/recipe -------------------------------------------------------------------------------- /pkg/recipes/iptables/ver: -------------------------------------------------------------------------------- 1 | iptables 1.8.8 2 | -------------------------------------------------------------------------------- /pkg/recipes/irssi/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/irssi/recipe -------------------------------------------------------------------------------- /pkg/recipes/irssi/ver: -------------------------------------------------------------------------------- 1 | irssi 1.4.3 2 | -------------------------------------------------------------------------------- /pkg/recipes/jq/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/jq/recipe -------------------------------------------------------------------------------- /pkg/recipes/jq/ver: -------------------------------------------------------------------------------- 1 | jq 1.6 2 | -------------------------------------------------------------------------------- /pkg/recipes/lame/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/lame/recipe -------------------------------------------------------------------------------- /pkg/recipes/lame/ver: -------------------------------------------------------------------------------- 1 | lame 3.100 2 | -------------------------------------------------------------------------------- /pkg/recipes/landfill/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/landfill/recipe -------------------------------------------------------------------------------- /pkg/recipes/landfill/ver: -------------------------------------------------------------------------------- 1 | landfill 22 2 | -------------------------------------------------------------------------------- /pkg/recipes/lcms2/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/lcms2/recipe -------------------------------------------------------------------------------- /pkg/recipes/lcms2/ver: -------------------------------------------------------------------------------- 1 | lcms2 2.12 2 | -------------------------------------------------------------------------------- /pkg/recipes/less/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/less/recipe -------------------------------------------------------------------------------- /pkg/recipes/less/ver: -------------------------------------------------------------------------------- 1 | less 563 2 | -------------------------------------------------------------------------------- /pkg/recipes/libass/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/libass/recipe -------------------------------------------------------------------------------- /pkg/recipes/libass/ver: -------------------------------------------------------------------------------- 1 | libass 0.15.0 2 | -------------------------------------------------------------------------------- /pkg/recipes/libdrm/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/libdrm/recipe -------------------------------------------------------------------------------- /pkg/recipes/libdrm/ver: -------------------------------------------------------------------------------- 1 | libdrm 2.4.111 2 | -------------------------------------------------------------------------------- /pkg/recipes/libelf/patches/0001-musl-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/libelf/patches/0001-musl-fix.patch -------------------------------------------------------------------------------- /pkg/recipes/libelf/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/libelf/recipe -------------------------------------------------------------------------------- /pkg/recipes/libelf/ver: -------------------------------------------------------------------------------- 1 | libelf 0.186 2 | -------------------------------------------------------------------------------- /pkg/recipes/libepoxy/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/libepoxy/recipe -------------------------------------------------------------------------------- /pkg/recipes/libepoxy/ver: -------------------------------------------------------------------------------- 1 | libepoxy 1.5.8 2 | -------------------------------------------------------------------------------- /pkg/recipes/libevent/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/libevent/recipe -------------------------------------------------------------------------------- /pkg/recipes/libevent/ver: -------------------------------------------------------------------------------- 1 | libevent 2.1.11 2 | -------------------------------------------------------------------------------- /pkg/recipes/libffi/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/libffi/recipe -------------------------------------------------------------------------------- /pkg/recipes/libffi/ver: -------------------------------------------------------------------------------- 1 | libffi 3.3.0 2 | -------------------------------------------------------------------------------- /pkg/recipes/libid3tag/files/id3tag.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/libid3tag/files/id3tag.pc -------------------------------------------------------------------------------- /pkg/recipes/libid3tag/patches/0001-CVE-2008-2109.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/libid3tag/patches/0001-CVE-2008-2109.patch -------------------------------------------------------------------------------- /pkg/recipes/libid3tag/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/libid3tag/recipe -------------------------------------------------------------------------------- /pkg/recipes/libid3tag/ver: -------------------------------------------------------------------------------- 1 | libid3tag 0.15.1b 2 | -------------------------------------------------------------------------------- /pkg/recipes/libjpeg-turbo/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/libjpeg-turbo/recipe -------------------------------------------------------------------------------- /pkg/recipes/libjpeg-turbo/ver: -------------------------------------------------------------------------------- 1 | libjpeg-turbo 2.0.5 2 | -------------------------------------------------------------------------------- /pkg/recipes/libnl3/patches/0001-musl-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/libnl3/patches/0001-musl-fixes.patch -------------------------------------------------------------------------------- /pkg/recipes/libnl3/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/libnl3/recipe -------------------------------------------------------------------------------- /pkg/recipes/libnl3/ver: -------------------------------------------------------------------------------- 1 | libnl3 3.5.0 2 | -------------------------------------------------------------------------------- /pkg/recipes/libogg/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/libogg/recipe -------------------------------------------------------------------------------- /pkg/recipes/libogg/ver: -------------------------------------------------------------------------------- 1 | libogg 1.3.5 2 | -------------------------------------------------------------------------------- /pkg/recipes/libssh2/patches/0001-CVE-2019-17498.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/libssh2/patches/0001-CVE-2019-17498.patch -------------------------------------------------------------------------------- /pkg/recipes/libssh2/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/libssh2/recipe -------------------------------------------------------------------------------- /pkg/recipes/libssh2/ver: -------------------------------------------------------------------------------- 1 | libssh2 1.9.0 2 | -------------------------------------------------------------------------------- /pkg/recipes/libtirpc/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/libtirpc/recipe -------------------------------------------------------------------------------- /pkg/recipes/libtirpc/ver: -------------------------------------------------------------------------------- 1 | libtirpc 1.3.1 2 | -------------------------------------------------------------------------------- /pkg/recipes/libtool/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/libtool/recipe -------------------------------------------------------------------------------- /pkg/recipes/libtool/ver: -------------------------------------------------------------------------------- 1 | libtool 2.4.6 2 | -------------------------------------------------------------------------------- /pkg/recipes/libusb/patches/0001-f6d2cb56.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/libusb/patches/0001-f6d2cb56.patch -------------------------------------------------------------------------------- /pkg/recipes/libusb/patches/0002-f38f09da.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/libusb/patches/0002-f38f09da.patch -------------------------------------------------------------------------------- /pkg/recipes/libusb/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/libusb/recipe -------------------------------------------------------------------------------- /pkg/recipes/libusb/ver: -------------------------------------------------------------------------------- 1 | libusb 1.0.24 2 | -------------------------------------------------------------------------------- /pkg/recipes/libva/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/libva/recipe -------------------------------------------------------------------------------- /pkg/recipes/libva/ver: -------------------------------------------------------------------------------- 1 | libva 2.14.0 2 | -------------------------------------------------------------------------------- /pkg/recipes/libvorbis/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/libvorbis/recipe -------------------------------------------------------------------------------- /pkg/recipes/libvorbis/ver: -------------------------------------------------------------------------------- 1 | libvorbis 1.3.7 2 | -------------------------------------------------------------------------------- /pkg/recipes/libvpx/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/libvpx/recipe -------------------------------------------------------------------------------- /pkg/recipes/libvpx/ver: -------------------------------------------------------------------------------- 1 | libvpx 1.10.0 2 | -------------------------------------------------------------------------------- /pkg/recipes/lilo/patches/0001-bin86-x86_64.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/lilo/patches/0001-bin86-x86_64.patch -------------------------------------------------------------------------------- /pkg/recipes/lilo/patches/0002-lilo-novga.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/lilo/patches/0002-lilo-novga.patch -------------------------------------------------------------------------------- /pkg/recipes/lilo/patches/0003-lilo-remove-O_ACCMODE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/lilo/patches/0003-lilo-remove-O_ACCMODE.patch -------------------------------------------------------------------------------- /pkg/recipes/lilo/patches/0004-lilo-remove__GLIBC__.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/lilo/patches/0004-lilo-remove__GLIBC__.patch -------------------------------------------------------------------------------- /pkg/recipes/lilo/patches/0005-lilo-fix-gcc-10.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/lilo/patches/0005-lilo-fix-gcc-10.patch -------------------------------------------------------------------------------- /pkg/recipes/lilo/patches/0006-lilo-fix-compile-time-constant.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/lilo/patches/0006-lilo-fix-compile-time-constant.patch -------------------------------------------------------------------------------- /pkg/recipes/lilo/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/lilo/recipe -------------------------------------------------------------------------------- /pkg/recipes/lilo/ver: -------------------------------------------------------------------------------- 1 | lilo 24.2 2 | -------------------------------------------------------------------------------- /pkg/recipes/links/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/links/recipe -------------------------------------------------------------------------------- /pkg/recipes/links/ver: -------------------------------------------------------------------------------- 1 | links 2.27 2 | -------------------------------------------------------------------------------- /pkg/recipes/linux/files/unified.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/linux/files/unified.config -------------------------------------------------------------------------------- /pkg/recipes/linux/patches/0002-build-with-O3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/linux/patches/0002-build-with-O3.patch -------------------------------------------------------------------------------- /pkg/recipes/linux/patches/0004-le9.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/linux/patches/0004-le9.patch -------------------------------------------------------------------------------- /pkg/recipes/linux/recipe-headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/linux/recipe-headers -------------------------------------------------------------------------------- /pkg/recipes/linux/recipe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/linux/recipe.sh -------------------------------------------------------------------------------- /pkg/recipes/linux/ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/linux/ver -------------------------------------------------------------------------------- /pkg/recipes/llvm/patches/0001-llvm-musl-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/llvm/patches/0001-llvm-musl-fixes.patch -------------------------------------------------------------------------------- /pkg/recipes/llvm/patches/0002-llvm-set-stack-size-to-8M.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/llvm/patches/0002-llvm-set-stack-size-to-8M.patch -------------------------------------------------------------------------------- /pkg/recipes/llvm/patches/0006-clang-disable-multiarch-layout.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/llvm/patches/0006-clang-disable-multiarch-layout.patch -------------------------------------------------------------------------------- /pkg/recipes/llvm/patches/0007-clang-modify-error-triggers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/llvm/patches/0007-clang-modify-error-triggers.patch -------------------------------------------------------------------------------- /pkg/recipes/llvm/patches/0008-libcxx-musl-locale-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/llvm/patches/0008-libcxx-musl-locale-fixes.patch -------------------------------------------------------------------------------- /pkg/recipes/llvm/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/llvm/recipe -------------------------------------------------------------------------------- /pkg/recipes/llvm/ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/llvm/ver -------------------------------------------------------------------------------- /pkg/recipes/lz4/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/lz4/recipe -------------------------------------------------------------------------------- /pkg/recipes/lz4/ver: -------------------------------------------------------------------------------- 1 | lz4 1.9.3 2 | -------------------------------------------------------------------------------- /pkg/recipes/m4/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/m4/recipe -------------------------------------------------------------------------------- /pkg/recipes/m4/ver: -------------------------------------------------------------------------------- 1 | m4 1.4.18 2 | -------------------------------------------------------------------------------- /pkg/recipes/maim/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/maim/recipe -------------------------------------------------------------------------------- /pkg/recipes/maim/ver: -------------------------------------------------------------------------------- 1 | maim 5.5.3 2 | -------------------------------------------------------------------------------- /pkg/recipes/make/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/make/recipe -------------------------------------------------------------------------------- /pkg/recipes/make/ver: -------------------------------------------------------------------------------- 1 | make 4.4.1 2 | -------------------------------------------------------------------------------- /pkg/recipes/mawk/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/mawk/recipe -------------------------------------------------------------------------------- /pkg/recipes/mawk/ver: -------------------------------------------------------------------------------- 1 | mawk 1.3.4-20200120 2 | -------------------------------------------------------------------------------- /pkg/recipes/mesa/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/mesa/recipe -------------------------------------------------------------------------------- /pkg/recipes/mesa/ver: -------------------------------------------------------------------------------- 1 | mesa 23.1.0-rc4 2 | -------------------------------------------------------------------------------- /pkg/recipes/meson/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/meson/recipe -------------------------------------------------------------------------------- /pkg/recipes/meson/ver: -------------------------------------------------------------------------------- 1 | meson 1.0.0 2 | -------------------------------------------------------------------------------- /pkg/recipes/mimalloc/patches/0001-fix-mi_basename.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/mimalloc/patches/0001-fix-mi_basename.patch -------------------------------------------------------------------------------- /pkg/recipes/mimalloc/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/mimalloc/recipe -------------------------------------------------------------------------------- /pkg/recipes/mimalloc/ver: -------------------------------------------------------------------------------- 1 | mimalloc 2.0.2 2 | -------------------------------------------------------------------------------- /pkg/recipes/minetest/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/minetest/recipe -------------------------------------------------------------------------------- /pkg/recipes/minetest/ver: -------------------------------------------------------------------------------- 1 | minetest 5.6.1 2 | -------------------------------------------------------------------------------- /pkg/recipes/mpv/files/lua.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/mpv/files/lua.pc -------------------------------------------------------------------------------- /pkg/recipes/mpv/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/mpv/recipe -------------------------------------------------------------------------------- /pkg/recipes/mpv/ver: -------------------------------------------------------------------------------- 1 | mpv 0.35.1 2 | -------------------------------------------------------------------------------- /pkg/recipes/mss-core/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/mss-core/recipe -------------------------------------------------------------------------------- /pkg/recipes/mss-core/ver: -------------------------------------------------------------------------------- 1 | init 57 2 | utils 61 3 | -------------------------------------------------------------------------------- /pkg/recipes/mss-ec/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/mss-ec/recipe -------------------------------------------------------------------------------- /pkg/recipes/mss-ec/ver: -------------------------------------------------------------------------------- 1 | mss-ec b8b60fef 2 | -------------------------------------------------------------------------------- /pkg/recipes/mss-fw/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/mss-fw/recipe -------------------------------------------------------------------------------- /pkg/recipes/mss-fw/ver: -------------------------------------------------------------------------------- 1 | mss-fw 2cd46876 2 | -------------------------------------------------------------------------------- /pkg/recipes/mtr/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/mtr/recipe -------------------------------------------------------------------------------- /pkg/recipes/mtr/ver: -------------------------------------------------------------------------------- 1 | mtr 0.95 2 | -------------------------------------------------------------------------------- /pkg/recipes/mupdf/patches/0001-openssl-x11.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/mupdf/patches/0001-openssl-x11.patch -------------------------------------------------------------------------------- /pkg/recipes/mupdf/patches/0002-lld-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/mupdf/patches/0002-lld-fixes.patch -------------------------------------------------------------------------------- /pkg/recipes/mupdf/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/mupdf/recipe -------------------------------------------------------------------------------- /pkg/recipes/mupdf/ver: -------------------------------------------------------------------------------- 1 | mupdf 1.16.1 2 | -------------------------------------------------------------------------------- /pkg/recipes/musl/files/cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/musl/files/cdefs.h -------------------------------------------------------------------------------- /pkg/recipes/musl/files/getconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/musl/files/getconf.c -------------------------------------------------------------------------------- /pkg/recipes/musl/files/getent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/musl/files/getent.c -------------------------------------------------------------------------------- /pkg/recipes/musl/files/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/musl/files/iconv.c -------------------------------------------------------------------------------- /pkg/recipes/musl/files/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/musl/files/queue.h -------------------------------------------------------------------------------- /pkg/recipes/musl/files/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/musl/files/tree.h -------------------------------------------------------------------------------- /pkg/recipes/musl/patches/0001-handle-aux-AT_BASE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/musl/patches/0001-handle-aux-AT_BASE.patch -------------------------------------------------------------------------------- /pkg/recipes/musl/patches/0002-bring-back-lfs64-aliases.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/musl/patches/0002-bring-back-lfs64-aliases.patch -------------------------------------------------------------------------------- /pkg/recipes/musl/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/musl/recipe -------------------------------------------------------------------------------- /pkg/recipes/musl/ver: -------------------------------------------------------------------------------- 1 | musl 1.2.4 2 | -------------------------------------------------------------------------------- /pkg/recipes/muzak/files/mpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/muzak/files/mpd.conf -------------------------------------------------------------------------------- /pkg/recipes/muzak/patches/0001-mpd-stacksize.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/muzak/patches/0001-mpd-stacksize.patch -------------------------------------------------------------------------------- /pkg/recipes/muzak/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/muzak/recipe -------------------------------------------------------------------------------- /pkg/recipes/muzak/ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/muzak/ver -------------------------------------------------------------------------------- /pkg/recipes/nasm/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/nasm/recipe -------------------------------------------------------------------------------- /pkg/recipes/nasm/ver: -------------------------------------------------------------------------------- 1 | nasm 2.15.05 2 | -------------------------------------------------------------------------------- /pkg/recipes/ncurses/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/ncurses/recipe -------------------------------------------------------------------------------- /pkg/recipes/ncurses/ver: -------------------------------------------------------------------------------- 1 | ncurses 6.3 2 | -------------------------------------------------------------------------------- /pkg/recipes/nfqws/patches/0001-libmnl-fix-includes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/nfqws/patches/0001-libmnl-fix-includes.patch -------------------------------------------------------------------------------- /pkg/recipes/nfqws/patches/0002-libnfnetlink-fix-includes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/nfqws/patches/0002-libnfnetlink-fix-includes.patch -------------------------------------------------------------------------------- /pkg/recipes/nfqws/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/nfqws/recipe -------------------------------------------------------------------------------- /pkg/recipes/nfqws/ver: -------------------------------------------------------------------------------- 1 | nfqws 16648485 2 | -------------------------------------------------------------------------------- /pkg/recipes/nfs-utils/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/nfs-utils/recipe -------------------------------------------------------------------------------- /pkg/recipes/nfs-utils/ver: -------------------------------------------------------------------------------- 1 | nfs-utils 2.5.2 2 | -------------------------------------------------------------------------------- /pkg/recipes/nginx/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/nginx/recipe -------------------------------------------------------------------------------- /pkg/recipes/nginx/ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/nginx/ver -------------------------------------------------------------------------------- /pkg/recipes/node.js/patches/0001-remove-latomic.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/node.js/patches/0001-remove-latomic.patch -------------------------------------------------------------------------------- /pkg/recipes/node.js/patches/0002-fix-libc++.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/node.js/patches/0002-fix-libc++.patch -------------------------------------------------------------------------------- /pkg/recipes/node.js/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/node.js/recipe -------------------------------------------------------------------------------- /pkg/recipes/node.js/ver: -------------------------------------------------------------------------------- 1 | node.js 19.8.1 2 | -------------------------------------------------------------------------------- /pkg/recipes/ookla-speedtest/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/ookla-speedtest/recipe -------------------------------------------------------------------------------- /pkg/recipes/ookla-speedtest/ver: -------------------------------------------------------------------------------- 1 | ookla-speedtest 1.2.0 2 | -------------------------------------------------------------------------------- /pkg/recipes/opendoas/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/opendoas/recipe -------------------------------------------------------------------------------- /pkg/recipes/opendoas/ver: -------------------------------------------------------------------------------- 1 | opendoas 6.8.2 2 | -------------------------------------------------------------------------------- /pkg/recipes/openjpeg/patches/0001-fix-cmakelists.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/openjpeg/patches/0001-fix-cmakelists.patch -------------------------------------------------------------------------------- /pkg/recipes/openjpeg/patches/0002-CVE-2021-29338.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/openjpeg/patches/0002-CVE-2021-29338.patch -------------------------------------------------------------------------------- /pkg/recipes/openjpeg/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/openjpeg/recipe -------------------------------------------------------------------------------- /pkg/recipes/openjpeg/ver: -------------------------------------------------------------------------------- 1 | openjpeg 2.4.0 2 | -------------------------------------------------------------------------------- /pkg/recipes/openmw/patches/0001-collada-dom-fix-libcxx16.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/openmw/patches/0001-collada-dom-fix-libcxx16.patch -------------------------------------------------------------------------------- /pkg/recipes/openmw/patches/0002-openscenegraph-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/openmw/patches/0002-openscenegraph-cmake.patch -------------------------------------------------------------------------------- /pkg/recipes/openmw/patches/0003-openscenegraph-docdir.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/openmw/patches/0003-openscenegraph-docdir.patch -------------------------------------------------------------------------------- /pkg/recipes/openmw/patches/0004-openscenegraph-musl-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/openmw/patches/0004-openscenegraph-musl-fixes.patch -------------------------------------------------------------------------------- /pkg/recipes/openmw/patches/0005-openmw-fix-includes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/openmw/patches/0005-openmw-fix-includes.patch -------------------------------------------------------------------------------- /pkg/recipes/openmw/patches/0006-openmw-fix-ffmpeg.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/openmw/patches/0006-openmw-fix-ffmpeg.patch -------------------------------------------------------------------------------- /pkg/recipes/openmw/patches/0007-openmw-fix-static-linking.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/openmw/patches/0007-openmw-fix-static-linking.patch -------------------------------------------------------------------------------- /pkg/recipes/openmw/patches/0008-openmw-autism-paths-1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/openmw/patches/0008-openmw-autism-paths-1.patch -------------------------------------------------------------------------------- /pkg/recipes/openmw/patches/0009-openmw-autism-paths-2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/openmw/patches/0009-openmw-autism-paths-2.patch -------------------------------------------------------------------------------- /pkg/recipes/openmw/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/openmw/recipe -------------------------------------------------------------------------------- /pkg/recipes/openmw/ver: -------------------------------------------------------------------------------- 1 | openmw 0.47.0 2 | -------------------------------------------------------------------------------- /pkg/recipes/openssh/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/openssh/recipe -------------------------------------------------------------------------------- /pkg/recipes/openssh/ver: -------------------------------------------------------------------------------- 1 | openssh 9.3p1 2 | -------------------------------------------------------------------------------- /pkg/recipes/openssl/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/openssl/recipe -------------------------------------------------------------------------------- /pkg/recipes/openssl/ver: -------------------------------------------------------------------------------- 1 | openssl 3.1.0 2 | -------------------------------------------------------------------------------- /pkg/recipes/openvpn/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/openvpn/recipe -------------------------------------------------------------------------------- /pkg/recipes/openvpn/ver: -------------------------------------------------------------------------------- 1 | openvpn 2.5.8 2 | -------------------------------------------------------------------------------- /pkg/recipes/opus/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/opus/recipe -------------------------------------------------------------------------------- /pkg/recipes/opus/ver: -------------------------------------------------------------------------------- 1 | opus 1.3.1 2 | -------------------------------------------------------------------------------- /pkg/recipes/pango/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/pango/recipe -------------------------------------------------------------------------------- /pkg/recipes/pango/ver: -------------------------------------------------------------------------------- 1 | pango 1.50.13 2 | -------------------------------------------------------------------------------- /pkg/recipes/patch/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/patch/recipe -------------------------------------------------------------------------------- /pkg/recipes/patch/ver: -------------------------------------------------------------------------------- 1 | patch 2.7.6 2 | -------------------------------------------------------------------------------- /pkg/recipes/patchelf/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/patchelf/recipe -------------------------------------------------------------------------------- /pkg/recipes/patchelf/ver: -------------------------------------------------------------------------------- 1 | redshift 490ba2aa 2 | -------------------------------------------------------------------------------- /pkg/recipes/pavucontrol/patches/0001-link-against-lltdl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/pavucontrol/patches/0001-link-against-lltdl.patch -------------------------------------------------------------------------------- /pkg/recipes/pavucontrol/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/pavucontrol/recipe -------------------------------------------------------------------------------- /pkg/recipes/pavucontrol/ver: -------------------------------------------------------------------------------- 1 | pavucontrol ee77d86e 2 | -------------------------------------------------------------------------------- /pkg/recipes/pciutils/patches/0001-pread.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/pciutils/patches/0001-pread.patch -------------------------------------------------------------------------------- /pkg/recipes/pciutils/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/pciutils/recipe -------------------------------------------------------------------------------- /pkg/recipes/pciutils/ver: -------------------------------------------------------------------------------- 1 | pciutils 3.7.0 2 | -------------------------------------------------------------------------------- /pkg/recipes/pcre2/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/pcre2/recipe -------------------------------------------------------------------------------- /pkg/recipes/pcre2/ver: -------------------------------------------------------------------------------- 1 | pcre2 10.40 2 | -------------------------------------------------------------------------------- /pkg/recipes/perl/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/perl/recipe -------------------------------------------------------------------------------- /pkg/recipes/perl/ver: -------------------------------------------------------------------------------- 1 | perl 5.36.0 2 | -------------------------------------------------------------------------------- /pkg/recipes/picom/patches/0001-libev-add-pkgconfig-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/picom/patches/0001-libev-add-pkgconfig-support.patch -------------------------------------------------------------------------------- /pkg/recipes/picom/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/picom/recipe -------------------------------------------------------------------------------- /pkg/recipes/picom/ver: -------------------------------------------------------------------------------- 1 | picom 10.2 2 | -------------------------------------------------------------------------------- /pkg/recipes/pigz/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/pigz/recipe -------------------------------------------------------------------------------- /pkg/recipes/pigz/ver: -------------------------------------------------------------------------------- 1 | pigz 2.6 2 | -------------------------------------------------------------------------------- /pkg/recipes/pkgconf/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/pkgconf/recipe -------------------------------------------------------------------------------- /pkg/recipes/pkgconf/ver: -------------------------------------------------------------------------------- 1 | pkgconf 1.7.4 2 | -------------------------------------------------------------------------------- /pkg/recipes/profanity/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/profanity/recipe -------------------------------------------------------------------------------- /pkg/recipes/profanity/ver: -------------------------------------------------------------------------------- 1 | profanity 0.11.1 2 | -------------------------------------------------------------------------------- /pkg/recipes/pulsemixer/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/pulsemixer/recipe -------------------------------------------------------------------------------- /pkg/recipes/pulsemixer/ver: -------------------------------------------------------------------------------- 1 | pulsemixer 1.5.1 2 | -------------------------------------------------------------------------------- /pkg/recipes/python/patches/0001-always-pip.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/python/patches/0001-always-pip.patch -------------------------------------------------------------------------------- /pkg/recipes/python/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/python/recipe -------------------------------------------------------------------------------- /pkg/recipes/python/ver: -------------------------------------------------------------------------------- 1 | python 3.10.6 2 | -------------------------------------------------------------------------------- /pkg/recipes/qemu/patches/0001-fix-datadir.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/qemu/patches/0001-fix-datadir.patch -------------------------------------------------------------------------------- /pkg/recipes/qemu/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/qemu/recipe -------------------------------------------------------------------------------- /pkg/recipes/qemu/ver: -------------------------------------------------------------------------------- 1 | qemu 7.2.0 2 | -------------------------------------------------------------------------------- /pkg/recipes/quakespasm-spiked/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/quakespasm-spiked/recipe -------------------------------------------------------------------------------- /pkg/recipes/quakespasm-spiked/ver: -------------------------------------------------------------------------------- 1 | quakespasm-spiked e9822ae9 2 | -------------------------------------------------------------------------------- /pkg/recipes/reX/patches/0001-reVC-fix-libcxx16.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/reX/patches/0001-reVC-fix-libcxx16.patch -------------------------------------------------------------------------------- /pkg/recipes/reX/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/reX/recipe -------------------------------------------------------------------------------- /pkg/recipes/reX/ver: -------------------------------------------------------------------------------- 1 | re3 3233ffe1 2 | reVC a16fcd8d 3 | -------------------------------------------------------------------------------- /pkg/recipes/readline/patches/0001-fix-ncurses-underlinking.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/readline/patches/0001-fix-ncurses-underlinking.patch -------------------------------------------------------------------------------- /pkg/recipes/readline/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/readline/recipe -------------------------------------------------------------------------------- /pkg/recipes/readline/ver: -------------------------------------------------------------------------------- 1 | readline 8.1 2 | -------------------------------------------------------------------------------- /pkg/recipes/redshift/patches/0001-nuke-gettext.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/redshift/patches/0001-nuke-gettext.patch -------------------------------------------------------------------------------- /pkg/recipes/redshift/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/redshift/recipe -------------------------------------------------------------------------------- /pkg/recipes/redshift/ver: -------------------------------------------------------------------------------- 1 | redshift 490ba2aa 2 | -------------------------------------------------------------------------------- /pkg/recipes/rpcbind/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/rpcbind/recipe -------------------------------------------------------------------------------- /pkg/recipes/rpcbind/ver: -------------------------------------------------------------------------------- 1 | rpcbind 1.2.5 2 | -------------------------------------------------------------------------------- /pkg/recipes/rsync/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/rsync/recipe -------------------------------------------------------------------------------- /pkg/recipes/rsync/ver: -------------------------------------------------------------------------------- 1 | rsync 3.2.7 2 | -------------------------------------------------------------------------------- /pkg/recipes/rust/files/config-bootstrap.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/rust/files/config-bootstrap.toml -------------------------------------------------------------------------------- /pkg/recipes/rust/files/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/rust/files/config.toml -------------------------------------------------------------------------------- /pkg/recipes/rust/patches/0001-use-lib-instead-of-libexec.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/rust/patches/0001-use-lib-instead-of-libexec.patch -------------------------------------------------------------------------------- /pkg/recipes/rust/patches/0002-libunwind-adjustments.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/rust/patches/0002-libunwind-adjustments.patch -------------------------------------------------------------------------------- /pkg/recipes/rust/patches/0003-use-system-libunwind.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/rust/patches/0003-use-system-libunwind.patch -------------------------------------------------------------------------------- /pkg/recipes/rust/patches/0005-fix-curl-cert-error-with-cargo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/rust/patches/0005-fix-curl-cert-error-with-cargo.patch -------------------------------------------------------------------------------- /pkg/recipes/rust/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/rust/recipe -------------------------------------------------------------------------------- /pkg/recipes/rust/ver: -------------------------------------------------------------------------------- 1 | rust 7908a1d6 2 | -------------------------------------------------------------------------------- /pkg/recipes/samurai/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/samurai/recipe -------------------------------------------------------------------------------- /pkg/recipes/samurai/ver: -------------------------------------------------------------------------------- 1 | samurai 1.2 2 | -------------------------------------------------------------------------------- /pkg/recipes/sed/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/sed/recipe -------------------------------------------------------------------------------- /pkg/recipes/sed/ver: -------------------------------------------------------------------------------- 1 | sed 4.9 2 | -------------------------------------------------------------------------------- /pkg/recipes/smartmontools/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/smartmontools/recipe -------------------------------------------------------------------------------- /pkg/recipes/smartmontools/ver: -------------------------------------------------------------------------------- 1 | smartmontools 7.2 2 | -------------------------------------------------------------------------------- /pkg/recipes/spoofshit/patches/0001-libnet-fix-types.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/spoofshit/patches/0001-libnet-fix-types.patch -------------------------------------------------------------------------------- /pkg/recipes/spoofshit/patches/0002-dsniff-time.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/spoofshit/patches/0002-dsniff-time.h.patch -------------------------------------------------------------------------------- /pkg/recipes/spoofshit/patches/0003-dsniff-mailsnarf_corrupt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/spoofshit/patches/0003-dsniff-mailsnarf_corrupt.patch -------------------------------------------------------------------------------- /pkg/recipes/spoofshit/patches/0004-dsniff-pcap_read_dump.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/spoofshit/patches/0004-dsniff-pcap_read_dump.patch -------------------------------------------------------------------------------- /pkg/recipes/spoofshit/patches/0005-dsniff-multiple_intf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/spoofshit/patches/0005-dsniff-multiple_intf.patch -------------------------------------------------------------------------------- /pkg/recipes/spoofshit/patches/0006-dsniff-amd64_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/spoofshit/patches/0006-dsniff-amd64_fix.patch -------------------------------------------------------------------------------- /pkg/recipes/spoofshit/patches/0007-dsniff-urlsnarf_zeropad.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/spoofshit/patches/0007-dsniff-urlsnarf_zeropad.patch -------------------------------------------------------------------------------- /pkg/recipes/spoofshit/patches/0008-dsniff-libnet_1.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/spoofshit/patches/0008-dsniff-libnet_1.1.patch -------------------------------------------------------------------------------- /pkg/recipes/spoofshit/patches/0009-dsniff-openssl-0.9.8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/spoofshit/patches/0009-dsniff-openssl-0.9.8.patch -------------------------------------------------------------------------------- /pkg/recipes/spoofshit/patches/0010-dsniff-sysconf_clocks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/spoofshit/patches/0010-dsniff-sysconf_clocks.patch -------------------------------------------------------------------------------- /pkg/recipes/spoofshit/patches/0011-dsniff-urlsnarf_escape.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/spoofshit/patches/0011-dsniff-urlsnarf_escape.patch -------------------------------------------------------------------------------- /pkg/recipes/spoofshit/patches/0012-dsniff-string_header.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/spoofshit/patches/0012-dsniff-string_header.patch -------------------------------------------------------------------------------- /pkg/recipes/spoofshit/patches/0013-dsniff-arpa_inet_header.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/spoofshit/patches/0013-dsniff-arpa_inet_header.patch -------------------------------------------------------------------------------- /pkg/recipes/spoofshit/patches/0015-dsniff-obsolete_time.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/spoofshit/patches/0015-dsniff-obsolete_time.patch -------------------------------------------------------------------------------- /pkg/recipes/spoofshit/patches/0017-dsniff-TDS_decoder.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/spoofshit/patches/0017-dsniff-TDS_decoder.patch -------------------------------------------------------------------------------- /pkg/recipes/spoofshit/patches/0018-dsniff-checksum.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/spoofshit/patches/0018-dsniff-checksum.patch -------------------------------------------------------------------------------- /pkg/recipes/spoofshit/patches/0019-dsniff-sshcrypto.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/spoofshit/patches/0019-dsniff-sshcrypto.patch -------------------------------------------------------------------------------- /pkg/recipes/spoofshit/patches/0021-dsniff-debian_dirs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/spoofshit/patches/0021-dsniff-debian_dirs.patch -------------------------------------------------------------------------------- /pkg/recipes/spoofshit/patches/0023-dsniff-handlepp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/spoofshit/patches/0023-dsniff-handlepp.patch -------------------------------------------------------------------------------- /pkg/recipes/spoofshit/patches/0031-dsniff-pntohl_shift.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/spoofshit/patches/0031-dsniff-pntohl_shift.patch -------------------------------------------------------------------------------- /pkg/recipes/spoofshit/patches/0032-dsniff-sysconf_clocks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/spoofshit/patches/0032-dsniff-sysconf_clocks.patch -------------------------------------------------------------------------------- /pkg/recipes/spoofshit/patches/0033-dsniff-rpc_segfault.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/spoofshit/patches/0033-dsniff-rpc_segfault.patch -------------------------------------------------------------------------------- /pkg/recipes/spoofshit/patches/0034-dsniff-sshcrypto_DES.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/spoofshit/patches/0034-dsniff-sshcrypto_DES.patch -------------------------------------------------------------------------------- /pkg/recipes/spoofshit/patches/0036-dsniff-Add_CPPFLAGS.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/spoofshit/patches/0036-dsniff-Add_CPPFLAGS.patch -------------------------------------------------------------------------------- /pkg/recipes/spoofshit/patches/0038-dsniff-httppostfix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/spoofshit/patches/0038-dsniff-httppostfix.patch -------------------------------------------------------------------------------- /pkg/recipes/spoofshit/patches/0040-dsniff-rpc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/spoofshit/patches/0040-dsniff-rpc.patch -------------------------------------------------------------------------------- /pkg/recipes/spoofshit/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/spoofshit/recipe -------------------------------------------------------------------------------- /pkg/recipes/spoofshit/ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/spoofshit/ver -------------------------------------------------------------------------------- /pkg/recipes/sqlite/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/sqlite/recipe -------------------------------------------------------------------------------- /pkg/recipes/sqlite/ver: -------------------------------------------------------------------------------- 1 | sqlite 3.40.0 2 | -------------------------------------------------------------------------------- /pkg/recipes/tar/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/tar/recipe -------------------------------------------------------------------------------- /pkg/recipes/tar/ver: -------------------------------------------------------------------------------- 1 | tar 1.34 2 | -------------------------------------------------------------------------------- /pkg/recipes/thinkfan/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/thinkfan/recipe -------------------------------------------------------------------------------- /pkg/recipes/thinkfan/ver: -------------------------------------------------------------------------------- 1 | thinkfan 1.3.1 2 | -------------------------------------------------------------------------------- /pkg/recipes/tiff-webp/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/tiff-webp/recipe -------------------------------------------------------------------------------- /pkg/recipes/tiff-webp/ver: -------------------------------------------------------------------------------- 1 | tiff 4.1.0 2 | libwebp 1.2.4 3 | -------------------------------------------------------------------------------- /pkg/recipes/tmux/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/tmux/recipe -------------------------------------------------------------------------------- /pkg/recipes/tmux/ver: -------------------------------------------------------------------------------- 1 | tmux 3.2a 2 | -------------------------------------------------------------------------------- /pkg/recipes/torshit/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/torshit/recipe -------------------------------------------------------------------------------- /pkg/recipes/torshit/ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/torshit/ver -------------------------------------------------------------------------------- /pkg/recipes/transmission/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/transmission/recipe -------------------------------------------------------------------------------- /pkg/recipes/transmission/ver: -------------------------------------------------------------------------------- 1 | transmission 4.0.3 2 | -------------------------------------------------------------------------------- /pkg/recipes/tzdb/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/tzdb/recipe -------------------------------------------------------------------------------- /pkg/recipes/tzdb/ver: -------------------------------------------------------------------------------- 1 | tzdb 2021a 2 | -------------------------------------------------------------------------------- /pkg/recipes/unrar/patches/0001-makefile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/unrar/patches/0001-makefile.patch -------------------------------------------------------------------------------- /pkg/recipes/unrar/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/unrar/recipe -------------------------------------------------------------------------------- /pkg/recipes/unrar/ver: -------------------------------------------------------------------------------- 1 | unrar 6.0.7 2 | -------------------------------------------------------------------------------- /pkg/recipes/usbutils/files/usb.ids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/usbutils/files/usb.ids -------------------------------------------------------------------------------- /pkg/recipes/usbutils/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/usbutils/recipe -------------------------------------------------------------------------------- /pkg/recipes/usbutils/ver: -------------------------------------------------------------------------------- 1 | usbutils 013 2 | -------------------------------------------------------------------------------- /pkg/recipes/util-linux/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/util-linux/recipe -------------------------------------------------------------------------------- /pkg/recipes/util-linux/ver: -------------------------------------------------------------------------------- 1 | util-linux 2.37.2 2 | -------------------------------------------------------------------------------- /pkg/recipes/v4l-utils/patches/0003-v4l-utils-getsubopt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/v4l-utils/patches/0003-v4l-utils-getsubopt.patch -------------------------------------------------------------------------------- /pkg/recipes/v4l-utils/patches/0004-v4l-utils-types.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/v4l-utils/patches/0004-v4l-utils-types.patch -------------------------------------------------------------------------------- /pkg/recipes/v4l-utils/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/v4l-utils/recipe -------------------------------------------------------------------------------- /pkg/recipes/v4l-utils/ver: -------------------------------------------------------------------------------- 1 | v4l-utils 1.20.0 2 | -------------------------------------------------------------------------------- /pkg/recipes/vifm/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/vifm/recipe -------------------------------------------------------------------------------- /pkg/recipes/vifm/ver: -------------------------------------------------------------------------------- 1 | vifm 0.11 2 | -------------------------------------------------------------------------------- /pkg/recipes/vim/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/vim/recipe -------------------------------------------------------------------------------- /pkg/recipes/vim/ver: -------------------------------------------------------------------------------- 1 | vim 9.0.1261 2 | -------------------------------------------------------------------------------- /pkg/recipes/wlanshit/patches/0001-iw-lld13-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/wlanshit/patches/0001-iw-lld13-fix.patch -------------------------------------------------------------------------------- /pkg/recipes/wlanshit/patches/0001-libpcap-fix-headers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/wlanshit/patches/0001-libpcap-fix-headers.patch -------------------------------------------------------------------------------- /pkg/recipes/wlanshit/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/wlanshit/recipe -------------------------------------------------------------------------------- /pkg/recipes/wlanshit/ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/wlanshit/ver -------------------------------------------------------------------------------- /pkg/recipes/wpa-supplicant/files/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/wpa-supplicant/files/config -------------------------------------------------------------------------------- /pkg/recipes/wpa-supplicant/patches/0001-eloop.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/wpa-supplicant/patches/0001-eloop.patch -------------------------------------------------------------------------------- /pkg/recipes/wpa-supplicant/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/wpa-supplicant/recipe -------------------------------------------------------------------------------- /pkg/recipes/wpa-supplicant/ver: -------------------------------------------------------------------------------- 1 | wpa-supplicant 2.10 2 | -------------------------------------------------------------------------------- /pkg/recipes/x264/patches/0001-no-bash.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/x264/patches/0001-no-bash.patch -------------------------------------------------------------------------------- /pkg/recipes/x264/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/x264/recipe -------------------------------------------------------------------------------- /pkg/recipes/x264/ver: -------------------------------------------------------------------------------- 1 | x264 20191119-2245 2 | -------------------------------------------------------------------------------- /pkg/recipes/x265/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/x265/recipe -------------------------------------------------------------------------------- /pkg/recipes/x265/ver: -------------------------------------------------------------------------------- 1 | x265 3.5 2 | -------------------------------------------------------------------------------- /pkg/recipes/xclip/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/xclip/recipe -------------------------------------------------------------------------------- /pkg/recipes/xclip/ver: -------------------------------------------------------------------------------- 1 | xclip 0.13 2 | -------------------------------------------------------------------------------- /pkg/recipes/xinit/patches/0001-serverauthfile-in-tmp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/xinit/patches/0001-serverauthfile-in-tmp.patch -------------------------------------------------------------------------------- /pkg/recipes/xinit/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/xinit/recipe -------------------------------------------------------------------------------- /pkg/recipes/xinit/ver: -------------------------------------------------------------------------------- 1 | xinit 1.4.1 2 | -------------------------------------------------------------------------------- /pkg/recipes/xorg-apps/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/xorg-apps/recipe -------------------------------------------------------------------------------- /pkg/recipes/xorg-apps/ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/xorg-apps/ver -------------------------------------------------------------------------------- /pkg/recipes/xorg-libs-part1/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/xorg-libs-part1/recipe -------------------------------------------------------------------------------- /pkg/recipes/xorg-libs-part1/ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/xorg-libs-part1/ver -------------------------------------------------------------------------------- /pkg/recipes/xorg-libs-part2/patches/0001-libpng-apng.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/xorg-libs-part2/patches/0001-libpng-apng.patch -------------------------------------------------------------------------------- /pkg/recipes/xorg-libs-part2/patches/0008-cairo-47a21c6e.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/xorg-libs-part2/patches/0008-cairo-47a21c6e.patch -------------------------------------------------------------------------------- /pkg/recipes/xorg-libs-part2/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/xorg-libs-part2/recipe -------------------------------------------------------------------------------- /pkg/recipes/xorg-libs-part2/ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/xorg-libs-part2/ver -------------------------------------------------------------------------------- /pkg/recipes/xorg-libs-part3/patches/0001-libXft-bgra.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/xorg-libs-part3/patches/0001-libXft-bgra.patch -------------------------------------------------------------------------------- /pkg/recipes/xorg-libs-part3/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/xorg-libs-part3/recipe -------------------------------------------------------------------------------- /pkg/recipes/xorg-libs-part3/ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/xorg-libs-part3/ver -------------------------------------------------------------------------------- /pkg/recipes/xorg-server/patches/0001-static-libxcvt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/xorg-server/patches/0001-static-libxcvt.patch -------------------------------------------------------------------------------- /pkg/recipes/xorg-server/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/xorg-server/recipe -------------------------------------------------------------------------------- /pkg/recipes/xorg-server/ver: -------------------------------------------------------------------------------- 1 | xorg-server 21.1.8 2 | -------------------------------------------------------------------------------- /pkg/recipes/xtrlock/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/xtrlock/recipe -------------------------------------------------------------------------------- /pkg/recipes/xtrlock/ver: -------------------------------------------------------------------------------- 1 | xtrlock 2.12 2 | -------------------------------------------------------------------------------- /pkg/recipes/xz/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/xz/recipe -------------------------------------------------------------------------------- /pkg/recipes/xz/ver: -------------------------------------------------------------------------------- 1 | xz 5.4.2 2 | -------------------------------------------------------------------------------- /pkg/recipes/yash/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/yash/recipe -------------------------------------------------------------------------------- /pkg/recipes/yash/ver: -------------------------------------------------------------------------------- 1 | yash 2.53 2 | -------------------------------------------------------------------------------- /pkg/recipes/yt-dlp/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/yt-dlp/recipe -------------------------------------------------------------------------------- /pkg/recipes/yt-dlp/ver: -------------------------------------------------------------------------------- 1 | yt-dlp 2023.03.04 2 | -------------------------------------------------------------------------------- /pkg/recipes/zlib/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/zlib/recipe -------------------------------------------------------------------------------- /pkg/recipes/zlib/ver: -------------------------------------------------------------------------------- 1 | zlib 1.2.13 2 | -------------------------------------------------------------------------------- /pkg/recipes/zstd/recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/recipes/zstd/recipe -------------------------------------------------------------------------------- /pkg/recipes/zstd/ver: -------------------------------------------------------------------------------- 1 | zstd 1.5.5 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/acpid-2.0.32.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/acpid 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/android-tools-31.0.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/android-tools-31.0.2.txt -------------------------------------------------------------------------------- /pkg/trees/blt/atk-2.38.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/atk-2.38.0.txt -------------------------------------------------------------------------------- /pkg/trees/blt/audioshit-20230417_002330.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/audioshit-20230417_002330.txt -------------------------------------------------------------------------------- /pkg/trees/blt/autoconf-2.70.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/autoconf-2.70.txt -------------------------------------------------------------------------------- /pkg/trees/blt/automake-1.16.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/automake-1.16.3.txt -------------------------------------------------------------------------------- /pkg/trees/blt/bc-4.0.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/bc-4.0.1.txt -------------------------------------------------------------------------------- /pkg/trees/blt/bison-3.7.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/bison-3.7.4.txt -------------------------------------------------------------------------------- /pkg/trees/blt/busybox-1.36.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/busybox-1.36.0.txt -------------------------------------------------------------------------------- /pkg/trees/blt/bzip2-1.0.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/bzip2-1.0.8.txt -------------------------------------------------------------------------------- /pkg/trees/blt/clzip-1.12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/clzip-1.12.txt -------------------------------------------------------------------------------- /pkg/trees/blt/cmake-3.26.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/cmake-3.26.0.txt -------------------------------------------------------------------------------- /pkg/trees/blt/curl-8.0.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/curl-8.0.1.txt -------------------------------------------------------------------------------- /pkg/trees/blt/diffutils-3.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/diffutils-3.7.txt -------------------------------------------------------------------------------- /pkg/trees/blt/dragon-0a56eb2d.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/dragon 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/e2fsprogs-1.46.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/e2fsprogs-1.46.4.txt -------------------------------------------------------------------------------- /pkg/trees/blt/efibootmgr-18.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/efibootmgr 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/eudev-3.2.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/eudev-3.2.11.txt -------------------------------------------------------------------------------- /pkg/trees/blt/expat-2.4.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/expat-2.4.2.txt -------------------------------------------------------------------------------- /pkg/trees/blt/fbcat-25062ab1.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/fbcat 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/fdupes-2.1.2.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/fdupes 2 | 3 | /usr/share/man 4 | -------------------------------------------------------------------------------- /pkg/trees/blt/feh-3.7.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/feh-3.7.1.txt -------------------------------------------------------------------------------- /pkg/trees/blt/ffmpeg-6.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/ffmpeg-6.0.txt -------------------------------------------------------------------------------- /pkg/trees/blt/file-5.40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/file-5.40.txt -------------------------------------------------------------------------------- /pkg/trees/blt/findutils-4.8.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/findutils-4.8.0.txt -------------------------------------------------------------------------------- /pkg/trees/blt/flac-1.3.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/flac-1.3.3.txt -------------------------------------------------------------------------------- /pkg/trees/blt/flex-2.6.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/flex-2.6.4.txt -------------------------------------------------------------------------------- /pkg/trees/blt/freeglut-3.2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/freeglut-3.2.1.txt -------------------------------------------------------------------------------- /pkg/trees/blt/fribidi-1.0.10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/fribidi-1.0.10.txt -------------------------------------------------------------------------------- /pkg/trees/blt/gdk-pixbuf-2.42.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/gdk-pixbuf-2.42.8.txt -------------------------------------------------------------------------------- /pkg/trees/blt/giflib-5.2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/giflib-5.2.1.txt -------------------------------------------------------------------------------- /pkg/trees/blt/git-2.40.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/git-2.40.1.txt -------------------------------------------------------------------------------- /pkg/trees/blt/glu-9.0.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/glu-9.0.1.txt -------------------------------------------------------------------------------- /pkg/trees/blt/gnupg-and-friends-20210619_190532.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/gnupg-and-friends-20210619_190532.txt -------------------------------------------------------------------------------- /pkg/trees/blt/gperf-3.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/gperf-3.1.txt -------------------------------------------------------------------------------- /pkg/trees/blt/gpm-1.20.7.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/gpm 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/grep-3.10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/grep-3.10.txt -------------------------------------------------------------------------------- /pkg/trees/blt/gtk3-3.24.34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/gtk3-3.24.34.txt -------------------------------------------------------------------------------- /pkg/trees/blt/htop-3.0.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/htop-3.0.2.txt -------------------------------------------------------------------------------- /pkg/trees/blt/imagemagick-7.0.10.23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/imagemagick-7.0.10.23.txt -------------------------------------------------------------------------------- /pkg/trees/blt/imlib2-1.6.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/imlib2-1.6.1.txt -------------------------------------------------------------------------------- /pkg/trees/blt/inputery-20230430_043219.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/inputery-20230430_043219.txt -------------------------------------------------------------------------------- /pkg/trees/blt/intel-vaapi-driver-2.4.1.txt: -------------------------------------------------------------------------------- 1 | /usr/lib/dri/i965_drv_video.so 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/iptables-1.8.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/iptables-1.8.8.txt -------------------------------------------------------------------------------- /pkg/trees/blt/irssi-1.4.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/irssi-1.4.3.txt -------------------------------------------------------------------------------- /pkg/trees/blt/jq-1.6.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/jq 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/lame-3.100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/lame-3.100.txt -------------------------------------------------------------------------------- /pkg/trees/blt/landfill-20211010_143930.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/landfill-20211010_143930.txt -------------------------------------------------------------------------------- /pkg/trees/blt/lcms2-2.12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/lcms2-2.12.txt -------------------------------------------------------------------------------- /pkg/trees/blt/less-563.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/less-563.txt -------------------------------------------------------------------------------- /pkg/trees/blt/libass-0.15.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/libass-0.15.0.txt -------------------------------------------------------------------------------- /pkg/trees/blt/libdrm-2.4.111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/libdrm-2.4.111.txt -------------------------------------------------------------------------------- /pkg/trees/blt/libelf-0.186.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/libelf-0.186.txt -------------------------------------------------------------------------------- /pkg/trees/blt/libepoxy-1.5.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/libepoxy-1.5.8.txt -------------------------------------------------------------------------------- /pkg/trees/blt/libevent-2.1.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/libevent-2.1.11.txt -------------------------------------------------------------------------------- /pkg/trees/blt/libffi-3.3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/libffi-3.3.0.txt -------------------------------------------------------------------------------- /pkg/trees/blt/libid3tag-0.15.1b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/libid3tag-0.15.1b.txt -------------------------------------------------------------------------------- /pkg/trees/blt/libjpeg-turbo-2.0.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/libjpeg-turbo-2.0.5.txt -------------------------------------------------------------------------------- /pkg/trees/blt/libnl3-3.5.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/libnl3-3.5.0.txt -------------------------------------------------------------------------------- /pkg/trees/blt/libogg-1.3.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/libogg-1.3.5.txt -------------------------------------------------------------------------------- /pkg/trees/blt/libssh2-1.9.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/libssh2-1.9.0.txt -------------------------------------------------------------------------------- /pkg/trees/blt/libtirpc-1.3.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/libtirpc-1.3.1.txt -------------------------------------------------------------------------------- /pkg/trees/blt/libtool-2.4.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/libtool-2.4.6.txt -------------------------------------------------------------------------------- /pkg/trees/blt/libusb-1.0.24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/libusb-1.0.24.txt -------------------------------------------------------------------------------- /pkg/trees/blt/libva-2.14.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/libva-2.14.0.txt -------------------------------------------------------------------------------- /pkg/trees/blt/libvdpau-1.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/libvdpau-1.5.txt -------------------------------------------------------------------------------- /pkg/trees/blt/libvorbis-1.3.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/libvorbis-1.3.7.txt -------------------------------------------------------------------------------- /pkg/trees/blt/libvpx-1.10.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/libvpx-1.10.0.txt -------------------------------------------------------------------------------- /pkg/trees/blt/lilo-24.2.txt: -------------------------------------------------------------------------------- 1 | /sbin/lilo 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/links-2.27.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/links 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/linux-headers-6.3.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/linux-headers-6.3.1.txt -------------------------------------------------------------------------------- /pkg/trees/blt/lz4-1.9.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/lz4-1.9.3.txt -------------------------------------------------------------------------------- /pkg/trees/blt/m4-1.4.18.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/m4 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/maim-5.5.3.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/maim 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/make-4.4.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/make-4.4.1.txt -------------------------------------------------------------------------------- /pkg/trees/blt/mawk-1.3.4-20200120.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/mawk-1.3.4-20200120.txt -------------------------------------------------------------------------------- /pkg/trees/blt/mesa-23.1.0-rc4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/mesa-23.1.0-rc4.txt -------------------------------------------------------------------------------- /pkg/trees/blt/meson-1.0.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/meson-1.0.0.txt -------------------------------------------------------------------------------- /pkg/trees/blt/mpv-0.35.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/mpv-0.35.1.txt -------------------------------------------------------------------------------- /pkg/trees/blt/mss-core-20211003_142015.txt: -------------------------------------------------------------------------------- 1 | /mss 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/mss-ec-b8b60fef.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/mss-ec-b8b60fef.txt -------------------------------------------------------------------------------- /pkg/trees/blt/mss-fw-57783b9a.txt: -------------------------------------------------------------------------------- 1 | /lib/firmware 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/mtr-0.95.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/mtr-0.95.txt -------------------------------------------------------------------------------- /pkg/trees/blt/mupdf-1.16.1.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/mupdf-gl 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/musl-1.2.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/musl-1.2.4.txt -------------------------------------------------------------------------------- /pkg/trees/blt/nasm-2.15.05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/nasm-2.15.05.txt -------------------------------------------------------------------------------- /pkg/trees/blt/ncurses-6.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/ncurses-6.3.txt -------------------------------------------------------------------------------- /pkg/trees/blt/nfqws-16648485.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/nfqws 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/nfs-utils-2.5.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/nfs-utils-2.5.2.txt -------------------------------------------------------------------------------- /pkg/trees/blt/ookla-speedtest-1.2.0.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/speedtest 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/opendoas-6.8.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/opendoas-6.8.2.txt -------------------------------------------------------------------------------- /pkg/trees/blt/openjpeg-2.4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/openjpeg-2.4.0.txt -------------------------------------------------------------------------------- /pkg/trees/blt/openssh-9.3p1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/openssh-9.3p1.txt -------------------------------------------------------------------------------- /pkg/trees/blt/openssl-3.1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/openssl-3.1.0.txt -------------------------------------------------------------------------------- /pkg/trees/blt/openvpn-2.5.8.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/openvpn 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/opus-1.3.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/opus-1.3.1.txt -------------------------------------------------------------------------------- /pkg/trees/blt/pango-1.50.13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/pango-1.50.13.txt -------------------------------------------------------------------------------- /pkg/trees/blt/patch-2.7.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/patch-2.7.6.txt -------------------------------------------------------------------------------- /pkg/trees/blt/patchelf-0.17.2.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/patchelf 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/pavucontrol-ee77d86e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/pavucontrol-ee77d86e.txt -------------------------------------------------------------------------------- /pkg/trees/blt/pciutils-3.7.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/pciutils-3.7.0.txt -------------------------------------------------------------------------------- /pkg/trees/blt/pcre2-10.40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/pcre2-10.40.txt -------------------------------------------------------------------------------- /pkg/trees/blt/perl-5.36.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/perl-5.36.0.txt -------------------------------------------------------------------------------- /pkg/trees/blt/picom-10.2.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/picom 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/pigz-2.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/pigz-2.6.txt -------------------------------------------------------------------------------- /pkg/trees/blt/pkgconf-1.7.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/pkgconf-1.7.4.txt -------------------------------------------------------------------------------- /pkg/trees/blt/profanity-0.11.1.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/profanity 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/pulsemixer-1.5.1.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/pulsemixer 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/python-3.10.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/python-3.10.6.txt -------------------------------------------------------------------------------- /pkg/trees/blt/readline-8.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/readline-8.1.txt -------------------------------------------------------------------------------- /pkg/trees/blt/redshift-490ba2aa.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/redshift 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/rpcbind-1.2.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/rpcbind-1.2.5.txt -------------------------------------------------------------------------------- /pkg/trees/blt/rsync-3.2.7.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/rsync 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/samurai-1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/samurai-1.2.txt -------------------------------------------------------------------------------- /pkg/trees/blt/sed-4.9.txt: -------------------------------------------------------------------------------- 1 | /bin/sed 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/smartmontools-7.2.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/smartctl 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/sqlite-3.40.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/sqlite-3.40.0.txt -------------------------------------------------------------------------------- /pkg/trees/blt/tar-1.34.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/tar-1.34.txt -------------------------------------------------------------------------------- /pkg/trees/blt/thinkfan-1.3.1.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/thinkfan 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/tiff-webp-20221030_141510.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/tiff-webp-20221030_141510.txt -------------------------------------------------------------------------------- /pkg/trees/blt/tmux-3.2a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/tmux-3.2a.txt -------------------------------------------------------------------------------- /pkg/trees/blt/transmission-4.0.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/transmission-4.0.3.txt -------------------------------------------------------------------------------- /pkg/trees/blt/tzdb-2021a.txt: -------------------------------------------------------------------------------- 1 | /etc/localtime 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/unrar-6.0.7.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/unrar 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/usbutils-013.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/usbutils-013.txt -------------------------------------------------------------------------------- /pkg/trees/blt/util-linux-2.37.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/util-linux-2.37.2.txt -------------------------------------------------------------------------------- /pkg/trees/blt/v4l-utils-1.20.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/v4l-utils-1.20.0.txt -------------------------------------------------------------------------------- /pkg/trees/blt/vifm-0.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/vifm-0.11.txt -------------------------------------------------------------------------------- /pkg/trees/blt/vim-9.0.1261.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/vim-9.0.1261.txt -------------------------------------------------------------------------------- /pkg/trees/blt/wpa-supplicant-2.10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/wpa-supplicant-2.10.txt -------------------------------------------------------------------------------- /pkg/trees/blt/x264-20191119-2245.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/x264-20191119-2245.txt -------------------------------------------------------------------------------- /pkg/trees/blt/x265-3.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/x265-3.5.txt -------------------------------------------------------------------------------- /pkg/trees/blt/xclip-0.13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/xclip-0.13.txt -------------------------------------------------------------------------------- /pkg/trees/blt/xf86-video-amdgpu-23.0.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/xf86-video-amdgpu-23.0.0.txt -------------------------------------------------------------------------------- /pkg/trees/blt/xinit-1.4.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/xinit-1.4.1.txt -------------------------------------------------------------------------------- /pkg/trees/blt/xorg-apps-20210615_030626.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/xorg-apps-20210615_030626.txt -------------------------------------------------------------------------------- /pkg/trees/blt/xorg-libs-part1-20230106_152147.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/xorg-libs-part1-20230106_152147.txt -------------------------------------------------------------------------------- /pkg/trees/blt/xorg-libs-part2-20230430_004625.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/xorg-libs-part2-20230430_004625.txt -------------------------------------------------------------------------------- /pkg/trees/blt/xorg-libs-part3-20220826_023054.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/xorg-libs-part3-20220826_023054.txt -------------------------------------------------------------------------------- /pkg/trees/blt/xorg-server-21.1.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/xorg-server-21.1.8.txt -------------------------------------------------------------------------------- /pkg/trees/blt/xtrlock-2.12.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/xtrlock 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/xz-5.4.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/xz-5.4.2.txt -------------------------------------------------------------------------------- /pkg/trees/blt/yash-2.53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/yash-2.53.txt -------------------------------------------------------------------------------- /pkg/trees/blt/yt-dlp-2023.03.04.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/yt-dlp 2 | -------------------------------------------------------------------------------- /pkg/trees/blt/zlib-1.2.13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/zlib-1.2.13.txt -------------------------------------------------------------------------------- /pkg/trees/blt/zstd-1.5.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/blt/zstd-1.5.5.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/acl-attr-20230130_053556.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/acl-attr-20230130_053556.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/acpid-2.0.32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/acpid-2.0.32.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/aircrack-ng-1.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/aircrack-ng-1.6.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/apulse-0f9f8487.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/apulse-0f9f8487.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/atk-2.36.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/atk-2.36.0.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/audioshit-20230302_162838.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/audioshit-20230302_162838.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/busybox-1.36.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/busybox-1.36.0.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/cmake-3.23.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/cmake-3.23.2.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/compton-5.1.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/compton 2 | -------------------------------------------------------------------------------- /pkg/trees/rmv/cryptsetup-2.4.3.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/cryptsetup 2 | -------------------------------------------------------------------------------- /pkg/trees/rmv/curl-7.88.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/curl-7.88.1.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/e2fsprogs-1.46.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/e2fsprogs-1.46.4.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/eudev-3.2.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/eudev-3.2.9.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/expat-2.3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/expat-2.3.0.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/fbcat-99a9aaed.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/fbcat 2 | -------------------------------------------------------------------------------- /pkg/trees/rmv/ffmpeg-5.1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/ffmpeg-5.1.2.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/findutils-4.8.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/findutils-4.8.0.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/gcompat-1.1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/gcompat-1.1.0.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/gdk-pixbuf-2.42.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/gdk-pixbuf-2.42.4.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/git-2.40.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/git-2.40.0.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/grep-3.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/grep-3.9.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/gtk3-3.24.33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/gtk3-3.24.33.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/innoextract-4c2bc0bb.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/innoextract 2 | -------------------------------------------------------------------------------- /pkg/trees/rmv/inputery-20230329_185201.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/inputery-20230329_185201.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/iptables-1.8.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/iptables-1.8.7.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/irssi-1.4.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/irssi-1.4.1.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/iw-5.9.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/iw 2 | -------------------------------------------------------------------------------- /pkg/trees/rmv/libdrm-2.4.111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/libdrm-2.4.111.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/libelf-0.183.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/libelf-0.183.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/libmpdclient-2.20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/libmpdclient-2.20.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/libssh2-1.9.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/libssh2-1.9.0.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/libva-2.12.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/libva-2.12.0.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/links-2.20.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/links-2.20.2.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/linux-headers-6.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/linux-headers-6.2.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/listenbrainz-mpd-bbf84be.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/listenbrainz-mpd 2 | -------------------------------------------------------------------------------- /pkg/trees/rmv/m4-1.4.18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/m4-1.4.18.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/make-4.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/make-4.4.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/mesa-23.1.0-rc4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/mesa-23.1.0-rc4.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/meson-0.63.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/meson-0.63.1.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/mkvtoolnix-48.0.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/mkvtoolnix-48.0.0.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/mpc-0.33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/mpc-0.33.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/mpd-0.23.12.txt: -------------------------------------------------------------------------------- 1 | /etc/mpd.conf 2 | 3 | /usr/bin/mpd 4 | -------------------------------------------------------------------------------- /pkg/trees/rmv/mpdas-c81c480.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/mpdas 2 | -------------------------------------------------------------------------------- /pkg/trees/rmv/mpv-0.35.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/mpv-0.35.0.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/mss-ec-376e33d2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/mss-ec-376e33d2.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/musl-1.2.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/musl-1.2.3.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/ncmpcpp-0.9.2.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/ncmpcpp 2 | -------------------------------------------------------------------------------- /pkg/trees/rmv/ncurses-6.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/ncurses-6.2.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/nfqws-9a7d1e8e.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/nfqws 2 | -------------------------------------------------------------------------------- /pkg/trees/rmv/opendoas-6.8.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/opendoas-6.8.1.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/openrsync-f50d0f82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/openrsync-f50d0f82.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/openssh-9.2p1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/openssh-9.2p1.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/openssl-3.0.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/openssl-3.0.8.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/openvpn-2.5.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/openvpn-2.5.3.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/pango-1.43.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/pango-1.43.0.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/pciutils-3.7.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/pciutils-3.7.0.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/perl-5.34.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/perl-5.34.1.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/picom-9.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/picom 2 | -------------------------------------------------------------------------------- /pkg/trees/rmv/procps-ng-3.3.17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/procps-ng-3.3.17.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/python-3.10.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/python-3.10.5.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/sed-4.9.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/sed 2 | -------------------------------------------------------------------------------- /pkg/trees/rmv/sqlite-3.38.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/sqlite-3.38.3.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/suckless-20210829_061944.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/suckless-20210829_061944.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/tar-1.33.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/tar-1.33.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/thinkfan-0c29363.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/thinkfan 2 | -------------------------------------------------------------------------------- /pkg/trees/rmv/tiff-4.1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/tiff-4.1.0.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/transmission-4.0.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/transmission-4.0.1.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/usbutils-013.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/usbutils-013.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/util-linux-2.37.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/util-linux-2.37.2.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/vim-9.0.0004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/vim-9.0.0004.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/wpa-supplicant-2.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/wpa-supplicant-2.9.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/xf86-input-wacom-0.40.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/xf86-input-wacom-0.40.0.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/xorg-libs-part1-20220821_190331.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/xorg-libs-part1-20220821_190331.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/xorg-libs-part2-20230315_013606.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/xorg-libs-part2-20230315_013606.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/xorg-libs-part3-20210615_030626.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/xorg-libs-part3-20210615_030626.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/xorg-server-636c9aa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/xorg-server-636c9aa.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/xz-5.4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/xz-5.4.0.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/yash-2.52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/yash-2.52.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/ympd-612f8fc0.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/ympd 2 | -------------------------------------------------------------------------------- /pkg/trees/rmv/yt-dlp-2023.01.02.txt: -------------------------------------------------------------------------------- 1 | /usr/bin/yt-dlp 2 | -------------------------------------------------------------------------------- /pkg/trees/rmv/zlib-1.2.12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/zlib-1.2.12.txt -------------------------------------------------------------------------------- /pkg/trees/rmv/zstd-1.5.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/pkg/trees/rmv/zstd-1.5.2.txt -------------------------------------------------------------------------------- /utils/bin/0x0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/0x0 -------------------------------------------------------------------------------- /utils/bin/cb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/cb -------------------------------------------------------------------------------- /utils/bin/cblist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/cblist -------------------------------------------------------------------------------- /utils/bin/chr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/chr -------------------------------------------------------------------------------- /utils/bin/cleancmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/cleancmake -------------------------------------------------------------------------------- /utils/bin/cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/cleanup -------------------------------------------------------------------------------- /utils/bin/colortest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/colortest -------------------------------------------------------------------------------- /utils/bin/comptoggle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/comptoggle -------------------------------------------------------------------------------- /utils/bin/configtomusl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/configtomusl -------------------------------------------------------------------------------- /utils/bin/dn: -------------------------------------------------------------------------------- 1 | #!/mss/bin/sh 2 | date "+%Y%m%d_%H%M%S" 3 | -------------------------------------------------------------------------------- /utils/bin/fetch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/fetch -------------------------------------------------------------------------------- /utils/bin/kinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/kinst -------------------------------------------------------------------------------- /utils/bin/ldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/ldir -------------------------------------------------------------------------------- /utils/bin/maimclip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/maimclip -------------------------------------------------------------------------------- /utils/bin/maimcrop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/maimcrop -------------------------------------------------------------------------------- /utils/bin/maimscrot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/maimscrot -------------------------------------------------------------------------------- /utils/bin/monmode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/monmode -------------------------------------------------------------------------------- /utils/bin/ossl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/ossl -------------------------------------------------------------------------------- /utils/bin/pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/pkg -------------------------------------------------------------------------------- /utils/bin/pkgup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/pkgup -------------------------------------------------------------------------------- /utils/bin/printprof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/printprof -------------------------------------------------------------------------------- /utils/bin/setbright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/setbright -------------------------------------------------------------------------------- /utils/bin/setgov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/setgov -------------------------------------------------------------------------------- /utils/bin/setmon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/setmon -------------------------------------------------------------------------------- /utils/bin/setxkeeb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/setxkeeb -------------------------------------------------------------------------------- /utils/bin/stripper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/stripper -------------------------------------------------------------------------------- /utils/bin/suspendtodisk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/suspendtodisk -------------------------------------------------------------------------------- /utils/bin/syncboi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/syncboi -------------------------------------------------------------------------------- /utils/bin/trimall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/trimall -------------------------------------------------------------------------------- /utils/bin/ttygrab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/bin/ttygrab -------------------------------------------------------------------------------- /utils/files/device.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/files/device.conf -------------------------------------------------------------------------------- /utils/files/funcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/files/funcs -------------------------------------------------------------------------------- /utils/files/machines/t61.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/files/machines/t61.conf -------------------------------------------------------------------------------- /utils/files/machines/unrecognized.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/files/machines/unrecognized.conf -------------------------------------------------------------------------------- /utils/files/machines/x230.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/files/machines/x230.conf -------------------------------------------------------------------------------- /utils/files/sourceme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/files/sourceme -------------------------------------------------------------------------------- /utils/files/sourceme-aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/files/sourceme-aliases -------------------------------------------------------------------------------- /utils/files/sourceme-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/files/sourceme-build -------------------------------------------------------------------------------- /utils/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gottaeat/apathy/HEAD/utils/meson.build --------------------------------------------------------------------------------