├── .gitignore ├── .gitmodules ├── LICENSE ├── README ├── build.ninja ├── config.def.lua ├── gen.lua ├── ninja.lua ├── pkg ├── adobe-source-fonts │ ├── .gitignore │ ├── gen.lua │ ├── sha256 │ ├── url │ └── ver ├── alsa-lib │ ├── README.md │ ├── alsa │ │ ├── asoundlib.h │ │ └── version.h │ ├── config.h │ ├── ctl_symbols_list.c │ ├── gen.lua │ ├── patch │ │ ├── 0001-Add-include-alsa-symlink.patch │ │ ├── 0002-Prevent-empty-top-level-declarations.patch │ │ ├── 0003-Don-t-use-inline-asm-on-non-GNU-compilers.patch │ │ ├── 0004-Use-switch-statements-instead-of-labels-as-values.patch │ │ ├── 0005-Fix-build-with-disable-ucm.patch │ │ ├── 0006-Fix-uninitialized-variable-access.patch │ │ └── 0007-Prevent-unused-definitions-in-some-configurations.patch │ ├── pcm_symbols_list.c │ └── ver ├── awk │ ├── .gitignore │ ├── gen.lua │ └── ver ├── b3sum │ ├── .gitignore │ ├── gen.lua │ └── ver ├── bc │ ├── .gitignore │ ├── config.h │ ├── gen.lua │ ├── libmath.h │ ├── sha256 │ ├── url │ └── ver ├── bearssl │ ├── gen.lua │ ├── patch │ │ ├── 0001-Add-missing-return-in-client-single-EC-choose-functi.patch │ │ ├── 0002-Add-functions-to-retrieve-certificate-validity-perio.patch │ │ └── 0003-Add-flag-to-send-CertificateRequest.patch │ └── ver ├── binutils │ ├── .gitignore │ ├── README.md │ ├── arch.lua │ ├── bfd │ │ └── config.h │ ├── binutils │ │ └── config.h │ ├── gas │ │ └── config.h │ ├── gen.lua │ ├── ld │ │ └── config.h │ ├── ldemul.sh │ ├── libiberty │ │ └── config.h │ ├── opcodes │ │ └── config.h │ ├── patch │ │ ├── 0001-libiberty-Implement-pex_unix_exec_child-using-posix_.patch │ │ ├── 0002-Adjust-style-to-prevent-gcc-warning.patch │ │ ├── 0003-Remove-support-for-long-double-in-error-formatter.patch │ │ └── 0004-x86-avoid-non-standard-a.b-designator.patch │ ├── sha256 │ ├── url │ ├── vec.lua │ └── ver ├── bubblewrap │ ├── .gitignore │ ├── bwrap.1 │ ├── caps.awk │ ├── caps.c │ ├── config.h │ ├── gen.lua │ ├── patch │ │ ├── 0001-utils-Avoid-unnecessary-VLAs.patch │ │ ├── 0002-Break-up-long-string-literal.patch │ │ ├── 0003-Use-external-string-to-cap-function.patch │ │ ├── 0004-Revert-Handle-EINTR-when-doing-I-O-on-files-or-socke.patch │ │ └── 0005-Remove-unnecessary-TEMP_FAILURE_RETRY.patch │ └── ver ├── byacc │ ├── .gitignore │ ├── README.md │ ├── config.h │ ├── gen.lua │ ├── sha256 │ ├── url │ └── ver ├── bzip2 │ ├── gen.lua │ └── ver ├── cacert │ ├── .gitignore │ ├── gen.lua │ ├── sha256 │ ├── url │ └── ver ├── catgirl │ ├── gen.lua │ ├── patch │ │ ├── 0001-Revert-Use-gnu-case-range-and-gnu-conditional-omitte.patch │ │ ├── 0002-Break-out-of-input-loop-when-UI-is-hidden.patch │ │ ├── 0003-Resize-status-window-explicitly-during-resize.patch │ │ ├── 0004-HACK-Disable-colorized-output-in-M-l-window-list.patch │ │ └── 0005-Don-t-rely-on-internal-struct-tags-of-curses-impleme.patch │ └── ver ├── cproc │ ├── config.h │ ├── gen.lua │ └── ver ├── curl │ ├── .gitignore │ ├── README.md │ ├── curl.1 │ ├── curl_config.h │ ├── gen.lua │ ├── patch │ │ ├── 0001-Reuse-dynbuf-symbols-for-curl-tool.patch │ │ ├── 0002-bearssl-Remove-unnecessary-CA-blob-length-check.patch │ │ └── 0003-Reuse-base64-for-curl-tool.patch │ ├── sha256 │ ├── url │ └── ver ├── dav1d │ ├── config.h │ ├── gen.lua │ ├── patch │ │ ├── 0001-Add-portable-fallback-for-ctz-clz-and-clzll.patch │ │ └── 0002-Remove-invalid-at-top-level.patch │ └── ver ├── dmenu │ ├── config.h │ ├── gen.lua │ ├── patch │ │ └── 0001-Port-to-wayland-using-wld-and-swc-panels.patch │ └── ver ├── dosfstools │ ├── config.h │ ├── gen.lua │ ├── patch │ │ └── 0001-Use-__attribute__-consistently.patch │ ├── ver │ └── version.h ├── e2fsprogs │ ├── .gitignore │ ├── README.md │ ├── blkid_types.h │ ├── config.h │ ├── ext2_types.h │ ├── gen.lua │ ├── patch │ │ └── 0001-libsupport-remove-unused-sort_r-definition.patch │ └── ver ├── elftoolchain │ ├── gen.lua │ ├── patch │ │ ├── 0001-Prevent-empty-top-level-declarations.patch │ │ ├── 0002-Use-_Alignof-when-built-as-C11.patch │ │ ├── 0003-Revert-Add-back-sys-cdefs.h.patch │ │ ├── 0004-readelf-remove-unnecessary-after-function-definition.patch │ │ └── 0005-Allow-empty-Elf_Data.patch │ └── ver ├── expat │ ├── README.md │ ├── expat_config.h │ ├── gen.lua │ └── ver ├── ffmpeg │ ├── .gitignore │ ├── avconfig.awk │ ├── config-head.h │ ├── config-tail.h │ ├── config.h │ ├── config.mak │ ├── config_components.h │ ├── gen.lua │ ├── include │ │ └── stdatomic.h │ ├── list.lua │ ├── patch │ │ ├── 0001-libavutil-Remove-last-use-of-long-double.patch │ │ ├── 0002-libavcodec-Prevent-stray-semicolon-at-top-level.patch │ │ ├── 0003-libavcodec-Use-if-to-prevent-some-unintended-depende.patch │ │ ├── 0004-libavutil-Use-config-instead-of-compiler-to-determin.patch │ │ ├── 0005-libavutil-Use-C11-_Alignas-as-fallback-for-DECLARE_A.patch │ │ ├── 0006-Revert-lavd-v4l2-Use-proper-field-type-for-second-pa.patch │ │ ├── 0007-HACK-Disable-__has_builtin-for-now.patch │ │ └── 0008-all-Don-t-use-ATOMIC_VAR_INIT.patch │ ├── scripts │ │ ├── README.md │ │ ├── sources.mk │ │ └── sources.sh │ ├── sources.txt │ └── ver ├── file │ ├── .gitignore │ ├── README.md │ ├── config.h │ ├── gen.lua │ ├── magic.txt │ └── ver ├── flex │ ├── .gitignore │ ├── config.h │ ├── gen.lua │ ├── sha256 │ ├── url │ └── ver ├── fontconfig │ ├── .gitignore │ ├── README.md │ ├── config.h │ ├── fcobjshash.h │ ├── gen.lua │ ├── patch │ │ └── 0001-Remove-unnecessary-use-of-long-double-constants.patch │ ├── sha256 │ ├── url │ └── ver ├── freetype │ ├── gen.lua │ └── ver ├── fribidi │ ├── .gitignore │ ├── README.md │ ├── config.h │ ├── fribidi-config.h │ ├── gen.lua │ └── ver ├── fspec-sync │ ├── .gitignore │ ├── gen.lua │ └── ver ├── fuse │ ├── config.h │ ├── gen.lua │ ├── patch │ │ ├── 0001-Avoid-statement-expressions-in-container_of-macro.patch │ │ ├── 0002-Fix-build-without-symbol-versioning.patch │ │ ├── 0003-Avoid-invalid-use-of-flexible-array-members.patch │ │ ├── 0004-Prevent-unused-label-warning-with-IGNORE_MTAB.patch │ │ ├── 0005-Fix-sscanf-format-specifier.patch │ │ ├── 0006-Avoid-conversion-between-function-and-object-pointer.patch │ │ ├── 0007-Define-_GNU_SOURCE-for-realpath.patch │ │ └── 0008-Only-use-symbol-versioning-on-GNU-compatible-compile.patch │ └── ver ├── gen.lua ├── git │ ├── .gitignore │ ├── commands.txt │ ├── config.h │ ├── configs.txt │ ├── fetch.sh │ ├── gen.lua │ ├── man.txt │ ├── patch │ │ └── 0001-request-pull-use-awk-instead-of-perl-to-parse-ls-rem.patch │ ├── sh_gen.sed │ ├── sha256 │ ├── url │ └── ver ├── hotplugd │ ├── gen.lua │ └── ver ├── iproute2 │ ├── gen.lua │ ├── patch │ │ ├── 0001-Fix-includes-for-musl-libc.patch │ │ ├── 0002-Avoid-pointer-arithmetic-on-void.patch │ │ ├── 0003-Don-t-return-expression-in-function-returning-void.patch │ │ ├── 0004-Don-t-use-statement-expressions-on-non-GNU-compilers.patch │ │ ├── 0005-Avoid-non-standard-e-escape-sequence.patch │ │ ├── 0006-Remove-semicolon-after-function-definitions.patch │ │ ├── 0007-Don-t-omit-second-operand-to-operator.patch │ │ ├── 0008-Avoid-unnecessary-VLAs.patch │ │ ├── 0009-ip-Fix-get_link_kind-when-linked-statically.patch │ │ ├── 0010-Use-alloca-instead-of-VLA-when-VLA-is-not-available.patch │ │ ├── 0011-Use-static-inline-function-for-min.patch │ │ ├── 0012-Prevent-redefinition-of-SIOCGSTAMP-and-SIOCGSTAMPNS.patch │ │ ├── 0013-Fix-overflow-check-for-strtod-and-strtoul.patch │ │ └── 0014-Remove-flexible-array-member-in-embedded-struct.patch │ └── ver ├── jbig2dec │ ├── gen.lua │ └── ver ├── kiss │ ├── gen.lua │ ├── patch │ │ └── 0001-kiss-chroot-correct-path-to-bin-env.patch │ └── ver ├── less │ ├── .gitignore │ ├── defines.h │ ├── gen.lua │ ├── sha256 │ ├── url │ └── ver ├── libass │ ├── README.md │ ├── config.h │ ├── gen.lua │ ├── patch │ │ ├── 0001-Avoid-unnecessary-VLAs.patch │ │ └── 0002-ass_shaper-remove-fribidi-dependency.patch │ └── ver ├── libcbor │ ├── cbor_export.h │ ├── gen.lua │ └── ver ├── libdrm │ ├── README.md │ ├── config.h │ ├── fourcc.lua │ ├── gen.lua │ └── ver ├── liberation-fonts │ ├── .gitignore │ ├── gen.lua │ ├── sha256 │ ├── url │ └── ver ├── libevdev │ ├── config.h │ ├── eventnames.lua │ ├── gen.lua │ ├── patch │ │ └── 0001-Revert-switch-to-VLAs-for-multitouch-state.patch │ └── ver ├── libevent │ ├── config.h │ ├── evconfig-private.h │ ├── gen.lua │ └── ver ├── libffi │ ├── fficonfig.h │ ├── gen.lua │ ├── patch │ │ ├── 0001-Use-fixed-type-integer-types-when-available.patch │ │ ├── 0002-Use-generic-padding-instead-of-128-bit-integers.patch │ │ └── 0003-Don-t-use-complex-types-if-they-are-not-supported.patch │ └── ver ├── libfido2 │ ├── config.h │ ├── gen.lua │ └── ver ├── libinput │ ├── config.h │ ├── gen.lua │ ├── libinput-version.h │ └── ver ├── libjpeg-turbo │ ├── README.md │ ├── gen.lua │ ├── jconfig.h │ ├── jconfigint.h │ └── ver ├── libnl │ ├── defs.h │ ├── gen.lua │ ├── patch │ │ ├── 0001-Use-static-inline-functions-for-min-and-max.patch │ │ ├── 0002-Avoid-statement-expression-in-nl_container_of.patch │ │ ├── 0003-Avoid-initialization-of-flexible-array-member.patch │ │ ├── 0004-Avoid-statement-expression-in-ATTR_DIFF-macro.patch │ │ ├── 0005-Remove-_nl_auto-helpers.patch │ │ └── 0006-Avoid-use-of-alloca-and-statement-expressions.patch │ └── ver ├── libpkgconf │ ├── gen.lua │ ├── libpkgconf │ │ └── config.h │ └── ver ├── libplacebo │ ├── config_internal.h │ ├── gen.lua │ └── ver ├── libpng │ ├── config.h │ ├── gen.lua │ └── ver ├── libressl │ ├── .gitignore │ ├── gen.lua │ ├── patch │ │ ├── 0001-Use-plain-vsyslog-for-OPENSSL_showfatal.patch │ │ └── 0002-Remove-unneeded-at-top-level.patch │ ├── sha256 │ ├── url │ └── ver ├── libtermkey │ ├── .gitignore │ ├── gen.lua │ ├── sha256 │ ├── url │ └── ver ├── libtls-bearssl │ ├── gen.lua │ ├── patch │ │ ├── 0001-Use-patched-bearssl-method-to-retrieve-validity-peri.patch │ │ └── 0002-Use-patched-bearssl-flag-to-force-CertificateRequest.patch │ └── ver ├── libutp │ ├── gen.lua │ └── ver ├── libxkbcommon │ ├── README.md │ ├── config.h │ ├── gen.lua │ ├── patch │ │ └── 0001-Track-generated-xkbcomp-parser.patch │ └── ver ├── linux-headers │ ├── .gitignore │ ├── arm64.lua │ ├── base.lua │ ├── fetch.sh │ ├── gen.lua │ ├── header.sed │ ├── patch │ │ ├── 0001-Only-use-inline-asm-in-headers-on-GNU-compatible-com.patch │ │ ├── 0002-Prevent-zero-length-array-members-in-asound.h.patch │ │ └── 0003-nfc-uapi-remove-stray-semicolon-in-struct-declaratio.patch │ ├── sha256 │ ├── unistd.awk │ ├── url │ ├── ver │ ├── version.awk │ └── x86.lua ├── lpeg │ ├── .gitignore │ ├── gen.lua │ ├── sha256 │ ├── url │ └── ver ├── lua │ ├── .gitignore │ ├── gen.lua │ ├── patch │ │ ├── 0001-Set-LUA_ROOT-to.patch │ │ └── 0002-Build-in-luaposix-modules.patch │ ├── sha256 │ ├── url │ └── ver ├── luaposix │ ├── config.h │ ├── gen.lua │ └── ver ├── lz4 │ ├── .gitignore │ ├── gen.lua │ └── ver ├── make │ ├── .gitignore │ ├── config.h │ ├── gen.lua │ ├── sha256 │ ├── url │ └── ver ├── man-pages-posix │ ├── .gitignore │ ├── gen.lua │ ├── manpages.txt │ ├── sha256 │ ├── url │ └── ver ├── mandoc │ ├── .gitignore │ ├── config.h │ ├── gen.lua │ ├── sha256 │ ├── url │ └── ver ├── mpv │ ├── .gitignore │ ├── config.h │ ├── file2string.c │ ├── gen.lua │ ├── mpv.1 │ ├── patch │ │ ├── 0001-Add-generated-ebml-sources.patch │ │ ├── 0002-Use-memset-to-initialize-large-structures.patch │ │ ├── 0003-video-out-gpu-Prevent-empty-array-when-no-compilers-.patch │ │ ├── 0004-wayland-include-math.h-for-ceil.patch │ │ ├── 0005-Support-lua-5.4.patch │ │ ├── 0006-Revert-wayland-fix-missing-lround-in-cursor-surface.patch │ │ ├── 0007-Revert-wayland-drop-buffer-scale-for-cursor-as-well.patch │ │ ├── 0008-Revert-wayland-drop-buffer_scale-use-for-viewporter.patch │ │ └── 0009-Disable-vo_gpu.patch │ ├── ver │ └── version.awk ├── mtdev │ ├── gen.lua │ ├── patch │ │ └── 0001-Avoid-__builtin_ffs.patch │ └── ver ├── muon │ ├── .gitignore │ ├── gen.lua │ ├── ver │ └── version.c ├── mupdf │ ├── .gitignore │ ├── fonts.txt │ ├── gen.lua │ ├── sources.txt │ └── ver ├── musl │ ├── aarch64.lua │ ├── base.lua │ ├── gen.lua │ ├── patch │ │ ├── 0001-avoid-inline-functions-involving-long-double-in-math.patch │ │ ├── 0002-use-preferred-syntactic-location-for-epoll_event-pac.patch │ │ ├── 0003-iconv-fix-erroneous-input-validation-in-EUC-KR-decod.patch │ │ └── 0004-iconv-harden-UTF-8-output-code-path-against-input-de.patch │ ├── ver │ └── x86_64.lua ├── nasm │ ├── .gitignore │ ├── config.h │ ├── gen.lua │ ├── patch │ │ └── 0001-Remove-date-from-version-info-to-make-build-reproduc.patch │ ├── sha256 │ ├── url │ └── ver ├── ncompress │ ├── gen.lua │ └── ver ├── netbsd-curses │ ├── .gitignore │ ├── gen.lua │ ├── patch │ │ ├── 0001-Use-__fpurge-from-stdio_ext.h.patch │ │ ├── 0002-Remove-duplicate-keymap-sequences-from-st-terminfo.patch │ │ ├── 0003-Revert-Fix-for-PR-lib-56224.patch │ │ ├── 0004-Don-t-wrap-when-adding-past-last-line-in-non-scrolli.patch │ │ └── 0005-Return-early-from-_cursesi_waddbytes-if-_cursesi_add.patch │ └── ver ├── netsurf │ ├── .gitignore │ ├── config.h │ ├── gen.lua │ ├── libcss │ │ ├── .gitignore │ │ ├── gen.lua │ │ ├── patch │ │ │ └── 0001-Remove-unnecessary-alignment-attribute.patch │ │ ├── prop_parsers.awk │ │ └── ver │ ├── libdom │ │ ├── gen.lua │ │ ├── patch │ │ │ └── 0001-Remove-empty-top-level-declarations.patch │ │ └── ver │ ├── libhubbub │ │ ├── entities.awk │ │ ├── gen.lua │ │ └── ver │ ├── libnsbmp │ │ ├── gen.lua │ │ └── ver │ ├── libnsgif │ │ ├── gen.lua │ │ └── ver │ ├── libnsutils │ │ ├── gen.lua │ │ └── ver │ ├── libparserutils │ │ ├── aliases.awk │ │ ├── gen.lua │ │ └── ver │ ├── libsvgtiny │ │ ├── autogenerated_colors.c │ │ ├── gen.lua │ │ ├── patch │ │ │ └── 0001-Make-stroke_width-a-float.patch │ │ └── ver │ ├── libwapcaplet │ │ ├── gen.lua │ │ ├── patch │ │ │ └── 0001-Use-static-inline-functions-instead-of-macros.patch │ │ └── ver │ ├── messages.awk │ ├── sha256 │ ├── testament.h │ └── ver ├── oksh │ ├── gen.lua │ ├── pconfig.h │ └── ver ├── openbsd │ ├── .gitignore │ ├── fetch.sh │ ├── gen.lua │ ├── include │ │ ├── err.h │ │ ├── grp.h │ │ ├── machine │ │ │ └── endian.h │ │ ├── netinet │ │ │ └── ip.h │ │ ├── pwd.h │ │ ├── readpassphrase.h │ │ ├── resolv.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── sys │ │ │ ├── cdefs.h │ │ │ ├── param.h │ │ │ └── time.h │ │ ├── unistd.h │ │ └── util.h │ ├── patch │ │ ├── 0001-fts-Avoid-d_namlen.patch │ │ ├── 0002-fts-Add-some-includes.patch │ │ ├── 0003-pax-Add-some-includes.patch │ │ ├── 0004-tar-Default-to-stdin.patch │ │ ├── 0005-yacc-Add-some-includes.patch │ │ ├── 0006-diff-Add-missing-includes.patch │ │ ├── 0007-patch-Add-missing-includes.patch │ │ ├── 0008-patch-Avoid-d_namlen.patch │ │ ├── 0009-pax-Fix-GNU-long-name-handling-with-short-read.patch │ │ ├── 0010-pax-Support-xz-compression-with-J-flag.patch │ │ ├── 0011-setprogname-Explicitly-discard-const-qualifier.patch │ │ ├── 0012-readpassphrase-Support-systems-without-VSTATUS-and-T.patch │ │ ├── 0013-Remove-getpass-definition.patch │ │ ├── 0014-doas-Port-to-linux-musl.patch │ │ ├── 0015-pwcache-Don-t-use-fixed-buffer-sizes.patch │ │ ├── 0016-Add-standalone-freezero.patch │ │ ├── 0017-m4-Use-hand-written-lexer-to-avoid-cycle-in-bootstra.patch │ │ ├── 0018-m4-Use-_Noreturn-instead-of-__dead.patch │ │ ├── 0019-m4-Add-missing-includes.patch │ │ ├── 0020-libutil-Add-missing-includes.patch │ │ ├── 0021-acme-client-Add-missing-includes.patch │ │ ├── 0022-rsync-Add-missing-includes.patch │ │ ├── 0023-rsync-Use-standard-S_ISVTX-instead-of-S_ISTXT.patch │ │ ├── 0024-rsync-Avoid-pointer-arithmetic-on-void.patch │ │ ├── 0025-Include-sys-sysmacros.h-if-necessary.patch │ │ ├── 0026-nc-Portability-fixes-from-libressl-portable.patch │ │ ├── 0027-pax-Ignore-EOPNOTSUPP-from-fchmodat.patch │ │ ├── 0028-acme-client-Fix-build-with-old-bison-versions.patch │ │ ├── 0029-rsync-Add-implementation-of-MD4.patch │ │ ├── 0030-pax-Fix-some-incorrect-format-specifiers.patch │ │ ├── 0031-pax-Use-memcpy-to-set-TMAGIC-and-TVERSION-to-avoid-w.patch │ │ ├── 0032-rsync-Fix-some-incorrect-format-specifiers.patch │ │ ├── 0033-m4-Declare-dopaste-only-when-it-s-used.patch │ │ ├── 0034-acme-client-Fix-signed-ness-of-base64buf_url-input.patch │ │ ├── 0035-acme-client-Port-to-BearSSL.patch │ │ ├── 0036-rsync-Pass-long-long-to-scan_scaled.patch │ │ ├── 0037-libutil-Include-util.h-instead-of-util.h.patch │ │ ├── 0038-nc-Add-option-to-disable-certificate-time-checking.patch │ │ └── 0039-pax-Only-use-_PC_TIMESTAMP_RESOLUTION-if-it-is-defin.patch │ ├── sha256 │ ├── url │ └── ver ├── openntpd │ ├── .gitignore │ ├── README.md │ ├── config.h │ ├── gen.lua │ ├── patch │ │ ├── 0001-Set-CTLSOCKET-to-run-ntpd.sock.patch │ │ └── 0002-Fix-build-with-old-bison-versions.patch │ ├── sha256 │ ├── url │ └── ver ├── openssh │ ├── README.md │ ├── config.h │ ├── gen.lua │ └── ver ├── opus │ ├── .gitignore │ ├── config.h │ ├── gen.lua │ ├── sha256 │ ├── url │ └── ver ├── pax │ ├── .gitignore │ ├── gen.lua │ └── ver ├── pcre │ ├── .gitignore │ ├── README.md │ ├── config.h │ ├── gen.lua │ ├── sha256 │ ├── url │ └── ver ├── pdpmake │ ├── gen.lua │ └── ver ├── pigz │ ├── gen.lua │ └── ver ├── pixman │ ├── gen.lua │ ├── pixman-config.h │ └── ver ├── python │ ├── .gitignore │ ├── README.md │ ├── gen.lua │ ├── lib │ │ ├── Makefile │ │ └── _sysconfigdata.py │ ├── makesetup.lua │ ├── modules.lua │ ├── patch │ │ ├── 0001-Add-BearSSL-implementation-of-_hashlib.patch │ │ └── 0002-Re-add-support-for-libressl.patch │ ├── pyconfig.h │ ├── pylibs.txt │ ├── sha256 │ ├── url │ └── ver ├── qbe │ ├── config.h │ ├── gen.lua │ ├── patch │ │ └── 0001-Fix-aliasing-violation.patch │ └── ver ├── quark │ ├── config.h │ ├── gen.lua │ └── ver ├── rc │ ├── gen.lua │ ├── patch │ │ ├── 0001-Avoid-multiple-definitions-of-global-variables.patch │ │ ├── 0002-Use-proc-self-fd-0-instead-of-dev-fd-0.patch │ │ └── 0003-Use-complete-function-prototype-to-fix-build-with-C2.patch │ └── ver ├── rcinit │ ├── gen.lua │ ├── shutdown │ └── ver ├── rcsm │ ├── gen.lua │ └── ver ├── samurai │ ├── gen.lua │ └── ver ├── sbase │ ├── egrep │ ├── gen.lua │ ├── patch │ │ └── 0001-fnck.c-dont-check-if-DEST-is-a-symlink.-kiss-will-er.patch │ └── ver ├── scdoc │ ├── .gitignore │ ├── gen.lua │ └── ver ├── sdhcp │ ├── gen.lua │ └── ver ├── skeleton │ ├── applyperms.c │ ├── gen.lua │ ├── gitignore │ └── mergeperms.c ├── smu │ ├── gen.lua │ └── ver ├── squashfs-tools-ng │ ├── config.h │ ├── gen.lua │ └── ver ├── st │ ├── config.h │ ├── gen.lua │ ├── patch │ │ ├── 0001-Port-to-wayland-using-wld.patch │ │ ├── 0002-Only-send-SIGHUP-on-close-when-using-PTY.patch │ │ ├── 0003-Add-support-for-plumbing-via-right-click.patch │ │ └── 0004-Start-dmenu-on-bottom-for-ISO-14755-input.patch │ └── ver ├── strace │ ├── .gitignore │ ├── README.md │ ├── config.h │ ├── gen.lua │ ├── mpers.txt │ ├── patch │ │ ├── 0001-Don-t-return-expression-in-void-function.patch │ │ ├── 0002-Make-tcp_sysent-a-static-inline-function.patch │ │ ├── 0003-Avoid-pointer-arithmetic-on-void.patch │ │ ├── 0004-Avoid-empty-struct-definition.patch │ │ ├── 0005-Don-t-omit-second-operand-to-operator.patch │ │ ├── 0006-Avoid-unnecessary-VLAs.patch │ │ ├── 0007-Avoid-index-ranges-and-empty-initializer-lists-in-sy.patch │ │ ├── 0008-Use-alloca-when-VLAs-aren-t-available.patch │ │ ├── 0009-Avoid-index-ranges.patch │ │ └── 1001-Prevent-zero-sized-arrays.patch │ ├── printerdecls.awk │ ├── printerdefs.awk │ ├── printers.awk │ ├── scno.awk │ ├── sen.awk │ ├── sha256 │ ├── url │ └── ver ├── swc │ ├── .gitignore │ ├── gen.lua │ └── ver ├── tamzen-font │ ├── gen.lua │ └── ver ├── texi2mdoc │ ├── .gitignore │ ├── gen.lua │ ├── patch │ │ └── 0001-Add-the-d-option-to-specify-the-.Dd-date.patch │ ├── sha256 │ ├── url │ └── ver ├── the_silver_searcher │ ├── config.h │ ├── gen.lua │ ├── patch │ │ ├── 0001-Remove-after-function-definition.patch │ │ ├── 0002-Use-inline-function-for-min-instead-of-statement-exp.patch │ │ └── 0003-Prevent-duplicate-definitions-of-global-variables.patch │ └── ver ├── tinyalsa │ ├── gen.lua │ ├── patch │ │ ├── 0001-make-use-of-snd_utils_close_dev_node-conditional-on-.patch │ │ └── 0002-expose-pcm_state-in-public-API.patch │ └── ver ├── transmission │ ├── .gitignore │ ├── README.md │ ├── config.h │ ├── gen.lua │ ├── patch │ │ ├── 0001-Use-BearSSL-for-SHA1-and-DH-add-fallback-RC4.patch │ │ ├── 0002-Choose-larger-pieces-for-larger-sizes.patch │ │ └── 0003-Fix-type-signature-of-utp_on_overhead.patch │ ├── sha256 │ ├── url │ └── ver ├── tz │ ├── data.awk │ ├── data.lua │ ├── gen.lua │ ├── tzdir.h │ ├── ver │ └── version.h ├── u-config │ ├── .gitignore │ ├── gen.lua │ └── ver ├── ubase │ ├── config.h │ ├── gen.lua │ ├── patch │ │ └── 0001-login-fix-permissions-for-dev-tty.patch │ └── ver ├── unzip │ ├── .gitignore │ ├── config.h │ ├── gen.lua │ ├── patch │ │ ├── 0001-In-Debian-manpages-are-in-section-1-not-in-section-1.patch │ │ ├── 0002-Branding-patch-UnZip-by-Debian.-Original-by-Info-ZIP.patch │ │ ├── 0003-include-unistd.h-for-kFreeBSD.patch │ │ ├── 0004-Handle-the-PKWare-verification-bit-of-internal-attri.patch │ │ ├── 0005-Restore-uid-and-gid-information-when-requested.patch │ │ ├── 0006-Initialize-the-symlink-flag.patch │ │ ├── 0007-Increase-size-of-cfactorstr-array-to-avoid-buffer-ov.patch │ │ ├── 0008-zipinfo.c-Do-not-crash-when-hostver-byte-is-100.patch │ │ ├── 0009-Fix-CVE-2014-8139-CRC32-verification-heap-based-over.patch │ │ ├── 0010-Fix-CVE-2014-8140-out-of-bounds-write-issue-in-test_.patch │ │ ├── 0011-Fix-CVE-2014-8141-out-of-bounds-read-issues-in-getZi.patch │ │ ├── 0012-Info-ZIP-UnZip-buffer-overflow.patch │ │ ├── 0013-Remove-build-date.patch │ │ ├── 0014-Upstream-fix-for-heap-overflow.patch │ │ ├── 0015-fix-infinite-loop-when-extracting-empty-bzip2-data.patch │ │ ├── 0016-extract-prevent-unsigned-overflow-on-invalid-input.patch │ │ ├── 0017-Do-not-ignore-extra-fields-containing-Unix-Timestamp.patch │ │ ├── 0018-Fix-CVE-2014-9913-buffer-overflow-in-unzip.patch │ │ ├── 0019-Fix-CVE-2016-9844-buffer-overflow-in-zipinfo.patch │ │ ├── 0020-Fix-buffer-overflow-in-password-protected-zip-archiv.patch │ │ ├── 0021-Fix-lame-code-in-fileio.c.patch │ │ ├── 0022-Fix-bug-in-undefer_input-that-misplaced-the-input-st.patch │ │ ├── 0023-Detect-and-reject-a-zip-bomb-using-overlapped-entrie.patch │ │ ├── 0024-Do-not-raise-a-zip-bomb-alert-for-a-misplaced-centra.patch │ │ ├── 0025-Fix-bug-in-UZbunzip2-that-incorrectly-updated-G.incn.patch │ │ ├── 0025-Use-long-long-with-C99-compilers.patch │ │ ├── 0026-Fix-bug-in-UZinflate-that-incorrectly-updated-G.incn.patch │ │ ├── 0027-zipgrep-Avoid-test-errors-when-no-members-present.patch │ │ ├── 0028-Fix-for-CVE-2022-0529-and-CVE-2022-0530.patch │ │ ├── 0029-Handle-Microsoft-ZIP64-files-by-ignoring-invalid-Tot.patch │ │ ├── 0030-Drop-conflicting-declarations-of-gmtime-and-localtim.patch │ │ └── 0031-Do-not-escape-shell-special-characters-in-pat.patch │ ├── sha256 │ ├── unzip60.tar.gz │ ├── url │ └── ver ├── utf8proc │ ├── gen.lua │ └── ver ├── util-linux │ ├── .gitignore │ ├── README.md │ ├── config.h │ ├── gen.lua │ ├── man │ │ ├── fdisk.8 │ │ └── losetup.8 │ ├── patch │ │ ├── 0001-Don-t-omit-second-operand-to-operator.patch │ │ ├── 0002-Avoid-a-few-unnecessary-statement-expressions.patch │ │ ├── 0003-Don-t-use-min-to-determine-if-dflt-is-non-zero.patch │ │ ├── 0004-Remove-need-for-VLA-for-label-name.patch │ │ ├── 0005-Avoid-statement-expressions-min-max.patch │ │ ├── 0006-Avoid-initialization-of-flexible-array-in-struct.patch │ │ ├── 0007-Use-MAXIMUM_PARTS-instead-of-VLA.patch │ │ ├── 0008-Use-alloca-if-VLAs-aren-t-supported.patch │ │ ├── 0009-Use-static-inline-function-for-cmp_numbers.patch │ │ └── 0010-Avoid-use-of-long-double.patch │ └── ver ├── velox │ ├── gen.lua │ └── ver ├── vis │ ├── gen.lua │ ├── lua.txt │ ├── patch │ │ └── 0001-HACK-Avoid-wide-string-literals-for-now.patch │ └── ver ├── wayland-protocols │ ├── gen.lua │ └── ver ├── wayland │ ├── README.md │ ├── config.h │ ├── gen.lua │ ├── patch │ │ ├── 0001-cursor-Add-hand2-and-question_arrow.patch │ │ └── 0002-wayland-util.h-remove-unused-math.h-include.patch │ └── ver ├── wld │ ├── gen.lua │ └── ver ├── wpa_supplicant │ ├── .gitignore │ ├── config.h │ ├── gen.lua │ ├── patch │ │ ├── 0001-eloop-Prevent-stray-semicolons-in-struct-specifier.patch │ │ ├── 0002-Avoid-statement-expressions-for-get_aligned_le.patch │ │ ├── 0002-Avoid-unnecessary-VLA.patch │ │ ├── 0003-Prevent-reference-to-undefined-symbol-with-CONFIG_NO.patch │ │ └── 0004-Add-support-for-some-BearSSL-crypto-primitives.patch │ ├── sha256 │ ├── url │ └── ver ├── xkeyboard-config │ ├── gen.lua │ └── ver ├── xxhash │ ├── .gitignore │ ├── gen.lua │ └── ver ├── xz │ ├── README.md │ ├── config.h │ ├── gen.lua │ └── ver ├── yt-dlp │ ├── .gitignore │ ├── gen.lua │ ├── patch │ │ └── 0001-Disable-use-of-ctypes-and-dynamic-loading.patch │ ├── pylibs.txt │ ├── sha256 │ ├── url │ ├── ver │ └── yt-dlp ├── zlib │ ├── gen.lua │ └── ver └── zstd │ ├── config.h │ ├── gen.lua │ ├── patch │ └── 0001-Only-use-__asm__-on-GNU-compatible-compilers.patch │ └── ver ├── probe ├── HAVE_EMMINTRIN_H ├── HAVE_IMMINTRIN_H ├── HAVE_INLINE_ASM ├── HAVE_MMINTRIN_H ├── HAVE__MM_CLMULEPI64_SI128 ├── HAVE__MM_MOVEMASK_EPI8 ├── HAVE__THREAD_LOCAL ├── HAVE___BUILTIN_ASSUME_ALIGNED ├── HAVE___BUILTIN_BSWAP16 ├── HAVE___BUILTIN_CHOOSE_EXPR ├── HAVE___BUILTIN_CLZ ├── HAVE___BUILTIN_CTZL ├── HAVE___BUILTIN_POPCOUNT ├── PIC ├── SIZEOF_LONG ├── SIZEOF_SIZE_T ├── SIZEOF_TIME_T └── gen.lua ├── repo ├── alsa-lib │ ├── build │ ├── checksums │ ├── sources │ └── version ├── atk │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── 0001-fix-enum-types-for-muon.patch │ ├── sources │ └── version ├── bgs │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── cairo │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── 0001-util-remove-malloc-stats.patch │ ├── sources │ └── version ├── ccache │ ├── build │ ├── checksums │ ├── depends │ ├── post-install │ ├── sources │ └── version ├── cloc │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── cmake │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── cmus │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ ├── 0001-fix-incompability-with-netbsd-curses.patch │ │ └── 0002-remove-cursesw-and-curses-check.-it-errors-out-with-.patch │ ├── sources │ └── version ├── devour │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── dmenu │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ ├── 0001-apply-center-patch.patch │ │ ├── 0002-add-border-patch.patch │ │ ├── 0003-change-colorscheme.patch │ │ └── 0004-always-allow-selecting-whatever-was-typed-in-unchang.patch │ ├── sources │ └── version ├── exfatprogs │ ├── build │ ├── checksums │ ├── sources │ └── version ├── expat │ ├── build │ ├── checksums │ ├── sources │ └── version ├── ffmpeg │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── 0001-add-configure-check-for-Wno-error-incompatible-point.patch │ ├── sources │ └── version ├── fontconfig │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── fcobjshash.h │ ├── sources │ └── version ├── freetype-harfbuzz │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── gdk-pixbuf │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── 0001-fix-enum-types-for-muon.patch │ ├── sources │ └── version ├── github-cli │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── glazier │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── 0001-exclude-ewmh-all-together.patch │ ├── sources │ └── version ├── glib-networking │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── 0001-remove-gio-querymodule-post-install.patch │ ├── sources │ └── version ├── glib │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── gnutls │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── go-bootstrap │ ├── build │ ├── checksums │ ├── patches │ │ └── 0001-use-POSIX-sh-and-remove-bashisms.patch │ ├── sources │ └── version ├── go │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── 0001-src-make.bash-use-POSIX-sh-and-remove-some-bashism.patch │ ├── sources │ └── version ├── gperf │ ├── build │ ├── checksums │ ├── sources │ └── version ├── gst-libav │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── gst-plugins-bad │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── gst-plugins-base │ ├── build │ ├── checksums │ ├── depends │ ├── log │ ├── patches │ │ └── 0001-disable-check-for-pc-files.patch │ ├── sources │ └── version ├── gst-plugins-good │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── gst-plugins-ugly │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── gstreamer │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── 0001-fix-incompatability-with-byacc.patch │ ├── sources │ └── version ├── gtk+3 │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── 0001-remove-fribidi-dependency.patch │ ├── sources │ └── version ├── icu │ ├── build │ ├── checksums │ ├── sources │ └── version ├── imlib2 │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── kiss-find │ ├── build │ ├── checksums │ ├── sources │ └── version ├── lame │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libICE │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libSM │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libX11 │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libXScrnSaver │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libXau │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libXcomposite │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libXcursor │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libXdamage │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libXdmcp │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libXext │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libXfixes │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libXfont │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libXft │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libXi │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libXinerama │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libXmu │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libXpresent │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libXrandr │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libXrender │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libXt │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libXtst │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libXxf86vm │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libass │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── 0001-remove-fribidi-dependency.patch │ ├── sources │ └── version ├── libdrm │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libelf │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── 0001-fix-checks-for-argp_parse-and-fts_close.patch │ ├── sources │ └── version ├── libepoxy │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── liberation-fonts │ ├── build │ ├── checksums │ ├── sources │ └── version ├── libffi │ ├── build │ ├── checksums │ ├── sources │ └── version ├── libfontenc │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libgcrypt │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libgpg-error │ ├── build │ ├── checksums │ ├── sources │ └── version ├── libjpeg-turbo │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libnghttp2 │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libogg │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libpciaccess │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libplacebo │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── 0001-remove-the-need-for-vulkan-headers.patch │ ├── sources │ └── version ├── libpng │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libpsl │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libressl │ ├── build │ ├── checksums │ ├── sources │ └── version ├── libsoup3 │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libtasn1 │ ├── build │ ├── checksums │ ├── sources │ └── version ├── libvorbis │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libvpx │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ ├── vp8_rtcd.h │ │ ├── vp9_rtcd.h │ │ ├── vpx_dsp_rtcd.h │ │ └── vpx_scale_rtcd.h │ ├── sources │ └── version ├── libwebp │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libxcb │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libxkbcommon │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libxml2 │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libxshmfence │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libxslt │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── libyaml │ ├── build │ ├── checksums │ ├── sources │ └── version ├── lua-filesystem │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── lua5.1 │ ├── build │ ├── checksums │ ├── sources │ └── version ├── luajit │ ├── build │ ├── checksums │ ├── patches │ │ └── 0001-fix-check-for-toolchain-generateing-unwind-tables.patch │ ├── sources │ └── version ├── luakit │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── m4 │ ├── build │ ├── checksums │ ├── sources │ └── version ├── mesa │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── meson │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── mpv │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── mupdf │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ ├── 0001-remove-gumbo-parser-dependency.patch │ │ ├── 0002-remove-openjpeg-dependency.patch │ │ ├── 0003-change-OBJCOPY_CMD-to-work-on-non-GNU-linkers.patch │ │ └── 0004-Fixed-handling-of-safebags-in-pkcs7-helper-library.patch │ ├── sources │ └── version ├── nettle │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── opus │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── pango │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ ├── 0001-remove-fribidi-dependency.patch │ │ └── 0002-fix-muon-not-being-able-to-find-pango-enum-types-fil.patch │ ├── sources │ └── version ├── pcre2 │ ├── build │ ├── checksums │ ├── sources │ └── version ├── perl │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── pixman │ ├── build │ ├── checksums │ ├── sources │ └── version ├── python-flit-core │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── python-glad │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── python-gpep517 │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── gpep517.bin │ ├── patches │ │ └── 0001-change-default-opt-level-to-0.patch │ ├── sources │ └── version ├── python-installer │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── 0001-change-default-opt-level-to-0.patch │ ├── sources │ └── version ├── python-jinja2 │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── python-mako │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── python-markupsafe │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── python-packaging │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── python-wheel │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── 0001-use-system-packaging.patch │ ├── sources │ └── version ├── python │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ ├── 0001-readd-support-for-libressl.patch │ │ ├── 0002-fix-slow-startup-for-pyc-files.patch │ │ └── 0003-fix-python-not-always-installing-pip-setuptools.patch │ ├── sources │ └── version ├── ruby │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── senpai │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── 0001-set-bar-to-be-on-top-of-the-window-instead-of-bottom.patch │ ├── sources │ └── version ├── shellcheck-bin │ ├── build │ ├── checksums │ ├── sources │ └── version ├── sqlite │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── st │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ ├── 0001-set-tamzen-as-default-font.patch │ │ ├── 0002-set-borderpx-to-5.patch │ │ ├── 0003-set-default-cursor-to-_.patch │ │ ├── 0004-switch-keybindings-for-zoom.patch │ │ └── 0005-switch-colorscheme.patch │ ├── sources │ └── version ├── surf │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ ├── 0001-remove-the-need-for-gcr.patch │ │ ├── 0002-set-cache-cookiedir-to-tmp-and-the-rest-to-etc-surf.patch │ │ ├── 0003-add-quit-hotkey.patch │ │ ├── 0004-apply-searchengines-patch.patch │ │ ├── 0005-Added-choice-between-PRIMARY-and-CLIPBOARD-Gtk-selec.patch │ │ ├── 0006-add-bookmarking-using-bmks.patch │ │ └── 0007-don-t-set-default-font-size.patch │ ├── sources │ └── version ├── sx │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── sxhkd │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── tamzen-font │ ├── build │ ├── checksums │ ├── sources │ └── version ├── tinyx │ ├── build │ ├── checksums │ ├── depends │ ├── patches │ │ └── 0001-Xext-INITARGS-does-not-specify-a-type.-change-to-int.patch │ ├── post-install │ ├── sources │ └── version ├── unifdef │ ├── build │ ├── checksums │ ├── sources │ └── version ├── valgrind │ ├── build │ ├── checksums │ ├── depends │ ├── files │ │ └── musl.supp │ ├── sources │ └── version ├── wayland-protocols │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── wayland │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── webkit2gtk │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── wmutils │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── xauth │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── xbanish │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── xcb-proto │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── xcb-util-cursor │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── xcb-util-image │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── xcb-util-keysyms │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── xcb-util-renderutil │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── xcb-util │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── xorg-util-macros │ ├── build │ ├── checksums │ ├── sources │ └── version ├── xorgproto │ ├── build │ ├── checksums │ ├── sources │ └── version ├── xprop │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── xtrans │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version ├── xvidcore │ ├── build │ ├── checksums │ ├── depends │ ├── sources │ └── version └── zlib │ ├── build │ ├── checksums │ ├── sources │ └── version ├── rules.ninja ├── scripts ├── checksum.sh ├── commit.sh ├── extract.sh ├── fetch-curl.sh ├── fetch-git.sh ├── hash.sh ├── outdated.py ├── perms.awk ├── probe-size.sh ├── probe.sh ├── prune-config.sed ├── rsp.awk └── tree.sh ├── sets.lua ├── setup.lua └── template ├── config ├── hooks ├── post-checkout └── post-merge └── info ├── attributes ├── exclude └── sparse-checkout /.gitignore: -------------------------------------------------------------------------------- 1 | /config.ninja 2 | /config.lua 3 | /out 4 | fetch 5 | local.ninja 6 | .*.swp 7 | -------------------------------------------------------------------------------- /build.ninja: -------------------------------------------------------------------------------- 1 | local.ninja -------------------------------------------------------------------------------- /pkg/adobe-source-fonts/.gitignore: -------------------------------------------------------------------------------- 1 | /source-code-pro-2.038R-ro_1.058R-it_1.018R-VAR.tar.gz 2 | /source-sans-3.028R.tar.gz 3 | /source-sans-pro-3.028R.tar.gz 4 | /source-serif-4.004R.tar.gz 5 | /src 6 | -------------------------------------------------------------------------------- /pkg/adobe-source-fonts/sha256: -------------------------------------------------------------------------------- 1 | d8f879fefd66ecb7291ea2d73984b9c0a97fb499424e58290ba6b81787d0c725 source-code-pro-2.038R-ro_1.058R-it_1.018R-VAR.tar.gz 2 | 23df371ce8ce0c5c57e750f1b01af6a31e437fe1737df0501b8181162642686a source-sans-3.028R.tar.gz 3 | dfb364735699cb830caad534cf7741234804d28e4b6fc5e4736b2401f6131aba source-serif-4.004R.tar.gz 4 | -------------------------------------------------------------------------------- /pkg/adobe-source-fonts/ver: -------------------------------------------------------------------------------- 1 | 2.038R-ro/1.058R-it/1.018R-var 3.028R 4.004R r1 2 | -------------------------------------------------------------------------------- /pkg/alsa-lib/README.md: -------------------------------------------------------------------------------- 1 | # alsa-lib 2 | 3 | ## config.h 4 | Generated with 5 | 6 | ./configure \ 7 | --prefix= \ 8 | --disable-hwdep \ 9 | --disable-ucm \ 10 | --without-libdl 11 | 12 | ## Updating 13 | 14 | Make sure to update the version in `alsa/version.h`. 15 | -------------------------------------------------------------------------------- /pkg/alsa-lib/ctl_symbols_list.c: -------------------------------------------------------------------------------- 1 | &_snd_module_control_remap, 2 | &_snd_module_control_shm, 3 | &_snd_module_control_ext, 4 | -------------------------------------------------------------------------------- /pkg/alsa-lib/ver: -------------------------------------------------------------------------------- 1 | 1.2.13 r1 2 | -------------------------------------------------------------------------------- /pkg/awk/.gitignore: -------------------------------------------------------------------------------- 1 | /tools.ninja 2 | -------------------------------------------------------------------------------- /pkg/awk/ver: -------------------------------------------------------------------------------- 1 | 20250116 r0 2 | -------------------------------------------------------------------------------- /pkg/b3sum/.gitignore: -------------------------------------------------------------------------------- 1 | /host.ninja 2 | -------------------------------------------------------------------------------- /pkg/b3sum/ver: -------------------------------------------------------------------------------- 1 | 1.5.0 r0 2 | -------------------------------------------------------------------------------- /pkg/bc/.gitignore: -------------------------------------------------------------------------------- 1 | /bc-1.07.1.tar.gz 2 | /src 3 | -------------------------------------------------------------------------------- /pkg/bc/sha256: -------------------------------------------------------------------------------- 1 | 62adfca89b0a1c0164c2cdca59ca210c1d44c3ffc46daf9931cf4942664cb02a bc-1.07.1.tar.gz 2 | -------------------------------------------------------------------------------- /pkg/bc/url: -------------------------------------------------------------------------------- 1 | url = "https://ftp.gnu.org/gnu/bc/bc-1.07.1.tar.gz" 2 | -------------------------------------------------------------------------------- /pkg/bc/ver: -------------------------------------------------------------------------------- 1 | 1.07.1 r0 2 | -------------------------------------------------------------------------------- /pkg/bearssl/ver: -------------------------------------------------------------------------------- 1 | 0.6-33-g46f7ddd r0 2 | -------------------------------------------------------------------------------- /pkg/binutils/.gitignore: -------------------------------------------------------------------------------- 1 | /bfd.ninja 2 | /binutils-2.39.tar.xz 3 | /binutils.ninja 4 | /gas.ninja 5 | /ld.ninja 6 | /ld/ldemul-list.h 7 | /libctf.ninja 8 | /libiberty.ninja 9 | /opcodes.ninja 10 | /src 11 | -------------------------------------------------------------------------------- /pkg/binutils/ldemul.sh: -------------------------------------------------------------------------------- 1 | printf 'extern ld_emulation_xfer_type ld_%s_emulation;\n' "$@" 2 | printf '#define EMULATION_LIST ' 3 | printf '&ld_%s_emulation, ' "$@" 4 | printf '0\n' 5 | -------------------------------------------------------------------------------- /pkg/binutils/sha256: -------------------------------------------------------------------------------- 1 | 645c25f563b8adc0a81dbd6a41cffbf4d37083a382e02d5d3df4f65c09516d00 binutils-2.39.tar.xz 2 | -------------------------------------------------------------------------------- /pkg/binutils/url: -------------------------------------------------------------------------------- 1 | url = "https://ftp.gnu.org/gnu/binutils/binutils-2.39.tar.xz" 2 | -------------------------------------------------------------------------------- /pkg/binutils/ver: -------------------------------------------------------------------------------- 1 | 2.39 r1 2 | -------------------------------------------------------------------------------- /pkg/bubblewrap/.gitignore: -------------------------------------------------------------------------------- 1 | /bwrap.1.gz -------------------------------------------------------------------------------- /pkg/bubblewrap/caps.awk: -------------------------------------------------------------------------------- 1 | BEGIN { 2 | print "static const char *const cap_names[] = {" 3 | } 4 | /^#define CAP_[^[:space:]]+[[:space:]]+[0-9]+[[:space:]]*$/ { 5 | printf "\t[%d] = \"%s\",\n", $3, tolower($2) 6 | } 7 | END { 8 | print "};" 9 | } 10 | -------------------------------------------------------------------------------- /pkg/bubblewrap/config.h: -------------------------------------------------------------------------------- 1 | #define PACKAGE_STRING "bubblewrap 0.11.0" 2 | -------------------------------------------------------------------------------- /pkg/bubblewrap/ver: -------------------------------------------------------------------------------- 1 | 0.11.0 r0 2 | -------------------------------------------------------------------------------- /pkg/byacc/.gitignore: -------------------------------------------------------------------------------- 1 | /byacc-20241231.tgz 2 | /src 3 | -------------------------------------------------------------------------------- /pkg/byacc/README.md: -------------------------------------------------------------------------------- 1 | # byacc 2 | 3 | ## config.h 4 | Generated with 5 | ```sh 6 | ./configure \ 7 | --enable-btyacc \ 8 | --enable-stdnoreturn 9 | ``` 10 | -------------------------------------------------------------------------------- /pkg/byacc/sha256: -------------------------------------------------------------------------------- 1 | 192c2fae048d4e7f514ba451627f9c4e612765099f819c19191f9fde3e609673 byacc-20241231.tgz 2 | -------------------------------------------------------------------------------- /pkg/byacc/url: -------------------------------------------------------------------------------- 1 | url = "https://invisible-mirror.net/archives/byacc/byacc-20241231.tgz" 2 | -------------------------------------------------------------------------------- /pkg/byacc/ver: -------------------------------------------------------------------------------- 1 | 20241231 r0 2 | -------------------------------------------------------------------------------- /pkg/bzip2/ver: -------------------------------------------------------------------------------- 1 | 1.0.8 r0 2 | -------------------------------------------------------------------------------- /pkg/cacert/.gitignore: -------------------------------------------------------------------------------- 1 | /cacert.pem 2 | -------------------------------------------------------------------------------- /pkg/cacert/gen.lua: -------------------------------------------------------------------------------- 1 | phony('cacert.pem', '$dir/fetch') 2 | file('share/cacert/cert.pem', '644', '$dir/cacert.pem') 3 | 4 | fetch 'curl' 5 | -------------------------------------------------------------------------------- /pkg/cacert/sha256: -------------------------------------------------------------------------------- 1 | 50a6277ec69113f00c5fd45f09e8b97a4b3e32daa35d3a95ab30137a55386cef cacert.pem 2 | -------------------------------------------------------------------------------- /pkg/cacert/url: -------------------------------------------------------------------------------- 1 | url = "https://curl.se/ca/cacert-2025-02-25.pem" 2 | output = "cacert.pem" 3 | -------------------------------------------------------------------------------- /pkg/cacert/ver: -------------------------------------------------------------------------------- 1 | 2025-02-25 r0 2 | -------------------------------------------------------------------------------- /pkg/catgirl/ver: -------------------------------------------------------------------------------- 1 | 2.1 r0 2 | -------------------------------------------------------------------------------- /pkg/cproc/ver: -------------------------------------------------------------------------------- 1 | f66a661 r0 2 | -------------------------------------------------------------------------------- /pkg/curl/.gitignore: -------------------------------------------------------------------------------- 1 | /curl-8.8.0.tar.xz 2 | /curl.1.gz 3 | /src 4 | -------------------------------------------------------------------------------- /pkg/curl/sha256: -------------------------------------------------------------------------------- 1 | 0f58bb95fc330c8a46eeb3df5701b0d90c9d9bfcc42bd1cd08791d12551d4400 curl-8.8.0.tar.xz 2 | -------------------------------------------------------------------------------- /pkg/curl/url: -------------------------------------------------------------------------------- 1 | url = "https://curl.se/download/curl-8.8.0.tar.xz" 2 | -------------------------------------------------------------------------------- /pkg/curl/ver: -------------------------------------------------------------------------------- 1 | 8.8.0 r0 2 | -------------------------------------------------------------------------------- /pkg/dav1d/ver: -------------------------------------------------------------------------------- 1 | 0.9.2 r0 2 | -------------------------------------------------------------------------------- /pkg/dmenu/ver: -------------------------------------------------------------------------------- 1 | 4.9 r4 2 | -------------------------------------------------------------------------------- /pkg/dosfstools/ver: -------------------------------------------------------------------------------- 1 | 4.2 r1 2 | -------------------------------------------------------------------------------- /pkg/dosfstools/version.h: -------------------------------------------------------------------------------- 1 | #define VERSION "4.2" 2 | #define VERSION_DATE "2021-01-31" 3 | -------------------------------------------------------------------------------- /pkg/e2fsprogs/.gitignore: -------------------------------------------------------------------------------- 1 | /tools.ninja 2 | /journal.ninja 3 | -------------------------------------------------------------------------------- /pkg/e2fsprogs/README.md: -------------------------------------------------------------------------------- 1 | # e2fsprogs 2 | 3 | # config.h 4 | Generated with 5 | 6 | ./configure \ 7 | --disable-nls \ 8 | --disable-tdb \ 9 | --disable-testio-debug \ 10 | --disable-uuidd 11 | 12 | Some irrelevant gnulib lines were filtered out. `dirpaths.h` was inlined. 13 | -------------------------------------------------------------------------------- /pkg/e2fsprogs/blkid_types.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pkg/e2fsprogs/ext2_types.h: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #define __force 4 | -------------------------------------------------------------------------------- /pkg/e2fsprogs/ver: -------------------------------------------------------------------------------- 1 | 1.46.4 r1 2 | -------------------------------------------------------------------------------- /pkg/elftoolchain/ver: -------------------------------------------------------------------------------- 1 | ce6d62aaba r1 2 | -------------------------------------------------------------------------------- /pkg/expat/README.md: -------------------------------------------------------------------------------- 1 | # expat 2 | 3 | ## config.h 4 | Generated with 5 | 6 | ./configure \ 7 | CPPFLAGS=-I/src/oakiss/out/pkg/openbsd/include \ 8 | LDFLAGS='-L/src/oakiss/out/pkg/openbsd' \ 9 | LIBS='-lbsd' 10 | -------------------------------------------------------------------------------- /pkg/expat/ver: -------------------------------------------------------------------------------- 1 | 2.6.2 r0 2 | -------------------------------------------------------------------------------- /pkg/ffmpeg/.gitignore: -------------------------------------------------------------------------------- 1 | /lib.ninja 2 | -------------------------------------------------------------------------------- /pkg/ffmpeg/config-tail.h: -------------------------------------------------------------------------------- 1 | #endif /* FFMPEG_CONFIG_H */ 2 | -------------------------------------------------------------------------------- /pkg/ffmpeg/config.mak: -------------------------------------------------------------------------------- 1 | # This file is intentionally empty. It exists for scripts/sources.mk so that the 2 | # Makefiles have something to include. 3 | -------------------------------------------------------------------------------- /pkg/ffmpeg/include/stdatomic.h: -------------------------------------------------------------------------------- 1 | #ifdef __STDC_NO_ATOMICS__ 2 | # include 3 | #else 4 | # include_next 5 | #endif 6 | -------------------------------------------------------------------------------- /pkg/ffmpeg/scripts/sources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | set -ex 4 | 5 | ../src/configure >/dev/null 6 | awk '{print $2}' config.asm >vars.txt 7 | make -f sources.mk >../sources.txt 8 | git clean -df . 9 | -------------------------------------------------------------------------------- /pkg/ffmpeg/ver: -------------------------------------------------------------------------------- 1 | 7.0.2 r1 2 | -------------------------------------------------------------------------------- /pkg/file/.gitignore: -------------------------------------------------------------------------------- 1 | /host.ninja 2 | -------------------------------------------------------------------------------- /pkg/file/README.md: -------------------------------------------------------------------------------- 1 | # file 2 | 3 | ## config.h 4 | Generated with 5 | ``` 6 | ./configure \ 7 | --disable-xzlib \ 8 | --disable-bzlib \ 9 | --disable-zstdlib \ 10 | --disable-lzlib 11 | ``` 12 | -------------------------------------------------------------------------------- /pkg/file/ver: -------------------------------------------------------------------------------- 1 | 5.45 r1 2 | -------------------------------------------------------------------------------- /pkg/flex/.gitignore: -------------------------------------------------------------------------------- 1 | /flex-2.6.4.tar.gz 2 | /src 3 | -------------------------------------------------------------------------------- /pkg/flex/sha256: -------------------------------------------------------------------------------- 1 | e87aae032bf07c26f85ac0ed3250998c37621d95f8bd748b31f15b33c45ee995 flex-2.6.4.tar.gz 2 | -------------------------------------------------------------------------------- /pkg/flex/url: -------------------------------------------------------------------------------- 1 | url = "https://github.com/westes/flex/releases/download/v2.6.4/flex-2.6.4.tar.gz" 2 | -------------------------------------------------------------------------------- /pkg/flex/ver: -------------------------------------------------------------------------------- 1 | 2.6.4 r0 2 | -------------------------------------------------------------------------------- /pkg/fontconfig/.gitignore: -------------------------------------------------------------------------------- 1 | /fontconfig-2.15.0.tar.gz 2 | /src 3 | -------------------------------------------------------------------------------- /pkg/fontconfig/sha256: -------------------------------------------------------------------------------- 1 | f5f359d6332861bd497570848fcb42520964a9e83d5e3abe397b6b6db9bcaaf4 fontconfig-2.15.0.tar.gz 2 | -------------------------------------------------------------------------------- /pkg/fontconfig/url: -------------------------------------------------------------------------------- 1 | url = "https://www.freedesktop.org/software/fontconfig/release/fontconfig-2.15.0.tar.gz" 2 | -------------------------------------------------------------------------------- /pkg/fontconfig/ver: -------------------------------------------------------------------------------- 1 | 2.15.0 r0 2 | -------------------------------------------------------------------------------- /pkg/freetype/ver: -------------------------------------------------------------------------------- 1 | 2.11.0 r0 2 | -------------------------------------------------------------------------------- /pkg/fribidi/.gitignore: -------------------------------------------------------------------------------- 1 | /tools.ninja 2 | -------------------------------------------------------------------------------- /pkg/fribidi/README.md: -------------------------------------------------------------------------------- 1 | # fribidi 2 | 3 | ## config.h 4 | Generated with 5 | 6 | meson --buildtype release -Ddeprecated=false -Ddocs=false .. 7 | -------------------------------------------------------------------------------- /pkg/fribidi/config.h: -------------------------------------------------------------------------------- 1 | #define FRIBIDI_NO_DEPRECATED 2 | #define HAVE_MEMMOVE 1 3 | #define HAVE_MEMORY_H 1 4 | #define HAVE_MEMSET 1 5 | #define HAVE_STDLIB_H 1 6 | #define HAVE_STRDUP 1 7 | #define HAVE_STRINGIZE 1 8 | #define HAVE_STRINGS_H 1 9 | #define HAVE_STRING_H 1 10 | #define HAVE_SYS_TIMES_H 1 11 | #define STDC_HEADERS 1 12 | -------------------------------------------------------------------------------- /pkg/fribidi/ver: -------------------------------------------------------------------------------- 1 | 1.0.11 r0 2 | -------------------------------------------------------------------------------- /pkg/fspec-sync/.gitignore: -------------------------------------------------------------------------------- 1 | /host.ninja 2 | -------------------------------------------------------------------------------- /pkg/fspec-sync/ver: -------------------------------------------------------------------------------- 1 | a79592936c r0 2 | -------------------------------------------------------------------------------- /pkg/fuse/ver: -------------------------------------------------------------------------------- 1 | 3.10.5 r2 2 | -------------------------------------------------------------------------------- /pkg/git/.gitignore: -------------------------------------------------------------------------------- 1 | /git-manpages-2.49.0.tar.gz 2 | /man 3 | /man.ninja 4 | -------------------------------------------------------------------------------- /pkg/git/sh_gen.sed: -------------------------------------------------------------------------------- 1 | s|@SHELL_PATH@|/bin/sh| 2 | s|@DIFF@|diff| 3 | s|@LOCALEDIR@|/share/locale|g 4 | s|@USE_GETTEXT_SCHEME@||g 5 | /^\# @BROKEN_PATH_FIX@$/d 6 | s|@GITWEBDIR@|/share/gitweb|g 7 | s|@PERL_PATH@|/bin/perl|g 8 | s|@PAGER_ENV@|LESS=FRX LV=-c|g 9 | -------------------------------------------------------------------------------- /pkg/git/sha256: -------------------------------------------------------------------------------- 1 | b561252841ead1e32d87dbec8f257399ea08f759c98df62c3bafa5a658f2f8ac git-manpages-2.49.0.tar.gz 2 | -------------------------------------------------------------------------------- /pkg/git/url: -------------------------------------------------------------------------------- 1 | url = "https://www.kernel.org/pub/software/scm/git/git-manpages-2.49.0.tar.gz" 2 | -------------------------------------------------------------------------------- /pkg/git/ver: -------------------------------------------------------------------------------- 1 | 2.49.0 r0 2 | -------------------------------------------------------------------------------- /pkg/hotplugd/ver: -------------------------------------------------------------------------------- 1 | c15eea9bde r0 2 | -------------------------------------------------------------------------------- /pkg/iproute2/ver: -------------------------------------------------------------------------------- 1 | 6.8.0 r1 2 | -------------------------------------------------------------------------------- /pkg/jbig2dec/ver: -------------------------------------------------------------------------------- 1 | 0.20 r0 2 | -------------------------------------------------------------------------------- /pkg/kiss/ver: -------------------------------------------------------------------------------- 1 | 6.2.0 r1 -------------------------------------------------------------------------------- /pkg/less/.gitignore: -------------------------------------------------------------------------------- 1 | /less-643.tar.gz 2 | /src 3 | -------------------------------------------------------------------------------- /pkg/less/sha256: -------------------------------------------------------------------------------- 1 | 2911b5432c836fa084c8a2e68f6cd6312372c026a58faaa98862731c8b6052e8 less-643.tar.gz 2 | -------------------------------------------------------------------------------- /pkg/less/url: -------------------------------------------------------------------------------- 1 | url = "http://www.greenwoodsoftware.com/less/less-643.tar.gz" 2 | -------------------------------------------------------------------------------- /pkg/less/ver: -------------------------------------------------------------------------------- 1 | 643 r0 2 | -------------------------------------------------------------------------------- /pkg/libass/ver: -------------------------------------------------------------------------------- 1 | 0.14.0 r2 2 | -------------------------------------------------------------------------------- /pkg/libcbor/cbor_export.h: -------------------------------------------------------------------------------- 1 | #define CBOR_EXPORT 2 | -------------------------------------------------------------------------------- /pkg/libcbor/ver: -------------------------------------------------------------------------------- 1 | 0.9.0 r0 2 | -------------------------------------------------------------------------------- /pkg/libdrm/ver: -------------------------------------------------------------------------------- 1 | 2.4.123 r0 2 | -------------------------------------------------------------------------------- /pkg/liberation-fonts/.gitignore: -------------------------------------------------------------------------------- 1 | /liberation-fonts-ttf-2.1.5.tar.gz 2 | /src 3 | -------------------------------------------------------------------------------- /pkg/liberation-fonts/sha256: -------------------------------------------------------------------------------- 1 | 7191c669bf38899f73a2094ed00f7b800553364f90e2637010a69c0e268f25d0 liberation-fonts-ttf-2.1.5.tar.gz 2 | -------------------------------------------------------------------------------- /pkg/liberation-fonts/url: -------------------------------------------------------------------------------- 1 | url ="https://github.com/liberationfonts/liberation-fonts/files/7261482/liberation-fonts-ttf-2.1.5.tar.gz" -------------------------------------------------------------------------------- /pkg/liberation-fonts/ver: -------------------------------------------------------------------------------- 1 | 2.1.5 r0 2 | -------------------------------------------------------------------------------- /pkg/libevdev/config.h: -------------------------------------------------------------------------------- 1 | #define _GNU_SOURCE 1 2 | -------------------------------------------------------------------------------- /pkg/libevdev/ver: -------------------------------------------------------------------------------- 1 | 1.12.0 r0 2 | -------------------------------------------------------------------------------- /pkg/libevent/evconfig-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovercats/oakiss/911f715559544d4f23761bc584e1b7133fe9c1c9/pkg/libevent/evconfig-private.h -------------------------------------------------------------------------------- /pkg/libevent/ver: -------------------------------------------------------------------------------- 1 | 2.1.12 r0 2 | -------------------------------------------------------------------------------- /pkg/libffi/ver: -------------------------------------------------------------------------------- 1 | 3.4.6 r0 2 | -------------------------------------------------------------------------------- /pkg/libfido2/ver: -------------------------------------------------------------------------------- 1 | 1.9.0 r0 2 | -------------------------------------------------------------------------------- /pkg/libinput/config.h: -------------------------------------------------------------------------------- 1 | #define HAVE_LIBWACOM 0 2 | #define HAVE_VERSIONSORT 1 3 | #define HTTP_DOC_LINK "https://wayland.freedesktop.org/libinput/doc/1.19.3/" 4 | #define LIBINPUT_QUIRKS_DIR "/share/libinput" 5 | #define LIBINPUT_QUIRKS_OVERRIDE_FILE "/etc/libinput/local-overrides.quirks" 6 | #define _GNU_SOURCE 1 7 | -------------------------------------------------------------------------------- /pkg/libinput/ver: -------------------------------------------------------------------------------- 1 | 1.19.3 r0 2 | -------------------------------------------------------------------------------- /pkg/libjpeg-turbo/README.md: -------------------------------------------------------------------------------- 1 | # libjpeg-turbo 2 | 3 | # `jconfig.h` and `jconfigint.h` 4 | Generated with 5 | 6 | cmake -DENABLE_SHARED=0 -DWITH_SIMD=0 -DWITH_JPEG8=1 .. 7 | -------------------------------------------------------------------------------- /pkg/libjpeg-turbo/ver: -------------------------------------------------------------------------------- 1 | 2.0.6 r0 2 | -------------------------------------------------------------------------------- /pkg/libnl/ver: -------------------------------------------------------------------------------- 1 | 3.5.0 r1 2 | -------------------------------------------------------------------------------- /pkg/libpkgconf/ver: -------------------------------------------------------------------------------- 1 | 2.4.3 r0 -------------------------------------------------------------------------------- /pkg/libplacebo/config_internal.h: -------------------------------------------------------------------------------- 1 | #define BUILD_API_VER 349 2 | #define BUILD_FIX_VER 0 3 | #undef PL_DEBUG_ABORT 4 | #undef PL_HAVE_DBGHELP 5 | #undef PL_HAVE_EXECINFO 6 | #undef PL_HAVE_UNWIND 7 | 8 | #define PL_HAVE_PTHREAD 1 9 | #define PTHREAD_HAS_SETCLOCK 1 10 | -------------------------------------------------------------------------------- /pkg/libplacebo/ver: -------------------------------------------------------------------------------- 1 | 7.349.0 r0 2 | -------------------------------------------------------------------------------- /pkg/libpng/ver: -------------------------------------------------------------------------------- 1 | 1.6.43 r0 2 | -------------------------------------------------------------------------------- /pkg/libressl/.gitignore: -------------------------------------------------------------------------------- 1 | /libressl-3.4.2.tar.gz 2 | /src 3 | -------------------------------------------------------------------------------- /pkg/libressl/sha256: -------------------------------------------------------------------------------- 1 | cb82ca7d547336917352fbd23db2fc483c6c44d35157b32780214ec74197b3ce libressl-3.4.2.tar.gz 2 | -------------------------------------------------------------------------------- /pkg/libressl/url: -------------------------------------------------------------------------------- 1 | url = "https://cdn.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.4.2.tar.gz" 2 | -------------------------------------------------------------------------------- /pkg/libressl/ver: -------------------------------------------------------------------------------- 1 | 3.4.2 r0 2 | -------------------------------------------------------------------------------- /pkg/libtermkey/.gitignore: -------------------------------------------------------------------------------- 1 | /libtermkey-0.22.tar.gz 2 | /src 3 | -------------------------------------------------------------------------------- /pkg/libtermkey/sha256: -------------------------------------------------------------------------------- 1 | 6945bd3c4aaa83da83d80a045c5563da4edd7d0374c62c0d35aec09eb3014600 libtermkey-0.22.tar.gz 2 | -------------------------------------------------------------------------------- /pkg/libtermkey/url: -------------------------------------------------------------------------------- 1 | url = "http://www.leonerd.org.uk/code/libtermkey/libtermkey-0.22.tar.gz" 2 | -------------------------------------------------------------------------------- /pkg/libtermkey/ver: -------------------------------------------------------------------------------- 1 | 0.22 r0 2 | -------------------------------------------------------------------------------- /pkg/libtls-bearssl/ver: -------------------------------------------------------------------------------- 1 | 0.5 r3 2 | -------------------------------------------------------------------------------- /pkg/libutp/gen.lua: -------------------------------------------------------------------------------- 1 | cflags{ 2 | '-std=c99', '-Wall', '-Wpedantic', 3 | '-D _POSIX_C_SOURCE=200809L', 4 | '-I $srcdir', 5 | } 6 | 7 | pkg.hdrs = copy('$outdir/include/libutp', '$srcdir', {'utp.h'}) 8 | 9 | lib('libutp.a', {'utp.c', 'utp_utils.c'}) 10 | 11 | fetch 'git' 12 | -------------------------------------------------------------------------------- /pkg/libutp/ver: -------------------------------------------------------------------------------- 1 | 996ad97f18 r0 2 | -------------------------------------------------------------------------------- /pkg/libxkbcommon/README.md: -------------------------------------------------------------------------------- 1 | # libxkbcommon 2 | 3 | ## config.h 4 | Generated with 5 | 6 | meson setup \ 7 | -Dprefix=/ \ 8 | -Dxkb-config-root=/share/xkb \ 9 | -Dx-locale-root=/share/xlocale \ 10 | -Denable-x11=false \ 11 | -Denable-wayland=false \ 12 | -Denable-docs=false \ 13 | build 14 | -------------------------------------------------------------------------------- /pkg/libxkbcommon/ver: -------------------------------------------------------------------------------- 1 | 1.7.0 r0 2 | -------------------------------------------------------------------------------- /pkg/linux-headers/.gitignore: -------------------------------------------------------------------------------- 1 | /linux-6.12.tar.xz 2 | /src 3 | /tools.ninja 4 | -------------------------------------------------------------------------------- /pkg/linux-headers/sha256: -------------------------------------------------------------------------------- 1 | b1a2562be56e42afb3f8489d4c2a7ac472ac23098f1ef1c1e40da601f54625eb linux-6.12.tar.xz 2 | -------------------------------------------------------------------------------- /pkg/linux-headers/url: -------------------------------------------------------------------------------- 1 | url = "https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.12.tar.xz" 2 | -------------------------------------------------------------------------------- /pkg/linux-headers/ver: -------------------------------------------------------------------------------- 1 | 6.12 r0 2 | -------------------------------------------------------------------------------- /pkg/linux-headers/version.awk: -------------------------------------------------------------------------------- 1 | /^VERSION = / { version = $3 } 2 | /^PATCHLEVEL = / { patchlevel = $3 } 3 | /^SUBLEVEL = / { sublevel = $3 } 4 | 5 | END { 6 | print "#define LINUX_VERSION_CODE " (version * 65536 + patchlevel * 256 + sublevel) 7 | print "#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))" 8 | } 9 | -------------------------------------------------------------------------------- /pkg/lpeg/.gitignore: -------------------------------------------------------------------------------- 1 | /lpeg-1.1.0.tar.gz 2 | /src 3 | -------------------------------------------------------------------------------- /pkg/lpeg/gen.lua: -------------------------------------------------------------------------------- 1 | cflags{ 2 | '-std=c99', '-Wall', '-Wpedantic', 3 | '-D NDEBUG', 4 | '-isystem $builddir/pkg/lua/include', 5 | } 6 | 7 | pkg.deps = {'pkg/lua/headers'} 8 | 9 | lib('liblpeg.a', { 10 | 'lpvm.c', 11 | 'lpcap.c', 12 | 'lptree.c', 13 | 'lpcode.c', 14 | 'lpprint.c', 15 | 'lpcset.c', 16 | }) 17 | 18 | fetch 'curl' 19 | -------------------------------------------------------------------------------- /pkg/lpeg/sha256: -------------------------------------------------------------------------------- 1 | 4b155d67d2246c1ffa7ad7bc466c1ea899bbc40fef0257cc9c03cecbaed4352a lpeg-1.1.0.tar.gz 2 | -------------------------------------------------------------------------------- /pkg/lpeg/url: -------------------------------------------------------------------------------- 1 | url = "http://www.inf.puc-rio.br/~roberto/lpeg/lpeg-1.1.0.tar.gz" 2 | -------------------------------------------------------------------------------- /pkg/lpeg/ver: -------------------------------------------------------------------------------- 1 | 1.1.0 r0 2 | -------------------------------------------------------------------------------- /pkg/lua/.gitignore: -------------------------------------------------------------------------------- 1 | /lua-5.4.7.tar.gz 2 | /src 3 | -------------------------------------------------------------------------------- /pkg/lua/sha256: -------------------------------------------------------------------------------- 1 | 9fbf5e28ef86c69858f6d3d34eccc32e911c1a28b4120ff3e84aaa70cfbf1e30 lua-5.4.7.tar.gz 2 | -------------------------------------------------------------------------------- /pkg/lua/url: -------------------------------------------------------------------------------- 1 | url = "http://www.lua.org/ftp/lua-5.4.7.tar.gz" 2 | -------------------------------------------------------------------------------- /pkg/lua/ver: -------------------------------------------------------------------------------- 1 | 5.4.7 r2 2 | -------------------------------------------------------------------------------- /pkg/luaposix/ver: -------------------------------------------------------------------------------- 1 | 36.2.1 r0 2 | -------------------------------------------------------------------------------- /pkg/lz4/.gitignore: -------------------------------------------------------------------------------- 1 | /local.ninja -------------------------------------------------------------------------------- /pkg/lz4/ver: -------------------------------------------------------------------------------- 1 | v1.10.0 r1 -------------------------------------------------------------------------------- /pkg/make/.gitignore: -------------------------------------------------------------------------------- 1 | /make-4.4.1.tar.gz 2 | /src 3 | -------------------------------------------------------------------------------- /pkg/make/sha256: -------------------------------------------------------------------------------- 1 | dd16fb1d67bfab79a72f5e8390735c49e3e8e70b4945a15ab1f81ddb78658fb3 make-4.4.1.tar.gz 2 | -------------------------------------------------------------------------------- /pkg/make/url: -------------------------------------------------------------------------------- 1 | url = "http://ftp.gnu.org/gnu/make/make-4.4.1.tar.gz" 2 | -------------------------------------------------------------------------------- /pkg/make/ver: -------------------------------------------------------------------------------- 1 | 4.4.1 r0 2 | -------------------------------------------------------------------------------- /pkg/man-pages-posix/.gitignore: -------------------------------------------------------------------------------- 1 | /man-pages-posix-2017-a.tar.gz 2 | /src 3 | -------------------------------------------------------------------------------- /pkg/man-pages-posix/gen.lua: -------------------------------------------------------------------------------- 1 | man(lines('manpages.txt')) 2 | fetch 'curl' 3 | -------------------------------------------------------------------------------- /pkg/man-pages-posix/sha256: -------------------------------------------------------------------------------- 1 | 8ba538e91db62622c507e34899e1e7d560e870505c00cd4d7f8d5048e54d056e man-pages-posix-2017-a.tar.gz 2 | -------------------------------------------------------------------------------- /pkg/man-pages-posix/url: -------------------------------------------------------------------------------- 1 | url = "https://www.kernel.org/pub/linux/docs/man-pages/man-pages-posix/man-pages-posix-2017-a.tar.gz" 2 | -------------------------------------------------------------------------------- /pkg/man-pages-posix/ver: -------------------------------------------------------------------------------- 1 | 2017a r0 2 | -------------------------------------------------------------------------------- /pkg/mandoc/.gitignore: -------------------------------------------------------------------------------- 1 | /mandoc-1.14.6.tar.gz 2 | /src 3 | -------------------------------------------------------------------------------- /pkg/mandoc/sha256: -------------------------------------------------------------------------------- 1 | 8bf0d570f01e70a6e124884088870cbed7537f36328d512909eb10cd53179d9c mandoc-1.14.6.tar.gz 2 | -------------------------------------------------------------------------------- /pkg/mandoc/url: -------------------------------------------------------------------------------- 1 | url = "http://mandoc.bsd.lv/snapshots/mandoc-1.14.6.tar.gz" 2 | -------------------------------------------------------------------------------- /pkg/mandoc/ver: -------------------------------------------------------------------------------- 1 | 1.14.6 r0 2 | -------------------------------------------------------------------------------- /pkg/mpv/.gitignore: -------------------------------------------------------------------------------- 1 | /tools.ninja 2 | /mpv.1.gz 3 | -------------------------------------------------------------------------------- /pkg/mpv/ver: -------------------------------------------------------------------------------- 1 | 0.38.0 r0 2 | -------------------------------------------------------------------------------- /pkg/mpv/version.awk: -------------------------------------------------------------------------------- 1 | { 2 | version = $0 3 | } 4 | 5 | END { 6 | printf("#define VERSION \"%s\"\n", version) 7 | print("#define BUILDDATE \"UNKNOWN\"") 8 | print("#define MPVCOPYRIGHT \"Copyright © 2000-2024 mpv/MPlayer/mplayer2 projects\"") 9 | } 10 | -------------------------------------------------------------------------------- /pkg/mtdev/ver: -------------------------------------------------------------------------------- 1 | 1.1.6 r0 2 | -------------------------------------------------------------------------------- /pkg/muon/.gitignore: -------------------------------------------------------------------------------- 1 | /local.ninja 2 | /tools.ninja 3 | -------------------------------------------------------------------------------- /pkg/muon/ver: -------------------------------------------------------------------------------- 1 | 0.4.0 r3 2 | -------------------------------------------------------------------------------- /pkg/muon/version.c: -------------------------------------------------------------------------------- 1 | #include "compat.h" 2 | 3 | #include "version.h" 4 | 5 | const struct muon_version muon_version = { 6 | .version = "0.4.0", 7 | .vcs_tag = "4344eb5d", 8 | .meson_compat = "1.5.99", 9 | }; 10 | -------------------------------------------------------------------------------- /pkg/mupdf/.gitignore: -------------------------------------------------------------------------------- 1 | /tools.ninja 2 | -------------------------------------------------------------------------------- /pkg/mupdf/ver: -------------------------------------------------------------------------------- 1 | 1.18.0 r1 2 | -------------------------------------------------------------------------------- /pkg/musl/ver: -------------------------------------------------------------------------------- 1 | 1.2.5 r1 2 | -------------------------------------------------------------------------------- /pkg/nasm/.gitignore: -------------------------------------------------------------------------------- 1 | /nasm-2.16.01.tar.gz 2 | /src 3 | -------------------------------------------------------------------------------- /pkg/nasm/sha256: -------------------------------------------------------------------------------- 1 | d833bf0f5716e89dbcd345b7f545f25fe348c6e2ef16dbc293e1027bcd22d881 nasm-2.16.01.tar.gz 2 | -------------------------------------------------------------------------------- /pkg/nasm/url: -------------------------------------------------------------------------------- 1 | url = "http://www.nasm.us/pub/nasm/releasebuilds/2.16.01/nasm-2.16.01.tar.gz" 2 | -------------------------------------------------------------------------------- /pkg/nasm/ver: -------------------------------------------------------------------------------- 1 | 2.16.01 r0 2 | -------------------------------------------------------------------------------- /pkg/ncompress/gen.lua: -------------------------------------------------------------------------------- 1 | cflags{ 2 | '-std=c99', '-Wall', '-Wpedantic', 3 | '-D _POSIX_C_SOURCE=200809L', 4 | '-D UTIME_H', 5 | '-D LSTAT', 6 | '-D USERMEM=800000', 7 | } 8 | 9 | exe('compress', {'compress.c'}) 10 | file('bin/compress', '755', '$outdir/compress') 11 | 12 | sym('bin/ucompress', 'compress') 13 | 14 | fetch 'git' 15 | -------------------------------------------------------------------------------- /pkg/ncompress/ver: -------------------------------------------------------------------------------- 1 | 5.0 r0 2 | -------------------------------------------------------------------------------- /pkg/netbsd-curses/.gitignore: -------------------------------------------------------------------------------- 1 | /tools.ninja 2 | -------------------------------------------------------------------------------- /pkg/netbsd-curses/ver: -------------------------------------------------------------------------------- 1 | 5b78297a12 r0 2 | -------------------------------------------------------------------------------- /pkg/netsurf/.gitignore: -------------------------------------------------------------------------------- 1 | /tools.ninja 2 | -------------------------------------------------------------------------------- /pkg/netsurf/libcss/.gitignore: -------------------------------------------------------------------------------- 1 | /tools.ninja 2 | -------------------------------------------------------------------------------- /pkg/netsurf/libcss/prop_parsers.awk: -------------------------------------------------------------------------------- 1 | BEGIN { 2 | FS=":" 3 | } 4 | 5 | /^#/ { next } 6 | /^$/ { next } 7 | 8 | { 9 | system(gen_prop_parser " '" $0 "'") 10 | } 11 | -------------------------------------------------------------------------------- /pkg/netsurf/libcss/ver: -------------------------------------------------------------------------------- 1 | 0.9.1 r1 2 | -------------------------------------------------------------------------------- /pkg/netsurf/libdom/ver: -------------------------------------------------------------------------------- 1 | 0.4.1 r0 2 | -------------------------------------------------------------------------------- /pkg/netsurf/libhubbub/ver: -------------------------------------------------------------------------------- 1 | 0.3.7 r0 2 | -------------------------------------------------------------------------------- /pkg/netsurf/libnsbmp/gen.lua: -------------------------------------------------------------------------------- 1 | cflags{'-I $srcdir/include'} 2 | lib('libnsbmp.a', {'src/libnsbmp.c'}) 3 | fetch 'git' 4 | -------------------------------------------------------------------------------- /pkg/netsurf/libnsbmp/ver: -------------------------------------------------------------------------------- 1 | 0.1.6 2 | -------------------------------------------------------------------------------- /pkg/netsurf/libnsgif/gen.lua: -------------------------------------------------------------------------------- 1 | cflags{'-I $srcdir/include'} 2 | lib('libnsgif.a', {'src/libnsgif.c', 'src/lzw.c'}) 3 | fetch 'git' 4 | -------------------------------------------------------------------------------- /pkg/netsurf/libnsgif/ver: -------------------------------------------------------------------------------- 1 | 0.2.1 2 | -------------------------------------------------------------------------------- /pkg/netsurf/libnsutils/gen.lua: -------------------------------------------------------------------------------- 1 | cflags{'-I $srcdir/include'} 2 | lib('libnsutils.a', { 3 | 'src/base64.c', 4 | 'src/time.c', 5 | 'src/unistd.c', 6 | }) 7 | 8 | fetch 'git' 9 | -------------------------------------------------------------------------------- /pkg/netsurf/libnsutils/ver: -------------------------------------------------------------------------------- 1 | 0.1.0 2 | -------------------------------------------------------------------------------- /pkg/netsurf/libparserutils/ver: -------------------------------------------------------------------------------- 1 | 0.2.4 2 | -------------------------------------------------------------------------------- /pkg/netsurf/libsvgtiny/ver: -------------------------------------------------------------------------------- 1 | 0.1.7 2 | -------------------------------------------------------------------------------- /pkg/netsurf/libwapcaplet/gen.lua: -------------------------------------------------------------------------------- 1 | cflags{'-I $srcdir/include'} 2 | lib('libwapcaplet.a', {'src/libwapcaplet.c'}) 3 | fetch 'git' 4 | -------------------------------------------------------------------------------- /pkg/netsurf/libwapcaplet/ver: -------------------------------------------------------------------------------- 1 | 0.4.3 r0 2 | -------------------------------------------------------------------------------- /pkg/netsurf/messages.awk: -------------------------------------------------------------------------------- 1 | /^(#|$)/ {next} 2 | { 3 | i = index($0, ":") 4 | if (!i) 5 | next 6 | split(substr($0, 1, i - 1), key, ".") 7 | if (lang == key[1] && (filter == "any" || key[2] == "all" || key[3] == filter)) 8 | print key[3] substr($0, i) 9 | } 10 | -------------------------------------------------------------------------------- /pkg/netsurf/sha256: -------------------------------------------------------------------------------- 1 | fdde93ab180222bda8e2135dbb52d7cc1b63c66eaa5da74782f1ce6d894df8b1 netsurf-all-3.6.tar.gz 2 | -------------------------------------------------------------------------------- /pkg/netsurf/testament.h: -------------------------------------------------------------------------------- 1 | #ifndef NETSURF_REVISION_TESTAMENT 2 | #define NETSURF_REVISION_TESTAMENT 1 3 | 4 | #define WT_NO_GIT 1 5 | #define WT_MODIFIED 0 6 | #define WT_MODIFICATIONS {{NULL, NULL}} 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /pkg/netsurf/ver: -------------------------------------------------------------------------------- 1 | 3.10 r6 2 | -------------------------------------------------------------------------------- /pkg/oksh/ver: -------------------------------------------------------------------------------- 1 | 7.7 r0 2 | -------------------------------------------------------------------------------- /pkg/openbsd/.gitignore: -------------------------------------------------------------------------------- 1 | /nc.ninja 2 | /src 3 | /src.tar.gz 4 | /sys.tar.gz 5 | -------------------------------------------------------------------------------- /pkg/openbsd/include/err.h: -------------------------------------------------------------------------------- 1 | #include_next 2 | void warnc(int, const char *, ...) __attribute__((__format__ (printf, 2, 3))); 3 | void vwarnc(int, const char *, va_list) __attribute__((__format__ (printf, 2, 0))); 4 | -------------------------------------------------------------------------------- /pkg/openbsd/include/grp.h: -------------------------------------------------------------------------------- 1 | #include_next 2 | #define setgroupent(n) setgrent() 3 | const char *group_from_gid(gid_t, int); 4 | int gid_from_group(const char *, gid_t *); 5 | -------------------------------------------------------------------------------- /pkg/openbsd/include/machine/endian.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /pkg/openbsd/include/netinet/ip.h: -------------------------------------------------------------------------------- 1 | #include_next 2 | #define IPTOS_DSCP_CS0 0x00 3 | #define IPTOS_DSCP_CS1 0x20 4 | #define IPTOS_DSCP_CS2 0x40 5 | #define IPTOS_DSCP_CS3 0x60 6 | #define IPTOS_DSCP_CS4 0x80 7 | #define IPTOS_DSCP_CS5 0xa0 8 | #define IPTOS_DSCP_CS6 0xc0 9 | #define IPTOS_DSCP_CS7 0xe0 10 | -------------------------------------------------------------------------------- /pkg/openbsd/include/pwd.h: -------------------------------------------------------------------------------- 1 | #include_next 2 | #define setpassent(n) setpwent() 3 | const char *user_from_uid(uid_t, int); 4 | int uid_from_user(const char *, uid_t *); 5 | -------------------------------------------------------------------------------- /pkg/openbsd/include/resolv.h: -------------------------------------------------------------------------------- 1 | #include_next 2 | int b64_ntop(unsigned char const *, size_t, char *, size_t); 3 | int b64_pton(char const *, unsigned char *, size_t); 4 | -------------------------------------------------------------------------------- /pkg/openbsd/include/string.h: -------------------------------------------------------------------------------- 1 | #define __NEED_mode_t 2 | #include_next 3 | char *strcasestr(const char *, const char *); 4 | void strmode(mode_t, char *); 5 | int timingsafe_memcmp(const void *, const void *, size_t); 6 | int timingsafe_bcmp(const void *, const void *, size_t); 7 | -------------------------------------------------------------------------------- /pkg/openbsd/include/sys/cdefs.h: -------------------------------------------------------------------------------- 1 | /* only needed for C++ */ 2 | #define __BEGIN_DECLS 3 | #define __END_DECLS 4 | 5 | #define __dead _Noreturn 6 | -------------------------------------------------------------------------------- /pkg/openbsd/include/sys/param.h: -------------------------------------------------------------------------------- 1 | #include_next 2 | #define ALIGNBYTES (sizeof(uintptr_t) - 1) 3 | #define ALIGN(p) (((uintptr_t)(p) + ALIGNBYTES) &~ ALIGNBYTES) 4 | -------------------------------------------------------------------------------- /pkg/openbsd/include/unistd.h: -------------------------------------------------------------------------------- 1 | #include_next 2 | #define pledge(request, paths) 0 /* linux doesn't have pledge */ 3 | #define unveil(path, permissions) 0 /* linux doesn't have unveil */ 4 | -------------------------------------------------------------------------------- /pkg/openbsd/include/util.h: -------------------------------------------------------------------------------- 1 | #ifndef _UTIL_H_ 2 | #define _UTIL_H_ 3 | 4 | #define FMT_SCALED_STRSIZE 7 /* minus sign, 4 digits, suffix, null byte */ 5 | 6 | int fmt_scaled(long long, char *); 7 | int scan_scaled(char *, long long *); 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /pkg/openbsd/sha256: -------------------------------------------------------------------------------- 1 | 6239a7a906bec7c386a06e6fda5893d854a4a00b6702eb47cbed0353a6a0c4fb src.tar.gz 2 | 65b58e8432c8f678840fa58402daee8acf196770b748068e165664bd2d6cd85c sys.tar.gz 3 | -------------------------------------------------------------------------------- /pkg/openbsd/url: -------------------------------------------------------------------------------- 1 | remote-name 2 | url = "https://cdn.openbsd.org/pub/OpenBSD/7.7/src.tar.gz" 3 | 4 | remote-name 5 | url = "https://cdn.openbsd.org/pub/OpenBSD/7.7/sys.tar.gz" 6 | -------------------------------------------------------------------------------- /pkg/openbsd/ver: -------------------------------------------------------------------------------- 1 | 7.7 r0 2 | -------------------------------------------------------------------------------- /pkg/openntpd/.gitignore: -------------------------------------------------------------------------------- 1 | /openntpd-6.8p1.tar.gz 2 | /src 3 | -------------------------------------------------------------------------------- /pkg/openntpd/README.md: -------------------------------------------------------------------------------- 1 | # openntpd 2 | 3 | ## config.h 4 | Generated with 5 | 6 | ./configure \ 7 | --with-privsep-user=ntpd \ 8 | CPPFLAGS='-I/src/oasis/out/pkg/libtls-bearssl/include' \ 9 | LDFLAGS='-L/src/oasis/out/pkg/libtls-bearssl -L/src/oasis/out/pkg/openbsd' \ 10 | LIBS='-ltls -lbearssl -lbsd' 11 | -------------------------------------------------------------------------------- /pkg/openntpd/sha256: -------------------------------------------------------------------------------- 1 | 8582db838a399153d4a17f2a76518b638cc3020f58028575bf54127518f55a46 openntpd-6.8p1.tar.gz 2 | -------------------------------------------------------------------------------- /pkg/openntpd/url: -------------------------------------------------------------------------------- 1 | url = "https://cdn.openbsd.org/pub/OpenBSD/OpenNTPD/openntpd-6.8p1.tar.gz" 2 | -------------------------------------------------------------------------------- /pkg/openntpd/ver: -------------------------------------------------------------------------------- 1 | 6.8p1 r0 2 | -------------------------------------------------------------------------------- /pkg/openssh/ver: -------------------------------------------------------------------------------- 1 | 10.0p2 r0 2 | -------------------------------------------------------------------------------- /pkg/opus/.gitignore: -------------------------------------------------------------------------------- 1 | /opus-1.5.2.tar.gz 2 | /src 3 | -------------------------------------------------------------------------------- /pkg/opus/sha256: -------------------------------------------------------------------------------- 1 | 65c1d2f78b9f2fb20082c38cbe47c951ad5839345876e46941612ee87f9a7ce1 opus-1.5.2.tar.gz 2 | -------------------------------------------------------------------------------- /pkg/opus/url: -------------------------------------------------------------------------------- 1 | url = "https://github.com/xiph/opus/releases/download/v1.5.2/opus-1.5.2.tar.gz" 2 | -------------------------------------------------------------------------------- /pkg/opus/ver: -------------------------------------------------------------------------------- 1 | 1.5.2 r1 2 | -------------------------------------------------------------------------------- /pkg/pax/.gitignore: -------------------------------------------------------------------------------- 1 | /host.ninja 2 | -------------------------------------------------------------------------------- /pkg/pax/gen.lua: -------------------------------------------------------------------------------- 1 | cflags{'-std=c99', '-Wall', '-Wpedantic'} 2 | 3 | exe('pax', {'pax.c'}) 4 | file('bin/pax', '755', '$outdir/pax') 5 | 6 | sub('host.ninja', function() 7 | set('outdir', '$outdir/host') 8 | toolchain(config.host) 9 | exe('pax', {'pax.c'}) 10 | end) 11 | 12 | fetch 'git' 13 | -------------------------------------------------------------------------------- /pkg/pax/ver: -------------------------------------------------------------------------------- 1 | 95d26ab249 r0 2 | -------------------------------------------------------------------------------- /pkg/pcre/.gitignore: -------------------------------------------------------------------------------- 1 | /pcre-8.45.tar.gz 2 | /src 3 | -------------------------------------------------------------------------------- /pkg/pcre/README.md: -------------------------------------------------------------------------------- 1 | # pcre 2 | 3 | ## config.h 4 | Generated with 5 | 6 | ./configure \ 7 | --disable-cpp \ 8 | --disable-shared \ 9 | --enable-jit \ 10 | --enable-utf8 \ 11 | --enable-unicode-properties 12 | -------------------------------------------------------------------------------- /pkg/pcre/sha256: -------------------------------------------------------------------------------- 1 | 4e6ce03e0336e8b4a3d6c2b70b1c5e18590a5673a98186da90d4f33c23defc09 pcre-8.45.tar.gz 2 | -------------------------------------------------------------------------------- /pkg/pcre/url: -------------------------------------------------------------------------------- 1 | url = "https://sourceforge.net/projects/pcre/files/pcre/8.45/pcre-8.45.tar.gz" 2 | -------------------------------------------------------------------------------- /pkg/pcre/ver: -------------------------------------------------------------------------------- 1 | 8.45 r0 2 | -------------------------------------------------------------------------------- /pkg/pdpmake/ver: -------------------------------------------------------------------------------- 1 | 2.0.3 r0 -------------------------------------------------------------------------------- /pkg/pigz/ver: -------------------------------------------------------------------------------- 1 | 2.8 r0 2 | -------------------------------------------------------------------------------- /pkg/pixman/ver: -------------------------------------------------------------------------------- 1 | 0.43.4 r1 2 | -------------------------------------------------------------------------------- /pkg/python/.gitignore: -------------------------------------------------------------------------------- 1 | /Python-3.10.0.tar.xz 2 | /modules.ninja 3 | /src 4 | -------------------------------------------------------------------------------- /pkg/python/lib/Makefile: -------------------------------------------------------------------------------- 1 | # intentionally empty 2 | -------------------------------------------------------------------------------- /pkg/python/lib/_sysconfigdata.py: -------------------------------------------------------------------------------- 1 | build_time_vars = { 2 | } 3 | -------------------------------------------------------------------------------- /pkg/python/sha256: -------------------------------------------------------------------------------- 1 | 5a99f8e7a6a11a7b98b4e75e0d1303d3832cada5534068f69c7b6222a7b1b002 Python-3.10.0.tar.xz 2 | -------------------------------------------------------------------------------- /pkg/python/url: -------------------------------------------------------------------------------- 1 | url = "https://www.python.org/ftp/python/3.10.0/Python-3.10.0.tar.xz" 2 | -------------------------------------------------------------------------------- /pkg/python/ver: -------------------------------------------------------------------------------- 1 | 3.10.0 r1 2 | -------------------------------------------------------------------------------- /pkg/qbe/config.h: -------------------------------------------------------------------------------- 1 | #define Deftgt T_amd64_sysv 2 | -------------------------------------------------------------------------------- /pkg/qbe/ver: -------------------------------------------------------------------------------- 1 | v1.2-61-g8d5b86ac4c r0 2 | -------------------------------------------------------------------------------- /pkg/quark/ver: -------------------------------------------------------------------------------- 1 | 5ad0df9175 r0 2 | -------------------------------------------------------------------------------- /pkg/rc/ver: -------------------------------------------------------------------------------- 1 | 50b729e65d r1 2 | -------------------------------------------------------------------------------- /pkg/rcinit/gen.lua: -------------------------------------------------------------------------------- 1 | file('bin/rcinit', '755', '$srcdir/rcinit') 2 | sym('bin/init', 'rcinit') 3 | 4 | file('bin/shutdown', '755', '$dir/shutdown') 5 | 6 | fetch 'git' -------------------------------------------------------------------------------- /pkg/rcinit/shutdown: -------------------------------------------------------------------------------- 1 | #!/bin/rc 2 | 3 | switch($1) { 4 | case p 5 | /etc/rc.shutdown -p & 6 | case r 7 | /etc/rc.shutdown -r & 8 | case * 9 | printf 'Usage: p|r\n' 10 | exit 1 11 | } 12 | -------------------------------------------------------------------------------- /pkg/rcinit/ver: -------------------------------------------------------------------------------- 1 | af36dbd r1 2 | -------------------------------------------------------------------------------- /pkg/rcsm/gen.lua: -------------------------------------------------------------------------------- 1 | file('bin/rcsm', '755', '$srcdir/rcsm') 2 | 3 | fetch 'git' -------------------------------------------------------------------------------- /pkg/rcsm/ver: -------------------------------------------------------------------------------- 1 | v0.3 r0 -------------------------------------------------------------------------------- /pkg/samurai/ver: -------------------------------------------------------------------------------- 1 | 1.2-32-g217059f21e r0 2 | -------------------------------------------------------------------------------- /pkg/sbase/egrep: -------------------------------------------------------------------------------- 1 | #!/bin/rc 2 | exec grep -E $* 3 | -------------------------------------------------------------------------------- /pkg/sbase/ver: -------------------------------------------------------------------------------- 1 | cfe9424 r0 2 | -------------------------------------------------------------------------------- /pkg/scdoc/.gitignore: -------------------------------------------------------------------------------- 1 | /local.ninja -------------------------------------------------------------------------------- /pkg/scdoc/ver: -------------------------------------------------------------------------------- 1 | 1.11.3 r1 -------------------------------------------------------------------------------- /pkg/sdhcp/gen.lua: -------------------------------------------------------------------------------- 1 | cflags{ 2 | '-std=c99', '-Wall', '-Wextra', '-Wpedantic', 3 | '-D _BSD_SOURCE', 4 | } 5 | 6 | exe('sdhcp', {'sdhcp.c', 'util/eprintf.c'}) 7 | file('bin/sdhcp', '755', '$outdir/sdhcp') 8 | man{'sdhcp.1'} 9 | 10 | fetch 'git' 11 | -------------------------------------------------------------------------------- /pkg/sdhcp/ver: -------------------------------------------------------------------------------- 1 | 5f9956c870 r0 2 | -------------------------------------------------------------------------------- /pkg/skeleton/gitignore: -------------------------------------------------------------------------------- 1 | /boot 2 | /etc 3 | /home 4 | /mnt 5 | /proc 6 | /root 7 | /run 8 | /share/man/mandoc.db 9 | /src 10 | /sys 11 | /tmp 12 | /usr 13 | /var 14 | -------------------------------------------------------------------------------- /pkg/smu/gen.lua: -------------------------------------------------------------------------------- 1 | cflags { 2 | [['-D VERSION="1.5.0"']], 3 | '-std=c99', 4 | '-pedantic', 5 | '-Wall', 6 | } 7 | 8 | exe('smu', {'smu.c'}) 9 | file('bin/smu', '755', '$outdir/smu') 10 | 11 | man{'smu.1'} 12 | 13 | fetch 'git' 14 | -------------------------------------------------------------------------------- /pkg/smu/ver: -------------------------------------------------------------------------------- 1 | v1.5-20-geb7884b r0 -------------------------------------------------------------------------------- /pkg/squashfs-tools-ng/ver: -------------------------------------------------------------------------------- 1 | 1.1.3 r0 2 | -------------------------------------------------------------------------------- /pkg/st/ver: -------------------------------------------------------------------------------- 1 | c63a87cd93 r0 2 | -------------------------------------------------------------------------------- /pkg/strace/.gitignore: -------------------------------------------------------------------------------- 1 | /src 2 | /strace-6.12.tar.xz 3 | /tools.ninja 4 | -------------------------------------------------------------------------------- /pkg/strace/README.md: -------------------------------------------------------------------------------- 1 | # strace 2 | 3 | ## config.h 4 | Generated with 5 | 6 | ./configure --disable-mpers 7 | -------------------------------------------------------------------------------- /pkg/strace/printerdecls.awk: -------------------------------------------------------------------------------- 1 | BEGIN { 2 | FS = "\\(|\\)|, " 3 | OFS = ", " 4 | } 5 | 6 | $1 == "MPERS_PRINTER_DECL" { 7 | printf "extern %s %s(%s", $2, $3, $4 8 | for (i = 5; i < NF; ++i) 9 | printf ", %s", $i 10 | print ");" 11 | } 12 | -------------------------------------------------------------------------------- /pkg/strace/printerdefs.awk: -------------------------------------------------------------------------------- 1 | BEGIN { 2 | FS = "\\(|\\)|, " 3 | OFS = ", " 4 | } 5 | 6 | $1 == "MPERS_PRINTER_DECL" { 7 | print "." $3 " = " $3 "," 8 | } 9 | -------------------------------------------------------------------------------- /pkg/strace/scno.awk: -------------------------------------------------------------------------------- 1 | BEGIN { 2 | FS = "[][\"]" 3 | } 4 | 5 | { 6 | name = $4 7 | number = int($2) 8 | print "#ifndef __NR_" name 9 | print "# define __NR_" name " (SYSCALL_BIT | " number ")" 10 | print "#endif" 11 | } 12 | -------------------------------------------------------------------------------- /pkg/strace/sen.awk: -------------------------------------------------------------------------------- 1 | BEGIN { 2 | print "enum {" 3 | print "SEN_printargs = 0," 4 | } 5 | 6 | match($0, /SEN\([^)]+\)/) { 7 | name = substr($0, RSTART + 4, RLENGTH - 5) 8 | if (name != "printargs") 9 | print "SEN_" name "," | "sort -u" 10 | } 11 | 12 | END { 13 | if (close("sort -u")) 14 | exit 1 15 | print "};" 16 | } 17 | -------------------------------------------------------------------------------- /pkg/strace/sha256: -------------------------------------------------------------------------------- 1 | c47da93be45b6055f4dc741d7f20efaf50ca10160a5b100c109b294fd9c0bdfe strace-6.12.tar.xz 2 | -------------------------------------------------------------------------------- /pkg/strace/url: -------------------------------------------------------------------------------- 1 | url = "https://github.com/strace/strace/releases/download/v6.12/strace-6.12.tar.xz" 2 | -------------------------------------------------------------------------------- /pkg/strace/ver: -------------------------------------------------------------------------------- 1 | 6.12 r1 2 | -------------------------------------------------------------------------------- /pkg/swc/.gitignore: -------------------------------------------------------------------------------- 1 | /tools.ninja 2 | -------------------------------------------------------------------------------- /pkg/swc/ver: -------------------------------------------------------------------------------- 1 | 19893a5ca3 r0 2 | -------------------------------------------------------------------------------- /pkg/tamzen-font/ver: -------------------------------------------------------------------------------- 1 | 1.11.6 r0 2 | -------------------------------------------------------------------------------- /pkg/texi2mdoc/.gitignore: -------------------------------------------------------------------------------- 1 | /host.ninja 2 | /src 3 | /texi2mdoc-0.1.2.tgz 4 | -------------------------------------------------------------------------------- /pkg/texi2mdoc/sha256: -------------------------------------------------------------------------------- 1 | 7a45fd87c27cc8970a18db9ddddb2f09f18b8dd5152bf0ca377c3a5e7d304bfe texi2mdoc-0.1.2.tgz 2 | -------------------------------------------------------------------------------- /pkg/texi2mdoc/url: -------------------------------------------------------------------------------- 1 | url = "http://mandoc.bsd.lv/texi2mdoc/snapshots/texi2mdoc-0.1.2.tgz" 2 | -------------------------------------------------------------------------------- /pkg/texi2mdoc/ver: -------------------------------------------------------------------------------- 1 | 0.1.2 r0 2 | -------------------------------------------------------------------------------- /pkg/the_silver_searcher/ver: -------------------------------------------------------------------------------- 1 | 2.2.0 r0 2 | -------------------------------------------------------------------------------- /pkg/tinyalsa/ver: -------------------------------------------------------------------------------- 1 | e43025b r0 2 | -------------------------------------------------------------------------------- /pkg/transmission/.gitignore: -------------------------------------------------------------------------------- 1 | /libminiupnp.ninja 2 | /libnatpmp.ninja 3 | /src 4 | /transmission-3.00.tar.xz 5 | -------------------------------------------------------------------------------- /pkg/transmission/sha256: -------------------------------------------------------------------------------- 1 | 9144652fe742f7f7dd6657716e378da60b751aaeda8bef8344b3eefc4db255f2 transmission-3.00.tar.xz 2 | -------------------------------------------------------------------------------- /pkg/transmission/url: -------------------------------------------------------------------------------- 1 | url = "https://github.com/transmission/transmission-releases/raw/master/transmission-3.00.tar.xz" 2 | -------------------------------------------------------------------------------- /pkg/transmission/ver: -------------------------------------------------------------------------------- 1 | 3.00 r3 2 | -------------------------------------------------------------------------------- /pkg/tz/tzdir.h: -------------------------------------------------------------------------------- 1 | #define TZDEFAULT "/etc/localtime" /* default zone */ 2 | #define TZDIR "/share/zoneinfo" /* TZif directory */ 3 | -------------------------------------------------------------------------------- /pkg/tz/ver: -------------------------------------------------------------------------------- 1 | 2025b r0 2 | -------------------------------------------------------------------------------- /pkg/tz/version.h: -------------------------------------------------------------------------------- 1 | static char const PKGVERSION[]="(tzcode) "; 2 | static char const TZVERSION[]="2025b"; 3 | static char const REPORT_BUGS_TO[]="tz@iana.org"; 4 | -------------------------------------------------------------------------------- /pkg/u-config/.gitignore: -------------------------------------------------------------------------------- 1 | /local.ninja -------------------------------------------------------------------------------- /pkg/u-config/ver: -------------------------------------------------------------------------------- 1 | 0.34.0 r0 -------------------------------------------------------------------------------- /pkg/ubase/ver: -------------------------------------------------------------------------------- 1 | f152e7fc3b r1 2 | -------------------------------------------------------------------------------- /pkg/unzip/.gitignore: -------------------------------------------------------------------------------- 1 | /src 2 | /unzip60.tar.gz 3 | -------------------------------------------------------------------------------- /pkg/unzip/sha256: -------------------------------------------------------------------------------- 1 | 036d96991646d0449ed0aa952e4fbe21b476ce994abc276e49d30e686708bd37 unzip60.tar.gz 2 | -------------------------------------------------------------------------------- /pkg/unzip/unzip60.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovercats/oakiss/911f715559544d4f23761bc584e1b7133fe9c1c9/pkg/unzip/unzip60.tar.gz -------------------------------------------------------------------------------- /pkg/unzip/url: -------------------------------------------------------------------------------- 1 | url = "http://downloads.sourceforge.net/infozip/unzip60.tar.gz" 2 | -------------------------------------------------------------------------------- /pkg/unzip/ver: -------------------------------------------------------------------------------- 1 | 6.0-29 r0 2 | -------------------------------------------------------------------------------- /pkg/utf8proc/gen.lua: -------------------------------------------------------------------------------- 1 | cflags{'-std=c99', '-Wall', '-Wpedantic'} 2 | 3 | pkg.hdrs = copy('$outdir/include', '$srcdir', {'utf8proc.h'}) 4 | 5 | lib('libutf8proc.a', {'utf8proc.c'}) 6 | 7 | fetch 'git' 8 | -------------------------------------------------------------------------------- /pkg/utf8proc/ver: -------------------------------------------------------------------------------- 1 | 2.7.0 r0 2 | -------------------------------------------------------------------------------- /pkg/util-linux/.gitignore: -------------------------------------------------------------------------------- 1 | man/*.gz -------------------------------------------------------------------------------- /pkg/util-linux/ver: -------------------------------------------------------------------------------- 1 | 2.37 r2 2 | -------------------------------------------------------------------------------- /pkg/velox/ver: -------------------------------------------------------------------------------- 1 | 2ae5e99dfc r0 2 | -------------------------------------------------------------------------------- /pkg/vis/ver: -------------------------------------------------------------------------------- 1 | 0.9 r1 2 | -------------------------------------------------------------------------------- /pkg/wayland-protocols/ver: -------------------------------------------------------------------------------- 1 | 1.36 r0 2 | -------------------------------------------------------------------------------- /pkg/wayland/README.md: -------------------------------------------------------------------------------- 1 | # wayland 2 | 3 | ## config.h 4 | Generated with 5 | 6 | meson -Ddocumentation=false build 7 | -------------------------------------------------------------------------------- /pkg/wayland/ver: -------------------------------------------------------------------------------- 1 | 1.23.0 r0 2 | -------------------------------------------------------------------------------- /pkg/wld/ver: -------------------------------------------------------------------------------- 1 | 3fe15e769c r0 2 | -------------------------------------------------------------------------------- /pkg/wpa_supplicant/.gitignore: -------------------------------------------------------------------------------- 1 | /src 2 | /wpa_supplicant-2.11.tar.gz 3 | -------------------------------------------------------------------------------- /pkg/wpa_supplicant/sha256: -------------------------------------------------------------------------------- 1 | 912ea06f74e30a8e36fbb68064d6cdff218d8d591db0fc5d75dee6c81ac7fc0a wpa_supplicant-2.11.tar.gz 2 | -------------------------------------------------------------------------------- /pkg/wpa_supplicant/url: -------------------------------------------------------------------------------- 1 | url = "http://w1.fi/releases/wpa_supplicant-2.11.tar.gz" 2 | -------------------------------------------------------------------------------- /pkg/wpa_supplicant/ver: -------------------------------------------------------------------------------- 1 | 2.11 r2 2 | -------------------------------------------------------------------------------- /pkg/xkeyboard-config/ver: -------------------------------------------------------------------------------- 1 | 2.36 r0 2 | -------------------------------------------------------------------------------- /pkg/xxhash/.gitignore: -------------------------------------------------------------------------------- 1 | /local.ninja -------------------------------------------------------------------------------- /pkg/xxhash/ver: -------------------------------------------------------------------------------- 1 | 0.8.3 r0 -------------------------------------------------------------------------------- /pkg/xz/README.md: -------------------------------------------------------------------------------- 1 | # xz 2 | 3 | ## config.h 4 | Generated with 5 | ``` 6 | ./configure \ 7 | --disable-nls \ 8 | --enable-lzip-decoder \ 9 | --disable-microlzma 10 | ``` 11 | -------------------------------------------------------------------------------- /pkg/xz/ver: -------------------------------------------------------------------------------- 1 | 5.8.1 r0 2 | -------------------------------------------------------------------------------- /pkg/yt-dlp/.gitignore: -------------------------------------------------------------------------------- 1 | /src 2 | /yt-dlp.tar.gz 3 | -------------------------------------------------------------------------------- /pkg/yt-dlp/gen.lua: -------------------------------------------------------------------------------- 1 | file('bin/yt-dlp', '755', '$dir/yt-dlp') 2 | for f in iterlines('pylibs.txt') do 3 | file('lib/python3.10/'..f, '644', '$srcdir/'..f) 4 | end 5 | man{'yt-dlp.1'} 6 | 7 | fetch 'curl' 8 | -------------------------------------------------------------------------------- /pkg/yt-dlp/sha256: -------------------------------------------------------------------------------- 1 | 1e5d675af0cb7ac5c00135e6d9cbb5a2fb6726126ae9ad62740548dddd36afcd yt-dlp.tar.gz 2 | -------------------------------------------------------------------------------- /pkg/yt-dlp/url: -------------------------------------------------------------------------------- 1 | url = "https://github.com/yt-dlp/yt-dlp/releases/download/2025.05.22/yt-dlp.tar.gz" 2 | -------------------------------------------------------------------------------- /pkg/yt-dlp/ver: -------------------------------------------------------------------------------- 1 | 2025.05.22 r0 2 | -------------------------------------------------------------------------------- /pkg/yt-dlp/yt-dlp: -------------------------------------------------------------------------------- 1 | #!/bin/python 2 | 3 | import yt_dlp 4 | 5 | if __name__ == '__main__': 6 | yt_dlp.main() 7 | -------------------------------------------------------------------------------- /pkg/zlib/ver: -------------------------------------------------------------------------------- 1 | 1.3.1 r0 2 | -------------------------------------------------------------------------------- /pkg/zstd/config.h: -------------------------------------------------------------------------------- 1 | #define ZSTD_NO_UNUSED_FUNCTIONS 2 | #define ZSTD_MULTITHREAD 3 | #define XXH_NAMESPACE ZSTD_ 4 | #define ZSTD_NOBENCH 5 | #define ZSTD_NODICT 6 | #define ZSTD_NOTRACE 7 | #define ZSTD_DISABLE_DEPRECATE_WARNINGS 8 | #define ZDICT_DISABLE_DEPRECATE_WARNINGS 9 | -------------------------------------------------------------------------------- /pkg/zstd/ver: -------------------------------------------------------------------------------- 1 | 1.5.7 r0 2 | -------------------------------------------------------------------------------- /probe/HAVE_EMMINTRIN_H: -------------------------------------------------------------------------------- 1 | #include 2 | int main(void) { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /probe/HAVE_IMMINTRIN_H: -------------------------------------------------------------------------------- 1 | #include 2 | int main(void) { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /probe/HAVE_INLINE_ASM: -------------------------------------------------------------------------------- 1 | int main(void) { 2 | __asm__(""); 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /probe/HAVE_MMINTRIN_H: -------------------------------------------------------------------------------- 1 | #include 2 | int main(void) { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /probe/HAVE__MM_CLMULEPI64_SI128: -------------------------------------------------------------------------------- 1 | #include 2 | static __m128i x, y; 3 | __attribute__((__target__("pclmul"))) 4 | int main(void) { 5 | _mm_clmulepi64_si128(x, y, 0); 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /probe/HAVE__MM_MOVEMASK_EPI8: -------------------------------------------------------------------------------- 1 | #include 2 | static __m128i x; 3 | int main(void) { 4 | _mm_movemask_epi8(x); 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /probe/HAVE__THREAD_LOCAL: -------------------------------------------------------------------------------- 1 | _Thread_local int x; 2 | int main(void) { 3 | return x; 4 | } 5 | -------------------------------------------------------------------------------- /probe/HAVE___BUILTIN_ASSUME_ALIGNED: -------------------------------------------------------------------------------- 1 | void *x; 2 | int main(void) { 3 | return __builtin_assume_aligned(x, 8) == x; 4 | } 5 | -------------------------------------------------------------------------------- /probe/HAVE___BUILTIN_BSWAP16: -------------------------------------------------------------------------------- 1 | unsigned x = 0xff; 2 | int main(void) { 3 | return __builtin_bswap16(x) & 0xff; 4 | } 5 | -------------------------------------------------------------------------------- /probe/HAVE___BUILTIN_CHOOSE_EXPR: -------------------------------------------------------------------------------- 1 | int main(void) { 2 | return __builtin_choose_expr(123, 1, 0); 3 | } 4 | -------------------------------------------------------------------------------- /probe/HAVE___BUILTIN_CLZ: -------------------------------------------------------------------------------- 1 | unsigned x = -1; 2 | int main(void) { 3 | return __builtin_clz(x); 4 | } 5 | -------------------------------------------------------------------------------- /probe/HAVE___BUILTIN_CTZL: -------------------------------------------------------------------------------- 1 | unsigned long x = -1; 2 | int main(void) { 3 | return __builtin_ctzl(x); 4 | } 5 | -------------------------------------------------------------------------------- /probe/HAVE___BUILTIN_POPCOUNT: -------------------------------------------------------------------------------- 1 | unsigned x = 0; 2 | int main(void) { 3 | return __builtin_popcount(x); 4 | } 5 | -------------------------------------------------------------------------------- /probe/PIC: -------------------------------------------------------------------------------- 1 | int main(void) { 2 | return __PIC__ == 0; 3 | } 4 | -------------------------------------------------------------------------------- /probe/SIZEOF_LONG: -------------------------------------------------------------------------------- 1 | _Static_assert(SIZEOF_LONG == sizeof(long), "incorrect size"); 2 | -------------------------------------------------------------------------------- /probe/SIZEOF_SIZE_T: -------------------------------------------------------------------------------- 1 | #include 2 | _Static_assert(SIZEOF_SIZE_T == sizeof(size_t), "incorrect size"); 3 | -------------------------------------------------------------------------------- /probe/SIZEOF_TIME_T: -------------------------------------------------------------------------------- 1 | #include 2 | _Static_assert(SIZEOF_TIME_T == sizeof(time_t), "incorrect size"); 3 | -------------------------------------------------------------------------------- /repo/alsa-lib/checksums: -------------------------------------------------------------------------------- 1 | 99bbf2e22414ceac135e2d2e1e8b43d354721e1199aa83ac893dbba63a8e11accc 2 | -------------------------------------------------------------------------------- /repo/alsa-lib/sources: -------------------------------------------------------------------------------- 1 | https://www.alsa-project.org/files/pub/lib/alsa-lib-1.2.13.tar.bz2 2 | -------------------------------------------------------------------------------- /repo/alsa-lib/version: -------------------------------------------------------------------------------- 1 | 1.2.13 1 2 | -------------------------------------------------------------------------------- /repo/atk/checksums: -------------------------------------------------------------------------------- 1 | cbc1b7ba03009ee5cc0e646d8a86117e0d65bf8d105f2e8714fbde0299a8012eff 2 | 12d9b86e8a12ab67b1f676e0167c23b6def96024e7d33f7d29dfcf9cae261fec85 3 | -------------------------------------------------------------------------------- /repo/atk/depends: -------------------------------------------------------------------------------- 1 | glib 2 | libffi 3 | -------------------------------------------------------------------------------- /repo/atk/sources: -------------------------------------------------------------------------------- 1 | https://ftp.gnome.org/pub/gnome/sources/atk/2.38/atk-2.38.0.tar.xz 2 | patches/0001-fix-enum-types-for-muon.patch 3 | -------------------------------------------------------------------------------- /repo/atk/version: -------------------------------------------------------------------------------- 1 | 2.38.0 3 2 | -------------------------------------------------------------------------------- /repo/bgs/checksums: -------------------------------------------------------------------------------- 1 | 0938ddff3af7d50cc02bb4ef2f1f2fb2a2076161ad961b0d897695bf8a21d0b158 2 | -------------------------------------------------------------------------------- /repo/bgs/depends: -------------------------------------------------------------------------------- 1 | freetype-harfbuzz 2 | imlib2 3 | libX11 4 | libXau 5 | libXext 6 | libpng 7 | libxcb 8 | -------------------------------------------------------------------------------- /repo/bgs/sources: -------------------------------------------------------------------------------- 1 | https://github.com/Gottox/bgs/archive/958acea074e5d8f3566289db37a9db236c05d7df.tar.gz 2 | -------------------------------------------------------------------------------- /repo/bgs/version: -------------------------------------------------------------------------------- 1 | v0.8-6-g958acea 1 2 | -------------------------------------------------------------------------------- /repo/cairo/checksums: -------------------------------------------------------------------------------- 1 | 55b4b6406668e08dd6b816beba82c86df8e9a5468352c66597badb4f6583930e6a 2 | b95ab8fb2d9901bff460ae7440811a35067f0ca833894c8ad44c4df6686132bf66 3 | -------------------------------------------------------------------------------- /repo/cairo/depends: -------------------------------------------------------------------------------- 1 | fontconfig 2 | freetype-harfbuzz 3 | glib 4 | libXext 5 | libXrender 6 | libpng 7 | mesa 8 | pixman 9 | zlib 10 | -------------------------------------------------------------------------------- /repo/cairo/sources: -------------------------------------------------------------------------------- 1 | https://cairographics.org/releases/cairo-1.18.0.tar.xz 2 | patches/0001-util-remove-malloc-stats.patch 3 | -------------------------------------------------------------------------------- /repo/cairo/version: -------------------------------------------------------------------------------- 1 | 1.18.0 3 2 | -------------------------------------------------------------------------------- /repo/ccache/checksums: -------------------------------------------------------------------------------- 1 | 7585b0d9483fda7b66b7371e831703abcf4aaad941272be13708ded51ea5696c9c 2 | -------------------------------------------------------------------------------- /repo/ccache/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | -------------------------------------------------------------------------------- /repo/ccache/sources: -------------------------------------------------------------------------------- 1 | https://github.com/ccache/ccache/releases/download/v4.10.2/ccache-4.10.2.tar.xz 2 | -------------------------------------------------------------------------------- /repo/ccache/version: -------------------------------------------------------------------------------- 1 | 4.10.2 1 2 | -------------------------------------------------------------------------------- /repo/cloc/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | install -Dm755 cloc "$1/usr/bin/cloc" 4 | -------------------------------------------------------------------------------- /repo/cloc/checksums: -------------------------------------------------------------------------------- 1 | 675ab3091670e3be75b35b3784bb074582bfd8d0cf71267d62f71feb8e5807eaa6 2 | -------------------------------------------------------------------------------- /repo/cloc/depends: -------------------------------------------------------------------------------- 1 | perl 2 | -------------------------------------------------------------------------------- /repo/cloc/sources: -------------------------------------------------------------------------------- 1 | https://github.com/AlDanial/cloc/releases/download/v2.04/cloc-2.04.tar.gz -------------------------------------------------------------------------------- /repo/cloc/version: -------------------------------------------------------------------------------- 1 | 2.04 1 2 | -------------------------------------------------------------------------------- /repo/cmake/checksums: -------------------------------------------------------------------------------- 1 | ed14b15a63accaae2544379fbc98592e75f1a9316f391ef65b9679a53efd328681 2 | -------------------------------------------------------------------------------- /repo/cmake/depends: -------------------------------------------------------------------------------- 1 | expat 2 | zlib 3 | -------------------------------------------------------------------------------- /repo/cmake/sources: -------------------------------------------------------------------------------- 1 | https://cmake.org/files/v4.0/cmake-4.0.2.tar.gz 2 | -------------------------------------------------------------------------------- /repo/cmake/version: -------------------------------------------------------------------------------- 1 | 4.0.2 1 2 | -------------------------------------------------------------------------------- /repo/cmus/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | for p in *.patch; do 4 | patch -p1 < "$p" 5 | done 6 | 7 | ./configure \ 8 | prefix=/usr 9 | 10 | make NCURSES_LIBS="-lcurses -lterminfo" 11 | make DESTDIR="$1" install 12 | 13 | # Compress manpages 14 | find "$1/usr/share/man" -type f -exec gzip -n -9 {} + 15 | 16 | rm -rf "$1/usr/share/doc" 17 | -------------------------------------------------------------------------------- /repo/cmus/checksums: -------------------------------------------------------------------------------- 1 | 3537dde959f1da4ac91b68737d5b24bb447b7714c6f0b1a38fa1a961b98ca1db86 2 | 5b3ce4eb81e7f6c80f007f37d304bec9fb9a29658fe7afd492dca6f89afc4ae218 3 | 3dd83e61bdb10a0989707404d1fd1e3e2398934e6be149cd7f8a27fcc907c6aa99 4 | -------------------------------------------------------------------------------- /repo/cmus/depends: -------------------------------------------------------------------------------- 1 | ffmpeg 2 | -------------------------------------------------------------------------------- /repo/cmus/sources: -------------------------------------------------------------------------------- 1 | https://github.com/cmus/cmus/archive/v2.11.0.tar.gz 2 | patches/0001-fix-incompability-with-netbsd-curses.patch 3 | patches/0002-remove-cursesw-and-curses-check.-it-errors-out-with-.patch 4 | -------------------------------------------------------------------------------- /repo/cmus/version: -------------------------------------------------------------------------------- 1 | 2.11.0 4 2 | -------------------------------------------------------------------------------- /repo/devour/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | make \ 4 | CFLAGS="$CFLAGS -I/usr/include" \ 5 | LDFLAGS="$LDFLAGS -L/usr/lib -lX11 -lXau -lxcb" 6 | make DESTDIR="$1" BIN_DIR="$1/usr/bin" install 7 | -------------------------------------------------------------------------------- /repo/devour/checksums: -------------------------------------------------------------------------------- 1 | f511b590fdb1bc83862db01530e8cfd792be0abebe027b923911d0e4e60a018d53 2 | -------------------------------------------------------------------------------- /repo/devour/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | libXau 3 | libxcb 4 | -------------------------------------------------------------------------------- /repo/devour/sources: -------------------------------------------------------------------------------- 1 | https://github.com/salman-abedin/devour/archive/3184e2aae599530e5530c75550dec05e5a16b627.tar.gz 2 | -------------------------------------------------------------------------------- /repo/devour/version: -------------------------------------------------------------------------------- 1 | 3184e2aae599530e5530c75550dec05e5a16b627 1 2 | -------------------------------------------------------------------------------- /repo/dmenu/depends: -------------------------------------------------------------------------------- 1 | fontconfig make 2 | freetype-harfbuzz make 3 | libX11 make 4 | libXft make 5 | expat make 6 | libXrender make 7 | libxcb make 8 | libXau make 9 | -------------------------------------------------------------------------------- /repo/dmenu/sources: -------------------------------------------------------------------------------- 1 | https://dl.suckless.org/tools/dmenu-5.3.tar.gz 2 | patches/0001-apply-center-patch.patch 3 | patches/0002-add-border-patch.patch 4 | patches/0003-change-colorscheme.patch 5 | patches/0004-always-allow-selecting-whatever-was-typed-in-unchang.patch 6 | -------------------------------------------------------------------------------- /repo/dmenu/version: -------------------------------------------------------------------------------- 1 | 5.3 3 2 | -------------------------------------------------------------------------------- /repo/exfatprogs/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --sbindir=/usr/bin 6 | 7 | make LDFLAGS="$LDFLAGS --static" 8 | make DESTDIR="$1" install 9 | 10 | # Compress manpages 11 | find "$1/usr/share/man" -type f -exec gzip -n -9 {} + 12 | -------------------------------------------------------------------------------- /repo/exfatprogs/checksums: -------------------------------------------------------------------------------- 1 | 9eb9805db1286d129800c5fe30b18caae6fd483c019ee83d23f4cf63028925bff6 2 | -------------------------------------------------------------------------------- /repo/exfatprogs/sources: -------------------------------------------------------------------------------- 1 | https://github.com/exfatprogs/exfatprogs/releases/download/1.2.5/exfatprogs-1.2.5.tar.xz 2 | -------------------------------------------------------------------------------- /repo/exfatprogs/version: -------------------------------------------------------------------------------- 1 | 1.2.5 1 2 | -------------------------------------------------------------------------------- /repo/expat/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --without-xmlwf \ 6 | --without-examples \ 7 | --without-tests \ 8 | --without-docbook 9 | 10 | make 11 | make DESTDIR="$1" install 12 | 13 | # Remove documentation (Changelogs, etc). 14 | rm -rf "${1:?}/usr/share" 15 | -------------------------------------------------------------------------------- /repo/expat/checksums: -------------------------------------------------------------------------------- 1 | 7ffba382f26184f94ea5341d853564c20a03567531e8da94eef2d322e5aad7ac5b 2 | -------------------------------------------------------------------------------- /repo/expat/sources: -------------------------------------------------------------------------------- 1 | https://github.com/libexpat/libexpat/releases/download/R_2_6_2/expat-2.6.2.tar.bz2 2 | -------------------------------------------------------------------------------- /repo/expat/version: -------------------------------------------------------------------------------- 1 | 2.6.2 1 2 | -------------------------------------------------------------------------------- /repo/ffmpeg/checksums: -------------------------------------------------------------------------------- 1 | 7a9e011d715ea65d24eb4143f266a8287d8ee803b3e25f1faf313cca5e9ff4a211 2 | ebc86c1001b49f86d2751e658a8b28e2d29f245e17e96d6f0786a081e037ebf5bc 3 | -------------------------------------------------------------------------------- /repo/ffmpeg/depends: -------------------------------------------------------------------------------- 1 | alsa-lib 2 | lame 3 | libass 4 | libdrm 5 | libogg 6 | libvorbis 7 | libvpx 8 | libwebp 9 | libxcb 10 | opus 11 | xvidcore 12 | zlib 13 | -------------------------------------------------------------------------------- /repo/ffmpeg/sources: -------------------------------------------------------------------------------- 1 | https://ffmpeg.org/releases/ffmpeg-7.0.2.tar.xz 2 | patches/0001-add-configure-check-for-Wno-error-incompatible-point.patch 3 | -------------------------------------------------------------------------------- /repo/ffmpeg/version: -------------------------------------------------------------------------------- 1 | 7.0.2 2 2 | -------------------------------------------------------------------------------- /repo/fontconfig/checksums: -------------------------------------------------------------------------------- 1 | f724c512a04997f17bc7dba807a6a58c2e8178d013bde56fab2fa579f7c50bdf33 2 | 8b565cca39fa9203a6c8b0a88abc0fb0ff9aad48536a96e7e618f9d2c515b34a63 3 | -------------------------------------------------------------------------------- /repo/fontconfig/depends: -------------------------------------------------------------------------------- 1 | expat 2 | freetype-harfbuzz 3 | -------------------------------------------------------------------------------- /repo/fontconfig/sources: -------------------------------------------------------------------------------- 1 | https://freedesktop.org/software/fontconfig/release/fontconfig-2.15.0.tar.xz 2 | files/fcobjshash.h src 3 | -------------------------------------------------------------------------------- /repo/fontconfig/version: -------------------------------------------------------------------------------- 1 | 2.15.0 1 2 | -------------------------------------------------------------------------------- /repo/freetype-harfbuzz/checksums: -------------------------------------------------------------------------------- 1 | 07a01894ccdb584943ce817b57341a8595ce9a92bfaa77c602ec4757dfabd5e295 2 | 31c00f4b9d792d9dc0a8ddab22ad54a4067471867e79f17b74e0524767843530d3 3 | -------------------------------------------------------------------------------- /repo/freetype-harfbuzz/depends: -------------------------------------------------------------------------------- 1 | #icu 2 | expat 3 | libX11 4 | libXau 5 | libXdamage 6 | libXext 7 | libXfixes 8 | libXrender 9 | libXxf86vm 10 | libdrm 11 | libpng 12 | libxcb 13 | libxshmfence 14 | pixman 15 | -------------------------------------------------------------------------------- /repo/freetype-harfbuzz/sources: -------------------------------------------------------------------------------- 1 | https://download-mirror.savannah.gnu.org/releases/freetype/freetype-2.13.3.tar.xz freetype 2 | https://github.com/harfbuzz/harfbuzz/archive/9.0.0.tar.gz harfbuzz 3 | -------------------------------------------------------------------------------- /repo/freetype-harfbuzz/version: -------------------------------------------------------------------------------- 1 | 2.13.3+9.0.0 3 2 | -------------------------------------------------------------------------------- /repo/gdk-pixbuf/checksums: -------------------------------------------------------------------------------- 1 | edf54b48c7008c0ec52e0224b6a10ea680bbb94c23b71fbe5d19ae8e72706bc6b6 2 | aa35cd72ca56947a79967332cf0a1140dea714c5d835429f294d0679fb735bc2e8 3 | -------------------------------------------------------------------------------- /repo/gdk-pixbuf/depends: -------------------------------------------------------------------------------- 1 | glib 2 | libX11 3 | libjpeg-turbo 4 | libpng 5 | -------------------------------------------------------------------------------- /repo/gdk-pixbuf/sources: -------------------------------------------------------------------------------- 1 | https://download.gnome.org/sources/gdk-pixbuf/2.42/gdk-pixbuf-2.42.12.tar.xz 2 | patches/0001-fix-enum-types-for-muon.patch 3 | -------------------------------------------------------------------------------- /repo/gdk-pixbuf/version: -------------------------------------------------------------------------------- 1 | 2.42.12 3 2 | -------------------------------------------------------------------------------- /repo/github-cli/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export GOPATH="$PWD/go" 4 | export GO111MODULE=on 5 | 6 | CGO_ENABLED=0 go build -a -ldflags="-w -s -extldflags '-static'"\ 7 | -modcacherw \ 8 | -trimpath \ 9 | -buildvcs=false \ 10 | ./cmd/gh 11 | 12 | install -Dm755 gh "$1/usr/bin/gh" 13 | -------------------------------------------------------------------------------- /repo/github-cli/checksums: -------------------------------------------------------------------------------- 1 | 067cd0e4454cc82edf873d4ab23452092a774cc6787c12ee08ca1d76a84b4a69f8 2 | -------------------------------------------------------------------------------- /repo/github-cli/depends: -------------------------------------------------------------------------------- 1 | go make 2 | -------------------------------------------------------------------------------- /repo/github-cli/sources: -------------------------------------------------------------------------------- 1 | https://github.com/cli/cli/archive/v2.66.1.tar.gz 2 | -------------------------------------------------------------------------------- /repo/github-cli/version: -------------------------------------------------------------------------------- 1 | 2.66.1 1 2 | -------------------------------------------------------------------------------- /repo/glazier/checksums: -------------------------------------------------------------------------------- 1 | d80ee3f5911336a114a1a653d2e1a449898dd7b29bb1e2b03c034981a5721aa435 2 | 9f74fa925179072461682ec362b6f9a557d2ea80fdde07e18e397ad7229f4dccc5 3 | 3b34d7ae091876399e635ed3ebf48193bcdd45038a2776d0c3efad0a9ae7a24d57 4 | -------------------------------------------------------------------------------- /repo/glazier/depends: -------------------------------------------------------------------------------- 1 | libXau make 2 | libxcb make 3 | xcb-util make 4 | xcb-util-cursor make 5 | xcb-util-image make 6 | -------------------------------------------------------------------------------- /repo/glazier/sources: -------------------------------------------------------------------------------- 1 | https://dl.z3bra.org/releases/glazier-1.1.tar.bz2 2 | https://dl.z3bra.org/releases/libwm-1.3.tar.bz2 libwm/ 3 | patches/0001-exclude-ewmh-all-together.patch 4 | -------------------------------------------------------------------------------- /repo/glazier/version: -------------------------------------------------------------------------------- 1 | 1.1 2 2 | -------------------------------------------------------------------------------- /repo/glib-networking/checksums: -------------------------------------------------------------------------------- 1 | e271ef92bbdd2209ae24afe8d2d468ef8c870529a9607629dfcbf9f60e2952957f 2 | 9c7a5c025d4487ae21d67f8b745fdcb03c7ed50871dbb33f7da7f8855b8088597c 3 | -------------------------------------------------------------------------------- /repo/glib-networking/depends: -------------------------------------------------------------------------------- 1 | glib 2 | gnutls 3 | meson make 4 | -------------------------------------------------------------------------------- /repo/glib-networking/sources: -------------------------------------------------------------------------------- 1 | https://ftp.gnome.org/pub/gnome/sources/glib-networking/2.80/glib-networking-2.80.0.tar.xz 2 | patches/0001-remove-gio-querymodule-post-install.patch 3 | -------------------------------------------------------------------------------- /repo/glib-networking/version: -------------------------------------------------------------------------------- 1 | 2.80.0 3 2 | -------------------------------------------------------------------------------- /repo/glib/checksums: -------------------------------------------------------------------------------- 1 | afa24056724f7fd6327c6faf32d0db6830c8de2e42a66efcfabc108324350488d2 2 | -------------------------------------------------------------------------------- /repo/glib/depends: -------------------------------------------------------------------------------- 1 | libffi 2 | pcre2 3 | python-packaging make 4 | zlib 5 | -------------------------------------------------------------------------------- /repo/glib/sources: -------------------------------------------------------------------------------- 1 | https://download.gnome.org/sources/glib/2.82/glib-2.82.0.tar.xz 2 | -------------------------------------------------------------------------------- /repo/glib/version: -------------------------------------------------------------------------------- 1 | 2.82.0 3 2 | -------------------------------------------------------------------------------- /repo/gnutls/checksums: -------------------------------------------------------------------------------- 1 | b9f6c3e3111bc6ded35c376318ad15bd3af7730b7c2b5c2c64904eaaaf60b7899a 2 | -------------------------------------------------------------------------------- /repo/gnutls/depends: -------------------------------------------------------------------------------- 1 | nettle 2 | -------------------------------------------------------------------------------- /repo/gnutls/sources: -------------------------------------------------------------------------------- 1 | https://www.gnupg.org/ftp/gcrypt/gnutls/v3.8/gnutls-3.8.7.1.tar.xz 2 | -------------------------------------------------------------------------------- /repo/gnutls/version: -------------------------------------------------------------------------------- 1 | 3.8.7.1 2 2 | -------------------------------------------------------------------------------- /repo/go-bootstrap/checksums: -------------------------------------------------------------------------------- 1 | fb555f6674734d4f36e88594f29aede488ff75a36f659b4eee08217183905f1a12 2 | fab34f540e4ad83908f3c897053cb0d5529452f81fce530cec916aa7b9c6948b69 3 | e38b036986f4969980664342af2e0b14c503bf4222b980f2bfdcb32fd62fde146d 4 | 8d0ad35b60b098294705bf964aab84d469f34b6de5d2eaed04ff037fb25a2c0125 5 | -------------------------------------------------------------------------------- /repo/go-bootstrap/sources: -------------------------------------------------------------------------------- 1 | https://golang.org/dl/go1.20.6.src.tar.gz go1.20.6 2 | https://golang.org/dl/go1.17.13.src.tar.gz go1.17.13 3 | https://dl.google.com/go/go1.4-bootstrap-20171003.tar.gz go1.4-bootstrap 4 | patches/0001-use-POSIX-sh-and-remove-bashisms.patch 5 | -------------------------------------------------------------------------------- /repo/go-bootstrap/version: -------------------------------------------------------------------------------- 1 | 1.20.6 1 2 | -------------------------------------------------------------------------------- /repo/go/checksums: -------------------------------------------------------------------------------- 1 | 8bfbcfc1a552e949d5562514c2eed8ca65029c3745d92d204d55db87147dc172a9 2 | f962ff680628c0791fce6f1df1cb1e43c09cdbeea741e668df6053215edd68d70a 3 | -------------------------------------------------------------------------------- /repo/go/depends: -------------------------------------------------------------------------------- 1 | go-bootstrap make 2 | -------------------------------------------------------------------------------- /repo/go/sources: -------------------------------------------------------------------------------- 1 | https://golang.org/dl/go1.23.0.src.tar.gz 2 | patches/0001-src-make.bash-use-POSIX-sh-and-remove-some-bashism.patch 3 | -------------------------------------------------------------------------------- /repo/go/version: -------------------------------------------------------------------------------- 1 | 1.23.0 1 2 | -------------------------------------------------------------------------------- /repo/gperf/checksums: -------------------------------------------------------------------------------- 1 | 6ad90515e3b8ac191a8ecef4e75fbb260236f8e78078ac099d5eccc175af0782a8 2 | -------------------------------------------------------------------------------- /repo/gperf/sources: -------------------------------------------------------------------------------- 1 | https://ftp.gnu.org/gnu/gperf/gperf-3.3.tar.gz 2 | -------------------------------------------------------------------------------- /repo/gperf/version: -------------------------------------------------------------------------------- 1 | 3.3 1 2 | -------------------------------------------------------------------------------- /repo/gst-libav/checksums: -------------------------------------------------------------------------------- 1 | fee3052a902a2659dcf4445e2a78e02918442b8f54e77f2105e598b89bc661f9e1 2 | -------------------------------------------------------------------------------- /repo/gst-libav/depends: -------------------------------------------------------------------------------- 1 | ffmpeg 2 | glib 3 | gst-plugins-base 4 | gstreamer 5 | -------------------------------------------------------------------------------- /repo/gst-libav/sources: -------------------------------------------------------------------------------- 1 | https://gstreamer.freedesktop.org/src/gst-libav/gst-libav-1.24.7.tar.xz 2 | -------------------------------------------------------------------------------- /repo/gst-libav/version: -------------------------------------------------------------------------------- 1 | 1.24.7 3 2 | -------------------------------------------------------------------------------- /repo/gst-plugins-bad/checksums: -------------------------------------------------------------------------------- 1 | 8d7c4df831770305b49bb6ae9d30541642245a975008f06ea3d2c0d60131bde705 2 | -------------------------------------------------------------------------------- /repo/gst-plugins-bad/depends: -------------------------------------------------------------------------------- 1 | glib 2 | gst-plugins-base 3 | gstreamer 4 | nettle 5 | -------------------------------------------------------------------------------- /repo/gst-plugins-bad/sources: -------------------------------------------------------------------------------- 1 | https://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-1.24.7.tar.xz 2 | -------------------------------------------------------------------------------- /repo/gst-plugins-bad/version: -------------------------------------------------------------------------------- 1 | 1.24.7 4 2 | -------------------------------------------------------------------------------- /repo/gst-plugins-base/checksums: -------------------------------------------------------------------------------- 1 | 83bba00807e89ffe5936b2b7b8fe15aec9db1dc1a08fa7bfb3b8d8999c7946ee92 2 | 06bcbcd6b6d3c05cc165939837b71b8e1cd5f2822f765fd282233b12c43327c2e6 3 | -------------------------------------------------------------------------------- /repo/gst-plugins-base/depends: -------------------------------------------------------------------------------- 1 | alsa-lib 2 | glib 3 | gstreamer 4 | libjpeg-turbo 5 | libpng 6 | libvorbis 7 | mesa 8 | opus 9 | pango 10 | -------------------------------------------------------------------------------- /repo/gst-plugins-base/log: -------------------------------------------------------------------------------- 1 | run this command must be run from a build directory or the project root 2 | -------------------------------------------------------------------------------- /repo/gst-plugins-base/sources: -------------------------------------------------------------------------------- 1 | https://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-1.24.7.tar.xz 2 | patches/0001-disable-check-for-pc-files.patch 3 | -------------------------------------------------------------------------------- /repo/gst-plugins-base/version: -------------------------------------------------------------------------------- 1 | 1.24.7 4 2 | -------------------------------------------------------------------------------- /repo/gst-plugins-good/checksums: -------------------------------------------------------------------------------- 1 | 82a1b68dc8691d8dcc6024f4fb611606db5f1dfb84a589d2ce5f836afb3409bd7e 2 | -------------------------------------------------------------------------------- /repo/gst-plugins-good/depends: -------------------------------------------------------------------------------- 1 | cairo 2 | gdk-pixbuf 3 | glib 4 | gst-plugins-base 5 | gstreamer 6 | zlib 7 | -------------------------------------------------------------------------------- /repo/gst-plugins-good/sources: -------------------------------------------------------------------------------- 1 | https://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-1.24.7.tar.xz 2 | -------------------------------------------------------------------------------- /repo/gst-plugins-good/version: -------------------------------------------------------------------------------- 1 | 1.24.7 3 2 | -------------------------------------------------------------------------------- /repo/gst-plugins-ugly/checksums: -------------------------------------------------------------------------------- 1 | 8fa418a12677beb021421a9f0033811b8e01ed2d1b1e069ad7ac13bd89a90adeea 2 | -------------------------------------------------------------------------------- /repo/gst-plugins-ugly/depends: -------------------------------------------------------------------------------- 1 | glib 2 | gst-plugins-base 3 | gstreamer 4 | -------------------------------------------------------------------------------- /repo/gst-plugins-ugly/sources: -------------------------------------------------------------------------------- 1 | https://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-1.24.7.tar.xz 2 | -------------------------------------------------------------------------------- /repo/gst-plugins-ugly/version: -------------------------------------------------------------------------------- 1 | 1.24.7 3 2 | -------------------------------------------------------------------------------- /repo/gstreamer/checksums: -------------------------------------------------------------------------------- 1 | d4327c58878c5e9b8958617cf88d59053522cd63208774ca328d7d050fd6e2444d 2 | 8c33622b593b7ce7fa9f0e891630907de58494d0b027e0ed6ad91dc5733fd65721 3 | -------------------------------------------------------------------------------- /repo/gstreamer/depends: -------------------------------------------------------------------------------- 1 | glib 2 | -------------------------------------------------------------------------------- /repo/gstreamer/sources: -------------------------------------------------------------------------------- 1 | https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.24.7.tar.xz 2 | patches/0001-fix-incompatability-with-byacc.patch 3 | -------------------------------------------------------------------------------- /repo/gstreamer/version: -------------------------------------------------------------------------------- 1 | 1.24.7 4 2 | -------------------------------------------------------------------------------- /repo/gtk+3/checksums: -------------------------------------------------------------------------------- 1 | 5feab2bad81e6b5906895f70ddce6227cf96a6a14b16af0ef72c79991a48ddf486 2 | 76c0117c066c8924cf5fcb59801818c6c2019e75ed69d1324007998a98fbf90989 3 | -------------------------------------------------------------------------------- /repo/gtk+3/depends: -------------------------------------------------------------------------------- 1 | atk 2 | cairo 3 | fontconfig 4 | freetype-harfbuzz 5 | gdk-pixbuf 6 | glib 7 | libXcomposite 8 | libXcursor 9 | libXdamage 10 | libXext 11 | libXi 12 | libXinerama 13 | libXrandr 14 | libepoxy 15 | libxkbcommon 16 | mesa 17 | pango 18 | python make 19 | -------------------------------------------------------------------------------- /repo/gtk+3/sources: -------------------------------------------------------------------------------- 1 | https://download.gnome.org/sources/gtk+/3.24/gtk+-3.24.43.tar.xz 2 | patches/0001-remove-fribidi-dependency.patch 3 | -------------------------------------------------------------------------------- /repo/gtk+3/version: -------------------------------------------------------------------------------- 1 | 3.24.43 3 2 | -------------------------------------------------------------------------------- /repo/icu/checksums: -------------------------------------------------------------------------------- 1 | 927feda0b91cfd3600a46b58a4a99492dbc38ed47ceea58d7c1ba9bdfcc3f0222f 2 | -------------------------------------------------------------------------------- /repo/icu/sources: -------------------------------------------------------------------------------- 1 | https://github.com/unicode-org/icu/archive/refs/tags/release-74-2.tar.gz 2 | -------------------------------------------------------------------------------- /repo/icu/version: -------------------------------------------------------------------------------- 1 | 74.2 2 2 | -------------------------------------------------------------------------------- /repo/imlib2/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | 4 | ./configure \ 5 | --prefix=/usr \ 6 | --sysconfdir=/etc/imlib2 \ 7 | --enable-visibility-hiding 8 | 9 | make 10 | make DESTDIR="$1" install 11 | -------------------------------------------------------------------------------- /repo/imlib2/checksums: -------------------------------------------------------------------------------- 1 | 535b6a986538295af5194e81281a11a1d7e79ae518959ca434f1e53bfa67e86d57 2 | -------------------------------------------------------------------------------- /repo/imlib2/depends: -------------------------------------------------------------------------------- 1 | # By default, gif and tiff are commented. You can enable support for 2 | # both formats by uncommenting giflib and tiff. 3 | # giflib 4 | # tiff 5 | freetype-harfbuzz 6 | libXext 7 | libjpeg-turbo 8 | libpng 9 | -------------------------------------------------------------------------------- /repo/imlib2/sources: -------------------------------------------------------------------------------- 1 | https://fossies.org/linux/misc/imlib2-1.12.5.tar.xz -------------------------------------------------------------------------------- /repo/imlib2/version: -------------------------------------------------------------------------------- 1 | 1.12.5 1 2 | -------------------------------------------------------------------------------- /repo/kiss-find/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | make DESTDIR="$1" PREFIX=/usr install-cli 4 | -------------------------------------------------------------------------------- /repo/kiss-find/checksums: -------------------------------------------------------------------------------- 1 | a732687e3663265c158185eb06a187c03c3aea1f2a9250651757c2481863e349cd 2 | -------------------------------------------------------------------------------- /repo/kiss-find/sources: -------------------------------------------------------------------------------- 1 | https://github.com/aabacchus/kiss-find/releases/download/v2.3/kiss-find-2.3.tar.gz 2 | -------------------------------------------------------------------------------- /repo/kiss-find/version: -------------------------------------------------------------------------------- 1 | 2.3 1 2 | -------------------------------------------------------------------------------- /repo/lame/checksums: -------------------------------------------------------------------------------- 1 | 18bd5d721dd053bdf9d4134690aeb118306eb07a530888f1f86617e5aad999c012 2 | -------------------------------------------------------------------------------- /repo/lame/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovercats/oakiss/911f715559544d4f23761bc584e1b7133fe9c1c9/repo/lame/depends -------------------------------------------------------------------------------- /repo/lame/sources: -------------------------------------------------------------------------------- 1 | https://fossies.org/linux/misc/lame-3.100.tar.gz 2 | -------------------------------------------------------------------------------- /repo/lame/version: -------------------------------------------------------------------------------- 1 | 3.100 3 2 | -------------------------------------------------------------------------------- /repo/libICE/checksums: -------------------------------------------------------------------------------- 1 | d4679a072a23e0621a3646917b0f0df97544cfa99fa32fb61ca73a8d921e1e1628 2 | -------------------------------------------------------------------------------- /repo/libICE/depends: -------------------------------------------------------------------------------- 1 | xorgproto make 2 | xtrans make 3 | -------------------------------------------------------------------------------- /repo/libICE/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libICE-1.1.1.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libICE/version: -------------------------------------------------------------------------------- 1 | 1.1.1 2 2 | -------------------------------------------------------------------------------- /repo/libSM/checksums: -------------------------------------------------------------------------------- 1 | 1247e2d5ca3d85489b4edbc38060822ac7f6b9b1aed574b4f8f722f99d4bfa69e5 2 | -------------------------------------------------------------------------------- /repo/libSM/depends: -------------------------------------------------------------------------------- 1 | libICE 2 | xtrans make 3 | -------------------------------------------------------------------------------- /repo/libSM/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libSM-1.2.4.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libSM/version: -------------------------------------------------------------------------------- 1 | 1.2.4 2 2 | -------------------------------------------------------------------------------- /repo/libX11/checksums: -------------------------------------------------------------------------------- 1 | dc557428c7ec397c056777c043008c4a0c49d16586e4bda54fe17fa57de430189d 2 | -------------------------------------------------------------------------------- /repo/libX11/depends: -------------------------------------------------------------------------------- 1 | libXau 2 | libxcb 3 | xorgproto 4 | xtrans make 5 | -------------------------------------------------------------------------------- /repo/libX11/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libX11-1.8.10.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libX11/version: -------------------------------------------------------------------------------- 1 | 1.8.10 1 2 | -------------------------------------------------------------------------------- /repo/libXScrnSaver/checksums: -------------------------------------------------------------------------------- 1 | 2485470742928328e03633a74b208ac05644f7074c34908e4c2c3a75fe6fe7929d 2 | -------------------------------------------------------------------------------- /repo/libXScrnSaver/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | libXext 3 | xorgproto make 4 | -------------------------------------------------------------------------------- /repo/libXScrnSaver/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXScrnSaver-1.2.4.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libXScrnSaver/version: -------------------------------------------------------------------------------- 1 | 1.2.4 2 2 | -------------------------------------------------------------------------------- /repo/libXau/checksums: -------------------------------------------------------------------------------- 1 | a846a256114ec70661a45a263bad1cc7229f1bcf4b195c2cfe086449e65cdeb228 2 | -------------------------------------------------------------------------------- /repo/libXau/depends: -------------------------------------------------------------------------------- 1 | xorgproto make 2 | -------------------------------------------------------------------------------- /repo/libXau/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXau-1.0.11.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libXau/version: -------------------------------------------------------------------------------- 1 | 1.0.11 1 2 | -------------------------------------------------------------------------------- /repo/libXcomposite/checksums: -------------------------------------------------------------------------------- 1 | 78c2f6093f3d4b18cd716b896b91d496cf7d41b1d48365e48a09e9abdce50384fc 2 | -------------------------------------------------------------------------------- /repo/libXcomposite/depends: -------------------------------------------------------------------------------- 1 | libXfixes 2 | xorgproto make 3 | -------------------------------------------------------------------------------- /repo/libXcomposite/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXcomposite-0.4.6.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libXcomposite/version: -------------------------------------------------------------------------------- 1 | 0.4.6 2 2 | -------------------------------------------------------------------------------- /repo/libXcursor/checksums: -------------------------------------------------------------------------------- 1 | e663aa2437713ee2c604e715a6833e387cc683075e441c8d6d9fed2bfae4608aba 2 | -------------------------------------------------------------------------------- /repo/libXcursor/depends: -------------------------------------------------------------------------------- 1 | libXfixes 2 | libXrender 3 | xorgproto make 4 | -------------------------------------------------------------------------------- /repo/libXcursor/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXcursor-1.2.2.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libXcursor/version: -------------------------------------------------------------------------------- 1 | 1.2.2 2 2 | -------------------------------------------------------------------------------- /repo/libXdamage/checksums: -------------------------------------------------------------------------------- 1 | 9463cd1ea6d89ed82e94e7d464621d6559f91b48cd7e16827f1ade8de59489a2fb 2 | -------------------------------------------------------------------------------- /repo/libXdamage/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | libXfixes 3 | xorgproto make 4 | -------------------------------------------------------------------------------- /repo/libXdamage/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXdamage-1.1.6.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libXdamage/version: -------------------------------------------------------------------------------- 1 | 1.1.6 2 2 | -------------------------------------------------------------------------------- /repo/libXdmcp/checksums: -------------------------------------------------------------------------------- 1 | 2faf8a078a1715e6f79c51ff51cfa2cbcc6cec6c08d2b35883f1c37f1cbfe0f299 2 | -------------------------------------------------------------------------------- /repo/libXdmcp/depends: -------------------------------------------------------------------------------- 1 | xorgproto make 2 | -------------------------------------------------------------------------------- /repo/libXdmcp/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXdmcp-1.1.5.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libXdmcp/version: -------------------------------------------------------------------------------- 1 | 1.1.5 1 2 | -------------------------------------------------------------------------------- /repo/libXext/checksums: -------------------------------------------------------------------------------- 1 | d8376ff56a7ba437dc2b6379353392c0f66e185944062913d2918e8240b578f792 2 | -------------------------------------------------------------------------------- /repo/libXext/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | xorgproto make 3 | -------------------------------------------------------------------------------- /repo/libXext/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXext-1.3.6.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libXext/version: -------------------------------------------------------------------------------- 1 | 1.3.6 1 2 | -------------------------------------------------------------------------------- /repo/libXfixes/checksums: -------------------------------------------------------------------------------- 1 | 301a34d173d13e73f4e5712ecc5da6e3757bee7729fcd9b95515688bf6029ee03b 2 | -------------------------------------------------------------------------------- /repo/libXfixes/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | -------------------------------------------------------------------------------- /repo/libXfixes/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXfixes-6.0.1.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libXfixes/version: -------------------------------------------------------------------------------- 1 | 6.0.1 1 2 | -------------------------------------------------------------------------------- /repo/libXfont/checksums: -------------------------------------------------------------------------------- 1 | ed40672d69bbbe4bfa5d4d80be713785039ec4b158e1177e9b1db7c8c9cd22b2ac 2 | -------------------------------------------------------------------------------- /repo/libXfont/depends: -------------------------------------------------------------------------------- 1 | freetype-harfbuzz 2 | libfontenc 3 | xorgproto make 4 | xtrans make 5 | zlib make 6 | -------------------------------------------------------------------------------- /repo/libXfont/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXfont-1.5.4.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libXfont/version: -------------------------------------------------------------------------------- 1 | 1.5.4 1 2 | -------------------------------------------------------------------------------- /repo/libXft/checksums: -------------------------------------------------------------------------------- 1 | bcff239c6139ed140d45ed4358d430a910152929f7ecf9557db7eec454e268066d 2 | -------------------------------------------------------------------------------- /repo/libXft/depends: -------------------------------------------------------------------------------- 1 | fontconfig make 2 | freetype-harfbuzz make 3 | libXrender make 4 | xorgproto make 5 | -------------------------------------------------------------------------------- /repo/libXft/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXft-2.3.8.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libXft/version: -------------------------------------------------------------------------------- 1 | 2.3.8 2 2 | -------------------------------------------------------------------------------- /repo/libXi/checksums: -------------------------------------------------------------------------------- 1 | d87d342ea4e8b621e8f51d8c709257ab7b03240d996951cd79eedfeb1aa2f23013 2 | -------------------------------------------------------------------------------- /repo/libXi/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | libXext 3 | libXfixes 4 | xorgproto make 5 | -------------------------------------------------------------------------------- /repo/libXi/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXi-1.8.1.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libXi/version: -------------------------------------------------------------------------------- 1 | 1.8.1 2 2 | -------------------------------------------------------------------------------- /repo/libXinerama/checksums: -------------------------------------------------------------------------------- 1 | 4275827cb3012d07b89cc7eacf695c15850a6df065228eae33bc5cef5ceba15bf6 2 | -------------------------------------------------------------------------------- /repo/libXinerama/depends: -------------------------------------------------------------------------------- 1 | libXext 2 | xorgproto 3 | -------------------------------------------------------------------------------- /repo/libXinerama/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXinerama-1.1.5.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libXinerama/version: -------------------------------------------------------------------------------- 1 | 1.1.5 1 2 | -------------------------------------------------------------------------------- /repo/libXmu/checksums: -------------------------------------------------------------------------------- 1 | 5ef6d25f98753d2771db7197d1eddf044732a2117277f5c4894653142b58181f58 2 | -------------------------------------------------------------------------------- /repo/libXmu/depends: -------------------------------------------------------------------------------- 1 | libXext 2 | libXt 3 | xorg-util-macros make 4 | -------------------------------------------------------------------------------- /repo/libXmu/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXmu-1.2.1.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libXmu/version: -------------------------------------------------------------------------------- 1 | 1.2.1 2 2 | -------------------------------------------------------------------------------- /repo/libXpresent/checksums: -------------------------------------------------------------------------------- 1 | f5ab362d1628033a30e812d37623d5f15e3177797510c01344da3c2632fb82bca6 2 | -------------------------------------------------------------------------------- /repo/libXpresent/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | libXext 3 | libXfixes 4 | libXrandr 5 | xorgproto make 6 | -------------------------------------------------------------------------------- /repo/libXpresent/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXpresent-1.0.1.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libXpresent/version: -------------------------------------------------------------------------------- 1 | 1.0.1 2 2 | -------------------------------------------------------------------------------- /repo/libXrandr/checksums: -------------------------------------------------------------------------------- 1 | 6611045d6721e4bb1041b8b0daf2b531a1a084f68af736ac6bc0ebb5d63ff780ea 2 | -------------------------------------------------------------------------------- /repo/libXrandr/depends: -------------------------------------------------------------------------------- 1 | libXext 2 | libXrender 3 | xorgproto make 4 | -------------------------------------------------------------------------------- /repo/libXrandr/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXrandr-1.5.4.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libXrandr/version: -------------------------------------------------------------------------------- 1 | 1.5.4 2 2 | -------------------------------------------------------------------------------- /repo/libXrender/checksums: -------------------------------------------------------------------------------- 1 | a81b16b0e483cccff3204a691a47e9d5959988d8852a47979503db06aa5a5114d4 2 | -------------------------------------------------------------------------------- /repo/libXrender/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | libXext make 3 | xorgproto make 4 | -------------------------------------------------------------------------------- /repo/libXrender/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXrender-0.9.11.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libXrender/version: -------------------------------------------------------------------------------- 1 | 0.9.11 3 2 | -------------------------------------------------------------------------------- /repo/libXt/checksums: -------------------------------------------------------------------------------- 1 | fbf21683ce3e6d104529289254977bb08b355ecf7a36c763e8369acf85f15f2417 2 | -------------------------------------------------------------------------------- /repo/libXt/depends: -------------------------------------------------------------------------------- 1 | libSM 2 | libX11 3 | xorgproto make 4 | -------------------------------------------------------------------------------- /repo/libXt/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXt-1.3.1.tar.xz 2 | -------------------------------------------------------------------------------- /repo/libXt/version: -------------------------------------------------------------------------------- 1 | 1.3.1 1 2 | -------------------------------------------------------------------------------- /repo/libXtst/checksums: -------------------------------------------------------------------------------- 1 | ece2a7baa423e61869e41b633fdb1c804229a78f5bdbd9f29dcb35a07ef5cae5a6 2 | -------------------------------------------------------------------------------- /repo/libXtst/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | libXau 3 | libXext 4 | libXi 5 | libxcb 6 | -------------------------------------------------------------------------------- /repo/libXtst/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXtst-1.2.5.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libXtst/version: -------------------------------------------------------------------------------- 1 | 1.2.5 1 2 | -------------------------------------------------------------------------------- /repo/libXxf86vm/checksums: -------------------------------------------------------------------------------- 1 | 9b984ff6785a50e2d863c6ab74e1507a7a200b9b25077eb0fabcf0776c07efd23b 2 | -------------------------------------------------------------------------------- /repo/libXxf86vm/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | libXext 3 | xorgproto make 4 | -------------------------------------------------------------------------------- /repo/libXxf86vm/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libXxf86vm-1.1.5.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libXxf86vm/version: -------------------------------------------------------------------------------- 1 | 1.1.5 1 2 | -------------------------------------------------------------------------------- /repo/libass/checksums: -------------------------------------------------------------------------------- 1 | bfbcc2a97193eb5c2a6c54d07c508d42ff62387a8a9d8b3959d15b6115bca8b68b 2 | 3300ff620840e9778e725f645e0d8f510673eaf268ad1b10849ff181f2a836df8f 3 | -------------------------------------------------------------------------------- /repo/libass/depends: -------------------------------------------------------------------------------- 1 | expat 2 | fontconfig 3 | freetype-harfbuzz 4 | -------------------------------------------------------------------------------- /repo/libass/sources: -------------------------------------------------------------------------------- 1 | https://github.com/libass/libass/releases/download/0.17.3/libass-0.17.3.tar.xz 2 | patches/0001-remove-fribidi-dependency.patch 3 | -------------------------------------------------------------------------------- /repo/libass/version: -------------------------------------------------------------------------------- 1 | 0.17.3 4 2 | -------------------------------------------------------------------------------- /repo/libdrm/checksums: -------------------------------------------------------------------------------- 1 | 2d18ab3e6892ba7e60f428c6714d166f57d68c55e563e3135c21c8b094dec4b2e9 2 | -------------------------------------------------------------------------------- /repo/libdrm/depends: -------------------------------------------------------------------------------- 1 | libpciaccess 2 | -------------------------------------------------------------------------------- /repo/libdrm/sources: -------------------------------------------------------------------------------- 1 | https://dri.freedesktop.org/libdrm/libdrm-2.4.123.tar.xz 2 | -------------------------------------------------------------------------------- /repo/libdrm/version: -------------------------------------------------------------------------------- 1 | 2.4.123 3 2 | -------------------------------------------------------------------------------- /repo/libelf/checksums: -------------------------------------------------------------------------------- 1 | e9e3f567ab63784d968f708c08ea5a09dd5fae2f0846d0d43a2ebc8b542c15b2d8 2 | 9a8f65322537a9c5c2f00b347a44de840e5f91e0e3f6b6c6d56b5ab4316385416c 3 | -------------------------------------------------------------------------------- /repo/libelf/depends: -------------------------------------------------------------------------------- 1 | zlib 2 | -------------------------------------------------------------------------------- /repo/libelf/sources: -------------------------------------------------------------------------------- 1 | https://sourceware.org/elfutils/ftp/0.191/elfutils-0.191.tar.bz2 2 | patches/0001-fix-checks-for-argp_parse-and-fts_close.patch 3 | -------------------------------------------------------------------------------- /repo/libelf/version: -------------------------------------------------------------------------------- 1 | 0.191 1 2 | -------------------------------------------------------------------------------- /repo/libepoxy/checksums: -------------------------------------------------------------------------------- 1 | df74575d2a4ca65bf98d15ed6357cb066b6369704137e53b5e1d35b6d582657e12 2 | -------------------------------------------------------------------------------- /repo/libepoxy/depends: -------------------------------------------------------------------------------- 1 | libX11 make 2 | mesa make 3 | meson make 4 | -------------------------------------------------------------------------------- /repo/libepoxy/sources: -------------------------------------------------------------------------------- 1 | https://github.com/anholt/libepoxy/archive/1.5.10.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libepoxy/version: -------------------------------------------------------------------------------- 1 | 1.5.10 3 2 | -------------------------------------------------------------------------------- /repo/liberation-fonts/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | mkdir -p "$1/usr/share/fonts/TTF" 4 | cp ./*.ttf "$1/usr/share/fonts/TTF" 5 | -------------------------------------------------------------------------------- /repo/liberation-fonts/checksums: -------------------------------------------------------------------------------- 1 | 5ca2163d2f2ec538005381049fd2f02b531b868903ace9a49cb10b74cf33035d67 2 | -------------------------------------------------------------------------------- /repo/liberation-fonts/sources: -------------------------------------------------------------------------------- 1 | https://github.com/liberationfonts/liberation-fonts/files/7261482/liberation-fonts-ttf-2.1.5.tar.gz 2 | -------------------------------------------------------------------------------- /repo/liberation-fonts/version: -------------------------------------------------------------------------------- 1 | 2.1.5 1 2 | -------------------------------------------------------------------------------- /repo/libffi/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --disable-exec-static-tramp \ 6 | --enable-static 7 | 8 | make 9 | make DESTDIR="$1" install 10 | 11 | # Compress manpages 12 | find "$1/usr/share/man" -type f -exec gzip -n -9 {} + 13 | 14 | rm -rf "$1/usr/share/info" 15 | -------------------------------------------------------------------------------- /repo/libffi/checksums: -------------------------------------------------------------------------------- 1 | c7d7a36b1dad81ff39ca53f3a11c3e01450dfb2d787e05ca60cfe1b4b6491759c4 2 | -------------------------------------------------------------------------------- /repo/libffi/sources: -------------------------------------------------------------------------------- 1 | https://github.com/libffi/libffi/releases/download/v3.4.6/libffi-3.4.6.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libffi/version: -------------------------------------------------------------------------------- 1 | 3.4.6 2 2 | -------------------------------------------------------------------------------- /repo/libfontenc/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --with-fontrootdir=/usr/share/fonts/X11 \ 6 | --disable-shared 7 | 8 | make 9 | make DESTDIR="$1" install 10 | -------------------------------------------------------------------------------- /repo/libfontenc/checksums: -------------------------------------------------------------------------------- 1 | 282ef1c086a10bb0361d50c75ca9a0baa0a4ed4f7c5ba475c93772dbb08c2a6df3 2 | -------------------------------------------------------------------------------- /repo/libfontenc/depends: -------------------------------------------------------------------------------- 1 | xorgproto make 2 | zlib make 3 | -------------------------------------------------------------------------------- /repo/libfontenc/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libfontenc-1.1.8.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libfontenc/version: -------------------------------------------------------------------------------- 1 | 1.1.8 1 2 | -------------------------------------------------------------------------------- /repo/libgcrypt/checksums: -------------------------------------------------------------------------------- 1 | a236b238d5f1d44be9b91422b9bee0b606c957a13847794f1de437d50f12b37d10 2 | -------------------------------------------------------------------------------- /repo/libgcrypt/depends: -------------------------------------------------------------------------------- 1 | libgpg-error 2 | -------------------------------------------------------------------------------- /repo/libgcrypt/sources: -------------------------------------------------------------------------------- 1 | https://www.gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-1.11.0.tar.bz2 2 | -------------------------------------------------------------------------------- /repo/libgcrypt/version: -------------------------------------------------------------------------------- 1 | 1.11.0 2 2 | -------------------------------------------------------------------------------- /repo/libgpg-error/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | : > build-aux/missing 4 | 5 | ./configure \ 6 | --prefix=/usr \ 7 | --sysconfdir=/etc \ 8 | --mandir=/usr/share/man \ 9 | --localstatedir=/var \ 10 | --disable-nls \ 11 | --disable-doc \ 12 | --disable-tests 13 | 14 | make 15 | make DESTDIR="$1" install 16 | -------------------------------------------------------------------------------- /repo/libgpg-error/checksums: -------------------------------------------------------------------------------- 1 | 6c363dd8c6bcf2601dd5ff3b11fa2f699baa2aae40de2acd92461af0fd8178f0d8 2 | -------------------------------------------------------------------------------- /repo/libgpg-error/sources: -------------------------------------------------------------------------------- 1 | https://gnupg.org/ftp/gcrypt/libgpg-error/libgpg-error-1.55.tar.bz2 2 | -------------------------------------------------------------------------------- /repo/libgpg-error/version: -------------------------------------------------------------------------------- 1 | 1.55 1 2 | -------------------------------------------------------------------------------- /repo/libjpeg-turbo/checksums: -------------------------------------------------------------------------------- 1 | 29272eccaa9d0093a6cf80cad86e91f07c201e1b07f4f5e7f868c92f62c5452906 2 | -------------------------------------------------------------------------------- /repo/libjpeg-turbo/depends: -------------------------------------------------------------------------------- 1 | cmake make 2 | -------------------------------------------------------------------------------- /repo/libjpeg-turbo/sources: -------------------------------------------------------------------------------- 1 | https://github.com/libjpeg-turbo/libjpeg-turbo/archive/3.0.3.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libjpeg-turbo/version: -------------------------------------------------------------------------------- 1 | 3.0.3 1 2 | -------------------------------------------------------------------------------- /repo/libnghttp2/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --disable-examples \ 6 | --disable-python-bindings \ 7 | --enable-lib-only 8 | 9 | make 10 | make DESTDIR="$1" install 11 | 12 | # Compress manpages 13 | find "$1/usr/share/man" -type f -exec gzip -n -9 {} + 14 | 15 | rm -rf "$1/usr/share/doc" 16 | -------------------------------------------------------------------------------- /repo/libnghttp2/checksums: -------------------------------------------------------------------------------- 1 | 2209947fbdacf2345bbbaefc9a61351ccad9ae52c98946a26fbf176d95153286ae 2 | -------------------------------------------------------------------------------- /repo/libnghttp2/depends: -------------------------------------------------------------------------------- 1 | python 2 | -------------------------------------------------------------------------------- /repo/libnghttp2/sources: -------------------------------------------------------------------------------- 1 | https://github.com/nghttp2/nghttp2/releases/download/v1.63.0/nghttp2-1.63.0.tar.xz 2 | -------------------------------------------------------------------------------- /repo/libnghttp2/version: -------------------------------------------------------------------------------- 1 | 1.63.0 2 2 | -------------------------------------------------------------------------------- /repo/libogg/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | ./configure \ 6 | --prefix=/usr 7 | 8 | make -C src 9 | make -C include install 10 | make -C src install 11 | 12 | make install-m4dataDATA install-pkgconfigDATA 13 | -------------------------------------------------------------------------------- /repo/libogg/checksums: -------------------------------------------------------------------------------- 1 | 3f6c106afa5b026ca7b8a0cc56fdb100bf2f93aee5c84f46beec4c7e1fe6c45255 2 | -------------------------------------------------------------------------------- /repo/libogg/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovercats/oakiss/911f715559544d4f23761bc584e1b7133fe9c1c9/repo/libogg/depends -------------------------------------------------------------------------------- /repo/libogg/sources: -------------------------------------------------------------------------------- 1 | https://github.com/xiph/ogg/releases/download/v1.3.5/libogg-1.3.5.tar.xz 2 | -------------------------------------------------------------------------------- /repo/libogg/version: -------------------------------------------------------------------------------- 1 | 1.3.5 1 2 | -------------------------------------------------------------------------------- /repo/libpciaccess/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | muon setup \ 6 | -Dprefix=/usr \ 7 | -Ddefault_library=static \ 8 | build 9 | 10 | samu -C build 11 | muon -C build install 12 | -------------------------------------------------------------------------------- /repo/libpciaccess/checksums: -------------------------------------------------------------------------------- 1 | ea20d4e12331620d1921edb6a5a043410416037869dc63264990861b23d0323b5e 2 | -------------------------------------------------------------------------------- /repo/libpciaccess/depends: -------------------------------------------------------------------------------- 1 | zlib 2 | -------------------------------------------------------------------------------- /repo/libpciaccess/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libpciaccess-0.18.1.tar.xz 2 | -------------------------------------------------------------------------------- /repo/libpciaccess/version: -------------------------------------------------------------------------------- 1 | 0.18.1 2 2 | -------------------------------------------------------------------------------- /repo/libplacebo/checksums: -------------------------------------------------------------------------------- 1 | 3363de224b28315dc695160d44bdc2eff3d6856b5e379583b5c720b5fff766aada 2 | a4464c86db5644b3219700148702b9d020313af9e024403c97396f1c26e4ef30b4 3 | -------------------------------------------------------------------------------- /repo/libplacebo/depends: -------------------------------------------------------------------------------- 1 | python-glad make 2 | python-markupsafe make 3 | -------------------------------------------------------------------------------- /repo/libplacebo/sources: -------------------------------------------------------------------------------- 1 | https://code.videolan.org/videolan/libplacebo/-/archive/v7.349.0/libplacebo-v7.349.0.tar.gz 2 | patches/0001-remove-the-need-for-vulkan-headers.patch 3 | -------------------------------------------------------------------------------- /repo/libplacebo/version: -------------------------------------------------------------------------------- 1 | 7.349.0 3 2 | -------------------------------------------------------------------------------- /repo/libpng/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr 5 | 6 | make 7 | make DESTDIR="$1" install 8 | 9 | # Compress manpages 10 | find "$1/usr/share/man" -type f -exec gzip -n -9 {} + 11 | -------------------------------------------------------------------------------- /repo/libpng/checksums: -------------------------------------------------------------------------------- 1 | 0dea43749579a69fcc15438f98d49f8222e75cb83020bbdfefabcbee3e0df13e77 2 | -------------------------------------------------------------------------------- /repo/libpng/depends: -------------------------------------------------------------------------------- 1 | zlib 2 | -------------------------------------------------------------------------------- /repo/libpng/sources: -------------------------------------------------------------------------------- 1 | https://github.com/glennrp/libpng/archive/v1.6.43.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libpng/version: -------------------------------------------------------------------------------- 1 | 1.6.43 1 2 | -------------------------------------------------------------------------------- /repo/libpsl/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr 5 | 6 | make 7 | make DESTDIR="$1" install 8 | 9 | # Compress manpages 10 | find "$1/usr/share/man" -type f -exec gzip -n -9 {} + 11 | -------------------------------------------------------------------------------- /repo/libpsl/checksums: -------------------------------------------------------------------------------- 1 | 75520a5e4ef205ad5fcb236075182c9e7aeb4f3122ebdb32854a14f49dc5267695 2 | -------------------------------------------------------------------------------- /repo/libpsl/depends: -------------------------------------------------------------------------------- 1 | icu 2 | python make 3 | -------------------------------------------------------------------------------- /repo/libpsl/sources: -------------------------------------------------------------------------------- 1 | https://github.com/rockdaboot/libpsl/releases/download/0.21.5/libpsl-0.21.5.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libpsl/version: -------------------------------------------------------------------------------- 1 | 0.21.5 1 2 | -------------------------------------------------------------------------------- /repo/libressl/checksums: -------------------------------------------------------------------------------- 1 | 354b5db12f832a487013f93bf4126e97e6a29f9773a1e1b929c518d79373683cb7 2 | -------------------------------------------------------------------------------- /repo/libressl/sources: -------------------------------------------------------------------------------- 1 | https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.9.2.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libressl/version: -------------------------------------------------------------------------------- 1 | 3.9.2 1 2 | -------------------------------------------------------------------------------- /repo/libsoup3/checksums: -------------------------------------------------------------------------------- 1 | eb3427e1db6dbf5a4a6ba8201659538c4217b825b1626491d0728b6ca694c3cb45 2 | -------------------------------------------------------------------------------- /repo/libsoup3/depends: -------------------------------------------------------------------------------- 1 | glib 2 | glib-networking 3 | libnghttp2 4 | libpsl 5 | libxml2 6 | sqlite 7 | -------------------------------------------------------------------------------- /repo/libsoup3/sources: -------------------------------------------------------------------------------- 1 | https://download.gnome.org/sources/libsoup/3.4/libsoup-3.4.4.tar.xz 2 | -------------------------------------------------------------------------------- /repo/libsoup3/version: -------------------------------------------------------------------------------- 1 | 3.4.4 3 2 | -------------------------------------------------------------------------------- /repo/libtasn1/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --disable-doc 6 | 7 | make 8 | make DESTDIR="$1" install 9 | -------------------------------------------------------------------------------- /repo/libtasn1/checksums: -------------------------------------------------------------------------------- 1 | 6e7ee1c99c271fd9a347e3a46056f00c2ab5cf481328a6bac8d1f727fe7bfd9e77 2 | -------------------------------------------------------------------------------- /repo/libtasn1/sources: -------------------------------------------------------------------------------- 1 | https://ftp.gnu.org/gnu/libtasn1/libtasn1-4.19.0.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libtasn1/version: -------------------------------------------------------------------------------- 1 | 4.19.0 1 2 | -------------------------------------------------------------------------------- /repo/libvorbis/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | ./configure \ 6 | --prefix=/usr 7 | 8 | make 9 | 10 | make -C lib install 11 | make -C include install 12 | 13 | make install-m4dataDATA install-pkgconfigDATA 14 | 15 | -------------------------------------------------------------------------------- /repo/libvorbis/checksums: -------------------------------------------------------------------------------- 1 | a8e88482b8d70321c8435616b0cec1a931b11445f003649774fd6940e593a2541a 2 | -------------------------------------------------------------------------------- /repo/libvorbis/depends: -------------------------------------------------------------------------------- 1 | libogg 2 | -------------------------------------------------------------------------------- /repo/libvorbis/sources: -------------------------------------------------------------------------------- 1 | https://github.com/xiph/vorbis/releases/download/v1.3.7/libvorbis-1.3.7.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libvorbis/version: -------------------------------------------------------------------------------- 1 | 1.3.7 1 2 | -------------------------------------------------------------------------------- /repo/libvpx/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovercats/oakiss/911f715559544d4f23761bc584e1b7133fe9c1c9/repo/libvpx/depends -------------------------------------------------------------------------------- /repo/libvpx/sources: -------------------------------------------------------------------------------- 1 | https://github.com/webmproject/libvpx/archive/v1.14.1.tar.gz 2 | files/vp8_rtcd.h 3 | files/vp9_rtcd.h 4 | files/vpx_dsp_rtcd.h 5 | files/vpx_scale_rtcd.h 6 | -------------------------------------------------------------------------------- /repo/libvpx/version: -------------------------------------------------------------------------------- 1 | 1.14.1 1 2 | -------------------------------------------------------------------------------- /repo/libwebp/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --disable-tiff \ 6 | --enable-libwebpmux \ 7 | --enable-libwebpdemux \ 8 | --enable-libwebpdecoder 9 | 10 | make 11 | make DESTDIR="$1" install 12 | 13 | # Compress manpages 14 | find "$1/usr/share/man" -type f -exec gzip -n -9 {} + 15 | -------------------------------------------------------------------------------- /repo/libwebp/checksums: -------------------------------------------------------------------------------- 1 | f1d43e193fb3a68c469388254ed1339d0dcb0dc277cc0b3dfe93f97277e795a043 2 | -------------------------------------------------------------------------------- /repo/libwebp/depends: -------------------------------------------------------------------------------- 1 | libjpeg-turbo 2 | libpng 3 | -------------------------------------------------------------------------------- /repo/libwebp/sources: -------------------------------------------------------------------------------- 1 | https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-1.4.0.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libwebp/version: -------------------------------------------------------------------------------- 1 | 1.4.0 1 2 | -------------------------------------------------------------------------------- /repo/libxcb/checksums: -------------------------------------------------------------------------------- 1 | 1c2e72924ff3df465a2fa902f9254964f89f4d372f5864913f19041588780ff6d1 2 | -------------------------------------------------------------------------------- /repo/libxcb/depends: -------------------------------------------------------------------------------- 1 | libXau 2 | python make 3 | xcb-proto 4 | xorg-util-macros 5 | -------------------------------------------------------------------------------- /repo/libxcb/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libxcb-1.17.0.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libxcb/version: -------------------------------------------------------------------------------- 1 | 1.17.0 1 2 | -------------------------------------------------------------------------------- /repo/libxkbcommon/checksums: -------------------------------------------------------------------------------- 1 | 5001ca0b8562feeef2010bf16c05657e3875fda3ed5fdedbf48b9135e5cdfcbce3 2 | -------------------------------------------------------------------------------- /repo/libxkbcommon/depends: -------------------------------------------------------------------------------- 1 | libxcb -------------------------------------------------------------------------------- /repo/libxkbcommon/sources: -------------------------------------------------------------------------------- 1 | https://xkbcommon.org/download/libxkbcommon-1.7.0.tar.xz 2 | -------------------------------------------------------------------------------- /repo/libxkbcommon/version: -------------------------------------------------------------------------------- 1 | 1.7.0 3 2 | -------------------------------------------------------------------------------- /repo/libxml2/checksums: -------------------------------------------------------------------------------- 1 | 93836ade1d546378f0bde4741eb214ae6736462dc08ded55939e611a6f28c64c09 2 | -------------------------------------------------------------------------------- /repo/libxml2/depends: -------------------------------------------------------------------------------- 1 | zlib 2 | -------------------------------------------------------------------------------- /repo/libxml2/sources: -------------------------------------------------------------------------------- 1 | https://download.gnome.org/sources/libxml2/2.13/libxml2-2.13.3.tar.xz 2 | -------------------------------------------------------------------------------- /repo/libxml2/version: -------------------------------------------------------------------------------- 1 | 2.13.3 1 2 | -------------------------------------------------------------------------------- /repo/libxshmfence/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --with-shared-memory-dir=/dev/shm \ 6 | --disable-shared 7 | 8 | make 9 | make DESTDIR="$1" install 10 | -------------------------------------------------------------------------------- /repo/libxshmfence/checksums: -------------------------------------------------------------------------------- 1 | 1db5f7002e58f0260d96fe40a6d694d3f08fb383840ac24f1d724cc979bfff60c1 2 | -------------------------------------------------------------------------------- /repo/libxshmfence/depends: -------------------------------------------------------------------------------- 1 | xorgproto make 2 | -------------------------------------------------------------------------------- /repo/libxshmfence/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/libxshmfence-1.3.2.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libxshmfence/version: -------------------------------------------------------------------------------- 1 | 1.3.2 1 2 | -------------------------------------------------------------------------------- /repo/libxslt/checksums: -------------------------------------------------------------------------------- 1 | d7994f65a2bcb56c17d5e61c013139098138598cecb780bf8d13ba44f8474a290d 2 | -------------------------------------------------------------------------------- /repo/libxslt/depends: -------------------------------------------------------------------------------- 1 | libxml2 2 | -------------------------------------------------------------------------------- /repo/libxslt/sources: -------------------------------------------------------------------------------- 1 | https://download.gnome.org/sources/libxslt/1.1/libxslt-1.1.42.tar.xz 2 | -------------------------------------------------------------------------------- /repo/libxslt/version: -------------------------------------------------------------------------------- 1 | 1.1.42 1 2 | -------------------------------------------------------------------------------- /repo/libyaml/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | : > config/missing 4 | 5 | ./configure \ 6 | --prefix=/usr 7 | 8 | make 9 | make DESTDIR="$1" install 10 | -------------------------------------------------------------------------------- /repo/libyaml/checksums: -------------------------------------------------------------------------------- 1 | 64cd0f69eb55904fdf4a6f20d46d565ab2433ae494e76edbdf835a25b57c98d9c7 2 | -------------------------------------------------------------------------------- /repo/libyaml/sources: -------------------------------------------------------------------------------- 1 | https://github.com/yaml/libyaml/releases/download/0.2.5/yaml-0.2.5.tar.gz 2 | -------------------------------------------------------------------------------- /repo/libyaml/version: -------------------------------------------------------------------------------- 1 | 0.2.5 1 2 | -------------------------------------------------------------------------------- /repo/lua-filesystem/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | make PREFIX=/usr 4 | make DESTDIR="$1" PREFIX=/usr install 5 | -------------------------------------------------------------------------------- /repo/lua-filesystem/checksums: -------------------------------------------------------------------------------- 1 | a2d4746d0f36da467a904d70b4d2408ff6d3fb94433d293f6ede4f1a983b079f46 2 | -------------------------------------------------------------------------------- /repo/lua-filesystem/depends: -------------------------------------------------------------------------------- 1 | lua5.1 -------------------------------------------------------------------------------- /repo/lua-filesystem/sources: -------------------------------------------------------------------------------- 1 | https://github.com/lunarmodules/luafilesystem/archive/refs/tags/v1_8_0.tar.gz 2 | -------------------------------------------------------------------------------- /repo/lua-filesystem/version: -------------------------------------------------------------------------------- 1 | 1_8_0 1 2 | -------------------------------------------------------------------------------- /repo/lua5.1/checksums: -------------------------------------------------------------------------------- 1 | 164c7849653b80ae67bec4b7473b884bf5cc8d2dca05653475ec2ed27b9ebf61 2 | c58f3ff3aecd07fc409486e31e65461eb10a919c0ee225836c88d5558933b3b5 3 | -------------------------------------------------------------------------------- /repo/lua5.1/sources: -------------------------------------------------------------------------------- 1 | https://www.lua.org/ftp/lua-5.1.4.tar.gz 2 | -------------------------------------------------------------------------------- /repo/lua5.1/version: -------------------------------------------------------------------------------- 1 | 5.1.4 2 2 | -------------------------------------------------------------------------------- /repo/luajit/checksums: -------------------------------------------------------------------------------- 1 | bceaa938dd383a6e1838bc7f08339801a524c5df0bbe2997dbece665a613d4324c 2 | b31871a6054ddd5857686d0f6afcb160bcd6bb314d3ab80838bfa1749b1d037785 3 | -------------------------------------------------------------------------------- /repo/luajit/sources: -------------------------------------------------------------------------------- 1 | https://github.com/LuaJIT/LuaJIT/archive/refs/tags/v2.1.ROLLING.tar.gz 2 | patches/0001-fix-check-for-toolchain-generateing-unwind-tables.patch 3 | -------------------------------------------------------------------------------- /repo/luajit/version: -------------------------------------------------------------------------------- 1 | 2.1-20240815 2 2 | -------------------------------------------------------------------------------- /repo/luakit/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export PKG_CONFIG_PATH=/usr/lib/pkgconfig 4 | 5 | make PREFIX=/usr USE_LUAJIT=1 6 | make DESTDIR="$1" PREFIX=/usr install 7 | 8 | rm -rf \ 9 | "$1/usr/share/pixmaps" \ 10 | "$1/usr/share/applications" \ 11 | "$1/usr/share/luakit/doc" \ 12 | "$1/usr/share/luakit/resources" -------------------------------------------------------------------------------- /repo/luakit/checksums: -------------------------------------------------------------------------------- 1 | 136964f0404f0f1e936f46af883c2244b560708efd3a1da91f435b0dc797424161 2 | -------------------------------------------------------------------------------- /repo/luakit/depends: -------------------------------------------------------------------------------- 1 | atk 2 | cairo 3 | freetype-harfbuzz 4 | gdk-pixbuf 5 | glib 6 | gtk+3 7 | libsoup3 8 | lua-filesystem 9 | luajit 10 | pango 11 | sqlite 12 | webkit2gtk 13 | -------------------------------------------------------------------------------- /repo/luakit/sources: -------------------------------------------------------------------------------- 1 | https://github.com/luakit/luakit/releases/download/2.4.0/luakit-2.4.0.tar.gz 2 | -------------------------------------------------------------------------------- /repo/luakit/version: -------------------------------------------------------------------------------- 1 | 2.4.0 1 2 | -------------------------------------------------------------------------------- /repo/m4/checksums: -------------------------------------------------------------------------------- 1 | 4f4b8c7c8e13b6b1cd05c2b97f6275eb445f39d0ef2afc206933b9fc78ad78dad7 2 | -------------------------------------------------------------------------------- /repo/m4/sources: -------------------------------------------------------------------------------- 1 | https://ftp.gnu.org/gnu/m4/m4-1.4.20.tar.xz 2 | -------------------------------------------------------------------------------- /repo/m4/version: -------------------------------------------------------------------------------- 1 | 1.4.20 1 2 | -------------------------------------------------------------------------------- /repo/mesa/checksums: -------------------------------------------------------------------------------- 1 | 3465bc49518ecb82d42e9f1fbe0eed0dd97b79278e627c765ebbbc9aa6ccdaef41 2 | -------------------------------------------------------------------------------- /repo/mesa/depends: -------------------------------------------------------------------------------- 1 | expat 2 | libX11 3 | libXdamage 4 | libXext 5 | libXrandr 6 | libXrender 7 | libXxf86vm 8 | libdrm 9 | libelf 10 | libxcb 11 | libxshmfence 12 | meson make 13 | python make 14 | python-mako make 15 | xorgproto 16 | zlib 17 | -------------------------------------------------------------------------------- /repo/mesa/sources: -------------------------------------------------------------------------------- 1 | https://archive.mesa3d.org/mesa-24.1.4.tar.xz 2 | -------------------------------------------------------------------------------- /repo/mesa/version: -------------------------------------------------------------------------------- 1 | 24.1.4 2 2 | -------------------------------------------------------------------------------- /repo/meson/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | python setup.py build 4 | python setup.py install \ 5 | --root="$1" \ 6 | --optimize=1 \ 7 | --skip-build 8 | 9 | rm -rf "$1/usr/share/polkit-1" 10 | 11 | # Compress manpages 12 | find "$1/usr/share/man" -type f -exec gzip -n -9 {} + 13 | -------------------------------------------------------------------------------- /repo/meson/checksums: -------------------------------------------------------------------------------- 1 | 6433d4ce4961def01f6a299105ccefc1b79c2e8fbe43d389b1c1a87eddf0694a9b 2 | -------------------------------------------------------------------------------- /repo/meson/depends: -------------------------------------------------------------------------------- 1 | python 2 | -------------------------------------------------------------------------------- /repo/meson/sources: -------------------------------------------------------------------------------- 1 | https://github.com/mesonbuild/meson/archive/1.5.1.tar.gz 2 | -------------------------------------------------------------------------------- /repo/meson/version: -------------------------------------------------------------------------------- 1 | 1.5.1 1 2 | -------------------------------------------------------------------------------- /repo/mpv/checksums: -------------------------------------------------------------------------------- 1 | f3107d16f651d7d9d4d05b214466318069ab6f25b493ab060b14d8768c9e4575e9 2 | -------------------------------------------------------------------------------- /repo/mpv/depends: -------------------------------------------------------------------------------- 1 | ffmpeg 2 | freetype-harfbuzz 3 | libXScrnSaver 4 | libXext 5 | libXinerama 6 | libXpresent 7 | libXrandr 8 | libass 9 | libdrm 10 | libplacebo 11 | libxkbcommon 12 | python make 13 | -------------------------------------------------------------------------------- /repo/mpv/sources: -------------------------------------------------------------------------------- 1 | https://github.com/mpv-player/mpv/archive/refs/tags/v0.38.0.tar.gz 2 | -------------------------------------------------------------------------------- /repo/mpv/version: -------------------------------------------------------------------------------- 1 | 0.38.0 5 2 | -------------------------------------------------------------------------------- /repo/mupdf/depends: -------------------------------------------------------------------------------- 1 | freetype-harfbuzz make 2 | libX11 make 3 | libXau make 4 | libXext make 5 | libjpeg-turbo make 6 | libpng make 7 | libxcb make 8 | zlib make 9 | -------------------------------------------------------------------------------- /repo/mupdf/sources: -------------------------------------------------------------------------------- 1 | https://mupdf.com/downloads/archive/mupdf-1.24.8-source.tar.gz 2 | patches/0001-remove-gumbo-parser-dependency.patch 3 | patches/0002-remove-openjpeg-dependency.patch 4 | patches/0003-change-OBJCOPY_CMD-to-work-on-non-GNU-linkers.patch 5 | patches/0004-Fixed-handling-of-safebags-in-pkcs7-helper-library.patch 6 | -------------------------------------------------------------------------------- /repo/mupdf/version: -------------------------------------------------------------------------------- 1 | 1.24.8 2 2 | -------------------------------------------------------------------------------- /repo/nettle/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --libdir=/usr/lib \ 6 | --enable-static \ 7 | --enable-mini-gmp \ 8 | --disable-documentation 9 | 10 | make M4=gm4 11 | make DESTDIR="$1" install 12 | -------------------------------------------------------------------------------- /repo/nettle/checksums: -------------------------------------------------------------------------------- 1 | c2b37a2c9500b6eea1b186ccd525c7c7f82abb2039bd0ff6ba1c0232329832d073 2 | -------------------------------------------------------------------------------- /repo/nettle/depends: -------------------------------------------------------------------------------- 1 | m4 make 2 | -------------------------------------------------------------------------------- /repo/nettle/sources: -------------------------------------------------------------------------------- 1 | http://ftp.gnu.org/gnu/nettle/nettle-3.10.tar.gz 2 | -------------------------------------------------------------------------------- /repo/nettle/version: -------------------------------------------------------------------------------- 1 | 3.10 2 2 | -------------------------------------------------------------------------------- /repo/opus/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --enable-custom-modes \ 6 | --enable-float-approx 7 | 8 | make 9 | make DESTDIR="$1" install 10 | -------------------------------------------------------------------------------- /repo/opus/checksums: -------------------------------------------------------------------------------- 1 | 08013ac6713ff35bf71762a2ce94dd1c9f6b50aa395fae01b610ba785ac1f7e0ca 2 | -------------------------------------------------------------------------------- /repo/opus/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovercats/oakiss/911f715559544d4f23761bc584e1b7133fe9c1c9/repo/opus/depends -------------------------------------------------------------------------------- /repo/opus/sources: -------------------------------------------------------------------------------- 1 | https://github.com/xiph/opus/releases/download/v1.5.1/opus-1.5.1.tar.gz 2 | -------------------------------------------------------------------------------- /repo/opus/version: -------------------------------------------------------------------------------- 1 | 1.5.1 1 2 | -------------------------------------------------------------------------------- /repo/pango/checksums: -------------------------------------------------------------------------------- 1 | 1e977d6167bf7832b196cfe44389224d3dd5579624f3dfe9faf381bb07159387a4 2 | b4ed0bf9d11532bb2e511d3daeefea6ac422b33a52d70819344f9322e5f2f0eac4 3 | 50367d5261af8875a0a0a14b8fd3827089b90c8400bf55e9fa85849093696dac5f 4 | -------------------------------------------------------------------------------- /repo/pango/depends: -------------------------------------------------------------------------------- 1 | cairo 2 | fontconfig 3 | freetype-harfbuzz 4 | glib 5 | libXft 6 | libXrender 7 | -------------------------------------------------------------------------------- /repo/pango/sources: -------------------------------------------------------------------------------- 1 | https://github.com/GNOME/pango/archive/1.54.tar.gz 2 | patches/0001-remove-fribidi-dependency.patch 3 | patches/0002-fix-muon-not-being-able-to-find-pango-enum-types-fil.patch 4 | -------------------------------------------------------------------------------- /repo/pango/version: -------------------------------------------------------------------------------- 1 | 1.54 4 2 | -------------------------------------------------------------------------------- /repo/pcre2/checksums: -------------------------------------------------------------------------------- 1 | 4a3435b2dcc6c068f0e47fa5717efda599d8add37c8f1258f26cad9b1f0d99fb5d 2 | -------------------------------------------------------------------------------- /repo/pcre2/sources: -------------------------------------------------------------------------------- 1 | https://github.com/PCRE2Project/pcre2/releases/download/pcre2-10.44/pcre2-10.44.tar.bz2 2 | -------------------------------------------------------------------------------- /repo/pcre2/version: -------------------------------------------------------------------------------- 1 | 10.44 2 2 | -------------------------------------------------------------------------------- /repo/perl/checksums: -------------------------------------------------------------------------------- 1 | d2f5efa409457302825a4ceab7f8713b1e7a8d43be5e5ef635df36a11a7d3c3b12 2 | -------------------------------------------------------------------------------- /repo/perl/depends: -------------------------------------------------------------------------------- 1 | zlib 2 | -------------------------------------------------------------------------------- /repo/perl/sources: -------------------------------------------------------------------------------- 1 | https://www.cpan.org/src/5.0/perl-5.40.0.tar.xz 2 | -------------------------------------------------------------------------------- /repo/perl/version: -------------------------------------------------------------------------------- 1 | 5.40.0 1 2 | -------------------------------------------------------------------------------- /repo/pixman/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | muon setup \ 6 | -Dprefix=/usr \ 7 | -Dbuildtype=release \ 8 | -Db_colorout=never \ 9 | -Dgtk=disabled \ 10 | -Ddefault_library=both \ 11 | build 12 | 13 | samu -C build 14 | muon -C build install 15 | -------------------------------------------------------------------------------- /repo/pixman/checksums: -------------------------------------------------------------------------------- 1 | de50d2f9937106d47d95e915aa8ef54a0af34e0d6b804095452c755e43b0aa34e9 2 | -------------------------------------------------------------------------------- /repo/pixman/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/pixman-0.43.4.tar.xz 2 | -------------------------------------------------------------------------------- /repo/pixman/version: -------------------------------------------------------------------------------- 1 | 0.43.4 3 2 | -------------------------------------------------------------------------------- /repo/python-flit-core/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | rm -rf flit_core/flit_core/vendor/ 4 | python flit_core/build_dists.py 5 | 6 | python -m installer -d "$1" "flit_core/dist/flit_core-$2-py3-none-any.whl" 7 | 8 | rm -rf "$1/usr/lib/python3*/site-packages/flit_core/tests" 9 | -------------------------------------------------------------------------------- /repo/python-flit-core/checksums: -------------------------------------------------------------------------------- 1 | a14e806578da1abff5ef9b5a31e948e3e74391e171e4b8a70acd4dc5348aa2f83e 2 | -------------------------------------------------------------------------------- /repo/python-flit-core/depends: -------------------------------------------------------------------------------- 1 | python 2 | python-installer make 3 | -------------------------------------------------------------------------------- /repo/python-flit-core/sources: -------------------------------------------------------------------------------- 1 | https://files.pythonhosted.org/packages/source/f/flit/flit-3.9.0.tar.gz 2 | -------------------------------------------------------------------------------- /repo/python-flit-core/version: -------------------------------------------------------------------------------- 1 | 3.9.0 1 2 | -------------------------------------------------------------------------------- /repo/python-glad/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | python3 setup.py build 4 | python3 setup.py install \ 5 | --prefix=/usr \ 6 | --root="$1" 7 | -------------------------------------------------------------------------------- /repo/python-glad/checksums: -------------------------------------------------------------------------------- 1 | b540c3f055b9f9fc74bc12374cb765614cf0ebe6e70b1eebe813f664b1c24950f3 2 | -------------------------------------------------------------------------------- /repo/python-glad/depends: -------------------------------------------------------------------------------- 1 | python 2 | python-jinja2 3 | -------------------------------------------------------------------------------- /repo/python-glad/sources: -------------------------------------------------------------------------------- 1 | https://github.com/Dav1dde/glad/archive/refs/tags/v2.0.6.tar.gz 2 | -------------------------------------------------------------------------------- /repo/python-glad/version: -------------------------------------------------------------------------------- 1 | 2.0.6 2 2 | -------------------------------------------------------------------------------- /repo/python-gpep517/checksums: -------------------------------------------------------------------------------- 1 | 7b319ca51875c6a32d5bb46e246c3217719cd616613ad046060b937d78e0c2defa 2 | 482b3562a2d6a9b273e8e2049bc29136643cad5002495cff0e1169c53ea8b6eb2b 3 | 5354f1bed53c495c30aa89a1d51c4808ef824164d75a39d2c176aed61879f5513e 4 | -------------------------------------------------------------------------------- /repo/python-gpep517/depends: -------------------------------------------------------------------------------- 1 | python 2 | -------------------------------------------------------------------------------- /repo/python-gpep517/files/gpep517.bin: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | import sys 4 | from gpep517.__main__ import main 5 | if __name__ == "__main__": 6 | sys.exit(main()) 7 | -------------------------------------------------------------------------------- /repo/python-gpep517/sources: -------------------------------------------------------------------------------- 1 | https://github.com/mgorny/gpep517/archive/v16/gpep517-v16.tar.gz 2 | files/gpep517.bin 3 | patches/0001-change-default-opt-level-to-0.patch 4 | -------------------------------------------------------------------------------- /repo/python-gpep517/version: -------------------------------------------------------------------------------- 1 | 16 1 2 | -------------------------------------------------------------------------------- /repo/python-installer/checksums: -------------------------------------------------------------------------------- 1 | 72790531eb73009974eca65759a7088ed1398cd009b85e5a243d1ea22102179bbc 2 | 12971633a15e3d58102979f0a74a816dbad9ecd758d9e3a2cbc441183e08ad05bc 3 | -------------------------------------------------------------------------------- /repo/python-installer/depends: -------------------------------------------------------------------------------- 1 | python 2 | -------------------------------------------------------------------------------- /repo/python-installer/sources: -------------------------------------------------------------------------------- 1 | https://files.pythonhosted.org/packages/py3/i/installer/installer-0.7.0-py3-none-any.whl 2 | patches/0001-change-default-opt-level-to-0.patch 3 | -------------------------------------------------------------------------------- /repo/python-installer/version: -------------------------------------------------------------------------------- 1 | 0.7.0 1 2 | -------------------------------------------------------------------------------- /repo/python-jinja2/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | gpep517 build-wheel --wheel-dir .dist --output-fd 3 3>&1 >&2 4 | python -m installer -d "$1" .dist/*.whl 5 | -------------------------------------------------------------------------------- /repo/python-jinja2/checksums: -------------------------------------------------------------------------------- 1 | 649ad2da572199325883822127922bf7d2867386e4e23e21e3755c15fc841f75ef 2 | -------------------------------------------------------------------------------- /repo/python-jinja2/depends: -------------------------------------------------------------------------------- 1 | python 2 | python-gpep517 make 3 | python-markupsafe 4 | python-wheel make 5 | -------------------------------------------------------------------------------- /repo/python-jinja2/sources: -------------------------------------------------------------------------------- 1 | https://files.pythonhosted.org/packages/source/j/jinja2/jinja2-3.1.4.tar.gz 2 | -------------------------------------------------------------------------------- /repo/python-jinja2/version: -------------------------------------------------------------------------------- 1 | 3.1.4 1 2 | -------------------------------------------------------------------------------- /repo/python-mako/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | python3 setup.py build 4 | python3 setup.py install \ 5 | --prefix=/usr \ 6 | --root="$1" 7 | -------------------------------------------------------------------------------- /repo/python-mako/checksums: -------------------------------------------------------------------------------- 1 | 686b7fa5efdab34264db2941005dd50d91b272a17c1c0e9633dd93b5fa0656bbff 2 | -------------------------------------------------------------------------------- /repo/python-mako/depends: -------------------------------------------------------------------------------- 1 | python 2 | python-markupsafe 3 | -------------------------------------------------------------------------------- /repo/python-mako/sources: -------------------------------------------------------------------------------- 1 | https://files.pythonhosted.org/packages/source/M/Mako/Mako-1.3.5.tar.gz 2 | -------------------------------------------------------------------------------- /repo/python-mako/version: -------------------------------------------------------------------------------- 1 | 1.3.5 1 2 | -------------------------------------------------------------------------------- /repo/python-markupsafe/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | python3 setup.py build 4 | python3 setup.py install \ 5 | --prefix=/usr \ 6 | --root="$1" 7 | -------------------------------------------------------------------------------- /repo/python-markupsafe/checksums: -------------------------------------------------------------------------------- 1 | 68bb64c58e1c26d8f046a370a78bac148e85e131ce0aff6464cec226b1d613a933 2 | -------------------------------------------------------------------------------- /repo/python-markupsafe/depends: -------------------------------------------------------------------------------- 1 | python 2 | -------------------------------------------------------------------------------- /repo/python-markupsafe/sources: -------------------------------------------------------------------------------- 1 | https://github.com/pallets/markupsafe/archive/refs/tags/2.1.5.tar.gz 2 | -------------------------------------------------------------------------------- /repo/python-markupsafe/version: -------------------------------------------------------------------------------- 1 | 2.1.5 1 2 | -------------------------------------------------------------------------------- /repo/python-packaging/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | gpep517 build-wheel --wheel-dir .dist --output-fd 3 3>&1 >&2 4 | python -m installer -d "$1" .dist/*.whl 5 | -------------------------------------------------------------------------------- /repo/python-packaging/checksums: -------------------------------------------------------------------------------- 1 | 119817974b3fea37c8f86b27826fc26a91f646a26b03074b7f6e7ff1ed9252faf6 2 | -------------------------------------------------------------------------------- /repo/python-packaging/depends: -------------------------------------------------------------------------------- 1 | python 2 | python-flit-core make 3 | python-gpep517 make 4 | -------------------------------------------------------------------------------- /repo/python-packaging/sources: -------------------------------------------------------------------------------- 1 | https://github.com/pypa/packaging/archive/24.1/python-packaging-24.1.tar.gz 2 | -------------------------------------------------------------------------------- /repo/python-packaging/version: -------------------------------------------------------------------------------- 1 | 24.1 1 2 | -------------------------------------------------------------------------------- /repo/python-wheel/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | patch -p1 < 0001-use-system-packaging.patch 4 | 5 | rm -rf src/wheel/vendored 6 | 7 | gpep517 build-wheel --wheel-dir .dist --output-fd 3 3>&1 >&2 8 | python -m installer -d "$1" .dist/*.whl 9 | -------------------------------------------------------------------------------- /repo/python-wheel/checksums: -------------------------------------------------------------------------------- 1 | 5aa16f8a1a9d95e0d0681eec86df9163a5d2520b91eea915619d1a397bac61faf5 2 | 500e67d3f59a3bce92cf7f2b2711e43f8cd5e3a746e3ebf251650c7995501eb14d 3 | -------------------------------------------------------------------------------- /repo/python-wheel/depends: -------------------------------------------------------------------------------- 1 | python 2 | python-flit-core make 3 | python-gpep517 make 4 | python-packaging 5 | -------------------------------------------------------------------------------- /repo/python-wheel/sources: -------------------------------------------------------------------------------- 1 | https://files.pythonhosted.org/packages/source/w/wheel/wheel-0.44.0.tar.gz 2 | patches/0001-use-system-packaging.patch 3 | -------------------------------------------------------------------------------- /repo/python-wheel/version: -------------------------------------------------------------------------------- 1 | 0.44.0 1 2 | -------------------------------------------------------------------------------- /repo/python/checksums: -------------------------------------------------------------------------------- 1 | 47bb72ced6c29652399875b77b953ccda570f9d51ed966a27c680cd4428b9e7da1 2 | a843547002cd1fa7b42b0378516eb001e64f16af6974e79a380f3d65ca72ed0476 3 | 6e6071aca338c573878c646184328e34e6d8c875675f269cad836eed0eb54a6e3c 4 | dd45898da598cf5b8b9c620102651bfcee187b9855ffad8188c74237e9cd38a904 5 | -------------------------------------------------------------------------------- /repo/python/depends: -------------------------------------------------------------------------------- 1 | libffi 2 | libressl 3 | sqlite 4 | zlib 5 | -------------------------------------------------------------------------------- /repo/python/sources: -------------------------------------------------------------------------------- 1 | https://python.org/ftp/python/3.11.7/Python-3.11.7.tar.xz 2 | patches/0001-readd-support-for-libressl.patch 3 | patches/0002-fix-slow-startup-for-pyc-files.patch 4 | patches/0003-fix-python-not-always-installing-pip-setuptools.patch 5 | -------------------------------------------------------------------------------- /repo/python/version: -------------------------------------------------------------------------------- 1 | 3.11.7 3 2 | -------------------------------------------------------------------------------- /repo/ruby/checksums: -------------------------------------------------------------------------------- 1 | 0033676efceee803669958ba4c85e0c81167974271ab1e48df956b80afcc38a8f5 2 | -------------------------------------------------------------------------------- /repo/ruby/depends: -------------------------------------------------------------------------------- 1 | libffi make 2 | libyaml 3 | zlib 4 | -------------------------------------------------------------------------------- /repo/ruby/sources: -------------------------------------------------------------------------------- 1 | https://cache.ruby-lang.org/pub/ruby/3.3/ruby-3.3.4.tar.xz 2 | -------------------------------------------------------------------------------- /repo/ruby/version: -------------------------------------------------------------------------------- 1 | 3.3.4 4 2 | -------------------------------------------------------------------------------- /repo/senpai/checksums: -------------------------------------------------------------------------------- 1 | c9903285a66fd58e4a4d2784b3a632f74d7fac1857eab4025b8ef3e4a0c8f157ef 2 | c7c0a2362a0e8d92ea4a6144c4f7ebe7a051ae14e6a1e2508d8568629ed0e5d3f6 3 | -------------------------------------------------------------------------------- /repo/senpai/depends: -------------------------------------------------------------------------------- 1 | go make 2 | -------------------------------------------------------------------------------- /repo/senpai/sources: -------------------------------------------------------------------------------- 1 | https://git.sr.ht/~taiite/senpai/archive/v0.3.0.tar.gz 2 | patches/0001-set-bar-to-be-on-top-of-the-window-instead-of-bottom.patch 3 | -------------------------------------------------------------------------------- /repo/senpai/version: -------------------------------------------------------------------------------- 1 | 0.3.0 2 2 | -------------------------------------------------------------------------------- /repo/shellcheck-bin/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | install -Dm755 shellcheck "$1/usr/bin/shellcheck" 4 | -------------------------------------------------------------------------------- /repo/shellcheck-bin/checksums: -------------------------------------------------------------------------------- 1 | 729ad9734a3d9ecaf613b25714d6c70812e8808270c13cbe19eca2412f0ffc2dc4 2 | -------------------------------------------------------------------------------- /repo/shellcheck-bin/sources: -------------------------------------------------------------------------------- 1 | https://github.com/koalaman/shellcheck/releases/download/v0.10.0/shellcheck-v0.10.0.linux.x86_64.tar.xz 2 | -------------------------------------------------------------------------------- /repo/shellcheck-bin/version: -------------------------------------------------------------------------------- 1 | 0.10.0 1 2 | -------------------------------------------------------------------------------- /repo/sqlite/checksums: -------------------------------------------------------------------------------- 1 | 023516a598e6109db5002f3a8f452d9cc5e496e200c40881d3bc70d8d74154485d 2 | -------------------------------------------------------------------------------- /repo/sqlite/depends: -------------------------------------------------------------------------------- 1 | zlib make 2 | -------------------------------------------------------------------------------- /repo/sqlite/sources: -------------------------------------------------------------------------------- 1 | https://sqlite.org/2024/sqlite-autoconf-3460100.tar.gz 2 | -------------------------------------------------------------------------------- /repo/sqlite/version: -------------------------------------------------------------------------------- 1 | 3.46.1 1 2 | -------------------------------------------------------------------------------- /repo/st/depends: -------------------------------------------------------------------------------- 1 | fontconfig make 2 | libX11 make 3 | libXft make 4 | -------------------------------------------------------------------------------- /repo/st/sources: -------------------------------------------------------------------------------- 1 | https://dl.suckless.org/st/st-0.9.2.tar.gz 2 | patches/0001-set-tamzen-as-default-font.patch 3 | patches/0002-set-borderpx-to-5.patch 4 | patches/0003-set-default-cursor-to-_.patch 5 | patches/0004-switch-keybindings-for-zoom.patch 6 | patches/0005-switch-colorscheme.patch 7 | -------------------------------------------------------------------------------- /repo/st/version: -------------------------------------------------------------------------------- 1 | 0.9.2 3 2 | -------------------------------------------------------------------------------- /repo/surf/depends: -------------------------------------------------------------------------------- 1 | webkit2gtk 2 | xprop 3 | -------------------------------------------------------------------------------- /repo/surf/version: -------------------------------------------------------------------------------- 1 | 2.1 5 2 | -------------------------------------------------------------------------------- /repo/sx/checksums: -------------------------------------------------------------------------------- 1 | 7b0c0ed6192c328110b12c463a7a0985ba18178e55a41615f8ce9f4a0cc8f9f713 2 | -------------------------------------------------------------------------------- /repo/sx/depends: -------------------------------------------------------------------------------- 1 | xauth 2 | -------------------------------------------------------------------------------- /repo/sx/sources: -------------------------------------------------------------------------------- 1 | https://github.com/Earnestly/sx/archive/89ba7b16f5277e2c87b1b6442f48a81a198cbfd2.tar.gz 2 | -------------------------------------------------------------------------------- /repo/sx/version: -------------------------------------------------------------------------------- 1 | 89ba7b16f5277e2c87b1b6442f48a81a198cbfd2 1 2 | -------------------------------------------------------------------------------- /repo/sxhkd/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export LDFLAGS="$LDFLAGS -static -lxcb -lXau" 4 | 5 | make 6 | make DESTDIR="$1" PREFIX=/usr install 7 | 8 | # Remove docs 9 | rm -rf "$1/usr/share/doc" 10 | 11 | # Compress manpages 12 | find "$1/usr/share/man" -type f -exec gzip -n -9 {} + 13 | -------------------------------------------------------------------------------- /repo/sxhkd/checksums: -------------------------------------------------------------------------------- 1 | 839fdc302b3302d31faccba0c194644b0d7c4cce6cc8c6bcd2742fa0bc21190c6c 2 | -------------------------------------------------------------------------------- /repo/sxhkd/depends: -------------------------------------------------------------------------------- 1 | libXau make 2 | libxcb make 3 | xcb-util-keysyms make 4 | -------------------------------------------------------------------------------- /repo/sxhkd/sources: -------------------------------------------------------------------------------- 1 | https://github.com/baskerville/sxhkd/archive/0.6.2.tar.gz 2 | -------------------------------------------------------------------------------- /repo/sxhkd/version: -------------------------------------------------------------------------------- 1 | 0.6.2 1 2 | -------------------------------------------------------------------------------- /repo/tamzen-font/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | mkdir -p "$1/usr/share/fonts/TTF" 4 | cp -f ttf/*.ttf "$1/usr/share/fonts/TTF" 5 | -------------------------------------------------------------------------------- /repo/tamzen-font/checksums: -------------------------------------------------------------------------------- 1 | 5262944dece9dade10fb6fd537767d1a5784d84f0b4299029fb38c226baf6869b9 2 | -------------------------------------------------------------------------------- /repo/tamzen-font/sources: -------------------------------------------------------------------------------- 1 | https://github.com/sunaku/tamzen-font/archive/refs/tags/Tamzen-1.11.6.tar.gz 2 | -------------------------------------------------------------------------------- /repo/tamzen-font/version: -------------------------------------------------------------------------------- 1 | 1.11.6 1 2 | -------------------------------------------------------------------------------- /repo/tinyx/checksums: -------------------------------------------------------------------------------- 1 | 6126c1285a84968a0a4c9caafdae653e51108a89d9f74d82a52bb24b90f3ba1ebe 2 | 78fb9658f2ce79b689d57ae9dc3f9a19e4d0cb859a8d5b404f660eaa2b36a68eac 3 | 095cbd64b386c1851ade3e38b6b711346f5faf6e3f7deaabf70d6f5257c20f36f2 4 | -------------------------------------------------------------------------------- /repo/tinyx/depends: -------------------------------------------------------------------------------- 1 | freetype-harfbuzz make 2 | libXdmcp make make 3 | libXfont make 4 | libXtst make 5 | libfontenc make 6 | libpng make 7 | xtrans make 8 | zlib make 9 | -------------------------------------------------------------------------------- /repo/tinyx/post-install: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | chmod 4755 /usr/bin/Xfbdev 4 | -------------------------------------------------------------------------------- /repo/tinyx/sources: -------------------------------------------------------------------------------- 1 | https://github.com/hovercats/tinyx/releases/download/pre-gen-eed4902840732f170a7020cedb381017de99f2e6/tinyx-eed4902840732f170a7020cedb381017de99f2e6.tar.gz 2 | https://github.com/kyx0r/repo-main/releases/download/tinyxfont_1.0/tinyxfont.tar.gz 3 | patches/0001-Xext-INITARGS-does-not-specify-a-type.-change-to-int.patch 4 | -------------------------------------------------------------------------------- /repo/tinyx/version: -------------------------------------------------------------------------------- 1 | eed4902840732f170a7020cedb381017de99f2e6 2 2 | -------------------------------------------------------------------------------- /repo/unifdef/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | make LDFLAGS="$LDFLAGS -static" 4 | make DESTDIR="$1" prefix=/usr install 5 | 6 | # Compress manpages 7 | find "$1/usr/share/man" -type f -exec gzip -n -9 {} + 8 | 9 | # Remove broken symlinks 10 | rm -r "$1/usr/share/man/man1/unifdefall.1" 11 | -------------------------------------------------------------------------------- /repo/unifdef/checksums: -------------------------------------------------------------------------------- 1 | c55349ab244ae3705c566107426f61d9b7ffdbb9fd99261986f8d54867628bcc0e 2 | -------------------------------------------------------------------------------- /repo/unifdef/sources: -------------------------------------------------------------------------------- 1 | https://dotat.at/prog/unifdef/unifdef-2.12.tar.xz 2 | -------------------------------------------------------------------------------- /repo/unifdef/version: -------------------------------------------------------------------------------- 1 | 2.12 2 2 | -------------------------------------------------------------------------------- /repo/valgrind/checksums: -------------------------------------------------------------------------------- 1 | 1e3813bd3f879d647556d73d0843a176d70e116f64417f96793f5b4f0ef52a38dc 2 | c261dc7b793168270a19dfe34f15bc1a283c4c8d10375de2788e368e8a0d82612f 3 | -------------------------------------------------------------------------------- /repo/valgrind/depends: -------------------------------------------------------------------------------- 1 | perl 2 | -------------------------------------------------------------------------------- /repo/valgrind/sources: -------------------------------------------------------------------------------- 1 | https://sourceware.org/pub/valgrind/valgrind-3.24.0.tar.bz2 2 | files/musl.supp 3 | -------------------------------------------------------------------------------- /repo/valgrind/version: -------------------------------------------------------------------------------- 1 | 3.24.0 1 2 | -------------------------------------------------------------------------------- /repo/wayland-protocols/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export DESTDIR="$1" 4 | 5 | muon setup \ 6 | -Dprefix=/usr \ 7 | -Dbuildtype=release \ 8 | -Dtests=false \ 9 | build 10 | 11 | samu -C build 12 | muon -C build install 13 | -------------------------------------------------------------------------------- /repo/wayland-protocols/checksums: -------------------------------------------------------------------------------- 1 | 2f3584031af7f0d2eaff37bef37894717af6d62e512645da4bdc84c509c111cf73 2 | -------------------------------------------------------------------------------- /repo/wayland-protocols/depends: -------------------------------------------------------------------------------- 1 | wayland make 2 | -------------------------------------------------------------------------------- /repo/wayland-protocols/sources: -------------------------------------------------------------------------------- 1 | https://gitlab.freedesktop.org/wayland/wayland-protocols/-/releases/1.36/downloads/wayland-protocols-1.36.tar.xz 2 | -------------------------------------------------------------------------------- /repo/wayland-protocols/version: -------------------------------------------------------------------------------- 1 | 1.36 2 2 | -------------------------------------------------------------------------------- /repo/wayland/checksums: -------------------------------------------------------------------------------- 1 | 63735d03d50403aefeea80e407acb7faeb2c60b9494633049aa59c40f81dd9b988 2 | -------------------------------------------------------------------------------- /repo/wayland/depends: -------------------------------------------------------------------------------- 1 | expat 2 | libffi 3 | -------------------------------------------------------------------------------- /repo/wayland/sources: -------------------------------------------------------------------------------- 1 | https://gitlab.freedesktop.org/wayland/wayland/-/releases/1.23.0/downloads/wayland-1.23.0.tar.xz 2 | -------------------------------------------------------------------------------- /repo/wayland/version: -------------------------------------------------------------------------------- 1 | 1.23.0 2 2 | -------------------------------------------------------------------------------- /repo/webkit2gtk/checksums: -------------------------------------------------------------------------------- 1 | 0a9286840b874a931dddfb62ad22041c31eb7ae64c99b9aa30543ca10110600714 2 | -------------------------------------------------------------------------------- /repo/webkit2gtk/sources: -------------------------------------------------------------------------------- 1 | https://webkitgtk.org/releases/webkitgtk-2.48.2.tar.xz 2 | -------------------------------------------------------------------------------- /repo/webkit2gtk/version: -------------------------------------------------------------------------------- 1 | 2.48.2 1 2 | -------------------------------------------------------------------------------- /repo/wmutils/checksums: -------------------------------------------------------------------------------- 1 | 710721fecf9f0f21d53e04e7eca5143a3c9831d971308a412487860a97f543b7da 2 | 09913cad479c06a2c24347b5c62d0c46fc6bf357fdb53cd77d464820c70eab448a 3 | -------------------------------------------------------------------------------- /repo/wmutils/depends: -------------------------------------------------------------------------------- 1 | libxcb make 2 | xcb-util make 3 | xcb-util-cursor make 4 | xcb-util-image make 5 | xcb-util-renderutil make 6 | -------------------------------------------------------------------------------- /repo/wmutils/sources: -------------------------------------------------------------------------------- 1 | https://github.com/wmutils/core/archive/refs/tags/v1.7.tar.gz 2 | https://github.com/wmutils/opt/archive/77124e003246fce8027452d3ceb440893b18d374.tar.gz opt 3 | -------------------------------------------------------------------------------- /repo/wmutils/version: -------------------------------------------------------------------------------- 1 | 1.7 3 2 | -------------------------------------------------------------------------------- /repo/xauth/checksums: -------------------------------------------------------------------------------- 1 | 02c8468a8f54f0a51aa539df1c6e73390003fecb2858a2ab95031b633cd053df32 2 | -------------------------------------------------------------------------------- /repo/xauth/depends: -------------------------------------------------------------------------------- 1 | libXmu make 2 | xorg-util-macros make 3 | -------------------------------------------------------------------------------- /repo/xauth/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/app/xauth-1.1.3.tar.gz 2 | -------------------------------------------------------------------------------- /repo/xauth/version: -------------------------------------------------------------------------------- 1 | 1.1.3 1 2 | -------------------------------------------------------------------------------- /repo/xbanish/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | make X11BASE=/usr 4 | make \ 5 | PREFIX=/usr \ 6 | MANDIR=/usr/share/man/man1 \ 7 | DESTDIR="$1" \ 8 | install 9 | 10 | # Compress manpages 11 | find "$1/usr/share/man" -type f -exec gzip -n -9 {} + 12 | -------------------------------------------------------------------------------- /repo/xbanish/checksums: -------------------------------------------------------------------------------- 1 | 05e45806bf467f3077e5cf1985b567a1c6a66b08de94a1ff35ac46646756c6c011 2 | -------------------------------------------------------------------------------- /repo/xbanish/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | libXfixes 3 | libXi 4 | libXt 5 | -------------------------------------------------------------------------------- /repo/xbanish/sources: -------------------------------------------------------------------------------- 1 | https://github.com/jcs/xbanish/archive/v1.8.tar.gz 2 | -------------------------------------------------------------------------------- /repo/xbanish/version: -------------------------------------------------------------------------------- 1 | 1.8 3 2 | -------------------------------------------------------------------------------- /repo/xcb-proto/checksums: -------------------------------------------------------------------------------- 1 | 68187400fded667f60b4b020d0fc37fa489ae0de33169fe7b07fcbaf88e7a3f993 2 | -------------------------------------------------------------------------------- /repo/xcb-proto/depends: -------------------------------------------------------------------------------- 1 | python make 2 | -------------------------------------------------------------------------------- /repo/xcb-proto/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/proto/xcb-proto-1.17.0.tar.xz 2 | -------------------------------------------------------------------------------- /repo/xcb-proto/version: -------------------------------------------------------------------------------- 1 | 1.17.0 1 2 | -------------------------------------------------------------------------------- /repo/xcb-util-cursor/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --disable-shared 6 | 7 | make 8 | make DESTDIR="$1" install 9 | -------------------------------------------------------------------------------- /repo/xcb-util-cursor/checksums: -------------------------------------------------------------------------------- 1 | daea03c08a0ba3f190a34efe868a9e853f99eb8904fc79aaf8f3b697d4414f06a0 2 | -------------------------------------------------------------------------------- /repo/xcb-util-cursor/depends: -------------------------------------------------------------------------------- 1 | libXau 2 | libxcb 3 | xcb-util 4 | xcb-util-image 5 | xcb-util-renderutil 6 | -------------------------------------------------------------------------------- /repo/xcb-util-cursor/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/xcb/xcb-util-cursor-0.1.5.tar.gz 2 | -------------------------------------------------------------------------------- /repo/xcb-util-cursor/version: -------------------------------------------------------------------------------- 1 | 0.1.5 1 2 | -------------------------------------------------------------------------------- /repo/xcb-util-image/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | : > missing 4 | 5 | ./configure \ 6 | --prefix=/usr \ 7 | --disable-shared 8 | 9 | make 10 | make DESTDIR="$1" install 11 | -------------------------------------------------------------------------------- /repo/xcb-util-image/checksums: -------------------------------------------------------------------------------- 1 | 9aca6977c5fde46aa188c394c36389fc16e78fd6db5b88ea263abd98c7d9e3fbe2 2 | -------------------------------------------------------------------------------- /repo/xcb-util-image/depends: -------------------------------------------------------------------------------- 1 | libXau 2 | libxcb 3 | xcb-util 4 | -------------------------------------------------------------------------------- /repo/xcb-util-image/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/xcb/xcb-util-image-0.4.1.tar.gz 2 | -------------------------------------------------------------------------------- /repo/xcb-util-image/version: -------------------------------------------------------------------------------- 1 | 0.4.1 1 2 | -------------------------------------------------------------------------------- /repo/xcb-util-keysyms/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --disable-shared 6 | 7 | make 8 | make DESTDIR="$1" install 9 | -------------------------------------------------------------------------------- /repo/xcb-util-keysyms/checksums: -------------------------------------------------------------------------------- 1 | 5c126cf650ea3853c788eb821a87ee4e07148eed381981b7027b1e95f036a3058d 2 | -------------------------------------------------------------------------------- /repo/xcb-util-keysyms/depends: -------------------------------------------------------------------------------- 1 | libxcb 2 | xcb-util make 3 | -------------------------------------------------------------------------------- /repo/xcb-util-keysyms/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/xcb/xcb-util-keysyms-0.4.1.tar.gz 2 | -------------------------------------------------------------------------------- /repo/xcb-util-keysyms/version: -------------------------------------------------------------------------------- 1 | 0.4.1 1 2 | -------------------------------------------------------------------------------- /repo/xcb-util-renderutil/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --disable-shared \ 6 | --enable-static 7 | 8 | make 9 | make DESTDIR="$1" install 10 | -------------------------------------------------------------------------------- /repo/xcb-util-renderutil/checksums: -------------------------------------------------------------------------------- 1 | d922f02ad7e2034d4429c7328648382caa74ff32523cf9cc5e34e6aab8a45bd064 2 | -------------------------------------------------------------------------------- /repo/xcb-util-renderutil/depends: -------------------------------------------------------------------------------- 1 | libXau 2 | libxcb 3 | -------------------------------------------------------------------------------- /repo/xcb-util-renderutil/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/xcb/xcb-util-renderutil-0.3.10.tar.gz 2 | -------------------------------------------------------------------------------- /repo/xcb-util-renderutil/version: -------------------------------------------------------------------------------- 1 | 0.3.10 1 2 | -------------------------------------------------------------------------------- /repo/xcb-util/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ./configure \ 4 | --prefix=/usr \ 5 | --disable-shared 6 | 7 | make 8 | make DESTDIR="$1" install 9 | -------------------------------------------------------------------------------- /repo/xcb-util/checksums: -------------------------------------------------------------------------------- 1 | ae4f8ffe9997e4d402cfb5377ca14bf2c56f327819d3abed11a1304c5d805b251b 2 | -------------------------------------------------------------------------------- /repo/xcb-util/depends: -------------------------------------------------------------------------------- 1 | libXau 2 | libxcb 3 | -------------------------------------------------------------------------------- /repo/xcb-util/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/xcb/xcb-util-0.4.1.tar.gz 2 | -------------------------------------------------------------------------------- /repo/xcb-util/version: -------------------------------------------------------------------------------- 1 | 0.4.1 1 2 | -------------------------------------------------------------------------------- /repo/xorg-util-macros/checksums: -------------------------------------------------------------------------------- 1 | cfd9960e84fba07349a897851e5e0ccd2b46bde9ba49a4d78ee78f427620c2f531 2 | -------------------------------------------------------------------------------- /repo/xorg-util-macros/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/util/util-macros-1.20.0.tar.xz 2 | -------------------------------------------------------------------------------- /repo/xorg-util-macros/version: -------------------------------------------------------------------------------- 1 | 1.20.0 1 2 | -------------------------------------------------------------------------------- /repo/xorgproto/checksums: -------------------------------------------------------------------------------- 1 | eace9012239f81e65158458e43610526371b57f2d58ea80ea6e5ea9046ee05f5f7 2 | -------------------------------------------------------------------------------- /repo/xorgproto/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/proto/xorgproto-2024.1.tar.gz 2 | -------------------------------------------------------------------------------- /repo/xorgproto/version: -------------------------------------------------------------------------------- 1 | 2024.1 1 2 | -------------------------------------------------------------------------------- /repo/xprop/checksums: -------------------------------------------------------------------------------- 1 | d66557c7a29ca9b9cc995307ece10f789b8e6bbc896e8645a64926ee8563b4c18e 2 | -------------------------------------------------------------------------------- /repo/xprop/depends: -------------------------------------------------------------------------------- 1 | libX11 2 | libXmu 3 | -------------------------------------------------------------------------------- /repo/xprop/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/app/xprop-1.2.8.tar.gz 2 | -------------------------------------------------------------------------------- /repo/xprop/version: -------------------------------------------------------------------------------- 1 | 1.2.8 1 2 | -------------------------------------------------------------------------------- /repo/xtrans/checksums: -------------------------------------------------------------------------------- 1 | 2489d33728bddb42a6c550e508b7138a00ef009c3a2bea714f79107b3a448b8001 2 | -------------------------------------------------------------------------------- /repo/xtrans/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovercats/oakiss/911f715559544d4f23761bc584e1b7133fe9c1c9/repo/xtrans/depends -------------------------------------------------------------------------------- /repo/xtrans/sources: -------------------------------------------------------------------------------- 1 | https://x.org/releases/individual/lib/xtrans-1.5.2.tar.gz 2 | -------------------------------------------------------------------------------- /repo/xtrans/version: -------------------------------------------------------------------------------- 1 | 1.5.2 1 2 | -------------------------------------------------------------------------------- /repo/xvidcore/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | cd build/generic 4 | 5 | ./configure \ 6 | --prefix=/usr 7 | 8 | make 9 | make DESTDIR="$1" install 10 | -------------------------------------------------------------------------------- /repo/xvidcore/checksums: -------------------------------------------------------------------------------- 1 | b29e53dcb890e7dd2ef8faa5dbf4a6d7ed7eea84cf66e8a211c61ef0d902950989 2 | -------------------------------------------------------------------------------- /repo/xvidcore/depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hovercats/oakiss/911f715559544d4f23761bc584e1b7133fe9c1c9/repo/xvidcore/depends -------------------------------------------------------------------------------- /repo/xvidcore/sources: -------------------------------------------------------------------------------- 1 | https://downloads.xvid.com/downloads/xvidcore-1.3.7.tar.bz2 2 | -------------------------------------------------------------------------------- /repo/xvidcore/version: -------------------------------------------------------------------------------- 1 | 1.3.7 1 2 | -------------------------------------------------------------------------------- /repo/zlib/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | export CFLAGS="$CFLAGS -fPIC" 4 | 5 | ./configure \ 6 | --prefix=/usr 7 | 8 | make 9 | make DESTDIR="$1" install 10 | 11 | # Compress manpages 12 | find "$1/usr/share/man" -type f -exec gzip -n -9 {} + 13 | -------------------------------------------------------------------------------- /repo/zlib/checksums: -------------------------------------------------------------------------------- 1 | 207c3b0862cb4e3686f8405f76a98c38dbad9c94bcf4be4b9efca0716aba51ecbb 2 | -------------------------------------------------------------------------------- /repo/zlib/sources: -------------------------------------------------------------------------------- 1 | https://zlib.net/fossils/zlib-1.3.1.tar.gz 2 | -------------------------------------------------------------------------------- /repo/zlib/version: -------------------------------------------------------------------------------- 1 | 1.3.1 1 2 | -------------------------------------------------------------------------------- /scripts/checksum.sh: -------------------------------------------------------------------------------- 1 | if command -v sha256sum >/dev/null; then 2 | exec sha256sum "$@" 3 | elif command -v sha256 >/dev/null; then 4 | exec sha256 "$@" 5 | elif command -v shasum >/dev/null; then 6 | exec shasum -a 256 "$@" 7 | else 8 | printf '%s: sha256sum, sha256, or shasum required\n' "$0" >&2 9 | exit 1 10 | fi 11 | -------------------------------------------------------------------------------- /scripts/extract.sh: -------------------------------------------------------------------------------- 1 | file=$1 2 | shift 3 | 4 | case $file in 5 | *.tar.gz|*.tgz) tool=gzip ;; 6 | *.tar.bz2) tool=bzip2 ;; 7 | *.tar.xz) tool=xz ;; 8 | *) exit 0 9 | esac 10 | 11 | "$tool" -d -c "$file" | "$PAX" -r "$@" 12 | -------------------------------------------------------------------------------- /scripts/fetch-git.sh: -------------------------------------------------------------------------------- 1 | set -e 2 | 3 | if [ "$#" != 1 ] ; then 4 | echo 'usage: fetch-git.sh dir' >&2 5 | exit 2 6 | fi 7 | 8 | cd "$1" 9 | 10 | git submodule update --init --checkout src 11 | if [ -d patch ] ; then 12 | git -C src am --keep-non-patch --whitespace=nowarn "$PWD"/patch/*.patch 13 | fi 14 | -------------------------------------------------------------------------------- /scripts/probe.sh: -------------------------------------------------------------------------------- 1 | set -e 2 | 3 | if [ "$#" -lt 3 ] ; then 4 | printf 'usage: %s var out command...\n' "$0" >&2 5 | exit 2 6 | fi 7 | 8 | var=$1 9 | out=$2 10 | shift 2 11 | if "$@" 2>"$out.log" ; then 12 | echo "#define $var 1" 13 | fi >"$out" 14 | -------------------------------------------------------------------------------- /scripts/prune-config.sed: -------------------------------------------------------------------------------- 1 | #n 2 | 3 | :next 4 | /\\$/ { 5 | N 6 | b next 7 | } 8 | 9 | /#/p 10 | -------------------------------------------------------------------------------- /template/config: -------------------------------------------------------------------------------- 1 | [core] 2 | sharedRepository = 0664 3 | sparseCheckout = true 4 | [oasis] 5 | root = . 6 | [merge "perms"] 7 | name = .perms merge driver 8 | driver = ./libexec/mergeperms %O %A %B 9 | -------------------------------------------------------------------------------- /template/hooks/post-merge: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec "$(git config oasis.root)"/libexec/applyperms ORIG_HEAD HEAD 4 | -------------------------------------------------------------------------------- /template/info/attributes: -------------------------------------------------------------------------------- 1 | * merge=binary 2 | /.perms merge=perms 3 | -------------------------------------------------------------------------------- /template/info/exclude: -------------------------------------------------------------------------------- 1 | /lost+found 2 | -------------------------------------------------------------------------------- /template/info/sparse-checkout: -------------------------------------------------------------------------------- 1 | * 2 | !/.gitattributes 3 | !/.perms 4 | !/LICENSE 5 | --------------------------------------------------------------------------------