├── CONTRIBUTING.md ├── EBUILD_STYLE_GUIDELINE.md ├── README.md ├── SECURITY.md ├── SUPPORT_MATRIX.md ├── acct-group ├── lobe-chat │ ├── Manifest │ ├── lobe-chat-0.ebuild │ └── metadata.xml ├── local-ai │ ├── Manifest │ ├── local-ai-0.ebuild │ └── metadata.xml ├── ollama │ ├── Manifest │ ├── metadata.xml │ └── ollama-0.ebuild ├── open-webui │ ├── Manifest │ ├── metadata.xml │ └── open-webui-0.ebuild └── voltaml-fast-stable-diffusion │ ├── Manifest │ ├── metadata.xml │ └── voltaml-fast-stable-diffusion-0.ebuild ├── acct-user ├── lobe-chat │ ├── Manifest │ ├── lobe-chat-0.ebuild │ └── metadata.xml ├── local-ai │ ├── Manifest │ ├── local-ai-0.ebuild │ └── metadata.xml ├── ollama │ ├── Manifest │ ├── metadata.xml │ └── ollama-1.ebuild ├── open-webui │ ├── Manifest │ ├── metadata.xml │ └── open-webui-0.ebuild └── voltaml-fast-stable-diffusion │ ├── Manifest │ ├── metadata.xml │ └── voltaml-fast-stable-diffusion-0.ebuild ├── app-accessibility └── whisper-cpp │ ├── Manifest │ ├── metadata.xml │ └── whisper-cpp-1.7.6.ebuild ├── app-admin ├── coreboot-utils │ ├── Manifest │ ├── coreboot-utils-24.02.01.ebuild │ ├── coreboot-utils-24.05.ebuild │ ├── files │ │ ├── coreboot-utils-24.02.01-flags.patch │ │ ├── coreboot-utils-4.22.01-drop-inline-cpuid_ext.patch │ │ └── coreboot-utils-4.22.01-flags.patch │ └── metadata.xml ├── howdy │ ├── Manifest │ ├── files │ │ ├── howdy-2.6.1-use-py3-pythonparser.patch │ │ ├── howdy-3.0_beta_pre20220131-use-py3-pythonparser.patch │ │ └── howdy-3.0_beta_pre9999-howdy-gtk-fix-camera-id.patch │ ├── howdy-2.6.1.ebuild │ ├── howdy-3.0_beta_pre9999.ebuild │ └── metadata.xml └── keepassxc │ ├── Manifest │ ├── files │ ├── keepassxc-2.7.10-entryattributesmodel.patch │ ├── keepassxc-2.7.10-fix-getTopLevelDomainFromUrl.patch │ ├── keepassxc-2.7.10-fix-testentrymodel-test.patch │ ├── keepassxc-2.7.10-fix-testpasskeys.patch │ ├── keepassxc-2.7.10-qt6-support-v2.patch │ ├── keepassxc-2.7.10-testsshagent-workaround.patch │ ├── keepassxc-2.7.4-tests.patch │ ├── keepassxc-2.7.6-qt6-support.patch │ ├── keepassxc-2.7.8-qt6-support-v2.patch │ ├── keepassxc-2.7.9-qt6-support-v2.patch │ └── keepassxc-2.7.9-tests.patch │ ├── keepassxc-2.7.10.ebuild │ └── metadata.xml ├── app-antivirus └── clamav │ ├── Manifest │ ├── autobump │ ├── description │ ├── get_latest_patch_version.sh │ └── get_latest_version.sh │ ├── clamav-1.4.3.ebuild │ ├── convert-cargo-lock.sh │ ├── cp-cargo-files.sh │ ├── files │ ├── 1.4.3 │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── libclamav_rust │ │ │ └── Cargo.toml │ ├── clamav-0.102.1-libxml2_pkgconfig.patch │ ├── clamav-0.102.2-fix-curl-detection.patch │ ├── clamav-0.103.0-system-tomsfastmath.patch │ ├── clamav-0.103.1-upstream-openrc.patch │ ├── clamav-0.103.12-missing-const.patch │ ├── clamav-1.0.7-cmake-python-version.patch │ ├── clamav-1.4.1-pointer-types.patch │ ├── clamav-milter.README.gentoo │ ├── clamav-milter.initd │ ├── clamav-milter.logrotate-r1 │ ├── clamav-milter.service-0.104.0 │ ├── clamav-milter.service-r1 │ ├── clamd.initd │ ├── clamd.logrotate │ ├── clamd.service │ ├── clamd_at.service │ ├── clamd_at.service-0.104.0 │ ├── clamonacc.initd │ ├── extra-patches │ │ ├── clamav-1.0.0-CMakeLists-allow-llvm16.patch │ │ ├── clamav-1.0.0-llvm14-noreturn.patch │ │ ├── clamav-1.0.0-llvm14.patch │ │ ├── clamav-1.0.0-llvm15.patch │ │ ├── clamav-1.0.0-llvm16.patch │ │ └── clamav-1.4.2-test-timeout.patch │ ├── freshclam.initd │ ├── freshclam.logrotate │ ├── freshclamd.service-r1 │ └── tmpfiles.d │ │ ├── clamav-r1.conf │ │ └── clamav.conf │ └── metadata.xml ├── app-arch ├── brotli │ ├── Manifest │ ├── brotli-1.1.0.ebuild │ ├── files │ │ └── 1.0.9-linker.patch │ └── metadata.xml ├── bzip2 │ ├── Manifest │ ├── bzip2-1.0.8-r5.ebuild │ ├── files │ │ ├── bzip2-1.0.3-no-test.patch │ │ ├── bzip2-1.0.4-makefile-CFLAGS.patch │ │ ├── bzip2-1.0.4-man-links.patch │ │ ├── bzip2-1.0.6-progress.patch │ │ ├── bzip2-1.0.8-mingw.patch │ │ ├── bzip2-1.0.8-out-of-tree-build.patch │ │ └── bzip2-1.0.8-saneso.patch │ └── metadata.xml ├── libarchive │ ├── Manifest │ ├── files │ │ └── libarchive-3.7.2-lrzip.patch │ ├── libarchive-3.8.1.ebuild │ └── metadata.xml ├── lz4 │ ├── Manifest │ ├── files │ │ ├── 1.10.0-fix-freestanding-test.patch │ │ └── 1.10.0-meson-do-not-force-c99-mode.patch │ ├── lz4-1.10.0-r1.ebuild │ └── metadata.xml ├── pigz │ ├── Manifest │ ├── metadata.xml │ └── pigz-2.8.ebuild ├── snappy │ ├── Manifest │ ├── files │ │ ├── snappy-1.2.0_external-gtest.patch │ │ ├── snappy-1.2.0_no-werror.patch │ │ ├── snappy-1.2.0_remove-no-rtti.patch │ │ └── snappy-1.2.2_remove-no-rtti.patch │ ├── metadata.xml │ ├── snappy-1.2.1.ebuild │ ├── snappy-1.2.2-r1.ebuild │ └── snappy-1.2.2.ebuild ├── unzip │ ├── Manifest │ ├── files │ │ ├── unzip-6.0-fix-false-overlap-detection-on-32bit-systems.patch │ │ ├── unzip-6.0-format-security.patch │ │ ├── unzip-6.0-natspec.patch │ │ └── unzip-6.0-no-exec-stack.patch │ ├── metadata.xml │ └── unzip-6.0_p29.ebuild ├── xz-utils │ ├── Manifest │ ├── metadata.xml │ ├── xz-utils-5.6.4-r2.ebuild │ └── xz-utils-5.8.1-r1.ebuild ├── zip │ ├── Manifest │ ├── files │ │ ├── zip-3.0-build.patch │ │ ├── zip-3.0-clang-15-configure-tests.patch │ │ ├── zip-3.0-exec-stack.patch │ │ ├── zip-3.0-format-security.patch │ │ ├── zip-3.0-natspec.patch │ │ ├── zip-3.0-no-crypt.patch │ │ ├── zip-3.0-pic.patch │ │ └── zip-3.0-zipnote-freeze.patch │ ├── metadata.xml │ └── zip-3.0-r7.ebuild ├── zopfli │ ├── Manifest │ ├── files │ │ └── zopfli-1.0.3-cmake4.patch │ ├── metadata.xml │ └── zopfli-1.0.3.ebuild └── zstd │ ├── Manifest │ ├── files │ ├── zstd-1.5.4-no-find-valgrind.patch │ └── zstd-1.5.7-move-pragma-before-static.patch │ ├── metadata.xml │ └── zstd-1.5.7-r1.ebuild ├── app-benchmarks ├── mixbench │ ├── Manifest │ ├── files │ │ ├── mixbench-0.04-hip-architectures.patch │ │ ├── mixbench-0.04-hip-cmake-module-path.patch │ │ └── mixbench-9999-hip-cmake-module-path.patch │ ├── metadata.xml │ └── mixbench-9999.ebuild ├── opencl-benchmark │ ├── Manifest │ ├── files │ │ └── opencl-benchmark-1.3-disable-eager-test.patch │ ├── metadata.xml │ └── opencl-benchmark-1.3.ebuild └── transferbench │ ├── Manifest │ ├── metadata.xml │ ├── transferbench-6.4.4.ebuild │ └── transferbench-7.0.2.ebuild ├── app-crypt ├── argon2 │ ├── Manifest │ ├── argon2-20190702-r1.ebuild │ └── metadata.xml ├── gcr │ ├── Manifest │ ├── files │ │ ├── 3.38.0-optional-vapi.patch │ │ └── 3.41.1-implicit-func-decl.patch │ ├── gcr-3.41.2.ebuild │ ├── gcr-4.1.0.ebuild │ ├── gcr-4.2.1.ebuild │ ├── gcr-4.3.0.ebuild │ └── metadata.xml ├── hashcat │ ├── Manifest │ ├── hashcat-7.1.2.ebuild │ └── metadata.xml ├── hashtopolis-python-agent │ ├── Manifest │ ├── hashtopolis-python-agent-0.7.1.ebuild │ └── metadata.xml ├── hashtopolis │ ├── Manifest │ ├── files │ │ └── permissions │ ├── hashtopolis-0.14.2.ebuild │ └── metadata.xml ├── libzc │ ├── Manifest │ ├── libzc-0.4.1.ebuild │ └── metadata.xml └── webhashcat │ ├── Manifest │ ├── metadata.xml │ └── webhashcat-9999.ebuild ├── app-editors ├── leafpad │ ├── Manifest │ ├── files │ │ ├── leafpad-0.8.18.1-fdo.patch │ │ ├── leafpad-0.8.18.1-format-security.patch │ │ └── leafpad-0.8.18.1-truncate.patch │ ├── leafpad-0.8.18.1-r1.ebuild │ └── metadata.xml ├── mousepad │ ├── Manifest │ ├── metadata.xml │ └── mousepad-0.6.5-r2.ebuild ├── nano-ycmd │ ├── Manifest │ ├── files │ │ ├── nano-ycmd-9999-3b23184-use-external-gnulib-d9083a4.patch │ │ ├── nano-ycmd-9999-53b149a-rename-as-ynano.patch │ │ ├── nano-ycmd-9999-5921964-rename-as-ynano.patch │ │ └── nano-ycmd-9999-5d8a094-rename-as-ynano.patch │ ├── metadata.xml │ └── nano-ycmd-9999.ebuild └── nano │ ├── Manifest │ ├── files │ └── gentoo.nanorc-r1 │ ├── metadata.xml │ ├── nano-8.5.ebuild │ └── nano-8.6.ebuild ├── app-emacs └── emacs-ycmd │ ├── Manifest │ ├── emacs-ycmd-1.3_p20201101.ebuild │ ├── files │ ├── 50emacs-ycmd-gentoo.el │ ├── builtin-completion.frag │ ├── company-mode.frag │ ├── eldoc.frag │ ├── emacs-ycmd-1.3_p20191206-support-core-version-45.patch │ ├── flycheck.frag │ └── next-error.frag │ ├── maintainer_notes │ └── metadata.xml ├── app-emulation └── faudio │ ├── Manifest │ └── faudio-22.09.11.ebuild ├── app-eselect └── eselect-typescript │ ├── Manifest │ ├── eselect-typescript-20210620.ebuild │ ├── files │ └── typescript-20210620.eselect │ └── metadata.xml ├── app-misc ├── LocalAI │ ├── LocalAI-3.6.0.ebuild │ ├── Manifest │ ├── files │ │ ├── LocalAI-2.28.0-offline-install.patch │ │ ├── LocalAI-3.6.0-offline-install.patch │ │ ├── local-ai-start-server │ │ ├── local-ai.conf │ │ ├── local-ai.openrc │ │ └── local-ai.systemd │ └── metadata.xml ├── alpaca │ ├── Manifest │ ├── alpaca-7.0.1.ebuild │ └── metadata.xml ├── amica │ ├── Manifest │ ├── amica-0.2.1_p20250723.ebuild │ ├── convert-cargo-lock.sh │ ├── files │ │ ├── 0.2.1_p20250723 │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── amica-0.2.1_p20241022-coqui-local.patch │ │ ├── amica-0.2.1_p20241022-debug.patch │ │ ├── amica-0.2.1_p20241022-ollama.patch │ │ ├── amica-0.2.1_p20250204-array-type-check.patch │ │ ├── sharp-0.34.2-debug.patch │ │ ├── sharp-0.34.3-format-fixes.patch │ │ └── sharp-0.34.3-static-libs.patch │ └── metadata.xml ├── elfx86exts │ ├── Manifest │ ├── convert-cargo-lock.sh │ ├── elfx86exts-0.6.2.ebuild │ ├── files │ │ └── 0.6.2 │ │ │ ├── Cargo.lock │ │ │ └── Cargo.toml │ └── metadata.xml ├── jq │ ├── Manifest │ ├── files │ │ ├── jq-1.6-r3-never-bundle-oniguruma.patch │ │ └── jq-1.7.1-runpath.patch │ ├── jq-1.8.1.ebuild │ └── metadata.xml ├── june │ ├── Manifest │ ├── files │ │ └── june-0.0.1-model-environment-variable.patch │ ├── june-0.0.1.ebuild │ ├── june-9999.ebuild │ └── metadata.xml ├── liquidctl │ ├── Manifest │ ├── liquidctl-1.14.0.ebuild │ └── metadata.xml ├── llocal │ ├── Manifest │ ├── files │ │ └── 1.0.0_beta11 │ │ │ ├── package-lock.json │ │ │ └── package.json │ ├── llocal-1.0.0_beta11.ebuild │ └── metadata.xml ├── ollama │ ├── Manifest │ ├── files │ │ ├── ollama │ │ ├── ollama-0.11.4-custom-cpu-features.patch │ │ ├── ollama-0.12.6-custom-cpu-features.patch │ │ ├── ollama-0.13.0-cmd-changes.patch │ │ ├── ollama-0.13.0-hardcoded-paths.patch │ │ ├── ollama-0.5.11-sse42.patch │ │ ├── ollama-muxer │ │ └── ollama.service │ ├── metadata.xml │ └── ollama-0.13.0.ebuild ├── screen │ ├── Manifest │ ├── files │ │ ├── screen-4.3.0-no-utempter.patch │ │ ├── screen-4.9.1-add-missing-pty.h-header.patch │ │ ├── screen-4.9.1-utmp-exit.patch │ │ ├── screen-5.0.0-utmp-musl.patch │ │ ├── screen-5.0.1-man-screen.patch │ │ ├── screen-9999-no-utempter.patch │ │ └── screenrc │ ├── metadata.xml │ └── screen-5.0.1.ebuild └── ssl-cert-snakeoil │ ├── Manifest │ ├── metadata.xml │ └── ssl-cert-snakeoil-9999.ebuild ├── app-shells ├── emoji-cli │ ├── Manifest │ ├── emoji-cli-9999.ebuild │ └── metadata.xml ├── emojify │ ├── Manifest │ ├── emojify-2.2.0.ebuild │ └── metadata.xml ├── loz │ ├── Manifest │ ├── files │ │ └── 0.3.1_p20240322 │ │ │ ├── package-lock.json │ │ │ └── package.json │ ├── loz-0.3.1_p20240322.ebuild │ └── metadata.xml ├── ohmyzsh │ ├── Manifest │ ├── files │ │ └── oh-my-zsh-emoji-plugin-update-for-emoji-updater-perl-script-for-international-support-and-emoji-13_x-support.patch │ ├── metadata.xml │ └── ohmyzsh-99999999.ebuild ├── percol │ ├── Manifest │ ├── metadata.xml │ └── percol-9999.ebuild └── shell-gpt │ ├── Manifest │ ├── metadata.xml │ └── shell-gpt-1.4.4.ebuild ├── app-text ├── aspell │ ├── Manifest │ ├── aspell-0.60.8.1.ebuild │ ├── files │ │ ├── aspell-0.60.5-nls.patch │ │ ├── aspell-0.60.5-solaris.patch │ │ ├── aspell-0.60.6-darwin-bundles.patch │ │ ├── aspell-0.60.6.1-clang.patch │ │ ├── aspell-0.60.6.1-unicode.patch │ │ └── aspell-0.60.8.1-gcc.patch │ └── metadata.xml ├── enchant │ ├── Manifest │ ├── enchant-2.5.0.ebuild │ ├── enchant-2.6.9.ebuild │ ├── enchant-2.7.3.ebuild │ └── metadata.xml ├── hunspell │ ├── Manifest │ ├── files │ │ ├── hunspell-1.7.0-CVE-2019-16707.patch │ │ ├── hunspell-1.7.0-renameexes.patch │ │ └── hunspell-1.7.0-tinfo.patch │ ├── hunspell-1.7.2.ebuild │ └── metadata.xml ├── pdfchain │ ├── Manifest │ ├── metadata.xml │ └── pdfchain-0.4.4.2.ebuild └── poppler │ ├── Manifest │ ├── files │ ├── poppler-0.57.0-disable-internal-jpx.patch │ ├── poppler-21.09.0-respect-cflags.patch │ └── poppler-23.10.0-qt-deps.patch │ ├── metadata.xml │ └── poppler-25.09.1.ebuild ├── autobump-patch-versions.sh ├── check-ebuild-update ├── check-ebuild-update-scrapers ├── dev-build ├── bazel │ ├── Manifest │ ├── bazel-3.7.2.ebuild │ ├── bazel-5.1.1.ebuild │ ├── bazel-5.3.2.ebuild │ ├── bazel-5.4.1.ebuild │ ├── bazel-6.1.2.ebuild │ ├── bazel-6.4.0.ebuild │ ├── bazel-6.5.0.ebuild │ ├── bazel-7.1.2.ebuild │ ├── bazel-7.2.1.ebuild │ ├── bazel-7.4.1.ebuild │ ├── bazel-8.4.2.ebuild │ ├── files │ │ ├── bazel-3.2.0-include-limits-for-gcc-11.patch │ │ ├── bazel-3.7.2-musl-temp-failure-retry.patch │ │ └── bazel-4.2.2-absl_numeric_limits.patch │ └── metadata.xml └── rocm-cmake │ ├── Manifest │ ├── metadata.xml │ ├── rocm-cmake-6.4.4.ebuild │ └── rocm-cmake-7.0.2.ebuild ├── dev-cpp ├── FunctionalPlus │ ├── FunctionalPlus-0.2.25.ebuild │ ├── Manifest │ └── metadata.xml ├── abseil-cpp │ ├── Manifest │ ├── abseil-cpp-20200225.3.ebuild │ ├── abseil-cpp-20211102.0.ebuild │ ├── abseil-cpp-20220623.2.ebuild │ ├── abseil-cpp-20230125.4.ebuild │ ├── abseil-cpp-20240116.3.ebuild │ ├── abseil-cpp-20240722.1.ebuild │ ├── abseil-cpp-20250512.1.ebuild │ ├── abseil-cpp-20250814.0.ebuild │ ├── files │ │ ├── abseil-cpp-20200225.3-54fac21-backport.patch │ │ ├── abseil-cpp-20200225.3-crypto-symbol.patch │ │ ├── abseil-cpp-20200225.3-gcc-12-fix.patch │ │ ├── abseil-cpp-20200225.3-gcc-13-fix.patch │ │ ├── abseil-cpp-20200225.3-numeric_limits-fix.patch │ │ ├── abseil-cpp-20200923-arm_no_crypto.patch │ │ ├── abseil-cpp-20210324.1-glibc-2.34.patch │ │ ├── abseil-cpp-20211102.0-gcc-13-2.patch │ │ ├── abseil-cpp-20220623.2-54fac21-backport.patch │ │ ├── abseil-cpp-20250512.1-crypto-symbol.patch │ │ └── include_limits.patch │ └── metadata.xml ├── antlr4 │ ├── Manifest │ ├── antlr4-4.13.2.ebuild │ └── metadata.xml ├── benchmark │ ├── Manifest │ ├── benchmark-1.8.4.ebuild │ ├── benchmark-1.9.2.ebuild │ ├── benchmark-1.9.3.ebuild │ ├── benchmark-1.9.4.ebuild │ ├── files │ │ ├── benchmark-1.9.0-fix-documentation-installation.patch │ │ ├── benchmark-1.9.1-clock-detection-portability.patch │ │ └── benchmark-1.9.1-fix-pfm-cmake.patch │ └── metadata.xml ├── blaze │ ├── Manifest │ ├── blaze-3.8.2.ebuild │ └── metadata.xml ├── frugally-deep │ ├── Manifest │ ├── frugally-deep-0.15.31.ebuild │ ├── frugally-deep-0.16.0.ebuild │ └── metadata.xml ├── gflags │ ├── Manifest │ ├── gflags-2.2.2-r1.ebuild │ ├── gflags-9999.ebuild │ └── metadata.xml ├── glaze │ ├── Manifest │ ├── files │ │ ├── glaze-5.2.1-unbundle-test-deps.patch │ │ └── glaze-5.5.5-unbundle-test-deps.patch │ ├── glaze-5.7.2.ebuild │ └── metadata.xml ├── glog │ ├── Manifest │ ├── files │ │ ├── glog-0.5.0-IsGoogleLoggingInitialized_public.patch │ │ ├── glog-0.5.0-vmodule_levels_changeability.patch │ │ ├── glog-0.6.0-cmake-4.patch │ │ ├── glog-0.6.0-disable-symbolize-test.patch │ │ └── glog-0.6.0-try-fix-logging-test.patch │ ├── glog-0.5.0.ebuild │ ├── glog-0.6.0-r1.ebuild │ ├── glog-0.6.0.ebuild │ ├── glog-0.7.1.ebuild │ └── metadata.xml ├── gtest │ ├── Manifest │ ├── files │ │ ├── gtest-1.15.2-fix-gtest_help_test.patch │ │ └── gtest-find-re2-with-pkgconfig.patch │ ├── gtest-1.14.0-r2.ebuild │ ├── gtest-1.17.0.ebuild │ ├── gtest-9999.ebuild │ └── metadata.xml ├── highway │ ├── Manifest │ ├── highway-1.2.0.ebuild │ ├── highway-1.3.0.ebuild │ └── metadata.xml ├── nlohmann_json │ ├── Manifest │ ├── files │ │ └── nlohmann_json-3.12.0-fallback-missing-char8_t.patch │ ├── metadata.xml │ ├── nlohmann_json-3.11.3.ebuild │ └── nlohmann_json-3.12.0-r1.ebuild ├── opentelemetry-cpp │ ├── Manifest │ ├── files │ │ ├── opentelemetry-cpp-1.3.0-tests.patch │ │ ├── opentelemetry-cpp-1.5.0-tests.patch │ │ └── opentelemetry-cpp-1.6.0-dont-install-nosend.patch │ ├── metadata.xml │ ├── opentelemetry-cpp-1.15.0.ebuild │ └── opentelemetry-cpp-1.23.0.ebuild ├── prometheus-cpp │ ├── Manifest │ ├── metadata.xml │ └── prometheus-cpp-1.2.4.ebuild ├── pystring │ ├── Manifest │ ├── metadata.xml │ └── pystring-9999.ebuild ├── selfrando │ ├── Manifest │ ├── files │ │ ├── 0001-unix-ngx_user-Apply-fix-for-really-old-bug-in-glibc-.patch │ │ ├── selfrando-fe47bc0-https-test.patch │ │ ├── selfrando-fe47bc0-nginx-1.27.1.patch │ │ ├── selfrando-fe47bc0-nginx-apply-ngx_user-fix.patch │ │ ├── selfrando-fe47bc0-nginx-fPIC.patch │ │ ├── selfrando-fe47bc0-scons-print.patch │ │ └── selfrando-fe47bc0-test-machine-path.patch │ ├── metadata.xml │ └── selfrando-9999.ebuild ├── sqlitecpp │ ├── Manifest │ ├── metadata.xml │ └── sqlitecpp-3.3.2.ebuild ├── tbb │ ├── Manifest │ ├── files │ │ ├── tbb-2020.1-makefile-debug.patch │ │ ├── tbb-2020.3-gcc13.patch │ │ ├── tbb-2021.13.0-test-atomics.patch │ │ ├── tbb-2021.7.0-pthread-eagain.patch │ │ ├── tbb-2021.8.0-gcc-13.patch │ │ └── tbb-2022.0.0_do-not-fortify-source.patch │ ├── metadata.xml │ ├── tbb-2021.12.0.ebuild │ ├── tbb-2021.13.0.ebuild │ ├── tbb-2021.7.0-r1.ebuild │ ├── tbb-2021.9.0.ebuild │ ├── tbb-2022.0.0-r1.ebuild │ └── tbb-2022.1.0.ebuild ├── tomlplusplus │ ├── Manifest │ ├── metadata.xml │ └── tomlplusplus-3.4.0.ebuild └── yaml-cpp │ ├── Manifest │ ├── files │ ├── yaml-cpp-0.7.0-cmake-paths.patch │ ├── yaml-cpp-0.7.0-gtest.patch │ ├── yaml-cpp-0.7.0-install-paths.patch │ ├── yaml-cpp-0.8.0-cmake.patch │ ├── yaml-cpp-0.8.0-cmake2.patch │ ├── yaml-cpp-0.8.0-gcc13.patch │ ├── yaml-cpp-0.8.0-gtest.patch │ └── yaml-cpp-0.8.0-include-cstdint.patch │ ├── metadata.xml │ └── yaml-cpp-0.8.0-r2.ebuild ├── dev-db ├── mariadb │ ├── Manifest │ ├── files │ │ ├── mariadb-10.6.11-gssapi.patch │ │ ├── mariadb-10.6.12-gcc-13.patch │ │ ├── mariadb-10.6.21-debug.patch │ │ ├── mariadb-11.4.7-gcc-16.patch │ │ ├── my.cnf-10.2 │ │ ├── my.cnf.distro-client │ │ └── my.cnf.distro-server │ ├── mariadb-10.11.11.ebuild │ ├── mariadb-10.6.21.ebuild │ ├── mariadb-11.4.7-r1.ebuild │ ├── mariadb-11.8.2.ebuild │ └── metadata.xml ├── mysql │ ├── Manifest │ ├── files │ │ ├── my.cnf-5.7 │ │ ├── my.cnf-8.0.distro-client │ │ ├── my.cnf-8.0.distro-server │ │ ├── my.cnf-8.4.distro-client │ │ ├── my.cnf-8.4.distro-server │ │ ├── my.cnf.distro-client │ │ ├── my.cnf.distro-server │ │ ├── mysql-8.0.36-boost-clang-fix.patch │ │ ├── mysql-8.0.37-fix-bundled-abseil.patch │ │ ├── mysql-8.0.37-fix-bundled-boost.patch │ │ └── mysql-8.0.40-fix-bundled-abseil-gcc15.patch │ ├── metadata.xml │ ├── mysql-8.0.42.ebuild │ └── mysql-8.0.43.ebuild ├── nanodbc │ ├── Manifest │ ├── files │ │ ├── nanodbc-2.11.3-boost-test.patch │ │ ├── nanodbc-2.12.4-disable-tests.patch │ │ ├── nanodbc-2.13.0-disable-tests.patch │ │ └── nanodbc-2.14.0-odbc_config-chost-prefix.patch │ ├── metadata.xml │ └── nanodbc-2.14.0.ebuild └── sqlite │ ├── Manifest │ ├── files │ ├── sqlite-3.45.1-ppc64-ptr.patch │ ├── sqlite-3.47.1-buildtclext.patch │ ├── sqlite-3.47.2-hwtime.h-Don-t-use-rdtsc-on-i486.patch │ ├── sqlite-3.49.0-icu-tests.patch │ └── sqlite-3.49.1-jimsh.patch │ ├── metadata.xml │ └── sqlite-3.50.2.ebuild ├── dev-debug └── systemtap │ ├── Manifest │ ├── files │ └── systemtap-3.1-ia64.patch │ ├── metadata.xml │ ├── systemtap-5.1-r1.ebuild │ ├── systemtap-5.2.ebuild │ └── systemtap-5.3.ebuild ├── dev-dotnet.old ├── DO_NOT_USE.txt ├── assimp-net │ ├── Manifest │ ├── assimp-net-3.3.1.ebuild │ ├── assimp-net-3.3.1_p20181002.ebuild │ └── files │ │ ├── assimpnet-3.3.1-call-interop-generator-with-mono.patch │ │ └── nuget.config ├── atitextureconverter │ ├── Manifest │ └── atitextureconverter-1.0_p20160604.ebuild ├── freeimagenet │ ├── Manifest │ ├── files │ │ ├── FreeImageNET.dll.config │ │ ├── freeimage-3.17.0-net45.patch │ │ └── freeimage-3.17.0-wrapper-marshal-fixes.patch │ └── freeimagenet-3.15.1.ebuild ├── gnome-sharp │ ├── Manifest │ ├── files │ │ └── gnome-sharp-2.24.4-unexpected-symbol-fix.patch │ └── gnome-sharp-2.24.4.ebuild ├── gwen-dotnet │ ├── Manifest │ ├── files │ │ ├── gwen-dotnet-9999.20140316-no-build-samples.patch │ │ ├── gwen-dotnet-9999.20140316-refs.patch │ │ ├── gwen-dotnet-9999.20140316-sfml-compat-1.patch │ │ ├── gwen-dotnet-9999.20140316-sfml-compat-2.patch │ │ └── gwen-dotnet-9999.20140316-sfml-system.patch │ └── gwen-dotnet-1.0.0.0_p20140316-r1.ebuild ├── libgdiplus │ ├── Manifest │ ├── libgdiplus-6.0.5.ebuild │ └── metadata.xml ├── libgit2sharp │ ├── Manifest │ ├── files │ │ ├── csproj-remove-nuget-targets-check.patch │ │ ├── libgit2sharp-0.22-monodevelop.patch │ │ ├── libgit2sharp-0.26-net46-references.patch │ │ ├── libgit2sharp-0.26-sln.patch │ │ ├── libgit2sharp-0.26.1-sln.patch │ │ ├── netfx.props │ │ ├── nuspec-file-list.patch │ │ ├── packages-config-remove-xunit.patch │ │ ├── remove-NativeBinaries-package-dependency-monodevelop.patch │ │ ├── remove-NativeBinaries-package-dependency.patch │ │ └── sln.patch │ └── libgit2sharp-0.26.1.ebuild ├── mono-addins │ ├── Manifest │ ├── files │ │ └── gmcs.patch │ ├── metadata.xml │ ├── mono-addins-1.0-r1.ebuild │ └── mono-addins-1.3.ebuild ├── ndesk-options │ ├── Manifest │ └── ndesk-options-0.2.1.ebuild ├── nvorbis │ ├── Manifest │ ├── files │ │ ├── nvorbis-9999.20160922-disable-testapp.patch │ │ ├── nvorbis-9999.20160922-nuget.patch │ │ ├── nvorbis-9999.20160922-opentksupport.patch │ │ ├── nvorbis-9999.20160922-testapp.patch │ │ ├── nvorbis-9999.20160922-unittests-ref.patch │ │ └── nvorbis-9999.20160922-unittests.patch │ └── nvorbis-0.8.4.0_p20160922.ebuild ├── opentk │ ├── Manifest │ ├── files │ │ └── opentk-20140723-opentk-expose-joystick-guid.patch │ └── opentk-1.1.0.0_p20140723.ebuild ├── pvrtexlibnet │ ├── Manifest │ ├── files │ │ └── PVRTexLibNET.dll.config │ └── pvrtexlibnet-9999.20160125-r1.ebuild ├── sharpfont │ ├── Manifest │ └── sharpfont-4.0.1.ebuild └── xwt │ ├── Manifest │ ├── files │ ├── xwt-9999.20171206-AccessibleBackend-suppress-value-assigned-never-used.patch │ ├── xwt-9999.20171206-AccessibleBackend-val-never-used.patch │ ├── xwt-9999.20171206-disable-tests.patch │ └── xwt-9999.20171206-linux-only-projects.patch │ └── xwt-0.1.0.0_pre_p20171206.ebuild ├── dev-dotnet ├── BulletSharpPInvoke │ ├── BulletSharpPInvoke-0.12.0.0_p9999.ebuild │ ├── Manifest │ └── files │ │ └── BulletSharpPInvoke-0.12_p9999-bullet-versioning.patch ├── GtkSharp │ ├── GtkSharp-3.24.24_p9999.ebuild │ ├── Manifest │ └── metadata.xml ├── aforgedotnet │ ├── Manifest │ ├── aforgedotnet-2.2.5_p9999.ebuild │ ├── files │ │ ├── AForge.Video.Kinect.dll.config │ │ └── AForge.Video.Ximea.dll.config │ └── metadata.xml ├── dotdevelop │ ├── Manifest │ ├── dotdevelop-9999.ebuild │ └── metadata.xml ├── faudio │ ├── Manifest │ ├── faudio-22.09.01.ebuild │ └── metadata.xml ├── fna │ ├── Manifest │ ├── files │ │ └── fna-22.09.01-assembly-references.patch │ ├── fna-22.09.01.ebuild │ └── metadata.xml ├── fna3d │ ├── Manifest │ ├── files │ │ └── fna3d-22.09-mojoshader-external.patch │ ├── fna3d-22.09.ebuild │ └── metadata.xml ├── fsharp-mono-bin │ ├── Manifest │ ├── fsharp-mono-bin-5.0.0.0_p15.ebuild │ └── metadata.xml ├── gtk-sharp │ ├── Manifest │ ├── gtk-sharp-2.12.45.ebuild │ ├── gtk-sharp-2.99.4_p9999.ebuild │ └── metadata.xml ├── libfreenect │ ├── Manifest │ ├── files │ │ └── freenectdotnet.dll.config │ ├── libfreenect-9999.ebuild │ └── metadata.xml ├── mono-msbuild-bin │ ├── Manifest │ ├── metadata.xml │ └── mono-msbuild-bin-16.10.1.ebuild ├── monodevelop-bin │ ├── Manifest │ ├── metadata.xml │ └── monodevelop-bin-7.8.4.1.ebuild ├── monodevelop-database-bin │ ├── Manifest │ ├── metadata.xml │ └── monodevelop-database-bin-5.10.0.871.ebuild ├── monodevelop-nunit-bin │ ├── Manifest │ ├── metadata.xml │ └── monodevelop-nunit-bin-7.8.4.1.ebuild ├── monodevelop-versioncontrol-bin │ ├── Manifest │ ├── metadata.xml │ └── monodevelop-versioncontrol-bin-7.8.4.1.ebuild ├── monogame-extended │ ├── Manifest │ ├── metadata.xml │ └── monogame-extended-9999.ebuild ├── monogame │ ├── Manifest │ ├── metadata.xml │ └── monogame-3.8.1h.ebuild ├── sdl2-cs │ ├── Manifest │ ├── files │ │ └── sdl2-cs-9999-public-functions.patch │ ├── metadata.xml │ └── sdl2-cs-9999.ebuild ├── sfmldotnet │ ├── Manifest │ ├── metadata.xml │ └── sfmldotnet-2.5.1.ebuild ├── sharpnav │ ├── Manifest │ ├── files │ │ └── sharpnav-1.0.0_alpha2_p9999-deps-update-v3.patch │ └── sharpnav-1.0.0_alpha2_p9999.ebuild ├── theorafile │ ├── Manifest │ ├── metadata.xml │ └── theorafile-9999.ebuild ├── tiledsharp │ ├── Manifest │ ├── files │ │ ├── tiledsharp-0.15.0.0_p9999-linux-tiledsharp-csproj.patch │ │ └── tiledsharp-0.15.0.0_p9999-set-output-path.patch │ ├── metadata.xml │ └── tiledsharp-0.15.0.0_p9999.ebuild └── velcrophysics │ ├── Manifest │ └── velcrophysics-9999.ebuild ├── dev-games ├── enigma │ ├── Manifest │ ├── enigma-9999.ebuild │ ├── files │ │ ├── enigma-9999-57d6edb-enigma-multislot-flags.patch │ │ ├── enigma-9999-change-sdl2-audio-linking.patch │ │ └── enigma-9999-fix-missing-workdir-references.patch │ └── metadata.xml ├── godot-cpp │ ├── Manifest │ ├── files │ │ ├── godot-cpp-3.6.20240724-07153d4-env-changes.patch │ │ └── godot-cpp-4.5-env-changes.patch │ ├── godot-cpp-3.6.20240724.ebuild │ ├── godot-cpp-4.3.ebuild │ ├── godot-cpp-4.4.1.ebuild │ ├── godot-cpp-4.5.ebuild │ └── metadata.xml ├── godot-demo-projects │ ├── Manifest │ ├── godot-demo-projects-4.3.20250307.ebuild │ ├── godot-demo-projects-4.4.20250630.ebuild │ ├── godot-demo-projects-4.5.20251003.ebuild │ ├── godot-demo-projects-4.5.99999999.ebuild │ └── metadata.xml ├── godot-editor │ ├── Manifest │ ├── files │ │ ├── godot-3.5.3-sanitizers.patch │ │ ├── godot-3.6-sanitizers.patch │ │ ├── godot-3.6.1-ccache.patch │ │ ├── godot-3.6.1-custom-optimize.patch │ │ ├── godot-4.3-ccache.patch │ │ ├── godot-4.3-optionalize-x86-flags.patch │ │ ├── godot-4.5-optionalize-x86-flags.patch │ │ ├── godot-4.5-sanitizers.patch │ │ └── godot-4.5-set-ccache-dir.patch │ ├── godot-editor-3.6.2.ebuild │ ├── godot-editor-4.3.ebuild │ ├── godot-editor-4.4.1.ebuild │ ├── godot-editor-4.5.1.ebuild │ └── metadata.xml ├── godot-export-templates-bin │ ├── Manifest │ ├── godot-export-templates-bin-3.6.2.ebuild │ ├── godot-export-templates-bin-4.3.ebuild │ ├── godot-export-templates-bin-4.4.1.ebuild │ ├── godot-export-templates-bin-4.5.1.ebuild │ └── metadata.xml ├── godot-meta │ ├── Manifest │ ├── godot-meta-3.6.2.ebuild │ ├── godot-meta-4.3.ebuild │ ├── godot-meta-4.5.1.ebuild │ └── metadata.xml ├── lateralgm │ ├── Manifest │ ├── files │ │ ├── lateralgm │ │ ├── lateralgm-1.8.227-cast-GMXFileReader.patch │ │ ├── lgmplugin-1.8.227r3-disable-compiler-check.patch │ │ ├── lgmplugin-1.8.227r3-use-native-load.patch │ │ └── libmaker │ ├── lateralgm-1.8.234-r3.ebuild │ └── metadata.xml ├── radialgm │ ├── Manifest │ ├── files │ │ ├── RadialGM │ │ └── radialgm-9999-external-enigma.patch │ ├── metadata.xml │ └── radialgm-9999.ebuild └── recastnavigation │ ├── Manifest │ ├── autobump │ ├── description │ ├── get_latest_patch_version.sh │ └── get_latest_version.sh │ ├── metadata.xml │ └── recastnavigation-1.6.0.ebuild ├── dev-go ├── protobuf-go │ ├── Manifest │ ├── files │ │ └── protobuf-go-1.32.0-go-mod-restyle.patch │ ├── metadata.xml │ ├── protobuf-go-1.27.1.ebuild │ ├── protobuf-go-1.36.10.ebuild │ └── protobuf-go-1.36.5.ebuild └── protoc-gen-go-grpc │ ├── Manifest │ ├── metadata.xml │ ├── protoc-gen-go-grpc-1.3.0.ebuild │ └── protoc-gen-go-grpc-1.5.1.ebuild ├── dev-java ├── gradle-bin │ ├── Manifest │ ├── gradle-bin-7.6.ebuild │ ├── gradle-bin-8.8.ebuild │ └── metadata.xml └── grpc-java │ ├── Manifest │ ├── files │ ├── grpc-java-1.51.1-allow-sandbox-in-artifact-check.patch │ └── grpc-java-1.54.2-allow-sandbox-so.patch │ ├── grpc-java-1.30.2.ebuild │ ├── grpc-java-1.51.3.ebuild │ └── metadata.xml ├── dev-lang ├── classic-flang │ ├── Manifest │ ├── classic-flang-20221103.ebuild │ └── metadata.xml ├── gambas │ ├── Manifest │ ├── compare-point-releases.sh │ ├── gambas-3.20.4.ebuild │ ├── maintainer_notes │ └── metadata.xml ├── halide │ ├── Manifest │ ├── files │ │ ├── halide-19.0.0-fetchcontent-always-find_package.patch │ │ └── halide-19.0.0-install-paths.patch │ ├── halide-19.0.0.ebuild │ └── metadata.xml ├── ispc │ ├── Manifest │ ├── files │ │ ├── ispc-1.18.1-curses-cmake.patch │ │ ├── ispc-1.19.0-llvm.patch │ │ ├── ispc-1.20.0-llvm.patch │ │ ├── ispc-1.22.0-curses-cmake.patch │ │ ├── ispc-1.28.2-llvm-v2.patch │ │ └── ispc-1.28.2-llvm.patch │ ├── ispc-1.28.2.ebuild │ └── metadata.xml ├── llvm-flang │ ├── Manifest │ ├── llvm-flang-18.1.8.ebuild │ ├── llvm-flang-19.1.7.ebuild │ ├── llvm-flang-20.1.8.ebuild │ ├── llvm-flang-21.1.5.ebuild │ └── metadata.xml ├── lua-extra-headers │ ├── Manifest │ ├── lua-extra-headers-5.1.5.ebuild │ ├── lua-extra-headers-5.2.4.ebuild │ └── lua-extra-headers-5.3.6.ebuild ├── lua │ ├── Manifest │ ├── files │ │ ├── 5.1 │ │ │ ├── 0001-extern_C.patch │ │ │ └── 0002-Fix-stack-overflow-in-vararg-functions.patch │ │ ├── lua-5.1.4-test.patch │ │ └── lua-5.4.4-lparser-overread.patch │ ├── lua-5.1.5-r200.ebuild │ ├── lua-5.3.6-r102.ebuild │ ├── lua-5.4.6.ebuild │ └── metadata.xml ├── mono │ ├── Manifest │ ├── files │ │ ├── jemalloc-5.3.0-gentoo-fixups.patch │ │ ├── mono-5.12-try-catch.patch │ │ ├── mono-6.12.0.122-acceptance-tests-disable-reset.patch │ │ ├── mono-6.12.0.122-disable-automagic-ccache.patch │ │ ├── mono-6.12.0.182-disable-test-mono-callspec.patch │ │ ├── mono-6.12.0.182-mono-benchmark-missing-main.patch │ │ ├── mono-6.12.0.199-configure-c99.patch │ │ └── mono-6.14.1-disable-automagic-ccache.patch │ ├── metadata.xml │ └── mono-6.14.1.ebuild ├── perl │ ├── Manifest │ ├── files │ │ ├── perl-5.34.0-crossfit.patch │ │ ├── perl-5.40.0-alignment.patch │ │ └── perl-5.40.0-fix-compilation-in-eprefix-bug-939014.patch │ ├── metadata.xml │ ├── perl-5.40.2.ebuild │ └── perl-5.42.0.ebuild ├── php │ ├── Manifest │ ├── files │ │ ├── 20php5-envd │ │ ├── php-8.2.20-implicit-printf.patch │ │ ├── php-8.2.23-fix-ub.patch │ │ ├── php-8.2.8-openssl-tests.patch │ │ ├── php-8.3.9-gd-cachevars.patch │ │ ├── php-bug75457-pcre2-backport.patch │ │ ├── php-capstone-optional.patch │ │ ├── php-fpm_at-simple.service │ │ ├── php-fpm_at.service │ │ └── php-iodbc-header-location.patch │ ├── metadata.xml │ ├── php-8.2.29.ebuild │ ├── php-8.3.27.ebuild │ └── php-8.4.14.ebuild ├── python-exec │ ├── Manifest │ ├── metadata.xml │ └── python-exec-2.4.10.ebuild ├── rocm-flang │ ├── Manifest │ ├── files │ │ ├── rocm-flang-5.1.3-rt-flang2-no-rule-fix.patch │ │ └── rocm-flang-5.6.0-rt-flang2-no-rule-fix.patch │ ├── metadata.xml │ ├── rocm-flang-6.4.4.ebuild │ └── rocm-flang-7.0.2.ebuild ├── spidermonkey │ ├── Manifest │ ├── files │ │ ├── spidermonkey-115-known-test-failures.txt │ │ ├── spidermonkey-128-known-test-failures.txt │ │ └── spidermonkey-140-known-test-failures.txt │ ├── metadata.xml │ └── spidermonkey-128.14.0.ebuild ├── swig │ ├── Manifest │ ├── files │ │ └── swig-4.1.1-ccache-configure-clang16.patch │ ├── metadata.xml │ ├── swig-4.1.1-r1.ebuild │ ├── swig-4.2.1.ebuild │ └── swig-4.3.1.ebuild └── typescript │ ├── Manifest │ ├── files │ ├── 5.0.4 │ │ ├── package-lock.json │ │ └── package.json │ ├── 5.5.4 │ │ ├── package-lock.json │ │ └── package.json │ ├── 5.7.3 │ │ ├── package-lock.json │ │ └── package.json │ └── 5.8.3 │ │ ├── package-lock.json │ │ └── package.json │ ├── metadata.xml │ ├── typescript-5.0.4.ebuild │ ├── typescript-5.5.4.ebuild │ ├── typescript-5.7.3.ebuild │ └── typescript-5.8.3.ebuild ├── dev-libs ├── Orochi │ ├── Manifest │ ├── Orochi-3.00-r60404.ebuild │ ├── Orochi-3.00-r70002.ebuild │ └── metadata.xml ├── ROCdbgapi │ ├── Manifest │ ├── ROCdbgapi-6.4.4.ebuild │ ├── ROCdbgapi-7.0.2.ebuild │ └── metadata.xml ├── amdgpu-pro-opencl-legacy │ ├── Manifest │ ├── amdgpu-pro-opencl-legacy-5.7.1.ebuild │ └── metadata.xml ├── apache-arrow │ ├── Manifest │ ├── apache-arrow-21.0.0.ebuild │ ├── apache-arrow-22.0.0.ebuild │ └── metadata.xml ├── blake3 │ ├── Manifest │ ├── blake3-1.8.2.ebuild │ ├── files │ │ └── blake3-1.5.3-backport-pr405.patch │ └── metadata.xml ├── boost │ ├── Manifest │ ├── boost-1.88.0-r1.ebuild │ ├── boost-1.89.0.ebuild │ ├── files │ │ ├── boost-1.88.0-algorithm-reverse_copy.patch │ │ ├── boost-1.88.0-beast-network-sandbox.patch │ │ ├── boost-1.88.0-bind-no-Werror.patch │ │ ├── boost-1.88.0-build-auto_index-tool.patch │ │ ├── boost-1.88.0-disable_icu_rpath.patch │ │ ├── boost-1.88.0-mysql-cstdint.patch │ │ ├── boost-1.88.0-process-error-alpha.patch │ │ ├── boost-1.88.0-range-any_iterator.patch │ │ ├── boost-1.88.0-system-crashing-test.patch │ │ ├── boost-1.88.0-yap-cstdint.patch │ │ ├── boost-1.89.0-graph-remove-system-dependency.patch │ │ ├── boost-1.89.0-predef-include-path.patch │ │ ├── boost-1.89.0-unordered-no-tbb.patch │ │ └── unit-test-main.cpp │ └── metadata.xml ├── botan │ ├── Manifest │ ├── botan-2.19.5.ebuild │ ├── botan-3.8.1.ebuild │ ├── botan-3.9.0.ebuild │ ├── files │ │ ├── botan-2.19.5-boost-1.87.patch │ │ ├── botan-2.19.5-cloudflare.patch │ │ ├── botan-2.19.5-include.patch │ │ └── botan-2.19.5-no-distutils.patch │ └── metadata.xml ├── cJSON │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── cJSON-1.7.18.ebuild │ ├── files │ │ └── 1.7.18-cmake4.patch │ └── metadata.xml ├── castxml │ ├── Manifest │ ├── castxml-0.6.13.ebuild │ └── metadata.xml ├── crc32c │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── crc32c-1.1.2-r2.ebuild │ ├── files │ │ └── crc32c-1.1.1-system-testdeps.patch │ └── metadata.xml ├── dlpack │ ├── Manifest │ ├── dlpack-0.6.ebuild │ ├── dlpack-1.0.ebuild │ └── metadata.xml ├── double-conversion │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── double-conversion-3.3.1.ebuild │ └── metadata.xml ├── expat │ ├── Manifest │ ├── expat-2.7.3.ebuild │ └── metadata.xml ├── flatbuffers │ ├── Manifest │ ├── flatbuffers-25.2.10.ebuild │ ├── flatbuffers-25.9.23.ebuild │ └── metadata.xml ├── gdrcopy │ ├── Manifest │ ├── gdrcopy-2.4.1.ebuild │ └── metadata.xml ├── glib │ ├── Manifest │ ├── files │ │ ├── glib-2.64.1-mark-gdbus-server-auth-test-flaky.patch │ │ └── glib-2.84.4-libpcre2-10.47.patch │ ├── glib-2.82.5.ebuild │ ├── glib-2.84.4.ebuild │ └── metadata.xml ├── gmp │ ├── Manifest │ ├── files │ │ ├── gmp-6.1.0-noexecstack-detect.patch │ │ ├── gmp-6.1.2-gcc-apple-4.0.1.patch │ │ └── gmp-6.2.1-no-zarch.patch │ ├── gmp-6.3.0-r1.ebuild │ └── metadata.xml ├── hardened_malloc │ ├── Manifest │ ├── hardened_malloc-13.ebuild │ └── metadata.xml ├── hip-cpu │ ├── Manifest │ ├── hip-cpu-0.1.4142_p20240319.ebuild │ └── metadata.xml ├── hipother │ ├── Manifest │ ├── hipother-6.4.4.ebuild │ ├── hipother-7.0.2.ebuild │ └── metadata.xml ├── hsa-amd-aqlprofile │ ├── Manifest │ ├── hsa-amd-aqlprofile-6.4.4.ebuild │ ├── hsa-amd-aqlprofile-7.0.2.ebuild │ └── metadata.xml ├── hyphen │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── hyphen-2.8.8-r2.ebuild │ └── metadata.xml ├── hyprgraphics │ ├── Manifest │ ├── hyprgraphics-0.2.0.ebuild │ └── metadata.xml ├── hyprland-protocols │ ├── Manifest │ ├── hyprland-protocols-0.7.0.ebuild │ └── metadata.xml ├── hyprlang │ ├── Manifest │ ├── hyprlang-0.6.4.ebuild │ └── metadata.xml ├── icu │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── files │ │ ├── extra │ │ │ ├── icu-69.1-extra-so-flags.patch │ │ │ ├── icu-69.1-pie.patch │ │ │ └── icu-69.1-static-build.patch │ │ ├── icu-64.2-darwin.patch │ │ ├── icu-65.1-remove-bashisms.patch │ │ ├── icu-68.1-nonunicode.patch │ │ ├── icu-75.1-python3_13-tests.patch │ │ ├── icu-76.1-remove-bashisms.patch │ │ ├── icu-76.1-undo-pkgconfig-change-for-now.patch │ │ └── icu-77.1-invalid-malloc.patch │ ├── icu-77.1.ebuild │ └── metadata.xml ├── imath │ ├── Manifest │ ├── files │ │ ├── imath-3.1.11-fix_cmake_module_export.patch │ │ └── imath-3.1.11-use-correct-boost_python_version.patch │ ├── imath-3.1.12.ebuild │ └── metadata.xml ├── jemalloc-usd │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── files │ │ ├── jemalloc-5.2.0-gentoo-fixups.patch │ │ ├── jemalloc-5.2.1-mtls-dialect-gnu2-7036e64.patch │ │ └── jemalloc-5.3.0-gentoo-fixups.patch │ ├── jemalloc-usd-5.3.0.ebuild │ └── metadata.xml ├── jemalloc │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── files │ │ └── jemalloc-5.3.0-gentoo-fixups.patch │ ├── jemalloc-5.3.0.ebuild │ └── metadata.xml ├── leveldb │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── files │ │ ├── leveldb-1.23-remove-benchmark-dep.patch │ │ └── leveldb-1.23-system-testdeps.patch │ ├── leveldb-1.23.ebuild │ └── metadata.xml ├── libdatachannel │ ├── Manifest │ ├── libdatachannel-0.20.2.ebuild │ └── metadata.xml ├── libfmt │ ├── Manifest │ ├── files │ │ └── libfmt-11.2.0-libcxx-21-cstdlib.patch │ ├── libfmt-11.1.4.ebuild │ ├── libfmt-11.2.0-r1.ebuild │ ├── libfmt-12.0.0.ebuild │ └── metadata.xml ├── libfreenect │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── files │ │ ├── libfreenect-0.6.0-custom-cmake-lib-path.patch │ │ └── libfreenect-0.7.0-fix-freenect.pyx-headers.patch │ ├── libfreenect-0.7.0.ebuild │ └── metadata.xml ├── libpcre2 │ ├── Manifest │ ├── files │ │ └── libpcre2-10.10-000-Fix-multilib.patch │ ├── libpcre2-10.45.ebuild │ ├── libpcre2-10.46.ebuild │ └── metadata.xml ├── libsodium │ ├── Manifest │ ├── files │ │ └── libsodium-1.0.19-cpuflags.patch │ ├── libsodium-1.0.20.ebuild │ └── metadata.xml ├── libtasn1 │ ├── Manifest │ ├── libtasn1-4.20.0.ebuild │ └── metadata.xml ├── libxml2 │ ├── Manifest │ ├── files │ │ ├── libxml2-2.12.9-icu-pkgconfig.patch │ │ ├── libxml2-2.13.8-CVE-2025-49794-CVE-2025-49796.patch │ │ ├── libxml2-2.13.8-CVE-2025-49795.patch │ │ ├── libxml2-2.13.8-CVE-2025-6021.patch │ │ ├── libxml2-2.13.8-CVE-2025-6170.patch │ │ ├── libxml2-2.14.2-no-git.patch │ │ └── libxml2-2.14.4-cmake.patch │ ├── libxml2-2.13.9.ebuild │ ├── libxml2-2.14.6.ebuild │ └── metadata.xml ├── libxslt │ ├── Manifest │ ├── libxslt-1.1.43-r1.ebuild │ └── metadata.xml ├── lief │ ├── Manifest │ ├── files │ │ └── lief-0.16.0-libdir.patch │ ├── lief-0.16.0.ebuild │ └── metadata.xml ├── log4c │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── files │ │ └── log4c-1.2.4-log4c-config-multilib.patch │ ├── log4c-1.2.4-r2.ebuild │ └── metadata.xml ├── mimalloc │ ├── Manifest │ ├── metadata.xml │ ├── mimalloc-2.2.4.ebuild │ └── mimalloc-3.1.5.ebuild ├── miniz │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── files │ │ ├── miniz-2.2.0-fixincdir.patch │ │ └── miniz-2.2.0-fixpcpath.patch │ ├── metadata.xml │ └── miniz-3.0.2.ebuild ├── nccl-rdma-sharp-plugins │ ├── Manifest │ ├── metadata.xml │ └── nccl-rdma-sharp-plugins-2.1.0.ebuild ├── nccl │ ├── Manifest │ ├── files │ │ ├── nccl-2.22.3-libdir.patch │ │ ├── nccl-2.22.3-link-ibverbs-nccl.patch │ │ └── nccl-2.22.3-link-ibverbs-tests.patch │ ├── metadata.xml │ └── nccl-2.22.3.ebuild ├── ncnn │ ├── Manifest │ ├── metadata.xml │ └── ncnn-20250503.ebuild ├── nettle │ ├── Manifest │ ├── metadata.xml │ └── nettle-3.10.2.ebuild ├── nss │ ├── Manifest │ ├── files │ │ ├── nss-3.101.3-update-expected-error-code-in-pkg12util-pbmac1-tests.patch │ │ ├── nss-3.103-gentoo-fixes-add-pkgconfig-files.patch │ │ ├── nss-3.115-bmo-1983399-align-sftkdb_known_attributes_size-type.patch │ │ ├── nss-3.21-gentoo-fixup-warnings.patch │ │ ├── nss-3.53-gentoo-fixups.patch │ │ └── nss-3.87-use-clang-as-bgo892686.patch │ ├── metadata.xml │ ├── nss-3.112.1.ebuild │ └── nss-3.116.ebuild ├── nxjson │ ├── Manifest │ ├── files │ │ ├── nxjson-9999-d2c6fba-clang-19-test.patch │ │ └── nxjson-9999_p20200927-libdir-path.patch │ ├── metadata.xml │ └── nxjson-9999.ebuild ├── openssl │ ├── Manifest │ ├── files │ │ ├── gentoo.config-1.0.2 │ │ ├── gentoo.config-1.0.4 │ │ ├── openssl-1.1.0j-parallel_install_fix.patch │ │ ├── openssl-1.1.1i-riscv32.patch │ │ ├── openssl-3.3.2-silence-warning.patch │ │ └── openssl-3.5.3-revert-version-change.patch │ ├── metadata.xml │ ├── openssl-3.3.5.ebuild │ ├── openssl-3.4.3.ebuild │ └── openssl-3.5.4.ebuild ├── protobuf │ ├── Manifest │ ├── files │ │ ├── 70protobuf-gentoo.el │ │ ├── proto.vim │ │ ├── protobuf-21.9-disable-32-bit-tests.patch │ │ ├── protobuf-22.3-utf8_range.patch │ │ ├── protobuf-22.3-zero_copy_stream_unittest-mutex-header.patch │ │ ├── protobuf-3.12.4-backport-cd0ee8f.patch │ │ ├── protobuf-3.16.0-protoc_input_output_files.patch │ │ ├── protobuf-3.19.0-disable_no-warning-test.patch │ │ ├── protobuf-3.19.0-system_libraries.patch │ │ ├── protobuf-3.20.1-protoc_input_output_files.patch │ │ └── protobuf-3.20.2-protoc_input_output_files.patch │ ├── metadata.xml │ ├── protobuf-21.12-r1.ebuild │ ├── protobuf-25.8.ebuild │ ├── protobuf-29.5.ebuild │ ├── protobuf-3.12.4.ebuild │ └── protobuf-33.0.ebuild ├── pugixml │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── metadata.xml │ └── pugixml-1.15.ebuild ├── rapidjson │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── files │ │ ├── rapidjson-1.1.0-GenericStringRef-assign-operator.patch │ │ ├── rapidjson-1.1.0-cmake4.patch │ │ ├── rapidjson-1.1.0-doc-build.patch │ │ ├── rapidjson-1.1.0-gcc-7.patch │ │ ├── rapidjson-1.1.0-gcc14-const.patch │ │ ├── rapidjson-1.1.0-system_gtest.patch │ │ ├── rapidjson-1.1.0-valgrind_optional.patch │ │ └── rapidjson-1.1.1-valgrind_optional.patch │ ├── metadata.xml │ └── rapidjson-1.1.0-r5.ebuild ├── rccl-rdma-sharp-plugins │ ├── Manifest │ ├── metadata.xml │ └── rccl-rdma-sharp-plugins-6.2.4.ebuild ├── rccl │ ├── Manifest │ ├── files │ │ ├── rccl-5.0.2-change_install_location.patch │ │ ├── rccl-5.1.3-remove-chrpath.patch │ │ ├── rccl-5.3.3-remove-chrpath.patch │ │ ├── rccl-5.5.1-remove-chrpath.patch │ │ ├── rccl-5.7.0-customize-targets.patch │ │ └── rccl-6.1.2-customize-targets.patch │ ├── metadata.xml │ ├── rccl-6.4.4.ebuild │ └── rccl-7.0.2.ebuild ├── re2 │ ├── Manifest │ ├── metadata.xml │ ├── re2-0.2023.03.01.ebuild │ └── re2-0.2025.08.12.ebuild ├── rocm-comgr │ ├── Manifest │ ├── files │ │ ├── rocm-comgr-4.5.2-dependencies.patch │ │ ├── rocm-comgr-5.1.3-clang-fix-include.patch │ │ ├── rocm-comgr-5.1.3-clang-link.patch │ │ ├── rocm-comgr-5.1.3-llvm-15-args-changed │ │ ├── rocm-comgr-5.1.3-llvm-15-remove-zlib-gnu │ │ ├── rocm-comgr-5.1.3-llvm-not-dylib-add-libs.patch │ │ ├── rocm-comgr-5.3.3-fix-tests.patch │ │ ├── rocm-comgr-5.3.3-fno-stack-protector.patch │ │ ├── rocm-comgr-5.3.3-remove-h-option.patch │ │ ├── rocm-comgr-5.5.1-CommonLinkerContext-header.patch │ │ ├── rocm-comgr-5.5.1-clang-fix-None.patch │ │ ├── rocm-comgr-5.5.1-fix-SubtargetFeatures.patch │ │ ├── rocm-comgr-5.5.1-llvm-not-dylib-add-libs.patch │ │ ├── rocm-comgr-5.6.1-llvm-not-dylib-add-libs.patch │ │ └── rocm-comgr-6.1.2-disable-header.patch │ ├── metadata.xml │ ├── rocm-comgr-6.4.4.ebuild │ └── rocm-comgr-7.0.2.ebuild ├── rocm-core │ ├── Manifest │ ├── files │ │ └── rocm-core-5.5.1-fix-linker-flags.patch │ ├── metadata.xml │ ├── rocm-core-6.4.4.ebuild │ └── rocm-core-7.0.2.ebuild ├── rocm-debug-agent │ ├── Manifest │ ├── files │ │ └── rocm-debug-agent-5.7.0-epoll_wait-nevents.patch │ ├── rocm-debug-agent-6.4.4.ebuild │ └── rocm-debug-agent-7.0.2.ebuild ├── rocm-device-libs │ ├── Manifest │ ├── files │ │ ├── rocm-device-libs-5.1.3-test-bitcode-dir.patch │ │ ├── rocm-device-libs-5.4.3-Revert-Update-counters-for-gfx11.patch │ │ └── rocm-device-libs-6.2.4.patch │ ├── metadata.xml │ ├── rocm-device-libs-6.4.4.ebuild │ └── rocm-device-libs-7.0.2.ebuild ├── rocm-opencl-runtime │ ├── Manifest │ ├── files │ │ ├── rocclr-4.5.2-fix-include.patch │ │ ├── rocclr-5.1.3-fix-include.patch │ │ ├── rocclr-5.2.3-fix-include.patch │ │ ├── rocclr-5.3.3-fix-include.patch │ │ ├── rocclr-5.3.3-gcc13.patch │ │ ├── rocm-opencl-runtime-3.5.0-do-not-install-libopencl.patch │ │ ├── rocm-opencl-runtime-4.5.2-remove-clinfo.patch │ │ ├── rocm-opencl-runtime-5.0.2-enable-gfx800.patch │ │ ├── rocm-opencl-runtime-5.1.3-remove-clinfo.patch │ │ ├── rocm-opencl-runtime-5.3.3-gcc13.patch │ │ ├── rocm-opencl-runtime-5.7.0-defs.patch │ │ ├── rocm-opencl-runtime-5.7.0-include-search-path.patch │ │ ├── rocm-opencl-runtime-5.7.0-link-path.patch │ │ └── rocm-opencl-runtime-6.0.2-enable-gfx800.patch │ ├── metadata.xml │ ├── rocm-opencl-runtime-6.4.4.ebuild │ └── rocm-opencl-runtime-7.0.2.ebuild ├── rocprofiler-register │ ├── Manifest │ ├── files │ │ ├── rocprofiler-register-6.1.2-include-cpack.patch │ │ └── rocprofiler-register-6.1.2-offline-install.patch │ ├── metadata.xml │ ├── rocprofiler-register-6.4.4.ebuild │ └── rocprofiler-register-7.0.2.ebuild ├── rocr-runtime │ ├── Manifest │ ├── metadata.xml │ ├── rocr-runtime-6.4.4.ebuild │ └── rocr-runtime-7.0.2.ebuild ├── safeclib │ ├── Manifest │ ├── metadata.xml │ └── safeclib-3.9.1.ebuild ├── spdlog │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── files │ │ ├── spdlog-1.9.2-fix-clone-test.patch │ │ └── spdlog-force_external_fmt.patch │ ├── metadata.xml │ └── spdlog-1.15.3.ebuild ├── thrift │ ├── Manifest │ ├── metadata.xml │ └── thrift-0.22.0.ebuild ├── tinyxml │ ├── Manifest │ ├── files │ │ ├── Makefile-3 │ │ ├── tinyxml-2.6.1-entity.patch │ │ ├── tinyxml-2.6.2-CVE-2021-42260.patch │ │ ├── tinyxml-2.6.2-defineSTL.patch │ │ └── tinyxml.pc.patch │ ├── metadata.xml │ └── tinyxml-2.6.2-r5.ebuild ├── unittest++ │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── files │ │ ├── unittest++-2.0.0-Add-support-for-LIB_SUFFIX.patch │ │ ├── unittest++-2.0.0-cmake-fix-pkgconfig-dir-path-on-FreeBSD.patch │ │ ├── unittest++-2.0.0-cmake4.patch │ │ └── unittest++-2.0.0-fix-tests-with-clang.patch │ ├── metadata.xml │ └── unittest++-2.0.0-r3.ebuild └── utf8_range │ ├── Manifest │ ├── metadata.xml │ ├── utf8_range-20221115.ebuild │ ├── utf8_range-20230509.ebuild │ ├── utf8_range-20230705.ebuild │ ├── utf8_range-20231003.ebuild │ ├── utf8_range-20240215.ebuild │ ├── utf8_range-20240327.ebuild │ ├── utf8_range-20240918.ebuild │ └── utf8_range-20240918_p1.ebuild ├── dev-lua ├── luafilesystem │ ├── Manifest │ ├── luafilesystem-1.8.0-r3.ebuild │ └── metadata.xml ├── luasqlite3 │ ├── Manifest │ ├── luasqlite3-0.9.6.ebuild │ └── metadata.xml └── luaxml │ ├── Manifest │ ├── files │ └── luaxml-1.8.0-lua-lib-suffix.patch │ ├── luaxml-1.8.0-r2.ebuild │ └── metadata.xml ├── dev-nodejs └── acorn │ ├── Manifest │ ├── acorn-8.15.0.ebuild │ └── metadata.xml ├── dev-perl ├── Alien-Build-Git │ ├── Alien-Build-Git-0.10.ebuild │ ├── Manifest │ └── metadata.xml ├── Alien-FFI │ ├── Alien-FFI-0.27.ebuild │ ├── Manifest │ └── metadata.xml ├── Alien-caca │ ├── Alien-caca-0.0.3.ebuild │ ├── Manifest │ ├── files │ │ └── Alien-caca-0.0.3-fix-CVE-2022-0856.patch │ └── metadata.xml ├── Crypt-Rijndael │ ├── Crypt-Rijndael-1.160.0.ebuild │ ├── Manifest │ └── metadata.xml ├── FFI-Platypus │ ├── FFI-Platypus-2.8.ebuild │ ├── Manifest │ └── metadata.xml ├── Mojo-DOM58 │ ├── Manifest │ ├── Mojo-DOM58-3.1.ebuild │ └── metadata.xml ├── MooseX-MungeHas │ ├── Manifest │ ├── MooseX-MungeHas-0.11.ebuild │ └── metadata.xml ├── PerlX-Maybe-XS │ ├── Manifest │ ├── PerlX-Maybe-XS-1.001.ebuild │ └── metadata.xml ├── PerlX-Maybe │ ├── Manifest │ ├── PerlX-Maybe-1.202.ebuild │ └── metadata.xml ├── Term-Caca │ ├── Manifest │ ├── Term-Caca-3.1.0.ebuild │ └── metadata.xml ├── TermReadKey │ ├── Manifest │ ├── TermReadKey-2.380.0-r1.ebuild │ ├── files │ │ └── TermReadKey-2.380.0-configure-clang16.patch │ └── metadata.xml ├── Test-Vars │ ├── Manifest │ ├── Test-Vars-0.15.ebuild │ └── metadata.xml ├── Test2-Tools-URL │ ├── Manifest │ ├── Test2-Tools-URL-0.6.ebuild │ └── metadata.xml └── URI-git │ ├── Manifest │ ├── URI-git-0.2.ebuild │ └── metadata.xml ├── dev-php ├── grpc │ ├── Manifest │ ├── grpc-1.30.2.ebuild │ ├── grpc-1.51.3.ebuild │ └── metadata.xml └── libcaca │ ├── Manifest │ ├── files │ ├── caca-256color.diff │ ├── libcaca-0.99.beta19-256-colors-ncurses.patch │ ├── libcaca-0.99.beta19-configure.ac-ncurses_libs.patch │ ├── libcaca-0.99.beta20-256-colors-ncurses.patch │ ├── libcaca-0.99_beta20_p20211207-img2txt-python3-compat.patch │ ├── libcaca-0.99_beta20_p20211207-php7-fixes.patch │ ├── libcaca-0.99_beta20_p20211207-php8-fixes.patch │ ├── libcaca-0.99_beta20_p20211207-php8-gdimage-fixes.patch │ └── libcaca-0.99_beta20_p20211207-ruby-3.0-compat.patch │ ├── libcaca-0.99_beta20_p20211207.ebuild │ └── metadata.xml ├── dev-python ├── AITemplate │ ├── AITemplate-0.2.ebuild │ ├── Manifest │ └── metadata.xml ├── Authlib │ ├── Authlib-1.4.1.ebuild │ ├── Manifest │ └── metadata.xml ├── Farama-Notifications │ ├── Farama-Notifications-0.0.4.ebuild │ ├── Manifest │ └── metadata.xml ├── Flask-HTTPAuth │ ├── Flask-HTTPAuth-4.8.0.ebuild │ ├── Manifest │ └── metadata.xml ├── JaroWinkler │ ├── JaroWinkler-2.0.1.ebuild │ ├── Manifest │ └── metadata.xml ├── Levenshtein │ ├── Levenshtein-0.27.1.ebuild │ ├── Manifest │ └── metadata.xml ├── RTFDE │ ├── Manifest │ ├── RTFDE-0.1.2.ebuild │ └── metadata.xml ├── RapidFuzz │ ├── Manifest │ ├── RapidFuzz-3.13.0.ebuild │ └── metadata.xml ├── RestrictedPython │ ├── Manifest │ ├── RestrictedPython-8.0.ebuild │ └── metadata.xml ├── SciencePlots │ ├── Manifest │ ├── SciencePlots-2.1.1.ebuild │ └── metadata.xml ├── aafigure │ ├── Manifest │ ├── aafigure-0.6.ebuild │ └── metadata.xml ├── aioquic │ ├── Manifest │ ├── aioquic-0.9.25.ebuild │ ├── aioquic-1.0.0.ebuild │ └── metadata.xml ├── ale-py │ ├── Manifest │ ├── ale-py-0.11.0.ebuild │ ├── files │ │ ├── ale-py-0.8.1-includes.patch │ │ └── ale-py-0.9.0-offline-install.patch │ └── metadata.xml ├── anthropic │ ├── Manifest │ ├── anthropic-0.49.0.ebuild │ └── metadata.xml ├── anyio │ ├── Manifest │ ├── anyio-4.6.2_p1.ebuild │ ├── files │ │ └── anyio-4.6.2_p1-pyproject-toml-changes.patch │ └── metadata.xml ├── apscheduler │ ├── Manifest │ ├── apscheduler-3.11.0.ebuild │ ├── files │ │ ├── apscheduler-3.11.0-external-server-tests.patch │ │ ├── apscheduler-3.11.0-toml-compat.patch │ │ └── apscheduler-3.8.1-external-server-tests.patch │ └── metadata.xml ├── array-record │ ├── Manifest │ ├── array-record-0.5.0.ebuild │ ├── files │ │ ├── array_record-0.5.0-abseil-py-tarball.patch │ │ └── array_record-0.5.0-pin-versions.patch │ └── metadata.xml ├── asdff │ ├── Manifest │ ├── asdff-0.2.1.ebuild │ └── metadata.xml ├── astunparse │ ├── Manifest │ ├── astunparse-1.6.3-r1.ebuild │ ├── files │ │ ├── astunparse-1.6.2-tests.patch │ │ ├── astunparse-1.6.3-py39.patch │ │ └── astunparse-1.6.3-test-py311.patch │ └── metadata.xml ├── auditwheel │ ├── Manifest │ ├── auditwheel-6.3.0.ebuild │ └── metadata.xml ├── autorom-accept-rom-license │ ├── Manifest │ ├── autorom-accept-rom-license-0.6.1.ebuild │ ├── files │ │ └── autorom-accept-rom-license-0.6.1-offline-install.patch │ └── metadata.xml ├── autorom │ ├── Manifest │ ├── autorom-0.6.1.ebuild │ └── metadata.xml ├── av │ ├── Manifest │ ├── av-15.1.0.ebuild │ ├── av-16.0.1.ebuild │ └── metadata.xml ├── azure-ai-documentintelligence │ ├── Manifest │ ├── azure-ai-documentintelligence-1.0.0.ebuild │ └── metadata.xml ├── azure-identity │ ├── Manifest │ ├── azure-identity-1.20.0.ebuild │ └── metadata.xml ├── azure-storage-blob │ ├── Manifest │ ├── azure-storage-blob-12.24.1.ebuild │ └── metadata.xml ├── backcall │ ├── Manifest │ ├── backcall-0.2.0.ebuild │ └── metadata.xml ├── barectf │ ├── Manifest │ ├── barectf-3.1.2.ebuild │ └── metadata.xml ├── basicsr │ ├── Manifest │ ├── basicsr-1.4.2.ebuild │ └── metadata.xml ├── blis │ ├── Manifest │ ├── blis-0.9.1.ebuild │ ├── blis-1.0.1.ebuild │ └── metadata.xml ├── box2d-py │ ├── Manifest │ ├── box2d-py-2.3.8.ebuild │ └── metadata.xml ├── bsuite │ ├── Manifest │ ├── bsuite-0.3.5.ebuild │ └── metadata.xml ├── cachetools │ ├── Manifest │ ├── cachetools-5.3.3.ebuild │ └── metadata.xml ├── catalogue │ ├── Manifest │ ├── catalogue-2.1.0.ebuild │ └── metadata.xml ├── celshast │ ├── Manifest │ ├── celshast-9999.ebuild │ └── metadata.xml ├── chex │ ├── Manifest │ ├── chex-0.1.86.ebuild │ └── metadata.xml ├── chroma-hnswlib │ ├── Manifest │ ├── chroma-hnswlib-0.7.6.ebuild │ └── metadata.xml ├── chromadb │ ├── Manifest │ ├── chromadb-1.0.5.ebuild │ ├── convert-cargo-lock.sh │ └── metadata.xml ├── clean-fid │ ├── Manifest │ ├── clean-fid-0.1.35.ebuild │ └── metadata.xml ├── cli-ui │ ├── Manifest │ ├── cli-ui-0.18.0.ebuild │ └── metadata.xml ├── clip-anytorch │ ├── Manifest │ ├── clip-anytorch-2.6.0.ebuild │ └── metadata.xml ├── cloudpathlib │ ├── Manifest │ ├── cloudpathlib-0.20.0.ebuild │ └── metadata.xml ├── clu │ ├── Manifest │ ├── clu-0.0.12.ebuild │ └── metadata.xml ├── cmake-build-extension │ ├── Manifest │ ├── cmake-build-extension-0.6.1.ebuild │ └── metadata.xml ├── colbert-ai │ ├── Manifest │ ├── colbert-ai-0.2.21.ebuild │ └── metadata.xml ├── colorlover │ ├── Manifest │ ├── colorlover-0.3.0.ebuild │ └── metadata.xml ├── commoncode │ ├── Manifest │ ├── commoncode-32.3.0.ebuild │ └── metadata.xml ├── compressed-rtf │ ├── Manifest │ ├── compressed-rtf-1.0.6.ebuild │ └── metadata.xml ├── confection │ ├── Manifest │ ├── confection-0.1.5.ebuild │ └── metadata.xml ├── container-inspector │ ├── Manifest │ ├── container-inspector-33.0.0.ebuild │ └── metadata.xml ├── contextlib2 │ ├── Manifest │ ├── contextlib2-21.6.0.ebuild │ ├── contextlib2-9999.ebuild │ └── metadata.xml ├── controlnet-aux │ ├── Manifest │ ├── controlnet-aux-0.0.8.ebuild │ └── metadata.xml ├── coqpit │ ├── Manifest │ ├── coqpit-0.0.17.ebuild │ └── metadata.xml ├── coqui-tts-trainer │ ├── Manifest │ ├── coqui-tts-trainer-0.1.5.ebuild │ └── metadata.xml ├── coqui-tts │ ├── Manifest │ ├── coqui-tts-0.24.2.ebuild │ ├── files │ │ └── coqui-tts-0.24.2-cors.patch │ └── metadata.xml ├── cpufeature │ ├── Manifest │ ├── cpufeature-0.2.1.ebuild │ └── metadata.xml ├── cryptography │ ├── Manifest │ ├── cryptography-44.0.2.ebuild │ ├── cryptography-44.0.3.ebuild │ ├── cryptography-45.0.2.ebuild │ ├── cryptography-45.0.3.ebuild │ └── metadata.xml ├── ctranslate2 │ ├── Manifest │ ├── ctranslate2-4.5.0.ebuild │ └── metadata.xml ├── cuda-python │ ├── Manifest │ ├── cuda-python-11.8.3.ebuild │ ├── cuda-python-12.5.0.ebuild │ └── metadata.xml ├── cx-Freeze-bin │ ├── Manifest │ ├── cx-Freeze-bin-8.3.0.ebuild │ └── metadata.xml ├── cymem │ ├── Manifest │ ├── cymem-2.0.8.ebuild │ └── metadata.xml ├── cython │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── cython-0.29.37.1.ebuild │ ├── cython-3.0.12.ebuild │ ├── cython-3.1.2.ebuild │ ├── files │ │ ├── 50cython-gentoo.el │ │ ├── cython-0.29.22-spawn-multiprocessing.patch │ │ ├── cython-0.29.23-pythran-parallel-install.patch │ │ └── cython-0.29.23-test_exceptions-py310.patch │ └── metadata.xml ├── dash-bootstrap-components │ ├── Manifest │ ├── dash-bootstrap-components-2.0.3.ebuild │ ├── files │ │ └── 2.0.3 │ │ │ ├── package-lock.json │ │ │ └── package.json │ └── metadata.xml ├── dash-svg │ ├── Manifest │ ├── dash-svg-0.0.12.ebuild │ ├── files │ │ ├── 0.0.12 │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ └── dash-svg-0.0.12-use-fetch-api.patch │ └── metadata.xml ├── dataclass-wizard │ ├── Manifest │ ├── dataclass-wizard-0.22.3.ebuild │ └── metadata.xml ├── dctorch │ ├── Manifest │ ├── dctorch-0.1.2.ebuild │ └── metadata.xml ├── debian-inspector │ ├── Manifest │ ├── debian-inspector-31.1.0.ebuild │ └── metadata.xml ├── dek │ ├── Manifest │ ├── dek-1.4.2.ebuild │ └── metadata.xml ├── diffusers │ ├── Manifest │ ├── diffusers-0.29.0.ebuild │ └── metadata.xml ├── discord-py │ ├── Manifest │ ├── discord-py-2.4.0.ebuild │ └── metadata.xml ├── distrax │ ├── Manifest │ ├── distrax-0.1.5.ebuild │ └── metadata.xml ├── dm-control │ ├── Manifest │ ├── autobump │ │ ├── description │ │ └── get_latest_patch_version.sh │ ├── dm-control-1.0.19.ebuild │ └── metadata.xml ├── dm-env │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── dm-env-1.6_pre9999.ebuild │ └── metadata.xml ├── dm-haiku │ ├── Manifest │ ├── dm-haiku-0.0.12.ebuild │ └── metadata.xml ├── dm-meltingpot │ ├── Manifest │ ├── dm-meltingpot-2.2.2.ebuild │ └── metadata.xml ├── dm-sonnet │ ├── Manifest │ ├── dm-sonnet-2.0.2.ebuild │ └── metadata.xml ├── dm-tree │ ├── Manifest │ ├── dm-tree-0.1.8.ebuild │ ├── files │ │ └── dm-tree-0.1.8-no-download.patch │ └── metadata.xml ├── dmlab2d │ ├── Manifest │ ├── dmlab2d-1.0.0.ebuild │ ├── files │ │ ├── dmlab2d-1.0.0-add-sha256-checksums.patch │ │ └── dmlab2d-1.0.0-pin-commits.patch │ └── metadata.xml ├── docker-pycreds │ ├── Manifest │ ├── docker-pycreds-0.4.0.ebuild │ └── metadata.xml ├── docutils │ ├── Manifest │ ├── docutils-0.20.1-r1.ebuild │ ├── docutils-0.21.2.ebuild │ └── metadata.xml ├── docx2txt │ ├── Manifest │ ├── docx2txt-0.8.ebuild │ └── metadata.xml ├── dopamine-rl │ ├── Manifest │ ├── dopamine-rl-4.0.9.ebuild │ └── metadata.xml ├── dparse2 │ ├── Manifest │ ├── dparse2-0.7.0.ebuild │ └── metadata.xml ├── duckduckgo-search │ ├── Manifest │ ├── duckduckgo-search-7.3.2.ebuild │ └── metadata.xml ├── durationpy │ ├── Manifest │ ├── durationpy-0.9.ebuild │ └── metadata.xml ├── ebcdic │ ├── Manifest │ ├── ebcdic-1.1.1.ebuild │ └── metadata.xml ├── ecos │ ├── Manifest │ ├── ecos-2.0.13.ebuild │ └── metadata.xml ├── editor │ ├── Manifest │ ├── editor-1.6.6.ebuild │ └── metadata.xml ├── effdet │ ├── Manifest │ ├── effdet-0.4.1.ebuild │ └── metadata.xml ├── einops-exts │ ├── Manifest │ ├── einops-exts-0.0.4.ebuild │ └── metadata.xml ├── elevate │ ├── Manifest │ ├── elevate-0.1.3.ebuild │ └── metadata.xml ├── encodec │ ├── Manifest │ ├── encodec-0.1.1.ebuild │ └── metadata.xml ├── etils │ ├── Manifest │ ├── etils-1.8.0.ebuild │ └── metadata.xml ├── exhale │ ├── Manifest │ ├── exhale-0.3.7.ebuild │ ├── files │ │ └── exhale-0.3.6-fix-degrees_to_radians_s-fn-matching-linux.patch │ └── metadata.xml ├── extract-msg │ ├── Manifest │ ├── extract-msg-0.52.0.ebuild │ └── metadata.xml ├── extractcode-libarchive │ ├── Manifest │ ├── extractcode-libarchive-3.5.1.210531.ebuild │ └── metadata.xml ├── extractcode │ ├── Manifest │ ├── extractcode-31.0.0.ebuild │ └── metadata.xml ├── extractcode_7z │ ├── Manifest │ ├── extractcode_7z-16.5.210531.ebuild │ └── metadata.xml ├── face-recognition │ ├── Manifest │ ├── face-recognition-1.4.0_p20220622.ebuild │ └── metadata.xml ├── face_recognition_models │ ├── Manifest │ ├── face_recognition_models-0.3.0.ebuild │ └── metadata.xml ├── facemorpher │ ├── Manifest │ ├── facemorpher-5.2_p20190630.ebuild │ ├── files │ │ └── facemorpher-7a30611-change-model-dir.patch │ └── metadata.xml ├── facexlib │ ├── Manifest │ ├── facexlib-0.2.5.ebuild │ └── metadata.xml ├── fastapi-analytics │ ├── Manifest │ ├── fastapi-analytics-1.2.3.ebuild │ └── metadata.xml ├── fastapi-simple-cachecontrol │ ├── Manifest │ ├── fastapi-simple-cachecontrol-1.0.1.ebuild │ └── metadata.xml ├── fastapi │ ├── Manifest │ ├── fastapi-0.115.12.ebuild │ ├── files │ │ └── fastaapi-0.115.6-httpx-0.28-test-fix.patch │ └── metadata.xml ├── fastbencode │ ├── Manifest │ ├── fastbencode-0.2.ebuild │ ├── fastbencode-0.3.1.ebuild │ └── metadata.xml ├── faster-whisper │ ├── Manifest │ ├── faster-whisper-1.1.1.ebuild │ └── metadata.xml ├── filterpy │ ├── Manifest │ ├── filterpy-1.4.5.ebuild │ └── metadata.xml ├── fingerprints │ ├── Manifest │ ├── fingerprints-1.2.3.ebuild │ └── metadata.xml ├── firecrawl-py │ ├── Manifest │ ├── firecrawl-py-1.12.0.ebuild │ └── metadata.xml ├── flake8-colors │ ├── Manifest │ ├── flake8-colors-0.1.9.ebuild │ └── metadata.xml ├── flake8-docstrings │ ├── Manifest │ ├── flake8-docstrings-1.7.0.ebuild │ └── metadata.xml ├── flake8-future-import │ ├── Manifest │ ├── flake8-future-import-0.4.7.ebuild │ └── metadata.xml ├── flake8-import-order │ ├── Manifest │ ├── flake8-import-order-0.18.2.ebuild │ └── metadata.xml ├── flake8-print │ ├── Manifest │ ├── files │ │ └── flake8-print-5.0.0-fix-install.patch │ ├── flake8-print-5.0.0.ebuild │ └── metadata.xml ├── flamingo-mini │ ├── Manifest │ ├── flamingo-mini-0.0.2_p9999.ebuild │ └── metadata.xml ├── flash-attn │ ├── Manifest │ ├── files │ │ ├── flash-attn-2.6.3-composable_kernel-hardcoded-paths.patch │ │ ├── flash-attn-2.6.3-cutlass-hardcoded-paths.patch │ │ └── flash-attn-2.8.3-composable_kernel-hardcoded-paths.patch │ ├── flash-attn-2.8.3.ebuild │ └── metadata.xml ├── flax │ ├── Manifest │ ├── flax-0.7.5.ebuild │ ├── flax-0.8.3.ebuild │ └── metadata.xml ├── fpdf2 │ ├── Manifest │ ├── fpdf2-2.8.2.ebuild │ └── metadata.xml ├── gcp-storage-emulator │ ├── Manifest │ ├── gcp-storage-emulator-2024.08.03.ebuild │ └── metadata.xml ├── gemfileparser2 │ ├── Manifest │ ├── gemfileparser2-0.9.4.ebuild │ └── metadata.xml ├── gfpgan │ ├── Manifest │ ├── gfpgan-1.3.8.ebuild │ └── metadata.xml ├── gin-config │ ├── Manifest │ ├── gin-config-0.5.0.ebuild │ └── metadata.xml ├── gitdb │ ├── Manifest │ ├── gitdb-4.0.11.ebuild │ └── metadata.xml ├── go-inspector │ ├── Manifest │ ├── go-inspector-0.5.0.ebuild │ └── metadata.xml ├── google-ai-generativelanguage │ ├── Manifest │ ├── google-ai-generativelanguage-0.6.15.ebuild │ └── metadata.xml ├── google-api-core │ ├── Manifest │ ├── google-api-core-2.24.2.ebuild │ └── metadata.xml ├── google-auth-oauthlib │ ├── Manifest │ ├── google-auth-oauthlib-1.0.0.ebuild │ ├── google-auth-oauthlib-1.2.0.ebuild │ └── metadata.xml ├── google-auth │ ├── Manifest │ ├── google-auth-2.29.0.ebuild │ └── metadata.xml ├── google-generativeai │ ├── Manifest │ ├── google-generativeai-0.8.4.ebuild │ └── metadata.xml ├── google │ ├── Manifest │ ├── google-3.0.0.ebuild │ └── metadata.xml ├── grpcio-status │ ├── Manifest │ ├── grpcio-status-1.30.2.ebuild │ ├── grpcio-status-1.51.3.ebuild │ ├── grpcio-status-1.62.3.ebuild │ ├── grpcio-status-1.71.2.ebuild │ ├── grpcio-status-1.75.1.ebuild │ └── metadata.xml ├── grpcio-testing │ ├── Manifest │ ├── grpcio-testing-1.30.2.ebuild │ ├── grpcio-testing-1.51.3.ebuild │ ├── grpcio-testing-1.62.3.ebuild │ ├── grpcio-testing-1.71.2.ebuild │ ├── grpcio-testing-1.75.1.ebuild │ └── metadata.xml ├── grpcio-tools │ ├── Manifest │ ├── grpcio-tools-1.30.2.ebuild │ ├── grpcio-tools-1.51.3.ebuild │ ├── grpcio-tools-1.62.3.ebuild │ ├── grpcio-tools-1.71.2.ebuild │ ├── grpcio-tools-1.75.1.ebuild │ └── metadata.xml ├── grpcio │ ├── Manifest │ ├── files │ │ ├── 1.51.0-respect-cc.patch │ │ ├── grpcio-1.30.2-cc-flag-test-fix.patch │ │ ├── grpcio-1.49.2-cc-flag-test-fix.patch │ │ ├── grpcio-1.51.3-multislot-paths.patch │ │ ├── grpcio-1.62.3-multislot-paths.patch │ │ └── grpcio-1.71.2-multislot-paths.patch │ ├── grpcio-1.30.2.ebuild │ ├── grpcio-1.51.3.ebuild │ ├── grpcio-1.62.3.ebuild │ ├── grpcio-1.71.2.ebuild │ ├── grpcio-1.75.1.ebuild │ └── metadata.xml ├── gruut-ipa │ ├── Manifest │ ├── gruut-ipa-0.13.0.ebuild │ └── metadata.xml ├── gruut │ ├── Manifest │ ├── gruut-2.4.0.ebuild │ └── metadata.xml ├── gviz-api │ ├── Manifest │ ├── gviz-api-1.10.0.ebuild │ └── metadata.xml ├── gym-notices │ ├── Manifest │ ├── gym-notices-0.0.8_p9999.ebuild │ └── metadata.xml ├── gym │ ├── Manifest │ ├── gym-0.26.2_p9999.ebuild │ └── metadata.xml ├── gymnasium-notices │ ├── Manifest │ ├── gymnasium-notices-0.0.1_p9999.ebuild │ └── metadata.xml ├── gymnasium │ ├── Manifest │ ├── gymnasium-1.1.1.ebuild │ └── metadata.xml ├── h2 │ ├── Manifest │ ├── files │ │ └── h2-4.2.0-toml-compat.patch │ ├── h2-4.2.0.ebuild │ └── metadata.xml ├── hanabi-learning-environment │ ├── Manifest │ ├── hanabi-learning-environment-0.0.1_p9999.ebuild │ └── metadata.xml ├── hpack │ ├── Manifest │ ├── files │ │ └── hpack-4.1.0-toml-compat.patch │ ├── hpack-4.1.0.ebuild │ └── metadata.xml ├── httpx-sse │ ├── Manifest │ ├── httpx-sse-0.4.0.ebuild │ └── metadata.xml ├── hyperframe │ ├── Manifest │ ├── files │ │ └── hyperframe-6.1.0-toml-compat.patch │ ├── hyperframe-6.1.0.ebuild │ └── metadata.xml ├── inquirer │ ├── Manifest │ ├── inquirer-3.2.5.ebuild │ └── metadata.xml ├── instructor │ ├── Manifest │ ├── instructor-1.6.2.ebuild │ └── metadata.xml ├── intbitset │ ├── Manifest │ ├── intbitset-4.0.0.ebuild │ └── metadata.xml ├── invisible-watermark │ ├── Manifest │ ├── invisible-watermark-0.2.0.ebuild │ └── metadata.xml ├── ivy │ ├── Manifest │ ├── ivy-9999.ebuild │ └── metadata.xml ├── javaproperties │ ├── Manifest │ ├── javaproperties-0.8.2.ebuild │ └── metadata.xml ├── jax │ ├── Manifest │ ├── jax-0.4.32.ebuild │ └── metadata.xml ├── jaxlib │ ├── Manifest │ ├── files │ │ └── 0.4.32 │ │ │ └── xla │ │ │ └── 0050-fix-rocm-build-scripts.patch │ ├── jaxlib-0.4.32.ebuild │ └── metadata.xml ├── jaxtyping │ ├── Manifest │ ├── jaxtyping-0.2.28.ebuild │ └── metadata.xml ├── jiter │ ├── Manifest │ ├── convert-cargo-lock.sh │ ├── files │ │ └── 0.10.0 │ │ │ ├── 1.patch │ │ │ ├── Cargo.lock │ │ │ └── Cargo.toml │ ├── jiter-0.10.0.ebuild │ └── metadata.xml ├── js8py │ ├── Manifest │ ├── js8py-0.1.2.ebuild │ └── metadata.xml ├── jsonpath-python │ ├── Manifest │ ├── jsonpath-python-1.0.6.ebuild │ └── metadata.xml ├── jsonstreams │ ├── Manifest │ ├── jsonstreams-0.6.0.ebuild │ └── metadata.xml ├── jumpy │ ├── Manifest │ ├── jumpy-1.0.0.ebuild │ └── metadata.xml ├── k-diffusion │ ├── Manifest │ ├── k-diffusion-0.1.1_p1.ebuild │ └── metadata.xml ├── kaggle │ ├── Manifest │ ├── kaggle-1.6.14.ebuild │ └── metadata.xml ├── kaldi-io │ ├── Manifest │ ├── kaldi-io-0.9.8.ebuild │ └── metadata.xml ├── keras-applications │ ├── Manifest │ ├── keras-applications-1.0.8-r2.ebuild │ └── metadata.xml ├── keras-preprocessing │ ├── Manifest │ ├── keras-preprocessing-1.1.2-r1.ebuild │ └── metadata.xml ├── keras │ ├── Manifest │ ├── keras-3.12.0.ebuild │ ├── keras-3.6.0.ebuild │ └── metadata.xml ├── kornia-rs │ ├── Manifest │ ├── convert-cargo-lock.sh │ ├── cp-cargo-files.sh │ ├── files │ │ └── 0.1.9 │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ ├── crates │ │ │ ├── kornia-3d │ │ │ │ └── Cargo.toml │ │ │ ├── kornia-icp │ │ │ │ └── Cargo.toml │ │ │ ├── kornia-image │ │ │ │ └── Cargo.toml │ │ │ ├── kornia-imgproc │ │ │ │ └── Cargo.toml │ │ │ ├── kornia-io │ │ │ │ └── Cargo.toml │ │ │ ├── kornia-linalg │ │ │ │ └── Cargo.toml │ │ │ ├── kornia-tensor-ops │ │ │ │ └── Cargo.toml │ │ │ ├── kornia-tensor │ │ │ │ └── Cargo.toml │ │ │ └── kornia │ │ │ │ └── Cargo.toml │ │ │ └── kornia-py │ │ │ ├── Cargo.lock │ │ │ └── Cargo.toml │ ├── kornia-rs-0.1.9.ebuild │ └── metadata.xml ├── kornia │ ├── Manifest │ ├── kornia-0.7.4.ebuild │ └── metadata.xml ├── kubernetes │ ├── Manifest │ ├── kubernetes-32.0.1.ebuild │ └── metadata.xml ├── labmaze │ ├── Manifest │ ├── labmaze-1.0.6_pre9999.ebuild │ └── metadata.xml ├── langchain-community │ ├── Manifest │ ├── langchain-community-0.3.20.ebuild │ └── metadata.xml ├── langchain-core │ ├── Manifest │ ├── langchain-core-0.3.60.ebuild │ └── metadata.xml ├── langchain-text-splitters │ ├── Manifest │ ├── langchain-text-splitters-0.3.8.ebuild │ └── metadata.xml ├── langchain │ ├── Manifest │ ├── langchain-0.3.25.ebuild │ └── metadata.xml ├── langcodes │ ├── Manifest │ ├── langcodes-3.4.1.ebuild │ └── metadata.xml ├── langfuse │ ├── Manifest │ ├── langfuse-2.58.1.ebuild │ └── metadata.xml ├── langsmith │ ├── Manifest │ ├── langsmith-0.3.4.ebuild │ └── metadata.xml ├── language-data │ ├── Manifest │ ├── language-data-1.2.0.ebuild │ └── metadata.xml ├── librosa │ ├── Manifest │ ├── librosa-0.11.0.ebuild │ └── metadata.xml ├── lightning-api-access │ ├── Manifest │ ├── lightning-api-access-0.0.5.ebuild │ └── metadata.xml ├── lightning-app │ ├── Manifest │ ├── lightning-app-2.3.0.ebuild │ └── metadata.xml ├── lightning-cloud │ ├── Manifest │ ├── lightning-cloud-0.5.69.ebuild │ └── metadata.xml ├── lightning-fabric │ ├── Manifest │ ├── lightning-fabric-2.3.0.ebuild │ └── metadata.xml ├── lightning-utilities │ ├── Manifest │ ├── lightning-utilities-0.11.2.ebuild │ └── metadata.xml ├── lightning │ ├── Manifest │ ├── lightning-2.3.0.ebuild │ └── metadata.xml ├── llvmlite │ ├── Manifest │ ├── files │ │ ├── llvmlite-0.43-llvm-17-tests.patch │ │ └── llvmlite-0.43-llvm-17.patch │ ├── llvmlite-0.43.0.ebuild │ ├── llvmlite-9999.ebuild │ └── metadata.xml ├── lxml │ ├── Manifest │ ├── files │ │ ├── lxml-5.3.0-pypy.patch │ │ ├── lxml-5.4.0-cython-3.1.patch │ │ └── lxml-6.0.0-pypy.patch │ ├── lxml-5.4.0-r2.ebuild │ ├── lxml-6.0.0.ebuild │ └── metadata.xml ├── marisa-trie │ ├── Manifest │ ├── files │ │ └── system-marisa-lib.patch │ ├── marisa-trie-0.8.0.ebuild │ └── metadata.xml ├── merge3 │ ├── Manifest │ ├── merge3-0.0.15.ebuild │ └── metadata.xml ├── milvus-lite-bin │ ├── Manifest │ ├── metadata.xml │ ├── milvus-lite-bin-2.4.12.ebuild │ └── milvus-lite-bin-2.5.1.ebuild ├── milvus-model │ ├── Manifest │ ├── metadata.xml │ └── milvus-model-0.3.0.ebuild ├── mizani │ ├── Manifest │ ├── metadata.xml │ └── mizani-0.11.4.ebuild ├── ml-collections │ ├── Manifest │ ├── metadata.xml │ └── ml-collections-1.1.0.ebuild ├── ml-datasets │ ├── Manifest │ ├── metadata.xml │ └── ml-datasets-0.2.0.ebuild ├── ml-dtypes │ ├── Manifest │ ├── files │ │ └── eigen-7bf2968-fix-relicense-print.patch │ ├── metadata.xml │ └── ml-dtypes-0.5.2.ebuild ├── model-index │ ├── Manifest │ ├── metadata.xml │ └── model-index-0.1.11.ebuild ├── monotonic │ ├── Manifest │ ├── metadata.xml │ └── monotonic-1.6.ebuild ├── moviepy │ ├── Manifest │ ├── metadata.xml │ └── moviepy-2.0.0_pre2_p9999.ebuild ├── msal-extensions │ ├── Manifest │ ├── metadata.xml │ └── msal-extensions-1.3.1.ebuild ├── msal │ ├── Manifest │ ├── metadata.xml │ └── msal-1.32.0.ebuild ├── mujoco │ ├── Manifest │ ├── files │ │ ├── mujoco-2.2.2-use-local-tarballs.patch │ │ ├── mujoco-2.3.2-mkdir-dist.patch │ │ ├── mujoco-2.3.7-mkdir-dist.patch │ │ ├── mujoco-2.3.7-use-local-tarballs.patch │ │ ├── mujoco-3.0.1-use-local-tarballs.patch │ │ ├── mujoco-3.1.5-use-local-tarballs.patch │ │ └── sdflib-1927bee-deps.patch │ ├── metadata.xml │ ├── mujoco-2.3.7.ebuild │ ├── mujoco-3.0.1.ebuild │ └── mujoco-3.1.6.ebuild ├── multi-agent-ale-py │ ├── Manifest │ ├── metadata.xml │ └── multi-agent-ale-py-0.1.11_pre9999.ebuild ├── murmurhash │ ├── Manifest │ ├── metadata.xml │ └── murmurhash-1.0.10.ebuild ├── mypy │ ├── Manifest │ ├── files │ │ └── mypy-1.13.0-remove-exclude_lines.patch │ ├── metadata.xml │ └── mypy-1.13.0.ebuild ├── myst-parser │ ├── Manifest │ ├── metadata.xml │ ├── myst-parser-1.0.0.ebuild │ ├── myst-parser-2.0.0.ebuild │ └── myst-parser-3.0.1.ebuild ├── namex │ ├── Manifest │ ├── metadata.xml │ └── namex-0.0.8.ebuild ├── nashpy │ ├── Manifest │ ├── metadata.xml │ └── nashpy-0.0.41.ebuild ├── ncnn │ ├── Manifest │ ├── files │ │ └── ncnn-20240820-simd-configure.patch │ ├── metadata.xml │ └── ncnn-20250503.ebuild ├── neural-compressor │ ├── Manifest │ ├── metadata.xml │ └── neural-compressor-2.6.1.ebuild ├── nltk │ ├── Manifest │ ├── metadata.xml │ └── nltk-3.9.1.ebuild ├── nnef-parser │ ├── Manifest │ ├── files │ │ └── nnef-parser-1.0.7-change-install-paths.patch │ ├── metadata.xml │ ├── nnef-parser-1.0.7.ebuild │ └── nnef-parser-9999.ebuild ├── nnef-tools │ ├── Manifest │ ├── metadata.xml │ ├── nnef-tools-1.0.7.ebuild │ └── nnef-tools-9999.ebuild ├── nose_xunitmp │ ├── Manifest │ ├── metadata.xml │ └── nose_xunitmp-0.4.1.ebuild ├── nudenet │ ├── Manifest │ ├── metadata.xml │ └── nudenet-3.4.2.ebuild ├── num2words │ ├── Manifest │ ├── metadata.xml │ └── num2words-0.5.14.ebuild ├── numba │ ├── Manifest │ ├── files │ │ └── numba-0.59.1-tbb-libdir.patch │ ├── metadata.xml │ └── numba-0.59.1.ebuild ├── numpy │ ├── Manifest │ ├── files │ │ ├── numpy-1.22.0-no-hardcode-blasv2.patch │ │ ├── numpy-1.22.4-py311.patch │ │ └── numpy-2.1.2-disable-generate-manifest.patch │ ├── metadata.xml │ ├── numpy-1.22.4.ebuild │ ├── numpy-1.23.5.ebuild │ ├── numpy-1.26.4.ebuild │ └── numpy-2.1.2.ebuild ├── ollama │ ├── Manifest │ ├── metadata.xml │ └── ollama-0.6.1.ebuild ├── omegaconf │ ├── Manifest │ ├── metadata.xml │ └── omegaconf-2.3.0.ebuild ├── onnx-simplifier │ ├── Manifest │ ├── metadata.xml │ └── onnx-simplifier-0.4.36.ebuild ├── onnxoptimizer │ ├── Manifest │ ├── metadata.xml │ └── onnxoptimizer-0.3.19.ebuild ├── open-clip-torch │ ├── Manifest │ ├── metadata.xml │ └── open-clip-torch-2.29.0.ebuild ├── open-spiel │ ├── Manifest │ ├── metadata.xml │ ├── open-spiel-1.3.ebuild │ ├── open-spiel-1.4.ebuild │ └── open-spiel-1.5.ebuild ├── openai │ ├── Manifest │ ├── metadata.xml │ └── openai-1.52.0.ebuild ├── opensearch-py │ ├── Manifest │ ├── metadata.xml │ └── opensearch-py-2.8.0.ebuild ├── opentelemetry-api │ ├── Manifest │ ├── metadata.xml │ ├── opentelemetry-api-1.27.0.ebuild │ └── opentelemetry-api-1.38.0.ebuild ├── opentelemetry-exporter-otlp-proto-common │ ├── Manifest │ ├── metadata.xml │ ├── opentelemetry-exporter-otlp-proto-common-1.27.0.ebuild │ └── opentelemetry-exporter-otlp-proto-common-1.38.0.ebuild ├── opentelemetry-exporter-otlp-proto-grpc │ ├── Manifest │ ├── metadata.xml │ ├── opentelemetry-exporter-otlp-proto-grpc-1.27.0.ebuild │ └── opentelemetry-exporter-otlp-proto-grpc-1.38.0.ebuild ├── opentelemetry-instrumentation-asgi │ ├── Manifest │ ├── metadata.xml │ ├── opentelemetry-instrumentation-asgi-0.48_beta0.ebuild │ └── opentelemetry-instrumentation-asgi-0.59_beta0.ebuild ├── opentelemetry-instrumentation-fastapi │ ├── Manifest │ ├── metadata.xml │ ├── opentelemetry-instrumentation-fastapi-0.48_beta0.ebuild │ └── opentelemetry-instrumentation-fastapi-0.59_beta0.ebuild ├── opentelemetry-instrumentation │ ├── Manifest │ ├── metadata.xml │ ├── opentelemetry-instrumentation-0.48_beta0.ebuild │ └── opentelemetry-instrumentation-0.59_beta0.ebuild ├── opentelemetry-proto │ ├── Manifest │ ├── metadata.xml │ ├── opentelemetry-proto-1.27.0.ebuild │ └── opentelemetry-proto-1.38.0.ebuild ├── opentelemetry-sdk │ ├── Manifest │ ├── metadata.xml │ ├── opentelemetry-sdk-1.27.0.ebuild │ └── opentelemetry-sdk-1.38.0.ebuild ├── opentelemetry-semantic-conventions │ ├── Manifest │ ├── metadata.xml │ ├── opentelemetry-semantic-conventions-0.48_beta0.ebuild │ └── opentelemetry-semantic-conventions-0.59_beta0.ebuild ├── opentelemetry-util-http │ ├── Manifest │ ├── metadata.xml │ ├── opentelemetry-util-http-0.48_beta0.ebuild │ └── opentelemetry-util-http-0.50_beta0.ebuild ├── optax │ ├── Manifest │ ├── metadata.xml │ ├── optax-0.1.9.ebuild │ └── optax-0.2.2.ebuild ├── optree │ ├── Manifest │ ├── metadata.xml │ └── optree-0.11.0.ebuild ├── orbax-checkpoint │ ├── Manifest │ ├── metadata.xml │ ├── orbax-checkpoint-0.4.4.ebuild │ └── orbax-checkpoint-0.5.11.ebuild ├── orbax │ ├── Manifest │ ├── metadata.xml │ └── orbax-0.11.13.ebuild ├── packagedcode-msitools │ ├── Manifest │ ├── metadata.xml │ └── packagedcode-msitools-0.101.210706.ebuild ├── packvers │ ├── Manifest │ ├── metadata.xml │ └── packvers-22.0.ebuild ├── parameter-expansion-patched │ ├── Manifest │ ├── metadata.xml │ └── parameter-expansion-patched-0.3.1.ebuild ├── pathlib-abc │ ├── Manifest │ ├── metadata.xml │ └── pathlib-abc-0.3.1.ebuild ├── pathy │ ├── Manifest │ ├── metadata.xml │ └── pathy-0.11.0.ebuild ├── patiencediff │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── metadata.xml │ └── patiencediff-0.2.15.ebuild ├── peewee-migrate │ ├── Manifest │ ├── metadata.xml │ └── peewee-migrate-1.13.0.ebuild ├── pep8-naming │ ├── Manifest │ ├── metadata.xml │ └── pep8-naming-0.14.1.ebuild ├── pettingzoo │ ├── Manifest │ ├── metadata.xml │ └── pettingzoo-1.24.3.ebuild ├── pgvector │ ├── Manifest │ ├── metadata.xml │ └── pgvector-0.3.6.ebuild ├── pillow-simd │ ├── Manifest │ ├── metadata.xml │ ├── pillow-simd-10.0.1_p0.ebuild │ └── pillow-simd-9.5.0_p2.ebuild ├── pip-requirements-parser │ ├── Manifest │ ├── metadata.xml │ └── pip-requirements-parser-32.0.1.ebuild ├── pkginfo2 │ ├── Manifest │ ├── metadata.xml │ └── pkginfo2-30.0.0.ebuild ├── playwright-bin │ ├── Manifest │ ├── metadata.xml │ └── playwright-bin-1.50.0.ebuild ├── plotille │ ├── Manifest │ ├── files │ │ └── plotille-5.1.0-pep517.patch │ ├── metadata.xml │ ├── plotille-5.0.0.ebuild │ └── plotille-5.1.0.ebuild ├── plotnine │ ├── Manifest │ ├── metadata.xml │ └── plotnine-0.13.6.ebuild ├── plugincode │ ├── Manifest │ ├── metadata.xml │ └── plugincode-32.0.0.ebuild ├── pocket │ ├── Manifest │ ├── metadata.xml │ ├── pocket-0.3.7-r1.ebuild │ └── pocket-9999.ebuild ├── portalocker │ ├── Manifest │ ├── metadata.xml │ └── portalocker-3.1.1.ebuild ├── portpicker │ ├── Manifest │ ├── metadata.xml │ └── portpicker-1.6.0.ebuild ├── posthog │ ├── Manifest │ ├── metadata.xml │ └── posthog-3.11.0.ebuild ├── preshed │ ├── Manifest │ ├── metadata.xml │ ├── preshed-3.0.9.ebuild │ └── preshed-4.0.0.ebuild ├── pretrainedmodels │ ├── Manifest │ ├── metadata.xml │ └── pretrainedmodels-0.7.4.ebuild ├── primp │ ├── Manifest │ ├── convert-cargo-lock.sh │ ├── metadata.xml │ └── primp-0.11.0.ebuild ├── proglog │ ├── Manifest │ ├── metadata.xml │ └── proglog-0.1.10.ebuild ├── protobuf │ ├── Manifest │ ├── files │ │ ├── protobuf-3.20.3-python311.patch │ │ └── protobuf-4.22.5-c++-17.patch │ ├── metadata.xml │ ├── protobuf-3.12.4.ebuild │ ├── protobuf-4.21.12.ebuild │ ├── protobuf-4.25.8.ebuild │ ├── protobuf-5.29.5.ebuild │ └── protobuf-6.33.0.ebuild ├── py-partiql-parser │ ├── Manifest │ ├── metadata.xml │ └── py-partiql-parser-0.6.1.ebuild ├── py-stackexchange │ ├── Manifest │ ├── metadata.xml │ └── py-stackexchange-2.2.007_p9999.ebuild ├── py3c │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── metadata.xml │ ├── py3c-1.3.1-r1.ebuild │ └── py3c-1.4.ebuild ├── pyahocorasick │ ├── Manifest │ ├── metadata.xml │ └── pyahocorasick-2.2.0.ebuild ├── pyamdgpuinfo │ ├── Manifest │ ├── metadata.xml │ └── pyamdgpuinfo-2.1.6.ebuild ├── pyarrow │ ├── Manifest │ ├── metadata.xml │ └── pyarrow-19.0.1.ebuild ├── pyaudio │ ├── Manifest │ ├── metadata.xml │ └── pyaudio-0.2.14.ebuild ├── pybboxes │ ├── Manifest │ ├── metadata.xml │ └── pybboxes-0.2.0.ebuild ├── pyclibrary │ ├── Manifest │ ├── metadata.xml │ └── pyclibrary-0.2.2.ebuild ├── pycsdr │ ├── Manifest │ ├── metadata.xml │ └── pycsdr-0.18.2.ebuild ├── pydantic-settings │ ├── Manifest │ ├── metadata.xml │ ├── pydantic-settings-2.6.0.ebuild │ └── pydantic-settings-2.6.1.ebuild ├── pydigiham │ ├── Manifest │ ├── metadata.xml │ └── pydigiham-0.6.2.ebuild ├── pyee │ ├── Manifest │ ├── metadata.xml │ ├── pyee-12.1.1.ebuild │ └── pyee-13.0.0.ebuild ├── pyfiglet │ ├── Manifest │ ├── metadata.xml │ └── pyfiglet-1.0.2.ebuild ├── pyglfw │ ├── Manifest │ ├── metadata.xml │ └── pyglfw-2.7.0.ebuild ├── pygmars │ ├── Manifest │ ├── metadata.xml │ └── pygmars-0.9.0.ebuild ├── pygobject │ ├── Manifest │ ├── files │ │ └── pygobject-3.48.2-egg-info.patch │ ├── metadata.xml │ ├── pygobject-3.46.0-r1.ebuild │ ├── pygobject-3.48.2-r1.ebuild │ └── pygobject-3.50.0.ebuild ├── pylsqpack │ ├── Manifest │ ├── metadata.xml │ └── pylsqpack-0.3.18.ebuild ├── pymaven-patch │ ├── Manifest │ ├── metadata.xml │ └── pymaven-patch-0.3.2.ebuild ├── pymilvus │ ├── Manifest │ ├── metadata.xml │ └── pymilvus-2.4.14.ebuild ├── pymunk │ ├── Manifest │ ├── metadata.xml │ └── pymunk-6.8.1.ebuild ├── pyngrok │ ├── Manifest │ ├── metadata.xml │ └── pyngrok-7.2.2.ebuild ├── pynvml │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── metadata.xml │ ├── pynvml-12.550.52.ebuild │ ├── pynvml-12.555.43.ebuild │ └── pynvml-12.560.30.ebuild ├── pyperf │ ├── Manifest │ ├── metadata.xml │ ├── pyperf-2.6.3.ebuild │ └── pyperf-2.7.0.ebuild ├── pypika │ ├── Manifest │ ├── metadata.xml │ └── pypika-0.48.9.ebuild ├── pyreadline3 │ ├── Manifest │ ├── metadata.xml │ └── pyreadline3-3.5.4.ebuild ├── pysbd │ ├── Manifest │ ├── metadata.xml │ └── pysbd-0.3.4.ebuild ├── pytest-docker │ ├── Manifest │ ├── metadata.xml │ └── pytest-docker-3.1.1.ebuild ├── pytest-markdown-docs │ ├── Manifest │ ├── metadata.xml │ └── pytest-markdown-docs-0.5.1.ebuild ├── pytest-raises │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── metadata.xml │ └── pytest-raises-0.11-r2.ebuild ├── python-chess │ ├── Manifest │ ├── metadata.xml │ └── python-chess-1.10.0.ebuild ├── python-crfsuite │ ├── Manifest │ ├── files │ │ └── python-crfsuite-0.9.11-no-win32.patch │ ├── metadata.xml │ └── python-crfsuite-0.9.11.ebuild ├── python-decouple │ ├── Manifest │ ├── metadata.xml │ ├── python-decouple-3.8.ebuild │ └── python-decouple-9999.ebuild ├── python-iso639 │ ├── Manifest │ ├── metadata.xml │ └── python-iso639-2025.1.28.ebuild ├── python-oxmsg │ ├── Manifest │ ├── metadata.xml │ └── python-oxmsg-0.0.1.ebuild ├── python-plexapi │ ├── Manifest │ ├── metadata.xml │ └── python-plexapi-4.15.13.ebuild ├── python-pptx │ ├── Manifest │ ├── metadata.xml │ └── python-pptx-1.0.2.ebuild ├── python-resize-image │ ├── Manifest │ ├── files │ │ └── python-resize-image-1.1.20-use-rgb-convert.patch │ ├── metadata.xml │ └── python-resize-image-1.1.20.ebuild ├── python-soxr │ ├── Manifest │ ├── files │ │ └── python-soxr-0.3.7-use-system-soxr-from-envvar.patch │ ├── metadata.xml │ └── python-soxr-0.3.7.ebuild ├── python-uinput │ ├── Manifest │ ├── metadata.xml │ └── python-uinput-1.0.1.ebuild ├── pytorch-lightning │ ├── Manifest │ ├── metadata.xml │ └── pytorch-lightning-2.3.0.ebuild ├── pytube │ ├── Manifest │ ├── metadata.xml │ └── pytube-9999.ebuild ├── pyv4l2 │ ├── Manifest │ ├── files │ │ └── pyv4l2-9999_p20190515-select-cython-by-envvar.patch │ ├── metadata.xml │ └── pyv4l2-1.0.2_pre9999.ebuild ├── pyvips │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── metadata.xml │ ├── pyvips-2.2.3.ebuild │ └── pyvips-3.0.0.ebuild ├── pyxlsb │ ├── Manifest │ ├── metadata.xml │ └── pyxlsb-1.0.10.ebuild ├── qdrant-client │ ├── Manifest │ ├── metadata.xml │ └── qdrant-client-1.13.2.ebuild ├── rank-bm25 │ ├── Manifest │ ├── metadata.xml │ └── rank-bm25-0.2.2.ebuild ├── rapidocr-onnxruntime │ ├── Manifest │ ├── files │ │ └── rapidocr-onnxruntime-1.4.4-decrapify-version.patch │ ├── metadata.xml │ └── rapidocr-onnxruntime-1.4.4.ebuild ├── realesrgan │ ├── Manifest │ ├── metadata.xml │ └── realesrgan-0.3.0.ebuild ├── red-black-tree-mod │ ├── Manifest │ ├── metadata.xml │ └── red-black-tree-mod-1.22.ebuild ├── regipy │ ├── Manifest │ ├── metadata.xml │ └── regipy-5.2.0.ebuild ├── rife-ncnn-vulkan-python-tntwise │ ├── Manifest │ ├── files │ │ └── rife-ncnn-vulkan-python-tntwise-1.4.4-restyle-conditional.patch │ ├── metadata.xml │ └── rife-ncnn-vulkan-python-tntwise-1.4.4.ebuild ├── rivalcfg │ ├── Manifest │ ├── files │ │ └── rivalcfg-4.15.0-add-rival3-gen2-support.patch │ ├── metadata.xml │ └── rivalcfg-4.15.0.ebuild ├── rlax │ ├── Manifest │ ├── metadata.xml │ └── rlax-0.1.6.ebuild ├── rlcard │ ├── Manifest │ ├── files │ │ └── rlcard-1.1.0-fix-exclude-tests.patch │ ├── metadata.xml │ └── rlcard-1.2.0_p9999.ebuild ├── rocPyDecode │ ├── Manifest │ ├── files │ │ └── rocPyDecode-6.4.4-ffmpeg-path.patch │ ├── metadata.xml │ ├── rocPyDecode-6.4.4.ebuild │ └── rocPyDecode-7.0.2.ebuild ├── rpm-inspector-rpm │ ├── Manifest │ ├── metadata.xml │ └── rpm-inspector-rpm-4.16.1.3.210404.ebuild ├── runs │ ├── Manifest │ ├── metadata.xml │ └── runs-1.2.2.ebuild ├── rust-inspector │ ├── Manifest │ ├── metadata.xml │ └── rust-inspector-0.1.0.ebuild ├── saneyaml │ ├── Manifest │ ├── metadata.xml │ └── saneyaml-0.6.1.ebuild ├── scenedetect │ ├── Manifest │ ├── metadata.xml │ └── scenedetect-0.6.5.ebuild ├── scipy │ ├── Manifest │ ├── metadata.xml │ └── scipy-1.14.1.ebuild ├── sentence-transformers │ ├── Manifest │ ├── metadata.xml │ └── sentence-transformers-3.4.1.ebuild ├── setuptools-gettext │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── metadata.xml │ └── setuptools-gettext-0.1.14.ebuild ├── setuptools-git-versioning │ ├── Manifest │ ├── metadata.xml │ └── setuptools-git-versioning-2.0.0.ebuild ├── shimmy │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── metadata.xml │ ├── shimmy-1.2.1.ebuild │ ├── shimmy-1.3.0.ebuild │ └── shimmy-2.0.0.ebuild ├── simple-parsing │ ├── Manifest │ ├── metadata.xml │ └── simple-parsing-0.1.5.ebuild ├── soundfile │ ├── Manifest │ ├── metadata.xml │ └── soundfile-0.13.1.ebuild ├── spacy-legacy │ ├── Manifest │ ├── metadata.xml │ └── spacy-legacy-3.0.12.ebuild ├── spacy-loggers │ ├── Manifest │ ├── metadata.xml │ └── spacy-loggers-1.0.5.ebuild ├── spacy │ ├── Manifest │ ├── metadata.xml │ ├── spacy-3.7.6.ebuild │ └── spacy-3.8.2.ebuild ├── sphinx-theme-builder │ ├── Manifest │ ├── metadata.xml │ └── sphinx-theme-builder-0.2.0b_p2.ebuild ├── sqlmodel │ ├── Manifest │ ├── metadata.xml │ └── sqlmodel-0.0.24.ebuild ├── srsly │ ├── Manifest │ ├── metadata.xml │ └── srsly-2.4.8.ebuild ├── stasm │ ├── Manifest │ ├── files │ │ └── stasm-696fca9-opencv-includes.patch │ ├── metadata.xml │ └── stasm-1.8.2_p20151122.ebuild ├── statsmodels │ ├── Manifest │ ├── metadata.xml │ └── statsmodels-0.14.4.ebuild ├── streaming-form-data │ ├── Manifest │ ├── metadata.xml │ └── streaming-form-data-1.19.0.ebuild ├── sysv-ipc │ ├── Manifest │ ├── metadata.xml │ └── sysv-ipc-1.1.0.ebuild ├── tdir │ ├── Manifest │ ├── metadata.xml │ └── tdir-1.8.2.ebuild ├── tf-keras │ ├── Manifest │ ├── files │ │ └── tf-keras-2.18.0-updated-pip-excluded-files.patch │ ├── metadata.xml │ ├── tf-keras-2.17.0.ebuild │ └── tf-keras-2.20.1.ebuild ├── thinc │ ├── Manifest │ ├── metadata.xml │ ├── thinc-8.3.2.ebuild │ └── thinc-9.0.0.ebuild ├── tiktoken │ ├── Manifest │ ├── convert-cargo-lock.sh │ ├── files │ │ └── 0.9.0 │ │ │ ├── Cargo.lock │ │ │ └── Cargo.toml │ ├── metadata.xml │ └── tiktoken-0.9.0.ebuild ├── timm │ ├── Manifest │ ├── metadata.xml │ ├── timm-0.6.7.ebuild │ ├── timm-0.9.16.ebuild │ └── timm-1.0.3.ebuild ├── tomesd │ ├── Manifest │ ├── metadata.xml │ └── tomesd-0.1.3.ebuild ├── toml │ ├── Manifest │ ├── metadata.xml │ └── toml-9999.ebuild ├── torchdiffeq │ ├── Manifest │ ├── metadata.xml │ └── torchdiffeq-0.2.5.ebuild ├── torchsde │ ├── Manifest │ ├── metadata.xml │ └── torchsde-0.2.6.ebuild ├── trampoline │ ├── Manifest │ ├── metadata.xml │ └── trampoline-0.1.2.ebuild ├── trfl │ ├── Manifest │ ├── metadata.xml │ └── trfl-1.2.0.ebuild ├── triton │ ├── Manifest │ ├── files │ │ ├── triton-1.1.2-cuda-path.patch │ │ ├── triton-1.1.2-customize-setup_py.patch │ │ ├── triton-1.1.2-llvm-path.patch │ │ ├── triton-1.1.2-llvm-static-linking.patch │ │ ├── triton-1.1.2-optionalize-gpu-init-llvm_cc.patch │ │ ├── triton-1.1.2-optionalize-gpu-targets-and-dynlib.patch │ │ ├── triton-1.1.2-rocm-hardcoded-paths.patch │ │ ├── triton-2.0.0-cuda-hardcoded-paths.patch │ │ ├── triton-2.0.0-customize-setup_py.patch │ │ ├── triton-2.0.0-llvm-static-linking.patch │ │ ├── triton-2.0.0-optionalize-gpu-init.patch │ │ ├── triton-2.0.0-optionalize-gpu-targets-and-dynlib.patch │ │ ├── triton-2.1.0-cuda-hardcoded-paths.patch │ │ ├── triton-2.1.0-customize-setup_py.patch │ │ ├── triton-2.1.0-dynlib.patch │ │ ├── triton-2.1.0-llvm-static-linking.patch │ │ ├── triton-2.1.0-offline-install.patch │ │ ├── triton-2.1.0-optionalize-gpu-init.patch │ │ ├── triton-2.1.0-optionalize-targets.patch │ │ ├── triton-2.1.0-rename-to-llvm-17-target-xpu.patch │ │ ├── triton-2.1.0-rename-to-llvm-17-target.patch │ │ ├── triton-2.1.0-rocm-hardcoded-paths.patch │ │ ├── triton-2.3.1-cuda-hardcoded-paths.patch │ │ ├── triton-2.3.1-dynlib.patch │ │ ├── triton-2.3.1-offline-install.patch │ │ ├── triton-2.3.1-optionalize-gpu-init.patch │ │ ├── triton-2.3.1-rocm-hardcoded-paths.patch │ │ ├── triton-3.0.0-cuda-hardcoded-paths.patch │ │ ├── triton-3.0.0-customize-setup_py.patch │ │ ├── triton-3.0.0-dynlib.patch │ │ ├── triton-3.0.0-llvm-arch.patch │ │ ├── triton-3.0.0-offline-install.patch │ │ ├── triton-3.0.0-rocm-hardcoded-paths.patch │ │ ├── triton-3.0.0_p1-customize-setup_py.patch │ │ ├── triton-3.0.0_p1-dynlib.patch │ │ ├── triton-3.0.0_p1-llvm-arch.patch │ │ ├── triton-3.0.0_p1-offline-install.patch │ │ ├── triton-3.0.0_p1-rocm-hardcoded-paths.patch │ │ ├── triton-3.5.1-customize-setup_py.patch │ │ ├── triton-3.5.1-dynlib.patch │ │ ├── triton-3.5.1-llvm-arch.patch │ │ ├── triton-3.5.1-offline-install.patch │ │ └── triton-3.5.1-rocm-hardcoded-paths.patch │ ├── metadata.xml │ └── triton-3.5.1.ebuild ├── typecode-libmagic │ ├── Manifest │ ├── metadata.xml │ └── typecode-libmagic-5.39.210531.ebuild ├── typecode │ ├── Manifest │ ├── metadata.xml │ └── typecode-30.0.2.ebuild ├── typer │ ├── Manifest │ ├── metadata.xml │ └── typer-0.12.5.ebuild ├── types-aiofiles │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── metadata.xml │ └── types-aiofiles-23.2.0.20240403.ebuild ├── types-dataclasses │ ├── Manifest │ ├── metadata.xml │ └── types-dataclasses-0.6.6.ebuild ├── types-toml │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── metadata.xml │ └── types-toml-0.10.8.20240310.ebuild ├── typing-extensions │ ├── Manifest │ ├── autobump │ │ ├── description │ │ └── get_latest_patch_version.sh │ ├── metadata.xml │ ├── typing-extensions-4.10.0.ebuild │ └── typing-extensions-4.11.0.ebuild ├── ultralytics-thop │ ├── Manifest │ ├── metadata.xml │ └── ultralytics-thop-2.0.13.ebuild ├── ultralytics │ ├── Manifest │ ├── metadata.xml │ └── ultralytics-8.3.51.ebuild ├── unstructured-client │ ├── Manifest │ ├── metadata.xml │ └── unstructured-client-0.25.9.ebuild ├── unstructured │ ├── Manifest │ ├── files │ │ └── unstructured-0.16.17-remove-analytics.patch │ ├── metadata.xml │ └── unstructured-0.16.17.ebuild ├── upscale-ncnn-py │ ├── Manifest │ ├── metadata.xml │ └── upscale-ncnn-py-2024.10.09.ebuild ├── urlpy │ ├── Manifest │ ├── metadata.xml │ └── urlpy-0.5.0.ebuild ├── wandb │ ├── Manifest │ ├── metadata.xml │ └── wandb-0.19.11.ebuild ├── wasabi │ ├── Manifest │ ├── metadata.xml │ └── wasabi-1.1.3.ebuild ├── weasel │ ├── Manifest │ ├── metadata.xml │ └── weasel-0.4.1.ebuild ├── weaviate-client │ ├── Manifest │ ├── metadata.xml │ └── weaviate-client-3.26.7.ebuild ├── wrapt │ ├── Manifest │ ├── autobump │ │ ├── description │ │ └── get_latest_patch_version.sh │ ├── metadata.xml │ ├── wrapt-1.14.1.ebuild │ └── wrapt-1.16.0.ebuild ├── xformers │ ├── Manifest │ ├── metadata.xml │ └── xformers-0.0.29.ebuild ├── xmod │ ├── Manifest │ ├── metadata.xml │ └── xmod-1.8.1.ebuild └── youtube-transcript-api │ ├── Manifest │ ├── metadata.xml │ └── youtube-transcript-api-0.6.3.ebuild ├── dev-qt ├── qt5compat │ ├── Manifest │ ├── metadata.xml │ └── qt5compat-6.9.3.ebuild ├── qtbase │ ├── Manifest │ ├── files │ │ ├── qtbase-6.10.0-QTBUG-141099.patch │ │ ├── qtbase-6.5.2-hppa-forkfd-grow-stack.patch │ │ ├── qtbase-6.5.2-no-symlink-check.patch │ │ ├── qtbase-6.6.1-forkfd-childstack-size.patch │ │ ├── qtbase-6.6.3-gcc14-avx512fp16.patch │ │ ├── qtbase-6.8.2-cross.patch │ │ └── qtbase-6.9.0-no-direct-extern-access.patch │ ├── metadata.xml │ └── qtbase-6.9.3.ebuild ├── qtdeclarative │ ├── Manifest │ ├── files │ │ ├── qtdeclarative-5.14.2-QQuickItemView-fix-maxXY-extent.patch │ │ ├── qtdeclarative-6.10.0-QTBUG-139626.patch │ │ └── qtdeclarative-6.9.3-QTBUG-140018.patch │ ├── metadata.xml │ └── qtdeclarative-6.9.3-r1.ebuild ├── qtimageformats │ ├── Manifest │ ├── metadata.xml │ └── qtimageformats-6.9.3.ebuild ├── qtmultimedia │ ├── Manifest │ ├── files │ │ ├── qtmultimedia-6.7.3-eigen-ppc-no-vsx.patch │ │ └── qtmultimedia-6.8.1-qversionnumber.patch │ ├── metadata.xml │ └── qtmultimedia-6.9.3.ebuild ├── qtquick3d │ ├── Manifest │ ├── files │ │ ├── qtquick3d-6.6.2-gcc14.patch │ │ ├── qtquick3d-6.6.2-x32abi.patch │ │ └── qtquick3d-6.9.2-assimp6.patch │ ├── metadata.xml │ └── qtquick3d-6.9.3.ebuild ├── qtquicktimeline │ ├── Manifest │ ├── metadata.xml │ └── qtquicktimeline-6.9.3.ebuild ├── qtshadertools │ ├── Manifest │ ├── metadata.xml │ └── qtshadertools-6.9.3.ebuild ├── qtsvg │ ├── Manifest │ ├── metadata.xml │ └── qtsvg-6.9.3.ebuild ├── qttools │ ├── Manifest │ ├── metadata.xml │ └── qttools-6.9.3.ebuild ├── qtwayland │ ├── Manifest │ ├── metadata.xml │ └── qtwayland-6.9.3.ebuild └── qtwebengine │ ├── Manifest │ ├── files │ ├── qtwebengine-6.9.3-QTBUG-139424.patch │ └── qtwebengine-6.9.3-stdint.patch │ ├── metadata.xml │ └── qtwebengine-6.9.3.ebuild ├── dev-ruby └── libcaca │ ├── Manifest │ ├── files │ ├── caca-256color.diff │ ├── libcaca-0.99.beta19-256-colors-ncurses.patch │ ├── libcaca-0.99.beta19-configure.ac-ncurses_libs.patch │ ├── libcaca-0.99.beta20-256-colors-ncurses.patch │ ├── libcaca-0.99_beta20_p20211207-img2txt-python3-compat.patch │ ├── libcaca-0.99_beta20_p20211207-php7-fixes.patch │ ├── libcaca-0.99_beta20_p20211207-php8-fixes.patch │ └── libcaca-0.99_beta20_p20211207-ruby-3.0-compat.patch │ ├── libcaca-0.99_beta20_p20211207.ebuild │ └── metadata.xml ├── dev-util ├── DOCA-Host │ ├── DOCA-Host-2.9.3.ebuild │ ├── Manifest │ └── metadata.xml ├── HIPIFY │ ├── HIPIFY-6.4.4.ebuild │ ├── HIPIFY-7.0.2.ebuild │ ├── Manifest │ ├── files │ │ ├── HIPIFY-4.5.2-install-headers-option.patch │ │ ├── HIPIFY-5.1.3-install-headers-option.patch │ │ ├── HIPIFY-5.5.1-install-headers-option.patch │ │ ├── HIPIFY-5.6.1-install-headers-option.patch │ │ └── HIPIFY-5.7.0-install-headers-option.patch │ └── metadata.xml ├── ROCgdb │ ├── Manifest │ ├── ROCgdb-6.4.4.ebuild │ ├── ROCgdb-7.0.2.ebuild │ └── metadata.xml ├── Tensile │ ├── Manifest │ ├── Tensile-6.4.4.ebuild │ ├── Tensile-7.0.0.ebuild │ ├── files │ │ ├── Tensile-4.1.0-output-commands.patch │ │ ├── Tensile-4.3.0-output-commands.patch │ │ ├── Tensile-4.5.2-change-cmake-name-for-msgpack-cxx-6-release.patch │ │ ├── Tensile-4.5.2-fix-msgpack-c-linking.patch │ │ ├── Tensile-5.0.2-fix-arch-parse.patch │ │ ├── Tensile-5.0.2-use-ninja.patch │ │ ├── Tensile-5.2.3-fix-arch-parse.patch │ │ ├── Tensile-5.4.2-fix-arch-parse.patch │ │ ├── Tensile-5.4.2-use-ninja.patch │ │ ├── Tensile-5.6.0-output-commands.patch │ │ ├── Tensile-5.7.1-avoid-hipcc-bat.patch │ │ ├── Tensile-6.4.4-fix-llvm-default-path.patch │ │ ├── Tensile-6.4.4-link-llvm.patch │ │ ├── Tensile-7.0.0-default-paths.patch │ │ └── Tensile-change-cmake-name-for-msgpack-cxx-6-release.patch │ └── metadata.xml ├── amd-smi │ ├── Manifest │ ├── amd-smi-6.4.4.ebuild │ ├── amd-smi-7.0.2.ebuild │ ├── files │ │ └── amd-smi-5.5.1-disable-docs.patch │ └── metadata.xml ├── android-ndk │ ├── Manifest │ ├── android-ndk-25.ebuild │ └── metadata.xml ├── android-sdk-build-tools │ ├── Manifest │ ├── android-sdk-build-tools-30.0.2.ebuild │ ├── android-sdk-build-tools-33.0.1.ebuild │ ├── files │ │ └── package.xml │ └── metadata.xml ├── android-sdk-commandlinetools │ ├── Manifest │ ├── android-sdk-commandlinetools-8.0.9123335.ebuild │ └── metadata.xml ├── android-sdk-platform-tools │ ├── Manifest │ ├── android-sdk-platform-tools-33.0.3.ebuild │ ├── files │ │ └── package.xml │ └── metadata.xml ├── bear │ ├── Manifest │ ├── bear-3.1.6.ebuild │ ├── files │ │ └── bear-3.1.6-fix-grpc-link.patch │ └── metadata.xml ├── binaryen │ ├── Manifest │ ├── binaryen-115.ebuild │ ├── binaryen-118.ebuild │ ├── binaryen-119.ebuild │ ├── binaryen-121.ebuild │ ├── binaryen-123.ebuild │ ├── files │ │ └── binaryen-93-e4d1e20.patch │ └── metadata.xml ├── carbon-now-cli │ ├── Manifest │ ├── carbon-now-cli-2.1.0.ebuild │ ├── files │ │ ├── 2.1.0 │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ └── carbon-now │ └── metadata.xml ├── closure-compiler-npm │ ├── Manifest │ ├── closure-compiler-npm-20240317.0.0.ebuild │ ├── files │ │ ├── 20240317.0.0 │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── closure-compiler-java │ │ ├── closure-compiler-node │ │ ├── closure-compiler-npm-20240317.0.0-init-absolute_javabase.patch │ │ └── closure-compiler-npm-20240317.0.0-no-loop.patch │ └── metadata.xml ├── dyninst │ ├── Manifest │ ├── dyninst-13.0.0.ebuild │ ├── files │ │ ├── dyninst-13.0.0-cache-install-paths.patch │ │ ├── dyninst-13.0.0-disable-exact-version-elfutils.patch │ │ └── dyninst-13.0.0-use-system-elfutils.patch │ └── metadata.xml ├── emscripten │ ├── Manifest │ ├── emscripten-3.1.52.ebuild │ ├── emscripten-3.1.64.ebuild │ ├── emscripten-3.1.74.ebuild │ ├── emscripten-4.0.1.ebuild │ ├── emscripten-4.0.11.ebuild │ ├── files │ │ ├── emscripten-1.39.20-set-wrappers-path.patch │ │ ├── emscripten-1.40.1-78a5618.patch │ │ ├── emscripten-2.0.12-set-wrappers-path.patch │ │ ├── emscripten-2.0.26-78a5618.patch │ │ ├── emscripten-2.0.26-set-wrappers-path.patch │ │ ├── emscripten-2.0.31-set-wrappers-path.patch │ │ ├── emscripten-3.0.1-set-wrappers-path.patch │ │ ├── emscripten-3.1.14-set-wrappers-path.patch │ │ ├── emscripten-3.1.17-disable-stack-protector.patch │ │ ├── emscripten-3.1.20-set-wrappers-path.patch │ │ ├── emscripten-3.1.28-includes.patch │ │ ├── emscripten-3.1.28-libcxxabi_no_exceptions-already-defined.patch │ │ ├── emscripten-3.1.3-30e3c87.patch │ │ ├── emscripten-3.1.30-disable-stack-protector-v2.patch │ │ ├── emscripten-3.1.30-disable-stack-protector.patch │ │ ├── emscripten-3.1.44-disable-stack-protector.patch │ │ ├── emscripten-3.1.51-includes.patch │ │ ├── emscripten-3.1.51-set-wrappers-path.patch │ │ ├── emscripten-3.1.52-set-wrappers-path.patch │ │ ├── emscripten-3.1.64-set-wrappers-path.patch │ │ ├── emscripten-3.1.74-set-wrappers-path.patch │ │ ├── emscripten-4.0.1-set-wrappers-path.patch │ │ ├── emscripten-4.0.11-endian.patch │ │ ├── emscripten-4.0.11-includes.patch │ │ ├── emscripten-4.0.11-set-wrappers-path.patch │ │ └── hello_world.cpp │ └── metadata.xml ├── geany │ ├── Manifest │ ├── files │ │ ├── geany-1.38-autocomplete-engine-prefs.patch │ │ ├── geany-2.0-autocomplete-engine-prefs.patch │ │ └── geany-2.0-gcc15.patch │ ├── geany-2.1.ebuild │ └── metadata.xml ├── glslang │ ├── Manifest │ ├── glslang-1.4.321.0.ebuild │ └── metadata.xml ├── google-perftools │ ├── Manifest │ ├── files │ │ └── google-perftools-2.9.1-disable-generic-dynamic-tls.patch │ ├── google-perftools-2.15.ebuild │ ├── google-perftools-2.16.ebuild │ ├── google-perftools-2.17.2.ebuild │ └── metadata.xml ├── grex │ ├── Manifest │ ├── grex-1.4.5.ebuild │ └── update-ebuild ├── gycm │ ├── Manifest │ ├── files │ │ ├── default_settings.json.45.json │ │ ├── gycm-0.1_p20170119-confirm-ycm-extra-conf.patch │ │ ├── gycm-0.1_p20170119-enable-debug-spew-2.patch │ │ ├── gycm-0.1_p20170119-init-struct-for-ycmd-core-version-45.patch │ │ ├── gycm-0.1_p20170119-python-unbuffered-io.patch │ │ ├── gycm-9999-20141216-debug-keep-log-files.patch │ │ ├── gycm-9999-20141216-enable-debug-spew.patch │ │ ├── gycm-9999.20141216-missing-iostream.patch │ │ └── gycm-9999.20141216-null-exception-check.patch │ ├── gycm-0.1_p20170119.ebuild │ └── metadata.xml ├── hip-meta │ ├── Manifest │ ├── hip-meta-6.4.4.ebuild │ ├── hip-meta-7.0.2.ebuild │ └── metadata.xml ├── hip │ ├── Manifest │ ├── files │ │ ├── 0001-SWDEV-316128-HIP-surface-API-support.patch │ │ ├── hip-4.1.0-fix-hip_prof_gen.patch │ │ ├── hip-4.1.0-hip-architectures.patch │ │ ├── hip-4.1.0-hip-config-not-cuda.patch │ │ ├── hip-4.1.0-hip-host-not-cuda.patch │ │ ├── hip-4.1.0-llvm-15-noinline-keyword.patch │ │ ├── hip-4.1.0-set-build-id.patch │ │ ├── hip-4.2.0-cancel-hcc-header-removal.patch │ │ ├── hip-4.2.0-config-cmake-in.patch │ │ ├── hip-4.5.2-DisableTest.patch │ │ ├── hip-4.5.2-fno-stack-protector.patch │ │ ├── hip-4.5.2-set-build-id.patch │ │ ├── hip-5.0.1-DisableTest.patch │ │ ├── hip-5.0.1-hip_vector_types.patch │ │ ├── hip-5.0.2-set-build-id.patch │ │ ├── hip-5.1.3-correct-sample-install-location.patch │ │ ├── hip-5.1.3-fix-hip_prof_gen.patch │ │ ├── hip-5.1.3-fno-stack-protector.patch │ │ ├── hip-5.1.3-llvm-15-noinline-keyword.patch │ │ ├── hip-5.1.3-remove-cmake-doxygen-commands.patch │ │ ├── hip-5.2.3-remove-cmake-doxygen-commands.patch │ │ ├── hip-5.3.3-disable-Werror.patch │ │ ├── hip-5.3.3-remove-cmake-doxygen-commands.patch │ │ ├── hip-5.4.3-DisableTest.patch │ │ ├── hip-5.5.1-disable-Werror.patch │ │ ├── hip-5.6.0-DisableTest.patch │ │ ├── hip-5.6.0-hip-config-not-cuda.patch │ │ ├── hip-5.6.0-hip-host-not-cuda.patch │ │ ├── hip-5.7.0-DisableTest.patch │ │ ├── hip-5.7.0-hip-config-not-cuda.patch │ │ ├── hip-5.7.0-hip-host-not-cuda.patch │ │ ├── hip-5.7.0-remove-cmake-doxygen-commands.patch │ │ ├── hip-6.0.2-hip-host-not-cuda.patch │ │ ├── hip-6.4.4-remove-cmake-doxygen-commands.patch │ │ ├── hip-7.0.2-disable-Werror.patch │ │ ├── hipamd-4.1.0-fix-hip-lang-device-interface-path.patch │ │ ├── hipamd-4.5.2-fix-hip-clang-root.patch │ │ ├── hipamd-4.5.2-fix-hip-lang-device-interface-path.patch │ │ ├── hipamd-5.1.3-fix-hip-lang-device-interface-path.patch │ │ ├── hipamd-5.2.3-noinline.patch │ │ ├── hipamd-5.7.0-fix-install-cmake-files.patch │ │ ├── hipamd-5.7.0-hip_fatbin-header.patch │ │ ├── hipamd-5.7.0-hiprtc-header.patch │ │ ├── hipamd-5.7.0-hiprtc-includes-path.patch │ │ ├── hipamd-5.7.1-unwrap-line.patch │ │ ├── hipamd-6.0.2-fix-install-cmake-files.patch │ │ ├── hipamd-6.0.2-hip_fatbin-header.patch │ │ ├── hipamd-6.2.0-fix-install-cmake-files.patch │ │ ├── hipamd-6.2.0-hip_fatbin-header.patch │ │ ├── hipamd-6.2.0-hiprtc-includes-path.patch │ │ ├── hipamd-6.4.4-hiprtc-header.patch │ │ ├── hipamd-6.4.4-hiprtc-includes-path.patch │ │ ├── hipcc-5.6.0-fix-version.patch │ │ ├── hipcc-5.6.0-fno-stack-protector.patch │ │ ├── hipcc-6.4.4-autolink-hipamd64-deps-for-hipcc-pl.patch │ │ ├── hipcc-6.4.4-autolink-hipamd64-deps.patch │ │ ├── hipcc-6.4.4-cuda-path.patch │ │ ├── hipcc-7.0.2-autolink-hipamd64-deps.patch │ │ ├── hipvars-5.1.3.pm │ │ ├── hipvars-5.3.3.pm │ │ ├── hipvars-6.4.4.pm │ │ ├── rocclr-5.2.3-comgr-header.patch │ │ ├── rocclr-5.3.3-gcc13.patch │ │ ├── rocclr-5.7.0-include-path.patch │ │ ├── rocclr-5.7.0-opencl-header.patch │ │ ├── rocclr-6.2.0-include-path.patch │ │ └── rocclr-6.4.4-include-path.patch │ ├── hip-6.4.4.ebuild │ ├── hip-7.0.2.ebuild │ └── metadata.xml ├── hipfort │ ├── Manifest │ ├── hipfort-6.4.4.ebuild │ ├── hipfort-7.0.2.ebuild │ └── metadata.xml ├── hyprwayland-scanner │ ├── Manifest │ ├── hyprwayland-scanner-0.4.5.ebuild │ └── metadata.xml ├── jsonlint │ ├── Manifest │ ├── files │ │ └── 16.0.0 │ │ │ ├── package-lock.json │ │ │ └── package.json │ ├── jsonlint-16.0.0.ebuild │ └── metadata.xml ├── msbuild │ ├── Manifest │ ├── metadata.xml │ ├── msbuild-16.9.0.ebuild │ └── msbuild-17.3.1.ebuild ├── perf │ ├── Manifest │ ├── files │ │ ├── perf-6.11.7-annotate.patch │ │ ├── perf-6.14-lto.patch │ │ ├── perf-6.4-libtracefs.patch │ │ └── perf-6.7-expr.patch │ ├── metadata.xml │ ├── perf-6.14.ebuild │ ├── perf-6.16-r1.ebuild │ └── perf-6.16.ebuild ├── pnnx │ ├── Manifest │ ├── files │ │ ├── pnnx-20240820-force-system-protobuf.patch │ │ └── pnnx-20240820-optionalize-features.patch │ ├── metadata.xml │ └── pnnx-20250503.ebuild ├── rocm-meta │ ├── Manifest │ ├── metadata.xml │ ├── rocm-meta-6.4.4.ebuild │ └── rocm-meta-7.0.2.ebuild ├── rocm-smi │ ├── Manifest │ ├── files │ │ └── rocm-smi-5.0.2-gcc12-memcpy.patch │ ├── metadata.xml │ ├── rocm-smi-6.4.4.ebuild │ └── rocm-smi-7.0.2.ebuild ├── rocm-validation-suite │ ├── Manifest │ ├── files │ │ ├── rocm-validation-suite-4.5.2-disable-pkgcheck.patch │ │ ├── rocm-validation-suite-4.5.2-system-libs.patch │ │ └── rocm-validation-suite-5.2.3-fix-rocblas-includes-path.patch │ ├── metadata.xml │ ├── rocm-validation-suite-6.4.4.ebuild │ └── rocm-validation-suite-7.0.2.ebuild ├── rocm_bandwidth_test │ ├── Manifest │ ├── files │ │ └── rocm_bandwidth_test-6.1.2-pr90-a58f9fd.patch │ ├── metadata.xml │ ├── rocm_bandwidth_test-6.4.4.ebuild │ └── rocm_bandwidth_test-7.0.2.ebuild ├── rocminfo │ ├── Manifest │ ├── files │ │ ├── rocminfo-4.5.2-detect-builtin-amdgpu.patch │ │ └── rocminfo-5.1.3-detect-builtin-amdgpu.patch │ ├── metadata.xml │ ├── rocminfo-6.4.4.ebuild │ └── rocminfo-7.0.2.ebuild ├── rocprofiler-compute │ ├── Manifest │ ├── files │ │ ├── omniperf-6.2.0-conditional-version-sha-install.patch │ │ └── omniperf-6.4.4-conditional-version-sha-install.patch │ ├── metadata.xml │ ├── rocprofiler-compute-6.4.4.ebuild │ └── rocprofiler-compute-7.0.2.ebuild ├── rocprofiler-systems │ ├── Manifest │ ├── files │ │ ├── omnitrace-6.2.0-dyninst-13-compat.patch │ │ ├── omnitrace-6.2.0-offline-install.patch │ │ └── omnitrace-6.2.0-tbb.patch │ ├── metadata.xml │ ├── rocprofiler-systems-6.4.4.ebuild │ └── rocprofiler-systems-7.0.2.ebuild ├── rocprofiler │ ├── Manifest │ ├── files │ │ ├── rocprofiler-4.1.0-append-cxxflags.patch │ │ ├── rocprofiler-4.3.0-nostrip.patch │ │ ├── rocprofiler-4.5.2-includes-test_kernel-header.patch │ │ ├── rocprofiler-5.1.3-remove-Werror.patch │ │ ├── rocprofiler-5.5.1-multithreaded_test-header.patch │ │ ├── rocprofiler-5.5.1-optional-plugins.patch │ │ ├── rocprofiler-5.5.1-optional-tests-and-samples.patch │ │ ├── rocprofiler-5.7.1-optional-plugins.patch │ │ ├── rocprofiler-5.7.1-optional-tests-and-samples.patch │ │ └── rocprofiler-6.0.2-tests-as-cmake-options.patch │ ├── metadata.xml │ ├── rocprofiler-6.4.4.ebuild │ └── rocprofiler-7.0.2.ebuild ├── roctracer │ ├── Manifest │ ├── files │ │ ├── roctracer-4.1.0-Werror.patch │ │ ├── roctracer-4.3.0-glibc-2.34.patch │ │ ├── roctracer-4.5.2-prefix-HsaRsrcFactory-with-util-namespace.patch │ │ ├── roctracer-4.5.2-python-path.patch │ │ ├── roctracer-5.0.2-Werror.patch │ │ ├── roctracer-5.2.3-Werror.patch │ │ ├── roctracer-5.3.3-Werror.patch │ │ ├── roctracer-5.3.3-do-not-install-test-files.patch │ │ ├── roctracer-5.7.0-Werror.patch │ │ └── roctracer-5.7.0-do-not-install-test-files.patch │ ├── metadata.xml │ ├── roctracer-6.4.4.ebuild │ └── roctracer-7.0.2.ebuild ├── scancode-toolkit │ ├── Manifest │ ├── metadata.xml │ └── scancode-toolkit-32.4.0.ebuild ├── spirv-tools │ ├── Manifest │ ├── metadata.xml │ └── spirv-tools-1.4.321.0.ebuild ├── synp │ ├── Manifest │ ├── files │ │ └── 1.9.14 │ │ │ ├── package-lock.json │ │ │ └── package.json │ ├── metadata.xml │ └── synp-1.9.14.ebuild ├── tbump │ ├── Manifest │ ├── metadata.xml │ └── tbump-6.11.0.ebuild ├── theia │ ├── Manifest │ ├── files │ │ ├── 1.65.0 │ │ │ ├── dev-packages │ │ │ │ ├── application-manager │ │ │ │ │ └── package.json │ │ │ │ ├── application-package │ │ │ │ │ └── package.json │ │ │ │ ├── cli │ │ │ │ │ └── package.json │ │ │ │ ├── ffmpeg │ │ │ │ │ └── package.json │ │ │ │ ├── localization-manager │ │ │ │ │ └── package.json │ │ │ │ ├── native-webpack-plugin │ │ │ │ │ └── package.json │ │ │ │ ├── ovsx-client │ │ │ │ │ └── package.json │ │ │ │ ├── private-eslint-plugin │ │ │ │ │ └── package.json │ │ │ │ ├── private-ext-scripts │ │ │ │ │ └── package.json │ │ │ │ ├── private-re-exports │ │ │ │ │ └── package.json │ │ │ │ └── request │ │ │ │ │ └── package.json │ │ │ ├── examples │ │ │ │ ├── api-provider-sample │ │ │ │ │ └── package.json │ │ │ │ ├── api-samples │ │ │ │ │ └── package.json │ │ │ │ ├── api-tests │ │ │ │ │ └── package.json │ │ │ │ ├── browser-only │ │ │ │ │ └── package.json │ │ │ │ ├── browser │ │ │ │ │ └── package.json │ │ │ │ ├── electron │ │ │ │ │ └── package.json │ │ │ │ └── playwright │ │ │ │ │ └── package.json │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── packages │ │ │ │ ├── ai-anthropic │ │ │ │ │ └── package.json │ │ │ │ ├── ai-chat-ui │ │ │ │ │ └── package.json │ │ │ │ ├── ai-chat │ │ │ │ │ └── package.json │ │ │ │ ├── ai-code-completion │ │ │ │ │ └── package.json │ │ │ │ ├── ai-core │ │ │ │ │ └── package.json │ │ │ │ ├── ai-history │ │ │ │ │ └── package.json │ │ │ │ ├── ai-hugging-face │ │ │ │ │ └── package.json │ │ │ │ ├── ai-ide │ │ │ │ │ └── package.json │ │ │ │ ├── ai-llamafile │ │ │ │ │ └── package.json │ │ │ │ ├── ai-mcp │ │ │ │ │ └── package.json │ │ │ │ ├── ai-ollama │ │ │ │ │ └── package.json │ │ │ │ ├── ai-openai │ │ │ │ │ └── package.json │ │ │ │ ├── ai-scanoss │ │ │ │ │ └── package.json │ │ │ │ ├── ai-terminal │ │ │ │ │ └── package.json │ │ │ │ ├── bulk-edit │ │ │ │ │ └── package.json │ │ │ │ ├── callhierarchy │ │ │ │ │ └── package.json │ │ │ │ ├── collaboration │ │ │ │ │ └── package.json │ │ │ │ ├── console │ │ │ │ │ └── package.json │ │ │ │ ├── core │ │ │ │ │ └── package.json │ │ │ │ ├── debug │ │ │ │ │ └── package.json │ │ │ │ ├── dev-container │ │ │ │ │ └── package.json │ │ │ │ ├── editor-preview │ │ │ │ │ └── package.json │ │ │ │ ├── editor │ │ │ │ │ └── package.json │ │ │ │ ├── electron │ │ │ │ │ └── package.json │ │ │ │ ├── external-terminal │ │ │ │ │ └── package.json │ │ │ │ ├── file-search │ │ │ │ │ └── package.json │ │ │ │ ├── filesystem │ │ │ │ │ └── package.json │ │ │ │ ├── getting-started │ │ │ │ │ └── package.json │ │ │ │ ├── git │ │ │ │ │ └── package.json │ │ │ │ ├── keymaps │ │ │ │ │ └── package.json │ │ │ │ ├── markers │ │ │ │ │ └── package.json │ │ │ │ ├── memory-inspector │ │ │ │ │ └── package.json │ │ │ │ ├── messages │ │ │ │ │ └── package.json │ │ │ │ ├── metrics │ │ │ │ │ └── package.json │ │ │ │ ├── mini-browser │ │ │ │ │ └── package.json │ │ │ │ ├── monaco │ │ │ │ │ └── package.json │ │ │ │ ├── navigator │ │ │ │ │ └── package.json │ │ │ │ ├── notebook │ │ │ │ │ └── package.json │ │ │ │ ├── outline-view │ │ │ │ │ └── package.json │ │ │ │ ├── output │ │ │ │ │ └── package.json │ │ │ │ ├── plugin-dev │ │ │ │ │ └── package.json │ │ │ │ ├── plugin-ext-headless │ │ │ │ │ └── package.json │ │ │ │ ├── plugin-ext-vscode │ │ │ │ │ └── package.json │ │ │ │ ├── plugin-ext │ │ │ │ │ └── package.json │ │ │ │ ├── plugin-metrics │ │ │ │ │ └── package.json │ │ │ │ ├── plugin │ │ │ │ │ └── package.json │ │ │ │ ├── preferences │ │ │ │ │ └── package.json │ │ │ │ ├── preview │ │ │ │ │ └── package.json │ │ │ │ ├── process │ │ │ │ │ └── package.json │ │ │ │ ├── property-view │ │ │ │ │ └── package.json │ │ │ │ ├── remote │ │ │ │ │ └── package.json │ │ │ │ ├── scanoss │ │ │ │ │ └── package.json │ │ │ │ ├── scm-extra │ │ │ │ │ └── package.json │ │ │ │ ├── scm │ │ │ │ │ └── package.json │ │ │ │ ├── search-in-workspace │ │ │ │ │ └── package.json │ │ │ │ ├── secondary-window │ │ │ │ │ └── package.json │ │ │ │ ├── task │ │ │ │ │ └── package.json │ │ │ │ ├── terminal │ │ │ │ │ └── package.json │ │ │ │ ├── test │ │ │ │ │ └── package.json │ │ │ │ ├── timeline │ │ │ │ │ └── package.json │ │ │ │ ├── toolbar │ │ │ │ │ └── package.json │ │ │ │ ├── typehierarchy │ │ │ │ │ └── package.json │ │ │ │ ├── userstorage │ │ │ │ │ └── package.json │ │ │ │ ├── variable-resolver │ │ │ │ │ └── package.json │ │ │ │ ├── vsx-registry │ │ │ │ │ └── package.json │ │ │ │ └── workspace │ │ │ │ │ └── package.json │ │ │ └── sample-plugins │ │ │ │ └── sample-namespace │ │ │ │ ├── plugin-a │ │ │ │ └── package.json │ │ │ │ ├── plugin-b │ │ │ │ └── package.json │ │ │ │ └── plugin-gotd │ │ │ │ └── package.json │ │ ├── theia │ │ ├── theia-1.63.0-download-plugins-serially.patch │ │ └── theia-v2 │ ├── metadata.xml │ └── theia-1.65.0.ebuild ├── uglifyjs │ ├── Manifest │ ├── files │ │ └── 3.19.3 │ │ │ ├── package-lock.json │ │ │ └── package.json │ ├── metadata.xml │ └── uglifyjs-3.19.3.ebuild ├── ycm-generator │ ├── Manifest │ ├── files │ │ ├── ycm-generator-9999_p20191112-add-speed-option.patch │ │ ├── ycm-generator-9999_p20191112-fix-kbuild-version-check.patch │ │ ├── ycm-generator-9999_p20191112-r3-cmake-makefiles.patch │ │ ├── ycm-generator-9999_p20191112-r3-meson-configure-opts.patch │ │ ├── ycm-generator-9999_p20191112-r3-py3-fixes.patch │ │ └── ycm-generator-9999_p20191112-r3-qt6.patch │ ├── metadata.xml │ └── ycm-generator-20191112.ebuild └── ycmd │ ├── Manifest │ ├── files │ ├── default_settings.json.43_p20200623 │ ├── default_settings.json.44_p20200907 │ ├── ycmd-25_20170108-force-python-libs-path.patch │ ├── ycmd-42_p20200108-remove-ultisnips.patch │ ├── ycmd-42_p20200108-skip-thirdparty-check.patch │ ├── ycmd-43_p20200516-system-global-config.patch │ ├── ycmd-43_p20200516-system-third-party.patch │ ├── ycmd-44_p20210408-skip-thirdparty-check.patch │ ├── ycmd-44_p20210408-system-global-config.patch │ ├── ycmd-44_p20210408-system-third-party.patch │ ├── ycmd-45_p20210504-system-global-config.patch │ ├── ycmd-45_p20220706-disable-fetch-abseil.patch │ ├── ycmd-45_p20220706-omnisharp-use-system-omnisharp-run.patch │ ├── ycmd-45_p20220706-system-global-config.patch │ ├── ycmd-47_p9999-system-global-config.patch │ ├── ycmd-48_p20241214-disable-fetch-abseil.patch │ ├── ycmd-48_p20241214-system-global-config.patch │ └── ycmd-48_p20241214-system-third-party.patch │ ├── metadata.xml │ └── ycmd-48_p20241214.ebuild ├── dev-vcs ├── breezy │ ├── Manifest │ ├── breezy-3.3.12.ebuild │ ├── convert-cargo-lock.sh │ ├── files │ │ ├── 3.3.12 │ │ │ ├── Cargo.lock │ │ │ └── Cargo.toml │ │ └── breezy-3.3.3-fix-compile-test.patch │ └── metadata.xml └── git │ ├── Manifest │ ├── files │ ├── git-2.21.0-quiet-submodules-testcase.patch │ ├── git-2.37.0_rc1-optional-cvs.patch │ ├── git-2.37.2-unsafe-directory.patch │ ├── git-2.46.2-unsafe-directory.patch │ ├── git-2.48.0-doc-deps.patch │ ├── git-2.48.1-docs.patch │ ├── git-2.48.1-macos-no-fsmonitor.patch │ ├── git-2.48.1-parallel-build.patch │ ├── git-2.49.0-diff-implement-config.diff.renames-copies-harder.patch │ ├── git-2.49.0-docs.patch │ ├── git-2.49.0-meson-solaris-override.patch │ ├── git-2.49.0-meson-use-test_environment-conditionally.patch │ ├── git-2.50.0-diff-implement-config.diff.renames-copies-harder.patch │ ├── git-daemon-r2.initd │ ├── git-daemon.confd │ ├── git-daemon.socket │ ├── git-daemon.xinetd │ └── git-daemon_at-r1.service │ ├── git-2.49.1.ebuild │ ├── git-2.51.0.ebuild │ └── metadata.xml ├── eclass ├── abseil-cpp.eclass ├── aocc.eclass ├── bazel.eclass ├── blender-v4.5.eclass ├── blender-v5.0.eclass ├── blender.eclass ├── cargo.eclass ├── cflags-depends.eclass ├── cflags-hardened.eclass ├── check-compiler-switch.eclass ├── check-linker.eclass ├── cython.eclass ├── dep-prepare.eclass ├── dhms.eclass ├── ebolt.eclass ├── electron-app.eclass ├── emscripten.eclass ├── epgo.eclass ├── evar_dump.eclass ├── ffmpeg.eclass ├── fix-rpath.eclass ├── flag-o-matic-om.eclass ├── flag-o-matic.eclass ├── go-download-cache.eclass ├── godot-3.6.eclass ├── godot-4.3.eclass ├── godot-4.4.eclass ├── godot-4.5.eclass ├── graalvm.eclass ├── gradle.eclass ├── grpc.eclass ├── gstreamer-meson.eclass ├── hip-versions.eclass ├── icl-magma-v2_9.eclass ├── lcnr.eclass ├── libcxx-compat.eclass ├── libcxx-slot.eclass ├── libstdcxx-compat.eclass ├── libstdcxx-slot.eclass ├── llvm-ebuilds.eclass ├── llvm.eclass ├── mitigate-dos.eclass ├── mitigate-dt.eclass ├── mitigate-id.eclass ├── node-sharp.eclass ├── node.eclass ├── npm.eclass ├── nuget.eclass ├── nupkg.eclass ├── opentelemetry.eclass ├── ot-kernel-driver-bundle.eclass ├── ot-kernel-kutils.eclass ├── ot-kernel-pkgflags.eclass ├── ot-kernel-v5.10.eclass ├── ot-kernel-v5.15.eclass ├── ot-kernel-v5.4.eclass ├── ot-kernel-v6.1.eclass ├── ot-kernel-v6.12.eclass ├── ot-kernel-v6.17.eclass ├── ot-kernel-v6.6.eclass ├── ot-kernel.eclass ├── php-ext-source-r3-caca.eclass ├── playwright.eclass ├── pnpm.eclass ├── protobuf.eclass ├── re2.eclass ├── rocm-targets-compat-6.4.eclass ├── rocm-targets-compat-7.0.eclass ├── rocm-targets-compat.eclass ├── rocm.eclass ├── rust.eclass ├── rustflags-hardened.eclass ├── sandbox-changes.eclass ├── security-scan.eclass ├── tbolt.eclass ├── toolchain-funcs.eclass ├── tpgo.eclass ├── train.eclass ├── uopts.eclass ├── vf.eclass └── yarn.eclass ├── games-engines └── box2d │ ├── Manifest │ ├── box2d-2.4.2.ebuild │ ├── box2d-3.1.1.ebuild │ ├── files │ ├── box2d-2.3.1-change-font.patch │ ├── box2d-2.3.1-cmake-fixes.patch │ ├── box2d-2.3.1-envvar-testbed-select.patch │ ├── box2d-2.3.1-testbed-autoshoot.patch │ ├── box2d-2.3.1-testbed-close-handlers.patch │ ├── box2d-2.4.1-cmake-fixes.patch │ ├── box2d-2.4.1-testbed-autoshoot.patch │ └── box2d-2.4.1-testbed-close-handlers.patch │ └── metadata.xml ├── games-rpg └── RisuAI │ ├── Manifest │ ├── RisuAI-166.3.0.ebuild │ ├── convert-cargo-lock.sh │ ├── files │ ├── 166.3.0 │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── package-lock.json │ │ └── package.json │ ├── RisuAI-139.2.0-ollama-fix.patch │ ├── RisuAI-146.1.0-ollama-fix.patch │ ├── RisuAI-163.1.1-ollama-fix.patch │ ├── sharp-0.34.2-debug.patch │ ├── sharp-0.34.3-format-fixes.patch │ └── sharp-0.34.3-static-libs.patch │ └── metadata.xml ├── gnome-base └── librsvg │ ├── Manifest │ ├── convert-cargo-lock.sh │ ├── cp-cargo-files.sh │ ├── files │ ├── 2.60.0 │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── afl-fuzz │ │ │ └── Cargo.toml │ │ ├── fuzz │ │ │ └── Cargo.toml │ │ ├── gdk-pixbuf-loader │ │ │ └── Cargo.toml │ │ ├── librsvg-c │ │ │ └── Cargo.toml │ │ ├── librsvg-rebind │ │ │ └── librsvg-rebind │ │ │ │ ├── Cargo.toml │ │ │ │ └── sys │ │ │ │ └── Cargo.toml │ │ ├── rsvg-bench │ │ │ └── Cargo.toml │ │ ├── rsvg │ │ │ └── Cargo.toml │ │ └── rsvg_convert │ │ │ └── Cargo.toml │ ├── librsvg-2.40.12-gtk-optional.patch │ ├── librsvg-2.58.5-rust-target.patch │ ├── librsvg-2.58.5-time-rust-1.80.patch │ └── librsvg-2.60.0-libxml2-2.15.0-tests.patch │ ├── librsvg-2.60.0.ebuild │ └── metadata.xml ├── gui-apps ├── taigo │ ├── Manifest │ ├── metadata.xml │ └── taigo-0.3.ebuild └── windowpet │ ├── Manifest │ ├── convert-cargo-lock.sh │ ├── files │ ├── 0.0.9 │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── package-lock.json │ │ └── package.json │ ├── windowpet-0.0.8-remove-tauri-plugin-autostart-api-from-code.patch │ └── windowpet-0.0.8-remove-tauri-plugin-autostart-api-from-lockfiles.patch │ ├── metadata.xml │ └── windowpet-0.0.9.ebuild ├── gui-libs ├── aquamarine │ ├── Manifest │ ├── aquamarine-0.9.5.ebuild │ └── metadata.xml ├── gtk │ ├── Manifest │ ├── files │ │ ├── 0001-gdk-add-a-poison-macro-to-hide-GDK_WINDOWING_.patch │ │ └── 0001-gdk-add-a-poison-macro-to-hide-GDK_WINDOWING_ge_4.18.5.patch │ ├── gtk-4.14.4-r1.ebuild │ ├── gtk-4.16.13.ebuild │ ├── gtk-4.18.6-r1.ebuild │ └── metadata.xml ├── hyprcursor │ ├── Manifest │ ├── files │ │ ├── 0.1.10-fstream.patch │ │ └── 0.1.10-llvm-fix.patch │ ├── hyprcursor-0.1.13.ebuild │ └── metadata.xml ├── hyprland-qt-support │ ├── Manifest │ ├── hyprland-qt-support-0.1.0.ebuild │ └── metadata.xml ├── hyprland-qtutils │ ├── Manifest │ ├── hyprland-qtutils-0.1.5.ebuild │ └── metadata.xml ├── hyprutils │ ├── Manifest │ ├── files │ │ └── hyprutils-fix-building-with-GCC16.patch │ ├── hyprutils-0.10.0.ebuild │ └── metadata.xml └── libdecor │ ├── Manifest │ ├── autobump │ ├── description │ ├── get_latest_patch_version.sh │ └── get_latest_version.sh │ ├── libdecor-0.2.2.ebuild │ └── metadata.xml ├── gui-wm ├── hyprland │ ├── Manifest │ ├── hyprland-0.51.1.ebuild │ └── metadata.xml └── sway │ ├── Manifest │ ├── files │ └── sway-portals.conf │ ├── metadata.xml │ └── sway-1.11.ebuild ├── licenses ├── AFL-2.0 ├── AMD-RADEON-PRORENDER-BLENDER-EULA ├── AMD-RADEON-PRORENDER-BLENDER-EULA-THIRD-PARTIES ├── AMD-SOFTWARE-EVALUATION-LICENSE-AGREEMENT-OBJECT-CODE-ONLY-RADEON-PRORENDER-SDK ├── AMDGPU-FIRMWARE-2020 ├── AOCC-3.2-EULA ├── AOCC-4.0-EULA ├── AOCC-4.1-EULA ├── AOCC-4.2-EULA ├── ASSIMPNET ├── Alliance-for-Open-Media-Patent-License-1.0 ├── BSD-Leffler-SGI-LIBTIFF ├── BigCode-Open-RAIL-M-v1-License-Agreement ├── BoringSSL-ECC ├── BoringSSL-PSK ├── BrownUn_UnCalifornia_ErikCorry ├── C4AI-Acceptable-Use-Policy ├── CC-BY-ND-2.5 ├── CreativeML-Open-RAIL++-M-License-20230726 ├── DEEPSEEK-LICENSE-AGREEMENT-1.0 ├── DOCA-EULA ├── DOTNET-libraries-and-runtime-components-patents ├── Databricks-Open-Model-Acceptable-Use-Policy ├── Databricks-Open-Model-License ├── EXAONE-AI-Model-License-Agreement-1.1-NC ├── Falcon-2-11B-TII-Acceptable-Use-Policy-1.0 ├── Falcon-2-11B-TII-License-1.0 ├── Falcon-3-TII-Falcon-License-December-2024 ├── Firefox-145.0.x-Licenses.html ├── Firefox-ESR-140.5.x-Licenses.html ├── GDevelop ├── GEOTRANS ├── GIF ├── GO-PATENTS ├── GOOGLE-PROTOCOL-BUFFERS ├── GPL-2+-with-autoconf-exception ├── GPL-CC-1.0 ├── GamepadConfig ├── Gemma-Prohibited-Use-Policy-20240221 ├── Gemma-Terms-of-Use-20240221 ├── Gemma-Terms-of-Use-20240401 ├── Gemma-Terms-of-Use-20250324 ├── Google-Earth-Pro-7.3.6 ├── Google-Maps-Google-Earth-Additional-Terms-of-Service ├── Google-Privacy-Policy ├── Google-Terms-of-Service ├── GraalVM_CE_22.3_LICENSE ├── GraalVM_CE_22.3_LICENSE_NATIVEIMAGE ├── GraalVM_CE_22.3_THIRD_PARTY_LICENSE ├── HDF-EOS ├── ILA-OpenCV ├── JSON ├── Khronos-IP-framework ├── Kimi-K2-LICENSE ├── Linux-syscall-note ├── LobeChat-20240617 ├── LobeHub-Privacy-Policy ├── LobeHub-Terms-of-Service ├── MICROSOFT-DOTNET-LIBRARY ├── MICROSOFT-RESEARCH-LICENSE-TERMS ├── MNPL-0.1.md ├── MONOGAME-GamepadConfig ├── MRL-0.1.md ├── MS-RL ├── Meta-Privacy-Policy ├── Mono-gc_allocator.h ├── Mono-patents ├── NAIST-IPADIC ├── NTP ├── NVIDIA-AI-Foundation-Models-Community-License-Agreement ├── NVIDIA-CUDA-Python ├── NexusRaven-V2-13B-LICENSE ├── Nexusflow.ai-License-Terms-for-Personal-Use ├── OG-X11 ├── OIN ├── OSL-3.0 ├── OpenCoder-20240716 ├── OpenTK ├── OpenUSD-21.11 ├── OpenUSD-22.11 ├── OpenUSD-23.05 ├── OpenUSD-23.11 ├── PowerVRTools-EULA ├── Prior-BSD-License ├── QU-fft ├── Qhull ├── Qwen-RESEARCH-LICENSE-AGREEMENT ├── RADEON-FIRMWARE ├── RSA_Data_Security ├── RisuAI-Terms-of-Service ├── RtAudio ├── RtMidi ├── SCEA ├── SGI-B-1.1 ├── SPA-DISCLAIMER-DATA-AND-SOFTWARE ├── SPL-R5-SR1 ├── STABILITY-AI-NON-COMMERCIAL-RESEARCH-COMMUNITY-LICENSE-AGREEMENT ├── STABLE-BELUGA-NON-COMMERCIAL-COMMUNITY-LICENSE-AGREEMENT ├── SURF ├── SURF-MOD_ADBLOCKER ├── SURF-MOD_ADBLOCKER-EASYLIST ├── SURF-MOD_ADBLOCKER-SPAM404 ├── SunPro ├── TII-Falcon-3-License-December-2024-ACCEPTABLE-USE-POLICY ├── Tongyi-Qianwen-LICENSE-AGREEMENT ├── Tongyi-Qianwen-RESEARCH-LICENSE-AGREEMENT ├── TurboSquid-Royalty-Free-License ├── UIUC ├── UPL-1.0 ├── W3C-CLA ├── W3C-Community-Final-Specification-Agreement ├── W3C-Document-License ├── W3C-Document-License-2002 ├── W3C-Software-Notice-and-License ├── W3C-Software-and-Document-Notice-and-License ├── W3C-Software-and-Document-Notice-and-License-20021231 ├── W3C-Software-and-Document-Notice-and-License-2015 ├── W3C-Test-Suite-Licence ├── WhiteRabbitNeo-Terms-of-Use ├── WhiteRabbitNeo-Usage-Restrictions ├── base64 ├── benevolentjoker-Use-Agreement ├── chromium-142.0.7444.x.html ├── codellama-USE_POLICY.md ├── electron-22.3.25-chromium.html ├── electron-33.0.0-beta.9-chromium.html ├── electron-34.0.0-beta.7-chromium.html ├── electron-34.3.2-chromium.html ├── electron-35.0.1-chromium.html ├── electron-36.4.0-chromium.html ├── electron-37.1.0-chromium.html ├── electron-38.0.0-chromium.html ├── electron-38.2.0-chromium.html ├── electron-39.2.3-chromium.html ├── emscripten-fastcomp-md5 ├── fft2d ├── freeglut-teapot ├── g711 ├── g722 ├── gdal-degrib-and-g2clib ├── glm-4-9b-LICENSE ├── hsa-amd-aqlprofile-DISCLAIMER ├── hsa-amd-aqlprofile-EULA ├── hsa-amd-aqlprofile-LICENSE ├── icu-64.2 ├── icu-68.1 ├── icu-70.1 ├── icu-71.1 ├── icu-72.1 ├── icu-73.1 ├── imgui-public-domain ├── libvpx-PATENTS ├── libwebm-PATENTS ├── libwebrtc-PATENTS ├── libyuv-PATENTS ├── llama2-LICENSE ├── llama2-USE_POLICY.md ├── llama3-LICENSE ├── llama3-USE_POLICY.md ├── llama3_1-LICENSE ├── llama3_1-USE_POLICY.md ├── llama3_2-LICENSE ├── llama3_2-USE_POLICY.md ├── llama3_3-LICENSE ├── llama3_3-USE_POLICY.md ├── llama4-LICENSE ├── llama4-USE_POLICY.md ├── neon_2_sse ├── ooura ├── opencl-legacy-amdgpu-pro-icd-LICENSE ├── optionalX11-KP ├── optionalX11-OG ├── optionalX11-OG-DEC ├── optionalX11-SGCSI ├── pixman-arm-asm.h ├── rocm-llvm-alt-DISCLAIMER ├── rocm-llvm-alt-EULA ├── sigslot ├── svgo ├── widevine └── x11proto ├── lint-uopts ├── lintrepo ├── llvm-core ├── clang-common │ ├── Manifest │ ├── clang-common-18.1.8.ebuild │ ├── clang-common-19.1.7.ebuild │ ├── clang-common-20.1.8.ebuild │ ├── clang-common-21.1.5.ebuild │ └── metadata.xml ├── clang │ ├── Manifest │ ├── clang-18.1.8.ebuild │ ├── clang-19.1.7.ebuild │ ├── clang-20.1.8.ebuild │ ├── clang-21.1.5.ebuild │ ├── files │ │ ├── LICENSE.TXT │ │ ├── clang-11.1.0-change-SSP-buffer-size-to-4.patch │ │ ├── clang-12.0.1-change-SSP-buffer-size-to-4.patch │ │ ├── clang-12.0.1-enable-PIE-by-default.patch │ │ ├── clang-12.0.1-enable-SCP-by-default.patch │ │ ├── clang-12.0.1-enable-SSP-by-default.patch │ │ ├── clang-12.0.1-enable-full-relro-by-default.patch │ │ ├── clang-12.0.1-enable-partial-relro-by-default.patch │ │ ├── clang-12.0.1-version-info.patch │ │ ├── clang-13.0.0_rc2-change-SSP-buffer-size-to-4.patch │ │ ├── clang-14.0.0.9999-add-include-path.patch │ │ ├── clang-14.0.0.9999-cross-dso-cfi-link-with-shared.patch │ │ ├── clang-14.0.0.9999-set-_FORTIFY_SOURCE-to-2-by-default.patch │ │ ├── clang-14.0.0.9999-set-_FORTIFY_SOURCE-to-3-by-default.patch │ │ ├── clang-16.0.0.9999-add-include-path.patch │ │ ├── clang-16.0.0.9999-change-SSP-buffer-size-to-4.patch │ │ ├── clang-17.0.0.9999-enable-cf-protection-full-by-default.patch │ │ ├── clang-17.0.0.9999-stdatomic-force.patch │ │ ├── clang-18.0.0.9999-2b033a3-enable-SCP-by-default.patch │ │ ├── clang-18.0.0.9999-cross-dso-cfi-link-with-shared.patch │ │ ├── clang-21.1.5-change-SSP-buffer-size-to-4.patch │ │ ├── clang-21.1.5-cross-dso-cfi-link-with-shared.patch │ │ ├── clang-21.1.5-enable-SCP-by-default.patch │ │ └── clang-21.1.5-enable-cf-protection-full-by-default.patch │ └── metadata.xml ├── lld │ ├── Manifest │ ├── files │ │ ├── LICENSE.TXT │ │ ├── clang-12.0.1-disable-relro-by-default.patch │ │ ├── clang-12.0.1-enable-full-relro-by-default.patch │ │ ├── clang-12.0.1-version-info.patch │ │ ├── lld-20.1.8-disable-relro-by-default.patch │ │ ├── lld-20.1.8-enable-full-relro-by-default.patch │ │ ├── lld-20.1.8-version-info.patch │ │ ├── lld-21.1.5-disable-relro-by-default.patch │ │ └── lld-21.1.5-enable-full-relro-by-default.patch │ ├── lld-18.1.8.ebuild │ ├── lld-19.1.7.ebuild │ ├── lld-20.1.8.ebuild │ ├── lld-21.1.5.ebuild │ └── metadata.xml ├── llvm-common │ ├── Manifest │ ├── llvm-common-18.1.8.ebuild │ ├── llvm-common-19.1.7.ebuild │ ├── llvm-common-20.1.8.ebuild │ ├── llvm-common-21.1.5.ebuild │ └── metadata.xml ├── llvm │ ├── Manifest │ ├── files │ │ ├── LICENSE.TXT │ │ ├── llvm-12.0.1-stop-triple-spam.patch │ │ ├── llvm-14.0.0.9999-stop-triple-spam.patch │ │ ├── llvm-14.0.6-bolt-set-cmake-libdir.patch │ │ ├── llvm-14.0.6-bolt_rt-RuntimeLibrary.cpp-path.patch │ │ ├── llvm-14.0.6-bolt_rt-libdir.patch │ │ ├── llvm-16.0.0.9999-bolt_rt-RuntimeLibrary.cpp-path.patch │ │ ├── llvm-16.0.5-bolt-set-cmake-libdir.patch │ │ ├── llvm-17.0.0.9999-bolt_rt-RuntimeLibrary.cpp-path.patch │ │ └── llvm-21.1.5-bolt_rt-RuntimeLibrary.cpp-path.patch │ ├── llvm-18.1.8.ebuild │ ├── llvm-19.1.7.ebuild │ ├── llvm-20.1.8.ebuild │ ├── llvm-21.1.5.ebuild │ └── metadata.xml ├── mlir │ ├── Manifest │ ├── metadata.xml │ ├── mlir-18.1.8.ebuild │ ├── mlir-19.1.7.ebuild │ ├── mlir-20.1.8.ebuild │ └── mlir-21.1.5.ebuild └── pstl │ ├── Manifest │ ├── metadata.xml │ ├── pstl-18.1.8.ebuild │ ├── pstl-19.1.7.ebuild │ ├── pstl-20.1.8.ebuild │ └── pstl-21.1.5.ebuild ├── llvm-runtimes ├── clang-runtime │ ├── Manifest │ ├── clang-runtime-18.1.8.ebuild │ ├── clang-runtime-19.1.7.ebuild │ ├── clang-runtime-20.1.8.ebuild │ ├── clang-runtime-21.1.5.ebuild │ └── metadata.xml ├── compiler-rt-sanitizers-logging │ ├── Manifest │ ├── compiler-rt-sanitizers-logging-0.ebuild │ ├── files │ │ └── 50compiler-rt-sanitizers-logging-envd │ └── metadata.xml ├── compiler-rt-sanitizers │ ├── Manifest │ ├── compiler-rt-sanitizers-18.1.8.ebuild │ ├── compiler-rt-sanitizers-19.1.7.ebuild │ ├── compiler-rt-sanitizers-20.1.8-r1.ebuild │ ├── compiler-rt-sanitizers-21.1.5.ebuild │ ├── files │ │ ├── LICENSE.TXT │ │ └── compiler-rt-sanitizers-13.0.0-disable-cfi-assert-for-autoconf.patch │ └── metadata.xml ├── compiler-rt │ ├── Manifest │ ├── compiler-rt-18.1.8.ebuild │ ├── compiler-rt-19.1.7.ebuild │ ├── compiler-rt-20.1.8-r1.ebuild │ ├── compiler-rt-21.1.5.ebuild │ ├── files │ │ └── compiler-rt-18.1.8-remove-pid-suffix-from-logname.patch │ └── metadata.xml ├── libcxx │ ├── Manifest │ ├── files │ │ ├── libcxx-13.0.0.9999-hardened.patch │ │ ├── libcxx-15.0.0.9999-hardened.patch │ │ ├── libcxx-16.0.6-find_package-pstl.patch │ │ ├── libcxx-16.0.6-not_fn-header-move.patch │ │ ├── libcxx-18.0.0.9999-hardened.patch │ │ └── libcxx-20.1.8-hardened.patch │ ├── libcxx-18.1.8.ebuild │ ├── libcxx-19.1.7.ebuild │ ├── libcxx-20.1.8-r1.ebuild │ ├── libcxx-21.1.5.ebuild │ └── metadata.xml ├── libcxxabi │ ├── Manifest │ ├── files │ │ ├── libcxx-13.0.0.9999-hardened.patch │ │ ├── libcxx-15.0.0.9999-hardened.patch │ │ ├── libcxx-18.0.0.9999-hardened.patch │ │ ├── libcxx-20.1.8-hardened.patch │ │ ├── libcxxabi-13.0.0.9999-hardened.patch │ │ └── libcxxabi-15.0.0.9999-hardened.patch │ ├── libcxxabi-18.1.8.ebuild │ ├── libcxxabi-19.1.7.ebuild │ ├── libcxxabi-20.1.8-r1.ebuild │ ├── libcxxabi-21.1.5.ebuild │ └── metadata.xml ├── libunwind │ ├── Manifest │ ├── libunwind-18.1.8.ebuild │ ├── libunwind-19.1.7.ebuild │ ├── libunwind-20.1.8-r1.ebuild │ ├── libunwind-21.1.5.ebuild │ └── metadata.xml └── openmp │ ├── Manifest │ ├── files │ ├── openmp-13.0.1-sover-suffix.patch │ ├── openmp-14.0.6-r1-includes.patch │ ├── openmp-17.0.0.9999-sover-suffix.patch │ ├── openmp-18.1.8-protobuf_install_path.patch │ └── openmp-19.0.0.9999-libffi.patch │ ├── metadata.xml │ ├── openmp-18.1.8.ebuild │ ├── openmp-19.1.7.ebuild │ ├── openmp-20.1.8.ebuild │ └── openmp-21.1.5.ebuild ├── media-fonts ├── noto-color-emoji-bin │ ├── Manifest │ ├── metadata.xml │ ├── noto-color-emoji-bin-1.33_p20170403-r1.ebuild │ ├── noto-color-emoji-bin-1.39_p20170518-r2.ebuild │ ├── noto-color-emoji-bin-2.011_p20180424-r1.ebuild │ ├── noto-color-emoji-bin-2.018_beta20190327_p20191022-r2.ebuild │ ├── noto-color-emoji-bin-2.019_beta20200307_p20200720-r2.ebuild │ ├── noto-color-emoji-bin-2.020_beta20200914_p20200916.ebuild │ ├── noto-color-emoji-bin-2.028_beta20210625_p20210715.ebuild │ ├── noto-color-emoji-bin-2.034_beta20211013_p20211101.ebuild │ ├── noto-color-emoji-bin-2.038_p20220906_p20220919.ebuild │ ├── noto-color-emoji-bin-2.042_p20231129_p20231129.ebuild │ ├── noto-color-emoji-bin-2.047_p20240827_p20241003.ebuild │ └── noto-color-emoji-bin-2.048_p20250612_p20250618.ebuild ├── noto-color-emoji-config │ ├── Manifest │ ├── files │ │ ├── 41-noto-colorize-chrome-editboxes-20190303.conf │ │ ├── 41-noto-colorize-firefox-editboxes-20190303.conf │ │ ├── 61-noto-20190303.conf │ │ └── 61-noto-20221024.conf │ ├── metadata.xml │ └── noto-color-emoji-config-20221024.ebuild └── noto-emoji │ ├── Manifest │ ├── metadata.xml │ ├── noto-emoji-20231129.ebuild │ └── noto-emoji-20241003.ebuild ├── media-gfx ├── alembic │ ├── Manifest │ ├── alembic-1.8.8.ebuild │ └── metadata.xml ├── blender │ ├── Manifest │ ├── blender-4.5.5.ebuild │ ├── blender-5.0.0.ebuild │ ├── files │ │ ├── blender-2.79b-backport-glvnd-compat.patch │ │ ├── blender-2.79b-bundled-lib-search-path.patch │ │ ├── blender-2.79b-ffmpeg-4-compat.patch │ │ ├── blender-2.79b-fix-for-gcc9-new-openmp-data-sharing.patch │ │ ├── blender-2.79b-fix-install-rules.patch │ │ ├── blender-2.79b-fix-opencollada.patch │ │ ├── blender-2.79b-gcc-8.patch │ │ ├── blender-2.79b-install-paths-change.patch │ │ ├── blender-2.79b-oiio-2.x-compat-for-cycles.patch │ │ ├── blender-2.79b-oiio-2.x-compat.patch │ │ ├── blender-2.79b-parent-datafiles-dir-change.patch │ │ ├── blender-2.79b-portable-dest.patch │ │ ├── blender-2.80-fix-install-rules.patch │ │ ├── blender-2.80-install-paths-change.patch │ │ ├── blender-2.80-parent-datafiles-dir-change.patch │ │ ├── blender-2.81a-parent-datafiles-dir-change.patch │ │ ├── blender-2.82a-cycles-network-fixes.patch │ │ ├── blender-2.82a-fix-install-rules.patch │ │ ├── blender-2.83.1-device_network_h-add-device-header.patch │ │ ├── blender-2.83.1-device_network_h-fixes.patch │ │ ├── blender-2.83.1-parent-datafiles-dir-change.patch │ │ ├── blender-2.83.1-update-acquire_tile-for-cycles-networking.patch │ │ ├── blender-2.91.0-install-paths-change.patch │ │ ├── blender-2.91.0-parent-datafiles-dir-change.patch │ │ ├── blender-2.93.7-build-draco.patch │ │ ├── blender-2.93.7-openusd-21.11-lightapi.patch │ │ ├── blender-3.0.0-boost_python.patch │ │ ├── blender-3.0.0-install-paths-change.patch │ │ ├── blender-3.0.0-intern-ghost-fix-typo-in-finding-XF86VMODE.patch │ │ ├── blender-3.0.0-oiio-util.patch │ │ ├── blender-3.0.0-openusd-21-ConnectToSource.patch │ │ ├── blender-3.0.0-openusd-21.11-lib-renamed.patch │ │ ├── blender-3.0.0-openusd-21.11-lightapi.patch │ │ ├── blender-3.0.0-openusd-21.11-python.patch │ │ ├── blender-3.0.0-openusd-21.11-replace-IsInMaster.patch │ │ ├── blender-3.0.0-parent-datafiles-dir-change.patch │ │ ├── blender-3.2.0-parent-datafiles-dir-change.patch │ │ ├── blender-3.3.8-hip-flags.patch │ │ ├── blender-3.4.1-parent-datafiles-dir-change.patch │ │ ├── blender-3.5.1-fix-install-rules.patch │ │ ├── blender-3.5.1-openusd-21.11-python.patch │ │ ├── blender-3.6.0-hip-flags.patch │ │ ├── blender-3.6.0-parent-datafiles-dir-change.patch │ │ ├── blender-3.6.13-HIPRT-change-version-file-path.patch │ │ ├── blender-3.6.13-hiprt-linker-changes.patch │ │ ├── blender-4.0.2-install-paths-change.patch │ │ ├── blender-4.0.2-parent-datafiles-dir-change.patch │ │ ├── blender-4.1.0-openusd-21.11-python.patch │ │ ├── blender-4.2.4-parent-datafiles-dir-change.patch │ │ ├── blender-4.3.1-build-draco.patch │ │ ├── blender-4.3.1-parent-datafiles-dir-change.patch │ │ ├── blender-4.5.3-fix-brotli-check.patch │ │ ├── blender-4.5.3-hip-flags.patch │ │ ├── blender-4.5.3-install-paths-change.patch │ │ ├── blender-4.5.3-optionalize-simd.patch │ │ ├── blender-4.5.3-parent-datafiles-dir-change.patch │ │ ├── blender-4.5.3-simd-checks.patch │ │ ├── blender-5.0.0-fix-hip-bin-path.patch │ │ ├── blender-5.0.0-hip-symbolize-versions.patch │ │ ├── blender-5.0.0-math_half-sse4.1-check.patch │ │ ├── blender-5.0.0-parent-datafiles-dir-change.patch │ │ └── pr121050 │ │ │ ├── blender-4.3.0-pr-121050-001.patch │ │ │ ├── blender-4.3.0-pr-121050-002-for-3.6.patch │ │ │ ├── blender-4.3.0-pr-121050-002.patch │ │ │ ├── blender-4.3.0-pr-121050-003.patch │ │ │ ├── blender-4.3.0-pr-121050-004-for-3.6.patch │ │ │ ├── blender-4.3.0-pr-121050-004.patch │ │ │ ├── blender-4.3.0-pr-121050-005-for-3.6.patch │ │ │ ├── blender-4.3.0-pr-121050-005-for-4.1.patch │ │ │ ├── blender-4.3.0-pr-121050-005.patch │ │ │ ├── blender-4.3.0-pr-121050-006.patch │ │ │ ├── blender-4.3.0-pr-121050-007-for-4.1.patch │ │ │ ├── blender-4.3.0-pr-121050-007-for-4.2.patch │ │ │ ├── blender-4.3.0-pr-121050-007.patch │ │ │ ├── blender-4.3.0-pr-121050-008.patch │ │ │ ├── blender-4.3.0-pr-121050-009.patch │ │ │ ├── blender-4.3.0-pr-121050-010.patch │ │ │ ├── blender-4.3.0-pr-121050-011.patch │ │ │ ├── blender-4.3.0-pr-121050-012.patch │ │ │ ├── blender-4.3.0-pr-121050-013.patch │ │ │ ├── blender-4.3.0-pr-121050-014.patch │ │ │ ├── blender-4.3.0-pr-121050-015-for-4.1.patch │ │ │ ├── blender-4.3.0-pr-121050-015.patch │ │ │ ├── blender-4.3.0-pr-121050-016-for-3.6.patch │ │ │ ├── blender-4.3.0-pr-121050-016.patch │ │ │ ├── blender-4.3.0-pr-121050-017.patch │ │ │ ├── blender-4.3.0-pr-121050-018.patch │ │ │ └── blender-4.3.0-pr-121050-019.patch │ └── metadata.xml ├── blockbench │ ├── Manifest │ ├── autobump │ │ ├── custom.sh │ │ └── description │ ├── blockbench-5.0.4.ebuild │ ├── files │ │ └── 5.0.4 │ │ │ ├── package-lock.json │ │ │ └── package.json │ └── metadata.xml ├── dssim │ ├── Manifest │ ├── convert-cargo-lock.sh │ ├── dssim-3.4.0.ebuild │ ├── files │ │ └── 3.4.0 │ │ │ ├── Cargo.lock │ │ │ └── Cargo.toml │ └── metadata.xml ├── eog │ ├── Manifest │ ├── eog-45.4.ebuild │ ├── eog-47.0.ebuild │ └── metadata.xml ├── face-morpher-plus │ ├── Manifest │ ├── face-morpher-plus-20180819.ebuild │ ├── files │ │ ├── face-morpher-plus-27e6b07-add-assert-rotated-face-points.patch │ │ ├── face-morpher-plus-27e6b07-cwd-changes.patch │ │ ├── face-morpher-plus-27e6b07-face-point-correspondance-fix.patch │ │ ├── face-morpher-plus-27e6b07-type-fix.patch │ │ ├── face-morpher-plus-27e6b07-type-fixes.patch │ │ └── face-morpher-plus-27e6b07-writable-array-fix.patch │ └── metadata.xml ├── gimp │ ├── Manifest │ ├── files │ │ ├── gimp-2.10.36_c99_metadata.patch │ │ ├── gimp-2.10.36_c99_tiff.patch │ │ ├── gimp-2.10.38-ZDI-CAN-27823.patch │ │ ├── gimp-2.10_fix_configure_GCC13_implicit_function_declarations.patch │ │ ├── gimp-2.10_fix_musl_backtrace_backend_switch.patch │ │ ├── gimp-2.10_fix_test-appdata.patch │ │ ├── gimp-2.10_libheif-1.18_unconditional_compat.patch │ │ └── gimp-3.0.4_fix_gir_and_plugins_build_deps.patch │ ├── gimp-2.10.38-r3.ebuild │ ├── gimp-3.0.6.ebuild │ └── metadata.xml ├── gmic-qt │ ├── Manifest │ ├── files │ │ ├── gimp-3-functions.patch │ │ ├── gimp-3-setup.patch │ │ ├── gmic-3.1.6-stripping.patch │ │ └── gmic-3.2.0-system-gmic.patch │ ├── gmic-qt-3.4.2.ebuild │ └── metadata.xml ├── gmic │ ├── Manifest │ ├── files │ │ ├── gimp-3-functions.patch │ │ ├── gimp-3-setup.patch │ │ ├── gmic-3.1.6-stripping.patch │ │ └── gmic-3.2.0-system-gmic.patch │ ├── gmic-3.4.3.ebuild │ └── metadata.xml ├── graphite2 │ ├── Manifest │ ├── files │ │ ├── graphite2-1.3.14-fix-cmake-files-libdir.patch │ │ ├── graphite2-1.3.14-fix-nodefaultlibs-deux.patch │ │ ├── graphite2-1.3.14-fix-nodefaultlibs.patch │ │ ├── graphite2-1.3.14-gcc15.patch │ │ ├── graphite2-1.3.14-no-libtool-file.patch │ │ ├── graphite2-1.3.14_p20210810-cmake4.patch │ │ ├── graphite2-1.3.5-fix-gcc-linking.patch │ │ └── graphite2-1.3.5-includes-libs-perl.patch │ ├── graphite2-1.3.14_p20210810-r3.ebuild │ └── metadata.xml ├── imagemagick │ ├── Manifest │ ├── files │ │ ├── imagemagick-7.1.1.38-perl-1.patch │ │ ├── imagemagick-7.1.1.38-perl-2.patch │ │ ├── imagemagick-7.1.2.3-32bit.patch │ │ ├── imagemagick-9999-nocputuning.patch │ │ └── policy.test.xml │ ├── imagemagick-6.9.13.25.ebuild │ ├── imagemagick-7.1.1.47.ebuild │ └── metadata.xml ├── inkscape │ ├── Manifest │ ├── files │ │ ├── inkscape-1.4-cmake4.patch │ │ ├── inkscape-1.4-gcc15.patch │ │ ├── inkscape-1.4-poppler-24.10-fix-backport.patch │ │ ├── inkscape-1.4-poppler-24.11.0.patch │ │ ├── inkscape-1.4-poppler-24.12.0.patch │ │ ├── inkscape-1.4-poppler-25.02.0.patch │ │ ├── inkscape-1.4-poppler-25.06.0.patch │ │ ├── inkscape-1.4-poppler-25.07.0.patch │ │ ├── inkscape-1.4-poppler-25.09.0.patch │ │ ├── inkscape-1.4.2-poppler-25.06.patch │ │ ├── inkscape-1.4.2-poppler-25.07.patch │ │ └── inkscape-1.4.2-poppler-25.09.patch │ ├── inkscape-1.4-r3.ebuild │ ├── inkscape-1.4.2.ebuild │ └── metadata.xml ├── material-maker │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── material-maker-1.4_rc6.ebuild │ └── metadata.xml ├── openvdb │ ├── Manifest │ ├── files │ │ ├── COPYRIGHT │ │ ├── LICENSE │ │ ├── extra-patches │ │ │ └── openvdb-12.1.1-fix-linking-of-vdb_tool-with-OpenEXR.patch │ │ ├── openvdb-10.0.1-drop-failing-tests.patch │ │ ├── openvdb-10.0.1-fix-linking-of-vdb_tool-with-OpenEXR.patch │ │ ├── openvdb-10.0.1-log4cplus-version.patch │ │ ├── openvdb-8.1.0-glfw-libdir.patch │ │ ├── openvdb-9.0.0-fix-atomic.patch │ │ ├── openvdb-9.0.0-numpy.patch │ │ └── openvdb-9.0.0-unconditionally-search-Python-interpreter.patch │ ├── metadata.xml │ └── openvdb-12.1.1.ebuild ├── optipng │ ├── Manifest │ ├── metadata.xml │ ├── optipng-0.7.8.ebuild │ └── optipng-7.9.1.ebuild ├── upscayl-custom-models │ ├── Manifest │ ├── metadata.xml │ └── upscayl-custom-models-20240115.ebuild ├── upscayl │ ├── Manifest │ ├── files │ │ ├── 2.15.1 │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ └── upscayl │ ├── metadata.xml │ └── upscayl-2.15.1.ebuild └── voltaml-fast-stable-diffusion │ ├── Manifest │ ├── metadata.xml │ └── voltaml-fast-stable-diffusion-0.6.0.ebuild ├── media-libs ├── HIPRT │ ├── HIPRT-2.5_p20250327_p60404.ebuild │ ├── HIPRT-2.5_p20250327_p70002.ebuild │ ├── HIPRT-3.0_p20250911_p60404.ebuild │ ├── HIPRT-3.0_p20250911_p70002.ebuild │ ├── Manifest │ ├── files │ │ ├── HIPRT-2.3_p20240717-bakekernel.patch │ │ ├── HIPRT-2.3_p20240717-install-paths.patch │ │ └── HIPRT-2.5_p20250327-install-paths.patch │ └── metadata.xml ├── alure │ ├── Manifest │ ├── alure-1.2_p20140405-r1.ebuild │ └── metadata.xml ├── aras-p-opencollada │ ├── Manifest │ ├── aras-p-opencollada-20240718.ebuild │ ├── files │ │ ├── opencollada-1.6.63-pcre-fix.patch │ │ ├── opencollada-1.6.68-cmake-fixes.patch │ │ ├── opencollada-1.6.68-cmake4.patch │ │ ├── opencollada-1.6.68-fix-null-conversion.patch │ │ ├── opencollada-1.6.68-gcc13.patch │ │ ├── opencollada-1.6.68-unbundle-zlib.patch │ │ └── opencollada-1.6.68-werror.patch │ └── metadata.xml ├── assimp │ ├── Manifest │ ├── assimp-6.0.2.ebuild │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── files │ │ ├── assimp-5.2.2-disable-failing-tests.patch │ │ ├── assimp-5.2.2-fix-usage-of-incompatible-minizip-data-structure.patch │ │ ├── assimp-5.2.4-drop-failing-tests-for-abi_x86_32.patch │ │ ├── assimp-5.2.4-update-version.patch │ │ ├── assimp-5.2.5-fix-version.patch │ │ └── assimp-5.3.1-fix-version.patch │ └── metadata.xml ├── cgif │ ├── Manifest │ ├── cgif-0.5.0.ebuild │ └── metadata.xml ├── cimg │ ├── Manifest │ ├── cimg-3.4.3.ebuild │ └── metadata.xml ├── csfml │ ├── Manifest │ ├── csfml-2.5.2.ebuild │ ├── csfml-2.6.0.ebuild │ └── metadata.xml ├── dav1d │ ├── Manifest │ ├── dav1d-1.5.1.ebuild │ └── metadata.xml ├── embree │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── embree-4.4.0.ebuild │ ├── files │ │ ├── LICENSE.txt │ │ ├── embree-3.13.2-glibc-2.34-catch.hpp-fix.patch │ │ ├── embree-3.13.5-customize-flags.patch │ │ └── embree-4.1.0-customize-flags.patch │ └── metadata.xml ├── flac │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── files │ │ ├── flac-1.3.3-pie.patch │ │ └── flac-1.4.3-fPIC.patch │ ├── flac-1.5.0.ebuild │ └── metadata.xml ├── fontconfig │ ├── Manifest │ ├── files │ │ ├── fontconfig-2.14.0-latin-update.patch │ │ ├── fontconfig-2.14.0-skip-bubblewrap-tests.patch │ │ ├── fontconfig-2.14.2-fix-sysroot-fc-cache.patch │ │ ├── fontconfig-2.14.2-math-fabs.patch │ │ ├── fontconfig-2.15.0-aliasing.patch │ │ ├── fontconfig-2.16.0-endian.patch │ │ ├── fontconfig-2.16.0-fc_cachedir.patch │ │ ├── fontconfig-2.16.0-macro-preprocess.patch │ │ ├── fontconfig-2.16.0-network-test.patch │ │ ├── fontconfig-2.16.0-pthread.patch │ │ ├── fontconfig-2.16.2-no-static.patch │ │ ├── fontconfig-2.17.0-crash.patch │ │ ├── fontconfig-2.17.0-macro-preprocess.patch │ │ ├── fontconfig-2.17.0-network-test.patch │ │ └── fontconfig-2.17.0-skip-bubblewrap-tests.patch │ ├── fontconfig-2.17.1.ebuild │ └── metadata.xml ├── freetype │ ├── Manifest │ ├── files │ │ ├── freetype-2.14.1-deref-check.patch │ │ └── freetype-2.14.1-ubsan-overflow.patch │ ├── freetype-2.14.1-r1.ebuild │ └── metadata.xml ├── glu │ ├── Manifest │ ├── glu-9.0.3.ebuild │ └── metadata.xml ├── glui │ ├── Manifest │ ├── files │ │ └── glui-2.37-custom-cmake-libdir.patch │ └── glui-2.37_p20190617.ebuild ├── gst-plugins-bad │ ├── Manifest │ ├── files │ │ ├── 0001-meson-Fix-libdrm-and-vaapi-configure-checks.patch │ │ └── 0002-meson-Add-feature-options-for-optional-va-deps-libdr.patch │ ├── gst-plugins-bad-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-base │ ├── Manifest │ ├── gst-plugins-base-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-good │ ├── Manifest │ ├── gst-plugins-good-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-ugly │ ├── Manifest │ ├── gst-plugins-ugly-1.26.7.ebuild │ └── metadata.xml ├── gst-rtsp-server │ ├── Manifest │ ├── gst-rtsp-server-1.26.7.ebuild │ └── metadata.xml ├── gstreamer │ ├── Manifest │ ├── gstreamer-1.26.7.ebuild │ └── metadata.xml ├── harfbuzz │ ├── Manifest │ ├── harfbuzz-11.4.5.ebuild │ ├── harfbuzz-11.5.1.ebuild │ ├── harfbuzz-12.1.0.ebuild │ └── metadata.xml ├── imlib2 │ ├── Manifest │ ├── imlib2-1.12.3-r1.ebuild │ ├── imlib2-1.12.5.ebuild │ └── metadata.xml ├── ladspa-sdk │ ├── Manifest │ ├── files │ │ └── ladspa-sdk-1.17-properbuild.patch │ ├── ladspa-sdk-1.17-r2.ebuild │ └── metadata.xml ├── libaom │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── files │ │ ├── libaom-2.0.1-aom_sadXXXxh-are-ssse3.patch │ │ ├── libaom-3.1.2-cfi-rework.patch │ │ ├── libaom-3.1.2-static-link-apps.patch │ │ ├── libaom-3.13.0-highway-linker-language-cxx.patch │ │ ├── libaom-3.4.0-posix-c-source-ftello.patch │ │ ├── libaom-3.7.0-allow-fortify-source.patch │ │ └── libaom-3.8.1-tests-parallel.patch │ ├── libaom-3.13.0.ebuild │ └── metadata.xml ├── libcaca │ ├── Manifest │ ├── files │ │ ├── caca-256color.diff │ │ ├── libcaca-0.99.beta19-256-colors-ncurses.patch │ │ ├── libcaca-0.99.beta19-configure.ac-ncurses_libs.patch │ │ ├── libcaca-0.99.beta20-256-colors-ncurses.patch │ │ └── libcaca-0.99_beta20_p20211207-img2txt-python3-compat.patch │ ├── libcaca-0.99_beta20_p20211207.ebuild │ └── metadata.xml ├── libdicom │ ├── Manifest │ ├── libdicom-1.1.0.ebuild │ └── metadata.xml ├── libexif │ ├── Manifest │ ├── files │ │ └── libexif-0.6.13-pkgconfig.patch │ ├── libexif-0.6.25.ebuild │ └── metadata.xml ├── libfishsound │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── files │ │ └── libfishsound-1.0.0-pc.patch │ ├── libfishsound-1.0.0-r3.ebuild │ └── metadata.xml ├── libheif │ ├── Manifest │ ├── libheif-1.19.8.ebuild │ └── metadata.xml ├── libjpeg-turbo │ ├── Manifest │ ├── libjpeg-turbo-2.1.5.1.ebuild │ ├── libjpeg-turbo-3.0.4.ebuild │ ├── libjpeg-turbo-3.1.2.ebuild │ └── metadata.xml ├── libjxl │ ├── Manifest │ ├── libjxl-0.11.1.ebuild │ └── metadata.xml ├── libmediainfo │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── libmediainfo-24.06.ebuild │ └── metadata.xml ├── libogg │ ├── Manifest │ ├── files │ │ ├── libogg-1.3.4-libdir-m4.patch │ │ ├── libogg-1.3.5-macro-wstrict-prototypes.patch │ │ └── libogg-1.3.5-ubsan-shift.patch │ ├── libogg-1.3.6.ebuild │ └── metadata.xml ├── libplacebo │ ├── Manifest │ ├── files │ │ └── libplacebo-5.229.1-llvm-libunwind.patch │ ├── libplacebo-7.349.0.ebuild │ └── metadata.xml ├── libpng │ ├── Manifest │ ├── libpng-1.6.51.ebuild │ └── metadata.xml ├── libsdl2 │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── files │ │ ├── libsdl2-2.0.16-static-libs.patch │ │ ├── libsdl2-2.24.0-clang-15-configure.patch │ │ ├── libsdl2-2.24.0-cmake-target-fixes.patch │ │ ├── libsdl2-2.24.0-fix-build-without-joystick.patch │ │ └── libsdl2-2.26.0-wayland.patch │ ├── libsdl2-2.30.12.ebuild │ └── metadata.xml ├── libsfml │ ├── Manifest │ ├── files │ │ ├── libsfml-2.5.1-header-xvisualinfo.patch │ │ ├── libsfml-2.5.1-musl-1.2.3-nullptr.patch │ │ └── libsfml-2.6x_p9999-drm-null.patch │ ├── libsfml-2.5.1.ebuild │ ├── libsfml-2.6.1.ebuild │ ├── libsfml-3.0.0_p9999.ebuild │ └── metadata.xml ├── libspng │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── files │ │ └── libspng-0.7.4-disable-target-clones.patch │ ├── libspng-0.7.4.ebuild │ └── metadata.xml ├── libtheora │ ├── Manifest │ ├── files │ │ └── libtheora-1.2.0-flags.patch │ ├── libtheora-1.2.0-r1.ebuild │ └── metadata.xml ├── libvorbis │ ├── Manifest │ ├── files │ │ ├── libvorbis-1.3.7-macro-wstrict-prototypes.patch │ │ ├── libvorbis-1.3.7-mismatched-free.patch │ │ ├── libvorbis-1.3.7-psy-bounds.patch │ │ └── libvorbis-1.3.7-ubsan-shift.patch │ ├── libvorbis-1.3.7-r2.ebuild │ └── metadata.xml ├── libvpx │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── files │ │ ├── libvpx-1.10.0-add-cxxflags-to-linking-examples.patch │ │ ├── libvpx-1.10.0-add-cxxflags-to-linking-libvpx.patch │ │ ├── libvpx-1.10.0-cfi-static-link.patch │ │ ├── libvpx-1.10.0-exeldflags.patch │ │ ├── libvpx-1.10.0-export-functions.patch │ │ ├── libvpx-1.10.0-fPIC-libs.patch │ │ ├── libvpx-1.10.0-gcov.patch │ │ ├── libvpx-1.12.0-configure-clang16.patch │ │ ├── libvpx-1.13.1-allow-fortify-source.patch │ │ ├── libvpx-1.14.0-add-cxxflags-to-linking-libvpx.patch │ │ ├── libvpx-1.3.0-sparc-configure.patch │ │ └── libvpx-1.7.0-CVE-2019-9232_9325_9371_9433.patch │ ├── libvpx-1.15.2.ebuild │ └── metadata.xml ├── libwebp │ ├── Manifest │ ├── files │ │ ├── libwebp-1.2.3-libpng-pkg-config.patch │ │ └── libwebp-1.6.0-configure-typo.patch │ ├── libwebp-1.4.0.ebuild │ ├── libwebp-1.5.0.ebuild │ ├── libwebp-1.6.0.ebuild │ └── metadata.xml ├── libyuv │ ├── Manifest │ ├── files │ │ ├── libyuv-1741-cmake-libdir.patch │ │ └── libyuv.pc.in │ ├── libyuv-9999.ebuild │ └── metadata.xml ├── libzen │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── libzen-0.4.41.ebuild │ └── metadata.xml ├── materialx │ ├── Manifest │ ├── files │ │ └── materialx-1.38.9-setup.py-fix-sandbox-violation.patch │ ├── materialx-1.39.4.ebuild │ └── metadata.xml ├── mesa │ ├── Manifest │ ├── autobump │ │ ├── description │ │ └── get_latest_patch_version.sh │ ├── mesa-25.1.9.ebuild │ ├── mesa-25.2.6.ebuild │ └── metadata.xml ├── mlt-flowblade │ ├── Manifest │ ├── files │ │ ├── mlt-6.10.0-swig-underlinking.patch │ │ ├── mlt-6.22.1-no_lua_bdepend.patch │ │ ├── mlt-7.0.1-cmake-symlink.patch │ │ ├── mlt-7.28.0-fix-32bit.patch │ │ └── mlt-7.28.0-lib-path.patch │ ├── metadata.xml │ └── mlt-flowblade-7.28.0-r1.ebuild ├── mojoshader │ ├── Manifest │ ├── files │ │ ├── mojoshader-1240-cmake-build-both-static-and-shared.patch │ │ ├── mojoshader-1310-cmake-fixes.patch │ │ ├── mojoshader-dbc721c-1310-cmake-fixes.patch │ │ └── mojoshader-dbc721c-sdl2-link.patch │ ├── metadata.xml │ └── mojoshader-9999.ebuild ├── nifti_clib │ ├── Manifest │ ├── metadata.xml │ └── nifti_clib-3.0.1.ebuild ├── oidn │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── files │ │ ├── LICENSE.txt │ │ ├── composable_kernel-1.0.0_p9999-fix-missing-libstdcxx-expf.patch │ │ ├── oidn-2.0.1-hip-buildfiles-changes.patch │ │ ├── oidn-2.0.1-set-rocm-path.patch │ │ ├── oidn-2.2.1-hip-buildfiles-changes.patch │ │ └── oidn-commit-4180502-backport-for-1.3.0.patch │ ├── metadata.xml │ └── oidn-2.3.3.ebuild ├── openal │ ├── Manifest │ ├── files │ │ ├── openal-1.24.3-libfmt-libcxx-21.patch │ │ └── openal-1.24.3-qt6.patch │ ├── metadata.xml │ └── openal-1.24.3.ebuild ├── opencolorio │ ├── Manifest │ ├── files │ │ ├── opencolorio-1.1.0-remove-Werror.patch │ │ ├── opencolorio-1.1.0-remove-building-of-bundled-programs.patch │ │ ├── opencolorio-1.1.0-use-GNUInstallDirs-and-fix-cmake-install-location.patch │ │ ├── opencolorio-1.1.0-yaml-cpp-0.6.patch │ │ ├── opencolorio-1.1.1-Gentoo-specific-OCIOMacros.cmake-remove-LIB_SUFFIX.patch │ │ ├── opencolorio-1.1.1-fix-self-assign-clang.patch │ │ ├── opencolorio-1.1.1-no-werror.patch │ │ ├── opencolorio-1.1.1-yaml-cpp-boost-check.patch │ │ ├── opencolorio-2.1.1-gcc12.patch │ │ └── opencolorio-2.2.1-adjust-python-installation.patch │ ├── metadata.xml │ └── opencolorio-2.4.2.ebuild ├── opencv │ ├── Manifest │ ├── compare-point-releases.sh │ ├── files │ │ ├── opencv-3.4.0-disable-download.patch │ │ ├── opencv-3.4.1-cuda-add-relaxed-constexpr.patch │ │ ├── opencv-4.1.2-opencl-license.patch │ │ ├── opencv-4.10.0-halide-libdirs.patch │ │ ├── opencv-4.10.0-vulkan-libdirs.patch │ │ ├── opencv-4.11.0-ade-0.1.2e.tar.gz.patch │ │ ├── opencv-4.12.0-link-with-cblas-for-lapack.patch │ │ ├── opencv-4.4.0-disable-native-cpuflag-detect.patch │ │ ├── opencv-4.5.0-link-with-cblas-for-lapack.patch │ │ ├── opencv-4.8.0-arm64-fp16.patch │ │ ├── opencv-4.8.0-fix-cuda-12.2.0.patch │ │ ├── opencv-4.8.1-ade-0.1.2a.tar.gz.patch │ │ ├── opencv-4.8.1-drop-python2-detection.patch │ │ ├── opencv-4.8.1-eliminate-lto-compiler-warnings.patch │ │ ├── opencv-4.8.1-libpng16.patch │ │ ├── opencv-4.8.1-opencv_test.patch │ │ ├── opencv-4.8.1-protobuf-22.patch │ │ ├── opencv-4.8.1-python3_12-support.patch │ │ ├── opencv-4.8.1-use-system-flatbuffers.patch │ │ ├── opencv-4.8.1-use-system-opencl.patch │ │ ├── opencv-4.9.0-ade-0.1.2d.tar.gz.patch │ │ ├── opencv-4.9.0-cmake-cleanup.patch │ │ ├── opencv-4.9.0-drop-python2-detection.patch │ │ ├── opencv-4.9.0-openvx-paths.patch │ │ ├── opencv_contrib-4.8.1-NVIDIAOpticalFlowSDK-2.0.tar.gz.patch │ │ ├── opencv_contrib-4.8.1-rgbd.patch │ │ └── opencv_contrib-4.9.0-cuda-12.4.patch │ ├── metadata.xml │ └── opencv-4.12.0.ebuild ├── openexr │ ├── Manifest │ ├── files │ │ └── openexr-3.2.1-bintests-iff-utils.patch │ ├── metadata.xml │ └── openexr-3.3.5.ebuild ├── openimageio │ ├── Manifest │ ├── files │ │ ├── openimageio-2.5.8.0-fits.patch │ │ ├── openimageio-2.5.8.0-fix-tests.patch │ │ └── openimageio-3.0.10.1-fix-tests.patch │ ├── metadata.xml │ └── openimageio-3.0.10.1.ebuild ├── openpgl │ ├── Manifest │ ├── metadata.xml │ └── openpgl-0.7.1.ebuild ├── openslide │ ├── Manifest │ ├── metadata.xml │ └── openslide-4.0.0.ebuild ├── opensubdiv │ ├── Manifest │ ├── files │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ ├── opensubdiv-3.3.0-use-gnuinstalldirs.patch │ │ ├── opensubdiv-3.4.0-0001-documentation-CMakeLists.txt-force-python2.patch │ │ ├── opensubdiv-3.4.3-install-tutorials-into-bin.patch │ │ ├── opensubdiv-3.4.4-add-CUDA11-compatibility.patch │ │ ├── opensubdiv-3.6.0-cudaflags.patch │ │ └── opensubdiv-3.6.0-use-gnuinstalldirs.patch │ ├── metadata.xml │ └── opensubdiv-3.6.1.ebuild ├── opentimelineio │ ├── Manifest │ ├── files │ │ └── opentimelineio-0.17.0-libdir.patch │ ├── metadata.xml │ └── opentimelineio-0.17.0.ebuild ├── openusd │ ├── Manifest │ ├── files │ │ ├── LICENSE.txt │ │ ├── NOTICE.txt │ │ ├── algorithm.patch │ │ ├── openusd-21.11-clang-14-compat.patch │ │ ├── openusd-21.11-gcc-11-numeric_limits.patch │ │ ├── openusd-21.11-gcc-11-size_t.patch │ │ ├── openusd-21.11-glibc-2.34.patch │ │ ├── openusd-21.11-use-whole-archive-for-lld.patch │ │ └── openusd-25.08-replace-fix.patch │ ├── metadata.xml │ └── openusd-25.08.ebuild ├── openxr │ ├── Manifest │ ├── autobump │ │ ├── description │ │ └── get_latest_patch_version.sh │ ├── metadata.xml │ └── openxr-1.1.52.ebuild ├── opus │ ├── Manifest │ ├── files │ │ ├── opus-1.3.1-libdir-macro.patch │ │ └── opus-1.4-arm64-neon.patch │ ├── metadata.xml │ └── opus-1.5.2.ebuild ├── opusfile │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── metadata.xml │ └── opusfile-0.12-r1.ebuild ├── osl │ ├── Manifest │ ├── files │ │ ├── osl-1.12.13.0-change-ci-test.bash.patch │ │ ├── osl-1.12.13.0-cuda-noinline-fix.patch │ │ ├── osl-1.13.8.0-cuda-noinline-fix.patch │ │ ├── osl-1.14.7.0-cuda-noinline-fix.patch │ │ └── osl-1.14.7.0-fast-math-off-dual-changes.patch │ ├── metadata.xml │ └── osl-1.14.7.0.ebuild ├── partio │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── metadata.xml │ └── partio-1.19.0.ebuild ├── ptex │ ├── Manifest │ ├── metadata.xml │ └── ptex-2.4.2.ebuild ├── rtaudio │ ├── Manifest │ ├── files │ │ └── rtaudio-5.1.0-cflags.patch │ ├── metadata.xml │ └── rtaudio-6.0.1.ebuild ├── rubberband │ ├── Manifest │ ├── files │ │ └── rubberband-4.0.0-cstdlib-include.patch │ ├── metadata.xml │ └── rubberband-4.0.0-r1.ebuild ├── shaderc │ ├── Manifest │ ├── files │ │ └── shaderc-2020.4-fix-build.patch │ ├── metadata.xml │ └── shaderc-2025.3.ebuild ├── sharp-libvips │ ├── Manifest │ ├── convert-cargo-lock.sh │ ├── cp-cargo-files.sh │ ├── files │ │ ├── 8.17.2 │ │ │ ├── fontconfig-2.17.1 │ │ │ │ ├── Cargo.lock │ │ │ │ ├── Cargo.toml │ │ │ │ └── fc-fontations │ │ │ │ │ ├── fcint-bindings │ │ │ │ │ └── Cargo.toml │ │ │ │ │ └── fontconfig-bindings │ │ │ │ │ └── Cargo.toml │ │ │ ├── harfbuzz-11.5.0 │ │ │ │ └── src │ │ │ │ │ ├── rust │ │ │ │ │ └── Cargo.toml │ │ │ │ │ └── wasm │ │ │ │ │ ├── rust │ │ │ │ │ └── harfbuzz-wasm │ │ │ │ │ │ └── Cargo.toml │ │ │ │ │ └── sample │ │ │ │ │ └── rust │ │ │ │ │ └── hello-wasm │ │ │ │ │ └── Cargo.toml │ │ │ ├── librsvg-2.61.1 │ │ │ │ ├── Cargo.lock │ │ │ │ ├── Cargo.toml │ │ │ │ ├── afl-fuzz │ │ │ │ │ └── Cargo.toml │ │ │ │ ├── ci │ │ │ │ │ └── Cargo.toml │ │ │ │ ├── fuzz │ │ │ │ │ └── Cargo.toml │ │ │ │ ├── gdk-pixbuf-loader │ │ │ │ │ └── Cargo.toml │ │ │ │ ├── librsvg-c │ │ │ │ │ └── Cargo.toml │ │ │ │ ├── librsvg-rebind │ │ │ │ │ └── librsvg-rebind │ │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ │ └── sys │ │ │ │ │ │ └── Cargo.toml │ │ │ │ ├── pango-examples │ │ │ │ │ └── Cargo.toml │ │ │ │ ├── rsvg-bench │ │ │ │ │ └── Cargo.toml │ │ │ │ ├── rsvg │ │ │ │ │ └── Cargo.toml │ │ │ │ └── rsvg_convert │ │ │ │ │ └── Cargo.toml │ │ │ └── pango-1.57.0 │ │ │ │ └── subprojects │ │ │ │ └── fontconfig │ │ │ │ ├── Cargo.lock │ │ │ │ ├── Cargo.toml │ │ │ │ └── fc-fontations │ │ │ │ ├── fcint-bindings │ │ │ │ └── Cargo.toml │ │ │ │ └── fontconfig-bindings │ │ │ │ └── Cargo.toml │ │ ├── librsvg-2.60.0-offline.patch │ │ ├── sharp-libvips-8.16.1-lin-sh.patch │ │ ├── sharp-libvips-8.17.1-glib-without-gregex-v2.patch │ │ ├── sharp-libvips-8.17.1-posix-sh.patch │ │ ├── sharp-libvips-8.17.2-posix-sh.patch │ │ ├── vips-8.16.1-quantise-c-cast-pointers.patch │ │ └── vips-8.16.1-suffix.patch │ ├── metadata.xml │ └── sharp-libvips-8.17.2.ebuild ├── speex │ ├── Manifest │ ├── files │ │ ├── speex-1.2.0-configure.patch │ │ ├── speex-1.2.1-slibtoolize.patch │ │ ├── speex-1.2.1-valgrind.patch │ │ └── speex-1.2.1-vla-detection.patch │ ├── metadata.xml │ └── speex-1.2.1-r2.ebuild ├── theoraplay │ ├── Manifest │ ├── files │ │ └── buildcpp.lua │ ├── metadata.xml │ └── theoraplay-9999.ebuild ├── tremor │ ├── Manifest │ ├── files │ │ └── tremor-9999-820fb32-autoconf.patch │ ├── metadata.xml │ └── tremor-9999.ebuild ├── vaapi-drivers │ ├── Manifest │ ├── metadata.xml │ └── vaapi-drivers-0.ebuild ├── vamp-plugin-sdk │ ├── Manifest │ ├── metadata.xml │ └── vamp-plugin-sdk-2.10.ebuild ├── vips │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── files │ │ ├── vips-8.15.5-simd-options.patch │ │ ├── vips-8.16.0-remove-release-changes.patch │ │ ├── vips-8.16.0-simd-options.patch │ │ ├── vips-8.16.1-magick-suffixes.patch │ │ ├── vips-8.17.0-magick-suffixes.patch │ │ ├── vips-8.17.0-remove-release-changes.patch │ │ ├── vips-8.17.0-simd-options.patch │ │ └── vips-8.17.2-simd-options.patch │ ├── metadata.xml │ ├── vips-8.16.1.ebuild │ └── vips-8.17.2.ebuild ├── vulkan-drivers │ ├── Manifest │ ├── metadata.xml │ └── vulkan-drivers-0.ebuild ├── webrtc-audio-processing │ ├── Manifest │ ├── files │ │ ├── webrtc-audio-processing-0.3-Add-generic-byte-order-and-pointer-size-detection.patch │ │ ├── webrtc-audio-processing-0.3-big-endian-support.patch │ │ ├── webrtc-audio-processing-0.3-proper_detection_cxxabi_execinfo.patch │ │ ├── webrtc-audio-processing-1.3-Add-generic-byte-order-and-pointer-size-detection.patch │ │ ├── webrtc-audio-processing-1.3-big-endian-support.patch │ │ ├── webrtc-audio-processing-1.3-gcc15-cstdint.patch │ │ ├── webrtc-audio-processing-1.3-musl.patch │ │ ├── webrtc-audio-processing-1.3-x86-no-sse.patch │ │ ├── webrtc-audio-processing-2.1-abseil-cpp-202508.patch │ │ └── webrtc-audio-processing-2.1-gcc15-cstdint.patch │ ├── metadata.xml │ ├── webrtc-audio-processing-0.3.1-r1.ebuild │ ├── webrtc-audio-processing-1.3-r3.ebuild │ └── webrtc-audio-processing-2.1.ebuild └── woff2 │ ├── Manifest │ ├── autobump │ ├── description │ ├── get_latest_patch_version.sh │ └── get_latest_version.sh │ ├── files │ ├── woff2-1.0.2-aliasing.patch │ ├── woff2-1.0.2-gcc15.patch │ └── woff2-cmake-minimum-ver-3.10.patch │ ├── metadata.xml │ └── woff2-1.0.2-r7.ebuild ├── media-plugins ├── filmic-blender │ ├── Manifest │ ├── files │ │ └── blender-filmic │ ├── filmic-blender-9999.ebuild │ └── metadata.xml ├── frei0r-plugins │ ├── Manifest │ ├── files │ │ └── frei0r-plugins-2.3.3-cmake4.patch │ ├── frei0r-plugins-2.3.3.ebuild │ ├── frei0r-plugins-2.4.1.ebuild │ └── metadata.xml ├── gst-plugins-a52dec │ ├── Manifest │ ├── gst-plugins-a52dec-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-aalib │ ├── Manifest │ ├── gst-plugins-aalib-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-adaptivedemux2 │ ├── Manifest │ ├── gst-plugins-adaptivedemux2-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-aes │ ├── Manifest │ ├── gst-plugins-aes-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-amr │ ├── Manifest │ ├── gst-plugins-amr-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-analyticsoverlay │ ├── Manifest │ ├── gst-plugins-analyticsoverlay-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-aom │ ├── Manifest │ ├── gst-plugins-aom-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-assrender │ ├── Manifest │ ├── gst-plugins-assrender-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-avtp │ ├── Manifest │ ├── gst-plugins-avtp-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-aws │ ├── Manifest │ ├── gst-plugins-aws-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-bluez │ ├── Manifest │ ├── gst-plugins-bluez-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-bs2b │ ├── Manifest │ ├── gst-plugins-bs2b-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-cairo │ ├── Manifest │ ├── gst-plugins-cairo-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-cdg │ ├── Manifest │ ├── gst-plugins-cdg-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-cdio │ ├── Manifest │ ├── gst-plugins-cdio-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-cdparanoia │ ├── Manifest │ ├── gst-plugins-cdparanoia-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-chromaprint │ ├── Manifest │ ├── gst-plugins-chromaprint-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-claxon │ ├── Manifest │ ├── gst-plugins-claxon-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-closedcaption │ ├── Manifest │ ├── gst-plugins-closedcaption-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-codec2json │ ├── Manifest │ ├── gst-plugins-codec2json-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-colormanagement │ ├── Manifest │ ├── gst-plugins-colormanagement-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-csound │ ├── Manifest │ ├── gst-plugins-csound-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-curl │ ├── Manifest │ ├── gst-plugins-curl-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-dash │ ├── Manifest │ ├── gst-plugins-dash-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-dav1d │ ├── Manifest │ ├── gst-plugins-dav1d-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-dc1394 │ ├── Manifest │ ├── gst-plugins-dc1394-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-dtls │ ├── Manifest │ ├── gst-plugins-dtls-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-dts │ ├── Manifest │ ├── gst-plugins-dts-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-dv │ ├── Manifest │ ├── gst-plugins-dv-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-dvb │ ├── Manifest │ ├── gst-plugins-dvb-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-dvdread │ ├── Manifest │ ├── gst-plugins-dvdread-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-elevenlabs │ ├── Manifest │ ├── gst-plugins-elevenlabs-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-faac │ ├── Manifest │ ├── gst-plugins-faac-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-faad │ ├── Manifest │ ├── gst-plugins-faad-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-fallbackswitch │ ├── Manifest │ ├── gst-plugins-fallbackswitch-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-fdkaac │ ├── Manifest │ ├── gst-plugins-fdkaac-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-ffv1 │ ├── Manifest │ ├── gst-plugins-ffv1-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-flac │ ├── Manifest │ ├── gst-plugins-flac-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-flite │ ├── Manifest │ ├── gst-plugins-flite-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-fluidsynth │ ├── Manifest │ ├── gst-plugins-fluidsynth-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-fmp4 │ ├── Manifest │ ├── gst-plugins-fmp4-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-gdkpixbuf │ ├── Manifest │ ├── gst-plugins-gdkpixbuf-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-gif │ ├── Manifest │ ├── gst-plugins-gif-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-gme │ ├── Manifest │ ├── gst-plugins-gme-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-gopbuffer │ ├── Manifest │ ├── gst-plugins-gopbuffer-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-gs │ ├── Manifest │ ├── gst-plugins-gs-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-gsm │ ├── Manifest │ ├── gst-plugins-gsm-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-gtk │ ├── Manifest │ ├── gst-plugins-gtk-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-gtk4 │ ├── Manifest │ ├── gst-plugins-gtk4-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-hls │ ├── Manifest │ ├── files │ │ └── gst-plugins-bad-1.18.4-use-system-libs-hls.patch │ ├── gst-plugins-hls-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-hlsmultivariantsink │ ├── Manifest │ ├── gst-plugins-hlsmultivariantsink-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-hlssink3 │ ├── Manifest │ ├── gst-plugins-hlssink3-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-hsv │ ├── Manifest │ ├── gst-plugins-hsv-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-iqa │ ├── Manifest │ ├── files │ │ └── gst-plugins-iqa-1.24.9-use-dssim3.patch │ ├── gst-plugins-iqa-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-isac │ ├── Manifest │ ├── gst-plugins-isac-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-jack │ ├── Manifest │ ├── gst-plugins-jack-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-jpeg │ ├── Manifest │ ├── gst-plugins-jpeg-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-json │ ├── Manifest │ ├── gst-plugins-json-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-ladspa │ ├── Manifest │ ├── gst-plugins-ladspa-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-lame │ ├── Manifest │ ├── gst-plugins-lame-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-lc3 │ ├── Manifest │ ├── gst-plugins-lc3-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-ldac │ ├── Manifest │ ├── gst-plugins-ldac-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-lewton │ ├── Manifest │ ├── gst-plugins-lewton-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-libav │ ├── Manifest │ ├── gst-plugins-libav-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-libcaca │ ├── Manifest │ ├── gst-plugins-libcaca-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-libde265 │ ├── Manifest │ ├── gst-plugins-libde265-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-libnice │ ├── Manifest │ ├── files │ │ ├── gst-plugins-libnice-0.1.18-use-installed-libnice.patch │ │ ├── gst-plugins-libnice-0.1.21-no-install-version.patch │ │ └── gst-plugins-libnice-0.1.21-use-installed-libnice.patch │ ├── gst-plugins-libnice-0.1.22.ebuild │ └── metadata.xml ├── gst-plugins-libpng │ ├── Manifest │ ├── gst-plugins-libpng-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-libvisual │ ├── Manifest │ ├── gst-plugins-libvisual-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-livesync │ ├── Manifest │ ├── gst-plugins-livesync-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-lv2 │ ├── Manifest │ ├── gst-plugins-lv2-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-mdns │ ├── Manifest │ ├── gst-plugins-mdns-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-meta │ ├── Manifest │ ├── gst-plugins-meta-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-modplug │ ├── Manifest │ ├── gst-plugins-modplug-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-mp4 │ ├── Manifest │ ├── gst-plugins-mp4-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-mpeg2dec │ ├── Manifest │ ├── gst-plugins-mpeg2dec-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-mpeg2enc │ ├── Manifest │ ├── gst-plugins-mpeg2enc-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-mpegtslive │ ├── Manifest │ ├── gst-plugins-mpegtslive-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-mpg123 │ ├── Manifest │ ├── gst-plugins-mpg123-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-mplex │ ├── Manifest │ ├── gst-plugins-mplex-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-musepack │ ├── Manifest │ ├── gst-plugins-musepack-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-ndi │ ├── Manifest │ ├── gst-plugins-ndi-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-neon │ ├── Manifest │ ├── gst-plugins-neon-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-onnx │ ├── Manifest │ ├── gst-plugins-onnx-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-openal │ ├── Manifest │ ├── gst-plugins-openal-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-openaptx │ ├── Manifest │ ├── gst-plugins-openaptx-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-opencv │ ├── Manifest │ ├── files │ │ └── gst-plugins-bad-1.22.3-use-system-libs-opencv.patch │ ├── gst-plugins-opencv-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-openexr │ ├── Manifest │ ├── gst-plugins-openexr-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-openh264 │ ├── Manifest │ ├── gst-plugins-openh264-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-openjpeg │ ├── Manifest │ ├── gst-plugins-openjpeg-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-openmpt │ ├── Manifest │ ├── gst-plugins-openmpt-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-openni2 │ ├── Manifest │ ├── gst-plugins-openni2-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-opus │ ├── Manifest │ ├── gst-plugins-opus-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-originalbuffer │ ├── Manifest │ ├── gst-plugins-originalbuffer-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-oss │ ├── Manifest │ ├── gst-plugins-oss-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-pulse │ ├── Manifest │ ├── gst-plugins-pulse-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-qroverlay │ ├── Manifest │ ├── gst-plugins-qroverlay-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-qt │ ├── Manifest │ ├── gst-plugins-qt-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-qt6 │ ├── Manifest │ ├── gst-plugins-qt6-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-quinn │ ├── Manifest │ ├── gst-plugins-quinn-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-raptorq │ ├── Manifest │ ├── gst-plugins-raptorq-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-rav1e │ ├── Manifest │ ├── gst-plugins-rav1e-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-raw1394 │ ├── Manifest │ ├── gst-plugins-raw1394-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-regex │ ├── Manifest │ ├── gst-plugins-regex-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-reqwest │ ├── Manifest │ ├── gst-plugins-reqwest-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-resindvd │ ├── Manifest │ ├── gst-plugins-resindvd-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-rs │ ├── Manifest │ ├── convert-cargo-lock.sh │ ├── cp-cargo-files.sh │ ├── files │ │ └── 1.26.7 │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ ├── analytics │ │ │ └── analytics │ │ │ │ └── Cargo.toml │ │ │ ├── audio │ │ │ ├── audiofx │ │ │ │ └── Cargo.toml │ │ │ ├── claxon │ │ │ │ └── Cargo.toml │ │ │ ├── csound │ │ │ │ └── Cargo.toml │ │ │ ├── elevenlabs │ │ │ │ └── Cargo.toml │ │ │ ├── lewton │ │ │ │ └── Cargo.toml │ │ │ ├── speechmatics │ │ │ │ └── Cargo.toml │ │ │ └── spotify │ │ │ │ └── Cargo.toml │ │ │ ├── generic │ │ │ ├── file │ │ │ │ └── Cargo.toml │ │ │ ├── gopbuffer │ │ │ │ └── Cargo.toml │ │ │ ├── inter │ │ │ │ └── Cargo.toml │ │ │ ├── originalbuffer │ │ │ │ └── Cargo.toml │ │ │ ├── sodium │ │ │ │ └── Cargo.toml │ │ │ ├── streamgrouper │ │ │ │ └── Cargo.toml │ │ │ └── threadshare │ │ │ │ └── Cargo.toml │ │ │ ├── mux │ │ │ ├── flavors │ │ │ │ └── Cargo.toml │ │ │ ├── fmp4 │ │ │ │ └── Cargo.toml │ │ │ └── mp4 │ │ │ │ └── Cargo.toml │ │ │ ├── net │ │ │ ├── aws │ │ │ │ └── Cargo.toml │ │ │ ├── hlsmultivariantsink │ │ │ │ └── Cargo.toml │ │ │ ├── hlssink3 │ │ │ │ └── Cargo.toml │ │ │ ├── mpegtslive │ │ │ │ └── Cargo.toml │ │ │ ├── ndi │ │ │ │ └── Cargo.toml │ │ │ ├── onvif │ │ │ │ └── Cargo.toml │ │ │ ├── quinn │ │ │ │ └── Cargo.toml │ │ │ ├── raptorq │ │ │ │ └── Cargo.toml │ │ │ ├── reqwest │ │ │ │ └── Cargo.toml │ │ │ ├── rtp │ │ │ │ └── Cargo.toml │ │ │ ├── rtsp │ │ │ │ └── Cargo.toml │ │ │ ├── webrtc │ │ │ │ ├── Cargo.toml │ │ │ │ ├── protocol │ │ │ │ │ └── Cargo.toml │ │ │ │ └── signalling │ │ │ │ │ └── Cargo.toml │ │ │ └── webrtchttp │ │ │ │ └── Cargo.toml │ │ │ ├── text │ │ │ ├── ahead │ │ │ │ └── Cargo.toml │ │ │ ├── json │ │ │ │ └── Cargo.toml │ │ │ ├── regex │ │ │ │ └── Cargo.toml │ │ │ └── wrap │ │ │ │ └── Cargo.toml │ │ │ ├── tutorial │ │ │ └── Cargo.toml │ │ │ ├── utils │ │ │ ├── fallbackswitch │ │ │ │ └── Cargo.toml │ │ │ ├── livesync │ │ │ │ └── Cargo.toml │ │ │ ├── togglerecord │ │ │ │ └── Cargo.toml │ │ │ ├── tracers │ │ │ │ └── Cargo.toml │ │ │ └── uriplaylistbin │ │ │ │ └── Cargo.toml │ │ │ ├── version-helper │ │ │ └── Cargo.toml │ │ │ └── video │ │ │ ├── cdg │ │ │ └── Cargo.toml │ │ │ ├── closedcaption │ │ │ └── Cargo.toml │ │ │ ├── dav1d │ │ │ └── Cargo.toml │ │ │ ├── ffv1 │ │ │ └── Cargo.toml │ │ │ ├── gif │ │ │ └── Cargo.toml │ │ │ ├── gtk4 │ │ │ └── Cargo.toml │ │ │ ├── hsv │ │ │ └── Cargo.toml │ │ │ ├── png │ │ │ └── Cargo.toml │ │ │ ├── rav1e │ │ │ └── Cargo.toml │ │ │ ├── skia │ │ │ └── Cargo.toml │ │ │ ├── videofx │ │ │ └── Cargo.toml │ │ │ ├── vvdec │ │ │ └── Cargo.toml │ │ │ └── webp │ │ │ └── Cargo.toml │ ├── gst-plugins-rs-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-rsanalytics │ ├── Manifest │ ├── gst-plugins-rsanalytics-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-rsaudiofx │ ├── Manifest │ ├── gst-plugins-rsaudiofx-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-rsclosedcaption │ ├── Manifest │ ├── gst-plugins-rsclosedcaption-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-rsfile │ ├── Manifest │ ├── gst-plugins-rsfile-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-rsflv │ ├── Manifest │ ├── gst-plugins-rsflv-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-rsinter │ ├── Manifest │ ├── gst-plugins-rsinter-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-rsonvif │ ├── Manifest │ ├── gst-plugins-rsonvif-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-rspng │ ├── Manifest │ ├── gst-plugins-rspng-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-rsrtp │ ├── Manifest │ ├── gst-plugins-rsrtp-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-rsrtsp │ ├── Manifest │ ├── gst-plugins-rsrtsp-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-rstracers │ ├── Manifest │ ├── gst-plugins-rstracers-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-rsvg │ ├── Manifest │ ├── gst-plugins-rsvg-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-rsvideofx │ ├── Manifest │ ├── gst-plugins-rsvideofx-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-rswebp │ ├── Manifest │ ├── gst-plugins-rswebp-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-rswebrtc │ ├── Manifest │ ├── gst-plugins-rswebrtc-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-rtmp │ ├── Manifest │ ├── gst-plugins-rtmp-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-sbc │ ├── Manifest │ ├── gst-plugins-sbc-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-sctp │ ├── Manifest │ ├── gst-plugins-sctp-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-shout2 │ ├── Manifest │ ├── gst-plugins-shout2-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-sidplay │ ├── Manifest │ ├── gst-plugins-sidplay-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-skia │ ├── Manifest │ ├── gst-plugins-skia-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-smoothstreaming │ ├── Manifest │ ├── gst-plugins-smoothstreaming-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-sndfile │ ├── Manifest │ ├── gst-plugins-sndfile-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-sndio │ ├── Manifest │ ├── gst-plugins-sndio-1.24.0.ebuild │ └── metadata.xml ├── gst-plugins-sodium │ ├── Manifest │ ├── gst-plugins-sodium-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-soundtouch │ ├── Manifest │ ├── gst-plugins-soundtouch-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-soup │ ├── Manifest │ ├── gst-plugins-soup-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-spandsp │ ├── Manifest │ ├── gst-plugins-spandsp-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-speechmatics │ ├── Manifest │ ├── gst-plugins-speechmatics-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-speex │ ├── Manifest │ ├── gst-plugins-speex-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-spotify │ ├── Manifest │ ├── gst-plugins-spotify-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-srt │ ├── Manifest │ ├── gst-plugins-srt-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-srtp │ ├── Manifest │ ├── gst-plugins-srtp-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-streamgrouper │ ├── Manifest │ ├── gst-plugins-streamgrouper-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-svtav1 │ ├── Manifest │ ├── gst-plugins-svtav1-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-svthevcenc │ ├── Manifest │ ├── gst-plugins-svthevcenc-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-taglib │ ├── Manifest │ ├── gst-plugins-taglib-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-teletext │ ├── Manifest │ ├── gst-plugins-teletext-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-textahead │ ├── Manifest │ ├── gst-plugins-textahead-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-textwrap │ ├── Manifest │ ├── gst-plugins-textwrap-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-threadshare │ ├── Manifest │ ├── gst-plugins-threadshare-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-togglerecord │ ├── Manifest │ ├── gst-plugins-togglerecord-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-ttml │ ├── Manifest │ ├── gst-plugins-ttml-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-twolame │ ├── Manifest │ ├── gst-plugins-twolame-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-uriplaylistbin │ ├── Manifest │ ├── gst-plugins-uriplaylistbin-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-uvch264 │ ├── Manifest │ ├── gst-plugins-uvch264-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-v4l2 │ ├── Manifest │ ├── gst-plugins-v4l2-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-vaapi │ ├── Manifest │ ├── gst-plugins-vaapi-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-voaacenc │ ├── Manifest │ ├── gst-plugins-voaacenc-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-voamrwbenc │ ├── Manifest │ ├── gst-plugins-voamrwbenc-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-vpx │ ├── Manifest │ ├── gst-plugins-vpx-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-vvdec │ ├── Manifest │ ├── gst-plugins-vvdec-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-wavpack │ ├── Manifest │ ├── gst-plugins-wavpack-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-webp │ ├── Manifest │ ├── gst-plugins-webp-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-webrtc │ ├── Manifest │ ├── gst-plugins-webrtc-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-webrtchttp │ ├── Manifest │ ├── gst-plugins-webrtchttp-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-wildmidi │ ├── Manifest │ ├── gst-plugins-wildmidi-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-wpe │ ├── Manifest │ ├── gst-plugins-wpe-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-x264 │ ├── Manifest │ ├── gst-plugins-x264-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-x265 │ ├── Manifest │ ├── gst-plugins-x265-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-ximagesrc │ ├── Manifest │ ├── gst-plugins-ximagesrc-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-zbar │ ├── Manifest │ ├── gst-plugins-zbar-1.26.7.ebuild │ └── metadata.xml ├── gst-plugins-zxing │ ├── Manifest │ ├── gst-plugins-zxing-1.26.7.ebuild │ └── metadata.xml ├── imlib2_loaders │ ├── Manifest │ ├── imlib2_loaders-1.12.3.ebuild │ ├── imlib2_loaders-1.12.5.ebuild │ └── metadata.xml └── openvino-ai-plugins-gimp │ ├── Manifest │ ├── metadata.xml │ └── openvino-ai-plugins-gimp-2.99_p2.ebuild ├── media-radio ├── codecserver │ ├── Manifest │ ├── codecserver-0.2.0.ebuild │ ├── files │ │ └── init.d │ │ │ └── codecserver │ └── metadata.xml ├── csdr │ ├── Manifest │ ├── csdr-0.18.2.ebuild │ └── metadata.xml ├── digiham │ ├── Manifest │ ├── digiham-0.6.2.ebuild │ └── metadata.xml ├── dream │ ├── Manifest │ ├── dream-2.2.ebuild │ ├── files │ │ └── dream-2.2-compat-with-gspd-3.23.1.patch │ └── metadata.xml ├── hpsdrconnector │ ├── Manifest │ ├── hpsdrconnector-0.11.0.ebuild │ └── metadata.xml ├── m17-cxx-demod │ ├── Manifest │ ├── m17-cxx-demod-2.3_p1.ebuild │ └── metadata.xml ├── openwebrx │ ├── Manifest │ ├── files │ │ └── init.d │ │ │ └── openwebrx │ ├── metadata.xml │ └── openwebrx-1.2.2.ebuild ├── owrx_connector │ ├── Manifest │ ├── metadata.xml │ └── owrx_connector-0.6.2.ebuild ├── runds_connector │ ├── Manifest │ ├── metadata.xml │ └── runds_connector-0.2.3.ebuild └── sddc_connector │ ├── Manifest │ ├── metadata.xml │ └── sddc_connector-0.1_p99999999.ebuild ├── media-sound ├── jack2 │ ├── Manifest │ ├── jack2-1.9.22.ebuild │ └── metadata.xml ├── puddletag │ ├── Manifest │ ├── metadata.xml │ └── puddletag-2.5.0.ebuild ├── spotify │ ├── Manifest │ ├── files │ │ └── xstub.c │ ├── metadata.xml │ ├── spotify-1.2.45.454.ebuild │ └── spotify-1.2.63.394.ebuild └── w3crapcli-lastfm │ ├── Manifest │ ├── metadata.xml │ └── w3crapcli-lastfm-20211218.ebuild ├── media-video ├── REAL-Video-Enhancer │ ├── Manifest │ ├── REAL-Video-Enhancer-2.1.5.ebuild │ ├── files │ │ ├── REAL-Video-Enhancer-2.1.5-backend-move-logs-into-homedir.patch │ │ ├── REAL-Video-Enhancer-2.1.5-default-encoders.patch │ │ ├── REAL-Video-Enhancer-2.1.5-disable-downloads.patch │ │ └── REAL-Video-Enhancer-2.1.5-move-logs-into-homedir.patch │ └── metadata.xml ├── blurfaces │ ├── Manifest │ ├── blurfaces-20240922.ebuild │ └── metadata.xml ├── dashcam_anonymizer │ ├── Manifest │ ├── dashcam_anonymizer-20240922.ebuild │ ├── files │ │ ├── dashcam_anonymizer-644883f-device-options.patch │ │ ├── dashcam_anonymizer-644883f-path-changes.patch │ │ └── dashcam_anonymizer-644883f-use-yellow.patch │ └── metadata.xml ├── deface │ ├── Manifest │ ├── deface-1.5.0.ebuild │ └── metadata.xml ├── ffmpeg │ ├── Manifest │ ├── ffmpeg-4.4.6.ebuild │ ├── ffmpeg-4.4.6m.ebuild │ ├── ffmpeg-5.1.8.ebuild │ ├── ffmpeg-5.1.8m.ebuild │ ├── ffmpeg-6.1.4.ebuild │ ├── ffmpeg-6.1.4m.ebuild │ ├── ffmpeg-7.0.3.ebuild │ ├── ffmpeg-7.0.3m.ebuild │ ├── ffmpeg-7.1.3.ebuild │ ├── ffmpeg-7.1.3m.ebuild │ ├── ffmpeg-8.0.1.ebuild │ ├── ffmpeg-8.0.1m.ebuild │ ├── files │ │ ├── chromium-r1.patch │ │ ├── chromium-r2.patch │ │ ├── chromium.c │ │ ├── extra-patches │ │ │ ├── ffmpeg-4.4.4-no-m32-or-m64-for-nvcc.patch │ │ │ ├── ffmpeg-5.1.2-allow-7regs.patch │ │ │ ├── ffmpeg-5.1.2-configure-non-free-options.patch │ │ │ ├── ffmpeg-5.1.6-glslang-fix-configure-test.patch │ │ │ ├── ffmpeg-6.0.1-convert_from_tensorflow-tensorflow2-compat.patch │ │ │ ├── ffmpeg-6.1.2-backport-5860a96.patch │ │ │ ├── ffmpeg-6.1.3-svt-av1-backport-d1ed5c0.patch │ │ │ ├── ffmpeg-7.0.2-glslang-fix-configure-test.patch │ │ │ ├── ffmpeg-7.1-add-includes-hwcontext_vulkan.patch │ │ │ └── ffmpeg-8.0.1-glslang-fix-configure-test.patch │ │ ├── ffmpeg-4.4.3-clang-14-ff_seek_frame_binary-crash.patch │ │ ├── ffmpeg-4.4.3-get_cabac_inline_x86-32-bit.patch │ │ ├── ffmpeg-4.4.4-amd-av1-vaapi.patch │ │ ├── ffmpeg-4.4.4-fix-build-svt-av1-1.5.0.patch │ │ ├── ffmpeg-4.4.4-glslang.patch │ │ ├── ffmpeg-4.4.4-opencl-parallel-gmake-fix.patch │ │ ├── ffmpeg-4.4.4-wint-conversion-vulkan.patch │ │ ├── ffmpeg-4.4.5-incmptbl-pntr-types.patch │ │ ├── ffmpeg-5.0-backport-ranlib-build-fix.patch │ │ ├── ffmpeg-5.1.2-get_cabac_inline_x86-32-bit.patch │ │ ├── ffmpeg-5.1.3-binutils-2.41.patch │ │ ├── ffmpeg-6.0-fix-lto-type-mismatch.patch │ │ ├── ffmpeg-6.0-libplacebo-remove-deprecated-field.patch │ │ ├── ffmpeg-6.0.1-alignment.patch │ │ ├── ffmpeg-6.0.1-libjxl-0.9.patch │ │ ├── ffmpeg-6.1-gcc-14.patch │ │ ├── ffmpeg-6.1-opencl-parallel-gmake-fix.patch │ │ ├── ffmpeg-6.1-wint-conversion.patch │ │ ├── ffmpeg-6.1.1-amd-av1-vaapi.patch │ │ ├── ffmpeg-6.1.1-memory-leak.patch │ │ ├── ffmpeg-6.1.1-vulkan-rename.patch │ │ ├── ffmpeg-6.1.1-wint-inconversion-libgcrypt.patch │ │ └── vmaf-models-default-path.patch │ └── metadata.xml ├── flowblade │ ├── Manifest │ ├── files │ │ ├── flowblade-2.18-change-paths.patch │ │ └── flowblade-2.18-credit-scroll-fixes.patch │ ├── flowblade-2.18.ebuild │ └── metadata.xml ├── gspca_ep800 │ ├── Manifest │ ├── gspca_ep800-20220415.ebuild │ └── metadata.xml ├── linux-enable-ir-emitter │ ├── Manifest │ ├── linux-enable-ir-emitter-6.1.1.ebuild │ └── metadata.xml ├── lossless-cut │ ├── Manifest │ ├── files │ │ ├── 3.64.0 │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ ├── icon-gen-3.0.1-png-return.patch │ │ ├── icon-gen.mjs │ │ ├── lossless-cut-3.64.0-sharp-type.patch │ │ ├── lossless-cut-3.64.0-sweetalert2-scss.patch │ │ ├── sharp-0.34.2-debug.patch │ │ ├── sharp-0.34.3-format-fixes.patch │ │ └── sharp-0.34.3-static-libs.patch │ ├── lossless-cut-3.64.0.ebuild │ └── metadata.xml ├── movit │ ├── Manifest │ ├── files │ │ └── movit-1.6.3-gcc12.patch │ ├── metadata.xml │ └── movit-1.7.1.ebuild ├── mpv │ ├── Manifest │ ├── metadata.xml │ └── mpv-0.40.0.ebuild ├── nudenet_video │ ├── Manifest │ ├── files │ │ ├── nudenet_video-056604f-change-forbidden-alerts.patch │ │ ├── nudenet_video-056604f-fix-arg-folder-path.patch │ │ └── nudenet_video-056604f-move-to-homedir.patch │ ├── metadata.xml │ └── nudenet_video-20231021.ebuild ├── obs-studio │ ├── Manifest │ ├── files │ │ ├── obs-studio-25.0.8-install-libcef_dll_wrapper.patch │ │ ├── obs-studio-26.1.2-fix-alsa-crash.patch │ │ ├── obs-studio-26.1.2-python-3.8.patch │ │ ├── obs-studio-27.0.0-ftl-use-system-deps.patch │ │ ├── obs-studio-30.2.3-browser-checks.patch │ │ ├── obs-studio-30.2.3-hevc-preprocessor-cond.patch │ │ ├── obs-studio-31.0.0-browser-checks.patch │ │ ├── obs-studio-31.0.0-optionalize-plugins.patch │ │ ├── obs-studio-31.0.0-symbolize-default-codecs.patch │ │ ├── obs-studio-32.0.2-browser-checks.patch │ │ ├── obs-studio-32.0.2-fix-build-with-qt-6.10.patch │ │ ├── obs-studio-32.0.2-optionalize-plugins.patch │ │ └── obs-studio-32.0.2-symbolize-default-codecs.patch │ ├── metadata.xml │ └── obs-studio-32.0.2.ebuild ├── olive │ ├── Manifest │ ├── files │ │ ├── olive-7e0e94a-ffmpeg-paths.patch │ │ ├── olive-7e0e94a-link-opencolorio.patch │ │ ├── olive-7e0e94a-ocio-2.3-compat.patch │ │ ├── olive-7e0e94a-oiio-3.0-compat-read-image.patch │ │ └── olive-7e0e94a-stringref-header.patch │ ├── metadata.xml │ └── olive-0.2.0_pre20241205.ebuild ├── video2x-qt6 │ ├── Manifest │ ├── metadata.xml │ └── video2x-qt6-6.4.0.ebuild └── video2x │ ├── Manifest │ ├── files │ ├── video2x-6.2.0-install-paths.patch │ └── video2x-6.2.0-ncnn-simd-options.patch │ ├── metadata.xml │ └── video2x-6.4.0.ebuild ├── metadata ├── layout.conf └── news │ ├── 2020-07-19-manual-removal-npm-and-electron │ └── 2020-07-19-manual-removal-npm-and-electron.en.txt │ ├── 2023-11-05-fix-emerge-at-world │ └── 2023-11-05-fix-emerge-at-world.txt │ └── 2025-01-16-rotate-passwords │ └── 2025-01-16-rotate-passwords.txt ├── net-im ├── caprine │ ├── Manifest │ ├── caprine-2.60.3.ebuild │ ├── files │ │ ├── 2.60.3 │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ └── caprine-2.60.3-app-dock-optional-chaining.patch │ └── metadata.xml ├── chatterino │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── chatterino-2.5.1.ebuild │ └── metadata.xml └── signal-desktop │ ├── Manifest │ ├── files │ └── 7.80.0 │ │ ├── danger │ │ ├── package.json │ │ └── pnpm-lock.yaml │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ └── sticker-creator │ │ ├── package.json │ │ └── pnpm-lock.yaml │ ├── metadata.xml │ └── signal-desktop-7.80.0.ebuild ├── net-libs ├── Thunder │ ├── Manifest │ ├── Thunder-5.1.0.ebuild │ ├── files │ │ └── Thunder-5.1.0-jsonrpc-install-path.patch │ └── metadata.xml ├── cef-bin │ ├── Manifest │ ├── cef-bin-9999.ebuild │ ├── files │ │ └── cef-bin-105.3.39-visibility-changes.patch │ └── metadata.xml ├── gnutls │ ├── Manifest │ ├── files │ │ ├── gnutls-3.8.10-tests.patch │ │ └── gnutls-3.8.10-tls-migration-qemu-regression.patch │ ├── gnutls-3.8.10-r1.ebuild │ └── metadata.xml ├── google-cloud-cpp │ ├── Manifest │ ├── files │ │ ├── google-cloud-cpp-0.9.0-offline_nlohmannjson.patch │ │ ├── google-cloud-cpp-2.2.1-no-download.patch │ │ ├── google-cloud-cpp-2.9.0-no-download.patch │ │ └── google-cloud-cpp-commit-4fc780c-backport-to-2.2.1.patch │ ├── google-cloud-cpp-2.10.1.ebuild │ ├── google-cloud-cpp-2.43.0.ebuild │ └── metadata.xml ├── grpc │ ├── Manifest │ ├── grpc-1.30.2.ebuild │ ├── grpc-1.51.3.ebuild │ ├── grpc-1.62.3.ebuild │ ├── grpc-1.71.2.ebuild │ ├── grpc-1.75.1.ebuild │ └── metadata.xml ├── libavtp │ ├── Manifest │ ├── libavtp-0.2.0.ebuild │ └── metadata.xml ├── librist │ ├── Manifest │ ├── librist-0.2.10.ebuild │ └── metadata.xml ├── libsoup │ ├── Manifest │ ├── files │ │ ├── disable-apache-tests.patch │ │ └── libxml2-2.12.patch │ ├── libsoup-2.74.3-r1.ebuild │ ├── libsoup-3.4.4.ebuild │ ├── libsoup-3.6.5.ebuild │ └── metadata.xml ├── nghttp2 │ ├── Manifest │ ├── metadata.xml │ └── nghttp2-1.66.0.ebuild ├── nodejs │ ├── Manifest │ ├── files │ │ ├── nodejs-10.3.0-global-npm-config.patch │ │ ├── nodejs-12.20.1-fix_ppc64_crashes.patch │ │ ├── nodejs-12.22.1-jinja_collections_abc.patch │ │ ├── nodejs-12.22.1-uvwasi_shared_libuv.patch │ │ ├── nodejs-12.22.1-v8_icu69.patch │ │ ├── nodejs-12.22.10-lto-update.patch │ │ ├── nodejs-12.22.11-clang-lto-allow-ab71af3.patch │ │ ├── nodejs-12.22.5-shared_c-ares_nameser_h.patch │ │ ├── nodejs-13.8.0-paxmarking.patch │ │ ├── nodejs-14.15.0-fix_ppc64_crashes.patch │ │ ├── nodejs-14.16.1-v8_icu69.patch │ │ ├── nodejs-14.18.2-jinja_collections_abc.patch │ │ ├── nodejs-14.19.1-lto-update.patch │ │ ├── nodejs-14.21.3-add-v8-jit-fine-grained-options.patch │ │ ├── nodejs-15.2.0-global-npm-config.patch │ │ ├── nodejs-16.12.0-jinja_collections_abc.patch │ │ ├── nodejs-16.13.2-add-fno-strict-aliasing-libuv-3b8d8c2.patch │ │ ├── nodejs-16.13.2-lto-update.patch │ │ ├── nodejs-16.13.2-support-clang-pgo.patch │ │ ├── nodejs-16.20.2-add-v8-jit-fine-grained-options.patch │ │ ├── nodejs-17.0.0-jinja_collections_abc.patch │ │ ├── nodejs-18.14.0-global-npm-config.patch │ │ ├── nodejs-18.17.0-global-npm-config.patch │ │ ├── nodejs-18.17.0-support-clang-pgo.patch │ │ ├── nodejs-18.20.5-add-v8-jit-fine-grained-options.patch │ │ ├── nodejs-19.3.0-v8-oflags.patch │ │ ├── nodejs-19.5.0-global-npm-config.patch │ │ ├── nodejs-20.1.0-support-clang-pgo.patch │ │ ├── nodejs-20.15.1-add-v8-jit-fine-grained-options.patch │ │ ├── nodejs-20.15.1-compressed-pointers-for-8gb-heap.patch │ │ ├── nodejs-20.15.1-lto-update.patch │ │ ├── nodejs-20.15.1-split-pointer-compression-and-v8-sandbox-options.patch │ │ ├── nodejs-20.18.0-lto-update.patch │ │ ├── nodejs-20.18.1-add-v8-jit-fine-grained-options.patch │ │ ├── nodejs-20.19.5-add-v8-jit-fine-grained-options.patch │ │ ├── nodejs-20.19.5-split-pointer-compression-and-v8-sandbox-options.patch │ │ ├── nodejs-20.2.0-global-npm-config.patch │ │ ├── nodejs-20.9.0-add-v8-jit-fine-grained-options.patch │ │ ├── nodejs-20.9.0-global-npm-config.patch │ │ ├── nodejs-20.9.0-lto-update.patch │ │ ├── nodejs-20.9.0-split-pointer-compression-and-v8-sandbox-options.patch │ │ ├── nodejs-22.13.0-add-v8-jit-fine-grained-options.patch │ │ ├── nodejs-22.17.0-lto-update.patch │ │ ├── nodejs-22.17.0-split-pointer-compression-and-v8-sandbox-options.patch │ │ ├── nodejs-22.17.0-support-clang-pgo.patch │ │ ├── nodejs-22.2.0-global-npm-config.patch │ │ ├── nodejs-22.2.0-lto-update.patch │ │ ├── nodejs-23.5.0-split-pointer-compression-and-v8-sandbox-options.patch │ │ ├── nodejs-23.6.0-add-v8-jit-fine-grained-options.patch │ │ ├── nodejs-24.1.0-split-pointer-compression-and-v8-sandbox-options.patch │ │ ├── nodejs-24.11.1-split-pointer-compression-and-v8-sandbox-options.patch │ │ ├── nodejs-24.2.0-add-v8-jit-fine-grained-options.patch │ │ ├── nodejs-24.2.0-lto-update.patch │ │ ├── nodejs-24.2.0-split-pointer-compression-and-v8-sandbox-options.patch │ │ ├── nodejs-24.2.0-support-clang-pgo.patch │ │ ├── nodejs-25.1.0-split-pointer-compression-and-v8-sandbox-options.patch │ │ └── nodejs-99999999-llhttp.patch │ ├── metadata.xml │ ├── nodejs-16.20.2.ebuild │ ├── nodejs-18.20.8.ebuild │ ├── nodejs-20.19.6.ebuild │ ├── nodejs-22.21.1.ebuild │ ├── nodejs-23.11.1.ebuild │ ├── nodejs-24.11.1.ebuild │ └── nodejs-25.2.1.ebuild └── webkit-gtk │ ├── Manifest │ ├── autobump │ ├── custom.sh │ └── description │ ├── compare-point-releases.sh │ ├── files │ ├── 2.40.0-respect-RUBY.patch │ ├── 2.40.1-Cherry-pick-262461-main-b36decf27ea9-.-https-bugs.we.patch │ ├── 2.40.1-gcc-13.patch │ ├── 2.40.2-Cherry-pick-264395-main-4977290ab4ab-.-https-bugs.we.patch │ ├── 2.44.4-fix-icu76.1.patch │ ├── extra-patches │ │ ├── webkit-gtk-2.39.1-jsc-disable-fast-math.patch │ │ ├── webkit-gtk-2.39.1-webcore-honor-finite-math-and-nan.patch │ │ ├── webkit-gtk-2.39.90-linkers.patch │ │ ├── webkit-gtk-2.43.2-custom-page-size.patch │ │ ├── webkit-gtk-2.46.3-custom-optimization.patch │ │ ├── webkit-gtk-2.46.3-gi-flags.patch │ │ ├── webkit-gtk-2.48.0-custom-optimization.patch │ │ └── webkit-gtk-2.48.0-linkers.patch │ └── webkit-gtk-2.43.2-CaptionUserPreferencesDisplayMode-conditional.patch │ ├── metadata.xml │ ├── webkit-gtk-2.50.1-r41000.ebuild │ ├── webkit-gtk-2.50.1-r60000.ebuild │ └── webkit-gtk-2.50.1.ebuild ├── net-misc ├── OCDM-Clearkey │ ├── Manifest │ ├── OCDM-Clearkey-5.2.0.ebuild │ └── metadata.xml ├── ThunderClientLibraries │ ├── Manifest │ ├── ThunderClientLibraries-5.2.0.ebuild │ └── metadata.xml ├── ThunderInterfaces │ ├── Manifest │ ├── ThunderInterfaces-5.2.0.ebuild │ └── metadata.xml ├── ThunderNanoServices │ ├── Manifest │ ├── ThunderNanoServices-5.2.0.ebuild │ └── metadata.xml ├── ThunderTools │ ├── Manifest │ ├── ThunderTools-5.2.0.ebuild │ └── metadata.xml ├── ThunderUI │ ├── Manifest │ ├── ThunderUI-5.2.0.ebuild │ ├── files │ │ └── 5.2.0 │ │ │ ├── package-lock.json │ │ │ └── package.json │ └── metadata.xml ├── curl │ ├── Manifest │ ├── curl-8.14.1.ebuild │ ├── curl-8.15.0.ebuild │ ├── files │ │ ├── curl-8.13.0-gssapi-non-ssl-build.patch │ │ ├── curl-8.13.0-hostip-correct-proxy-name.patch │ │ ├── curl-8.13.0-http2-stream-window-size.patch │ │ ├── curl-8.13.0-httpsrr-target-check.patch │ │ ├── curl-8.13.0-krb5-ftp.patch │ │ ├── curl-8.13.0-openssl-quic-stream-shutdown.patch │ │ ├── curl-prefix-4.patch │ │ └── curl-respect-cflags-3.patch │ └── metadata.xml └── wget │ ├── Manifest │ ├── files │ └── wget-1.24.5-libproxy-no-debug.patch │ ├── metadata.xml │ └── wget-1.25.0.ebuild ├── profiles ├── categories ├── desc │ ├── amdgpu_targets.desc │ ├── c_standard.desc │ ├── cpu_flags_arm.desc │ ├── cpu_flags_mips.desc │ ├── cpu_flags_riscv.desc │ ├── cpu_flags_s390.desc │ ├── cpu_target_arm.desc │ ├── cpu_target_loong.desc │ ├── cpu_target_ppc.desc │ ├── cpu_target_x86.desc │ ├── cuda_targets.desc │ ├── cxx_standard.desc │ ├── dotnet.desc │ ├── ebuild_revision.desc │ ├── ffmpeg_trainers.desc │ ├── firejail_profiles.desc │ ├── gcc_slot.desc │ ├── genkernel_trainers.desc │ ├── godot.desc │ ├── godot_android.desc │ ├── godot_ios.desc │ ├── godot_ios_plugins.desc │ ├── godot_linux.desc │ ├── godot_osx.desc │ ├── godot_web.desc │ ├── jemalloc_trainers.desc │ ├── jemalloc_usd_trainers.desc │ ├── libaom_trainers.desc │ ├── libjpeg_turbo_trainers.desc │ ├── libvpx_trainers.desc │ ├── libzc_trainers.desc │ ├── mono_trainers.desc │ ├── nodejs_trainers.desc │ ├── ollama_llms.desc │ ├── omz_plugins.desc │ ├── omz_themes.desc │ ├── openwebrx_sdr.desc │ ├── ot_kernel_trainers.desc │ ├── patent_status.desc │ ├── rve_models.desc │ ├── theia_plugin.desc │ ├── wk_pgo_trainers.desc │ ├── zlib_trainers.desc │ └── zopfli_trainers.desc ├── make.defaults ├── package.mask ├── package.use ├── package.use.force ├── package.use.mask ├── repo_name └── use.mask ├── sci-geosciences └── google-earth-pro │ ├── Manifest │ ├── files │ ├── HDF-EOS.LICENSE │ ├── e_log.c.LICENSE │ └── google-earth-pro-mimetypes.xml │ ├── google-earth-pro-7.3.6.10441.ebuild │ └── metadata.xml ├── sci-libs ├── MIGraphX │ ├── MIGraphX-6.4.4.ebuild │ ├── MIGraphX-7.0.2.ebuild │ ├── Manifest │ └── metadata.xml ├── MIVisionX │ ├── MIVisionX-6.4.4.ebuild │ ├── MIVisionX-7.0.2.ebuild │ ├── Manifest │ ├── files │ │ ├── MIVisionX-5.1.3-change-libjpeg-turbo-search-path.patch │ │ ├── MIVisionX-5.1.3-use-system-pybind11.patch │ │ ├── MIVisionX-5.4.3-use-system-pybind11.patch │ │ └── MIVisionX-5.6.0-use-system-pybind11.patch │ └── metadata.xml ├── clblast │ ├── Manifest │ ├── clblast-1.5.2-r1.ebuild │ ├── clblast-1.5.2.ebuild │ ├── files │ │ ├── level2_xtrsv.patch │ │ └── level3_xtrsv.patch │ └── metadata.xml ├── composable-kernel │ ├── Manifest │ ├── composable-kernel-6.4.4.ebuild │ ├── composable-kernel-7.0.2.ebuild │ ├── files │ │ ├── composable_kernel-0.2.0_p50501-optional-tests.patch │ │ ├── composable_kernel-0.2.0_p50601-fix-missing-libstdcxx-expf.patch │ │ ├── composable_kernel-0.2.0_p50601-optional-tests.patch │ │ ├── composable_kernel-1.0.0_p9999-fix-missing-libstdcxx-expf.patch │ │ ├── composable_kernel-1.0.0_p9999-fix-missing-libstdcxx-sqrtf.patch │ │ ├── composable_kernel-1.0.0_p9999-hip_runtime-header.patch │ │ ├── composable_kernel-1.0.0_p9999-master-optional-tests.patch │ │ ├── composable_kernel-1.0.0_p9999-optional-tests.patch │ │ ├── composable_kernel-5.7.0-example-libs.patch │ │ ├── composable_kernel-5.7.0-optional-tests.patch │ │ ├── composable_kernel-6.0.2-example-libs.patch │ │ ├── composable_kernel-6.0.2-optional-tests.patch │ │ └── composable_kernel-6.1.2-fix-missing-libstdcxx-expf.patch │ └── metadata.xml ├── ctranslate2 │ ├── Manifest │ ├── ctranslate2-4.5.0.ebuild │ └── metadata.xml ├── dlib │ ├── Manifest │ ├── dlib-19.24.9.ebuild │ ├── files │ │ └── dlib-19.24.2-simd-changes.patch │ └── metadata.xml ├── hipBLAS-common │ ├── Manifest │ ├── hipBLAS-common-6.4.4.ebuild │ ├── hipBLAS-common-7.0.2.ebuild │ └── metadata.xml ├── hipBLAS │ ├── Manifest │ ├── hipBLAS-6.4.4.ebuild │ ├── hipBLAS-7.0.2.ebuild │ └── metadata.xml ├── hipBLASLt │ ├── Manifest │ ├── files │ │ ├── hipBLASLt-5.6.0-set-CMP0074-NEW.patch │ │ ├── hipBLASLt-6.1.1-fix-msgpack-dependency.patch │ │ ├── hipBLASLt-6.4.4-tensile.patch │ │ └── hipBLASLt-6.4.4-use-system-tensile.patch │ ├── hipBLASLt-6.4.4.ebuild │ ├── hipBLASLt-7.0.2.ebuild │ └── metadata.xml ├── hipCUB │ ├── Manifest │ ├── files │ │ └── hipCUB-4.3.0-add-memory-header.patch │ ├── hipCUB-6.4.4.ebuild │ ├── hipCUB-7.0.2.ebuild │ └── metadata.xml ├── hipFFT │ ├── Manifest │ ├── files │ │ ├── hipFFT-4.3.0-add-complex-header.patch │ │ ├── hipFFT-4.5.2-optionize-update-git-dependency.patch │ │ └── hipFFT-5.0.2-remove-git-dependency.patch │ ├── hipFFT-6.4.4.ebuild │ ├── hipFFT-7.0.2.ebuild │ └── metadata.xml ├── hipRAND │ ├── Manifest │ ├── hipRAND-6.4.4.ebuild │ ├── hipRAND-7.0.2.ebuild │ └── metadata.xml ├── hipSOLVER │ ├── Manifest │ ├── hipSOLVER-6.4.4.ebuild │ ├── hipSOLVER-7.0.2.ebuild │ └── metadata.xml ├── hipSPARSE │ ├── Manifest │ ├── files │ │ ├── hipSPARSE-4.5.2-remove-matrices-unpacking.patch │ │ └── hipSPARSE-5.0.2-remove-matrices-unpacking.patch │ ├── hipSPARSE-6.4.4.ebuild │ ├── hipSPARSE-7.0.2.ebuild │ └── metadata.xml ├── hipSPARSELt │ ├── Manifest │ ├── hipSPARSELt-6.4.4.ebuild │ ├── hipSPARSELt-7.0.2.ebuild │ └── metadata.xml ├── hipTensor │ ├── Manifest │ ├── hipTensor-6.4.4.ebuild │ ├── hipTensor-7.0.2.ebuild │ └── metadata.xml ├── magma │ ├── Manifest │ ├── magma-2.9.0.ebuild │ ├── magma-2.9.0_p60404.ebuild │ ├── magma-2.9.0_p70002.ebuild │ └── metadata.xml ├── miopen │ ├── Manifest │ ├── files │ │ ├── miopen-4.1.0-deprecate-clang-ocl.patch │ │ ├── miopen-4.1.0-strip-xnack-in-flags.patch │ │ ├── miopen-4.2.0-disable-no-inline-boost.patch │ │ ├── miopen-4.2.0-gcc11-numeric_limits.patch │ │ ├── miopen-4.3.0-enable-test.patch │ │ ├── miopen-4.3.0-fix-interface-include-in-HIP_COMPILER_FLAGS.patch │ │ ├── miopen-4.5.2-avoid-metadata-error-for-vanilla-clang.patch │ │ ├── miopen-4.5.2-fix-clang++-detection.patch │ │ ├── miopen-4.5.2-include-filesystem-exception.patch │ │ ├── miopen-5.0.2-strip-xnack-in-flags.patch │ │ ├── miopen-5.1.3-avoid-metadata-error-for-vanilla-clang.patch │ │ ├── miopen-5.1.3-deprecate-clang-ocl.patch │ │ ├── miopen-5.1.3-include-array.patch │ │ ├── miopen-5.1.3-mlir_build-vector-header.patch │ │ ├── miopen-5.1.3-no-strip.patch │ │ ├── miopen-5.3.3-deprecate-clang-ocl.patch │ │ ├── miopen-5.3.3-enable-test.patch │ │ ├── miopen-5.6.0-strip-xnack-in-flags.patch │ │ ├── miopen-5.7.1-bunzip2-path.patch │ │ ├── miopen-5.7.1-filesystem_error.patch │ │ ├── miopen-6.0.2-bunzip2-path.patch │ │ ├── miopen-6.0.2-pr2464-backport.patch │ │ ├── miopen-6.1.2-bzcat-path.patch │ │ ├── miopen-6.1.2-disable-no-inline-boost.patch │ │ ├── miopen-6.2.0-filesystem_error.patch │ │ ├── miopen-6.2.0-fix-interface-include-in-HIP_COMPILER_FLAGS.patch │ │ ├── miopen-6.4.4-no-strip.patch │ │ └── miopen-7.0.2-no-strip.patch │ ├── metadata.xml │ ├── miopen-6.4.4.ebuild │ └── miopen-7.0.2.ebuild ├── miopenkernels │ ├── Manifest │ ├── metadata.xml │ ├── miopenkernels-6.4.4.ebuild │ └── miopenkernels-7.0.2.ebuild ├── rocAL │ ├── Manifest │ ├── metadata.xml │ ├── rocAL-6.4.4.ebuild │ └── rocAL-7.0.2.ebuild ├── rocALUTION │ ├── Manifest │ ├── files │ │ └── rocALUTION-5.6.0-invalid-operands-fix.patch │ ├── metadata.xml │ ├── rocALUTION-6.4.4.ebuild │ └── rocALUTION-7.0.2.ebuild ├── rocBLAS │ ├── Manifest │ ├── files │ │ ├── rocBLAS-4.1.0-unbundle-Tensile.patch │ │ ├── rocBLAS-4.3.0-fix-glibc-2.32-and-above.patch │ │ ├── rocBLAS-4.5.2-cpp_lib_filesystem.patch │ │ ├── rocBLAS-5.0.2-cpp_lib_filesystem.patch │ │ ├── rocBLAS-5.0.2-unbundle-Tensile.patch │ │ ├── rocBLAS-5.3.3-include-virtualenv.patch │ │ ├── rocBLAS-5.4.2-add-missing-header.patch │ │ ├── rocBLAS-5.4.2-cpp_lib_filesystem.patch │ │ ├── rocBLAS-5.4.2-link-cblas.patch │ │ ├── rocBLAS-5.4.2-unbundle-Tensile.patch │ │ ├── rocBLAS-5.7.0-unbundle-Tensile.patch │ │ ├── rocBLAS-6.4.4-cpp_lib_filesystem.patch │ │ ├── rocBLAS-6.4.4-unbundle-Tensile.patch │ │ ├── rocBLAS-7.0.2-link-cblas.patch │ │ └── rocBLAS-7.0.2-unbundle-Tensile.patch │ ├── metadata.xml │ ├── rocBLAS-6.4.4.ebuild │ └── rocBLAS-7.0.2.ebuild ├── rocDecode │ ├── Manifest │ ├── metadata.xml │ ├── rocDecode-6.4.4.ebuild │ └── rocDecode-7.0.2.ebuild ├── rocFFT │ ├── Manifest │ ├── files │ │ ├── rocFFT-4.2.0-add-functional-header.patch │ │ ├── rocFFT-5.0.2-add-math-header.patch │ │ ├── rocFFT-5.1.3-add-stdexcept-header.patch │ │ ├── rocFFT-5.1.3-unbundle-sqlite.patch │ │ ├── rocFFT-5.4.3-aot-optional.patch │ │ ├── rocFFT-5.5.1-aot-optional.patch │ │ ├── rocFFT-5.7.1-aot-optional.patch │ │ └── rocFFT-6.0.2-aot-optional.patch │ ├── metadata.xml │ ├── rocFFT-6.4.4.ebuild │ └── rocFFT-7.0.2.ebuild ├── rocMLIR │ ├── Manifest │ ├── files │ │ ├── rocMLIR-5.1.3-fix-so-suffix.patch │ │ ├── rocMLIR-5.3.3-fix-so-suffix.patch │ │ ├── rocMLIR-5.4.3-fix-so-suffix.patch │ │ ├── rocMLIR-5.5.0-fix-so-suffix.patch │ │ └── rocMLIR-5.6.0-rocblas-benchmark-driver-string-header.patch │ ├── metadata.xml │ ├── rocMLIR-6.4.3.ebuild │ └── rocMLIR-7.0.1.ebuild ├── rocPRIM │ ├── Manifest │ ├── metadata.xml │ ├── rocPRIM-6.4.4.ebuild │ └── rocPRIM-7.0.2.ebuild ├── rocRAND │ ├── Manifest │ ├── metadata.xml │ ├── rocRAND-6.4.4.ebuild │ └── rocRAND-7.0.2.ebuild ├── rocSOLVER │ ├── Manifest │ ├── files │ │ ├── rocSOLVER-4.2.0-add-stdint-header.patch │ │ └── rocSOLVER-5.0.2-libfmt8.patch │ ├── metadata.xml │ ├── rocSOLVER-6.4.4.ebuild │ └── rocSOLVER-7.0.2.ebuild ├── rocSPARSE │ ├── Manifest │ ├── files │ │ ├── rocSPARSE-5.0.2-enable-gfx1031.patch │ │ ├── rocSPARSE-5.0.2-remove-incorrect-assert.patch │ │ ├── rocSPARSE-5.0.2-remove-matrices-unpacking.patch │ │ ├── rocSPARSE-5.1.3-fma-fix.patch │ │ ├── rocSPARSE-5.2.3-fma-fix.patch │ │ ├── rocSPARSE-5.2.3-remove-matrices-unpacking.patch │ │ ├── rocSPARSE-5.3.3-remove-matrices-unpacking.patch │ │ ├── rocSPARSE-5.4.3-fma-fix.patch │ │ ├── rocSPARSE-5.4.3-remove-matrices-unpacking.patch │ │ ├── rocSPARSE-5.6.0-fma-fix.patch │ │ ├── rocSPARSE-5.6.0-includes.patch │ │ └── rocSPARSE-6.2.4-includes.patch │ ├── metadata.xml │ ├── rocSPARSE-6.4.4.ebuild │ └── rocSPARSE-7.0.2.ebuild ├── rocThrust │ ├── Manifest │ ├── files │ │ └── rocThrust-4.0-operator_new.patch │ ├── metadata.xml │ ├── rocThrust-6.4.4.ebuild │ └── rocThrust-7.0.2.ebuild ├── rocWMMA │ ├── Manifest │ ├── metadata.xml │ ├── rocWMMA-6.4.4.ebuild │ └── rocWMMA-7.0.2.ebuild ├── rpp │ ├── Manifest │ ├── metadata.xml │ ├── rpp-6.4.4.ebuild │ └── rpp-7.0.2.ebuild └── tensorstore │ ├── Manifest │ ├── files │ ├── tensorstore-0.1.34-invoke-bazel-directly.patch │ └── tensorstore-0.1.59-invoke-bazel-directly.patch │ ├── metadata.xml │ ├── tensorstore-0.1.37.ebuild │ └── tensorstore-0.1.59.ebuild ├── sci-mathematics ├── clipper2 │ ├── Manifest │ ├── clipper2-1.5.3.ebuild │ ├── clipper2-1.5.4.ebuild │ └── metadata.xml └── manifold │ ├── Manifest │ ├── manifold-3.1.0-r1.ebuild │ ├── manifold-3.2.1.ebuild │ └── metadata.xml ├── sci-ml ├── FBGEMM │ ├── FBGEMM-2023.11.02.ebuild │ ├── FBGEMM-2023.12.01.ebuild │ ├── FBGEMM-2023.12.04.ebuild │ ├── Manifest │ ├── files │ │ └── FBGEMM-2023.11.02-gentoo.patch │ └── metadata.xml ├── XNNPACK │ ├── Manifest │ ├── XNNPACK-2022.02.17-r1.ebuild │ ├── XNNPACK-2022.12.22.ebuild │ ├── XNNPACK-2024.03.01.ebuild │ ├── files │ │ ├── XNNPACK-2022.02.17-gentoo.patch │ │ └── XNNPACK-2024.03.01-gentoo.patch │ └── metadata.xml ├── caffe2 │ ├── Manifest │ ├── caffe2-2.8.0.ebuild │ ├── caffe2-2.9.1.ebuild │ ├── files │ │ ├── caffe2-1.12.0-clang.patch │ │ ├── caffe2-1.12.0-glog-0.6.0.patch │ │ ├── caffe2-1.13.0-install-dirs.patch │ │ ├── caffe2-1.13.1-cuda-hardcoded-paths-third-party.patch │ │ ├── caffe2-1.13.1-cuda-hardcoded-paths.patch │ │ ├── caffe2-1.13.1-gentoo.patch │ │ ├── caffe2-1.13.1-optionalize-simd.patch │ │ ├── caffe2-1.13.1-prefixed-install.patch │ │ ├── caffe2-1.13.1-tensorpipe.patch │ │ ├── caffe2-2.0.0-cudnn_include_fix.patch │ │ ├── caffe2-2.0.0-gcc13.patch │ │ ├── caffe2-2.0.1-cuda-hardcoded-paths-third-party.patch │ │ ├── caffe2-2.0.1-cuda-hardcoded-paths.patch │ │ ├── caffe2-2.0.1-cudaExtra.patch │ │ ├── caffe2-2.0.1-gentoo.patch │ │ ├── caffe2-2.0.1-prefixed-install.patch │ │ ├── caffe2-2.1.1-cudaExtra.patch │ │ ├── caffe2-2.1.2-cuda-hardcoded-paths-third-party.patch │ │ ├── caffe2-2.1.2-cuda-hardcoded-paths.patch │ │ ├── caffe2-2.1.2-fix-openmp-link.patch │ │ ├── caffe2-2.1.2-fix-rpath.patch │ │ ├── caffe2-2.1.2-gentoo.patch │ │ ├── caffe2-2.1.2-prefixed-install.patch │ │ ├── caffe2-2.1.2-rocm-fix-std-cpp17.patch │ │ ├── caffe2-2.2.2-cuda-hardcoded-paths-third-party.patch │ │ ├── caffe2-2.2.2-cuda-hardcoded-paths.patch │ │ ├── caffe2-2.2.2-gentoo.patch │ │ ├── caffe2-2.2.2-prefixed-install.patch │ │ ├── caffe2-2.3.0-CMakeFix.patch │ │ ├── caffe2-2.3.0-cudnn_include_fix.patch │ │ ├── caffe2-2.3.0-exclude-aotriton.patch │ │ ├── caffe2-2.3.0-fix-gcc-clang-abi-compat.patch │ │ ├── caffe2-2.3.0-fix-libcpp.patch │ │ ├── caffe2-2.3.0-fix-rocm-gcc14-clamp.patch │ │ ├── caffe2-2.3.0-optional-hipblaslt.patch │ │ ├── caffe2-2.3.0-rocm-fix-std-cpp17.patch │ │ ├── caffe2-2.3.1-cuda-hardcoded-paths-third-party.patch │ │ ├── caffe2-2.3.1-cuda-hardcoded-paths.patch │ │ ├── caffe2-2.3.1-prefixed-install.patch │ │ ├── caffe2-2.4.0-cuda-hardcoded-paths-third-party.patch │ │ ├── caffe2-2.4.0-cuda-hardcoded-paths.patch │ │ ├── caffe2-2.4.0-exclude-aotriton.patch │ │ ├── caffe2-2.4.0-fix-openmp-link.patch │ │ ├── caffe2-2.4.0-install-dirs.patch │ │ ├── caffe2-2.4.0-rocm-fix-std-cpp17.patch │ │ ├── caffe2-2.4.1-gentoo.patch │ │ ├── caffe2-2.4.1-prefixed-install.patch │ │ ├── caffe2-2.5.1-gentoo.patch │ │ ├── caffe2-2.5.1-install-dirs.patch │ │ ├── caffe2-2.5.1-link-openmp-to-torch_shm_manager.patch │ │ ├── caffe2-2.5.1-optionalize-simd-for-fbgemm.patch │ │ ├── caffe2-2.5.1-optionalize-simd.patch │ │ ├── caffe2-2.5.1-prefixed-install.patch │ │ ├── caffe2-2.8.0-aotriton-offline-install.patch │ │ ├── caffe2-2.8.0-cuda-hardcoded-paths-third-party.patch │ │ ├── caffe2-2.8.0-cuda-hardcoded-paths.patch │ │ ├── caffe2-2.8.0-fix-libcpp.patch │ │ ├── caffe2-2.8.0-gentoo.patch │ │ ├── caffe2-2.8.0-prefixed-install.patch │ │ ├── caffe2-2.9.0-cuda-hardcoded-paths-third-party.patch │ │ ├── caffe2-2.9.0-cuda-hardcoded-paths.patch │ │ ├── caffe2-2.9.0-fix-libcpp.patch │ │ ├── caffe2-2.9.0-gentoo.patch │ │ ├── caffe2-2.9.0-install-dirs.patch │ │ ├── caffe2-2.9.0-optionalize-simd.patch │ │ └── caffe2-2.9.0-prefixed-install.patch │ └── metadata.xml ├── huggingface_hub │ ├── Manifest │ ├── huggingface_hub-0.29.3.ebuild │ └── metadata.xml ├── intel-extension-for-pytorch │ ├── Manifest │ ├── intel-extension-for-pytorch-2.8.0c.ebuild │ ├── intel-extension-for-pytorch-2.8.10x.ebuild │ ├── intel-extension-for-pytorch-2.9.10x.ebuild │ └── metadata.xml ├── kineto │ ├── Manifest │ ├── files │ │ ├── kineto-0.4.0-gcc13.patch │ │ └── kineto-0.4.0_p20231031-gentoo.patch │ ├── kineto-0.4.3_p20231131.ebuild │ ├── kineto-0.4.3_p20240131.ebuild │ └── metadata.xml ├── nnef-models │ ├── Manifest │ ├── metadata.xml │ └── nnef-models-20190716.ebuild ├── onnxruntime │ ├── Manifest │ ├── files │ │ ├── onnxruntime-1.19.0-rocm-hardcoded-paths.patch │ │ ├── onnxruntime-1.19.0-use-system-composable-kernel.patch │ │ ├── onnxruntime-1.19.2-drop-nsync.patch │ │ ├── onnxruntime-1.19.2-onnx_proto-visibility.patch │ │ ├── onnxruntime-1.20.0-drop-nsync.patch │ │ ├── onnxruntime-1.20.0-use-system-composable-kernel.patch │ │ └── onnxruntime-1.20.2-fix-eigen-external-deps.patch │ ├── metadata.xml │ └── onnxruntime-1.20.2.ebuild ├── openvino │ ├── Manifest │ ├── files │ │ ├── openvino-2021.4.2-allow-opencv-download-on-gentoo.patch │ │ ├── openvino-2021.4.2-fix-wheel-setup.patch │ │ ├── openvino-2021.4.2-fix-wheel.patch │ │ ├── openvino-2021.4.2-local-tarball.patch │ │ ├── openvino-2024.1.0-dont-delete-archives.patch │ │ ├── openvino-2024.1.0-hard-disable-telemetry.patch │ │ ├── openvino-2024.1.0-offline-install.patch │ │ ├── openvino-2024.1.0-set-python-tag.patch │ │ └── openvino-2024.6.0-set-python-tag.patch │ ├── metadata.xml │ ├── openvino-2024.6.0.ebuild │ └── openvino-2025.1.0.ebuild ├── pytorch │ ├── Manifest │ ├── files │ │ ├── 0002-Don-t-build-libtorch-again-for-PyTorch-1.7.1.patch │ │ ├── caffe2-2.8.0-cuda-hardcoded-paths.patch │ │ ├── caffe2-2.9.0-cuda-hardcoded-paths.patch │ │ ├── pytorch-1.13.0-setup.patch │ │ ├── pytorch-1.13.1-emptyso.patch │ │ ├── pytorch-1.13.1-global-dlopen.patch │ │ ├── pytorch-1.7.1-torch_shm_manager.patch │ │ ├── pytorch-1.9.0-Change-library-directory-according-to-CMake-build.patch │ │ ├── pytorch-2.0.0-emptyso.patch │ │ ├── pytorch-2.0.0-global-dlopen.patch │ │ ├── pytorch-2.1.1-dontbuildagain.patch │ │ ├── pytorch-2.1.1-emptyso.patch │ │ ├── pytorch-2.2.1-emptyso.patch │ │ ├── pytorch-2.4.0-dontbuildagain.patch │ │ ├── pytorch-2.4.0-global-dlopen.patch │ │ ├── pytorch-2.4.0-torch_shm_manager.patch │ │ ├── pytorch-2.5.1-dontbuildagain.patch │ │ ├── pytorch-2.5.1-setup.patch │ │ ├── pytorch-2.5.1-torch_shm_manager.patch │ │ ├── pytorch-2.6.0-dontbuildagain.patch │ │ ├── pytorch-2.7.1-cpp-extension-libcxx.patch │ │ ├── pytorch-2.7.1-cpp-extension-multilib.patch │ │ ├── pytorch-2.8.0-dontbuildagain.patch │ │ └── pytorch-2.9.0-dontbuildagain.patch │ ├── metadata.xml │ ├── pytorch-2.8.0.ebuild │ └── pytorch-2.9.1.ebuild ├── sentencepiece │ ├── Manifest │ ├── metadata.xml │ └── sentencepiece-0.2.0.ebuild ├── tensorflow-datasets │ ├── Manifest │ ├── metadata.xml │ └── tensorflow-datasets-4.9.6.ebuild ├── tensorflow-estimator │ ├── Manifest │ ├── metadata.xml │ ├── tensorflow-estimator-2.14.0.ebuild │ └── tensorflow-estimator-2.15.0.ebuild ├── tensorflow-hub │ ├── Manifest │ ├── metadata.xml │ ├── tensorflow-hub-0.14.0.ebuild │ ├── tensorflow-hub-0.15.0.ebuild │ └── tensorflow-hub-0.16.1.ebuild ├── tensorflow-io │ ├── Manifest │ ├── metadata.xml │ ├── tensorflow-io-0.35.0.ebuild │ ├── tensorflow-io-0.36.0.ebuild │ ├── tensorflow-io-0.37.0.ebuild │ └── tensorflow-io-9999.ebuild ├── tensorflow-metadata │ ├── Manifest │ ├── metadata.xml │ ├── tensorflow-metadata-1.14.0.ebuild │ └── tensorflow-metadata-1.15.0.ebuild ├── tensorflow-probability │ ├── Manifest │ ├── metadata.xml │ └── tensorflow-probability-0.24.0.ebuild ├── tensorflow-text │ ├── Manifest │ ├── files │ │ ├── 2.14.0 │ │ │ ├── .bazelrc │ │ │ └── .bazelversion │ │ ├── 2.15.0 │ │ │ ├── .bazelrc │ │ │ └── .bazelversion │ │ ├── 2.16.1 │ │ │ ├── .bazelrc │ │ │ └── .bazelversion │ │ └── tensorflow-text-2.16.1-fix-bazel-bin-detect.patch │ ├── metadata.xml │ ├── tensorflow-text-2.14.0.ebuild │ ├── tensorflow-text-2.15.0.ebuild │ └── tensorflow-text-2.16.1.ebuild ├── tensorflow │ ├── Manifest │ ├── files │ │ ├── 2.17.1 │ │ │ ├── rocm │ │ │ │ ├── 0008-Relax-setup.py-version-requirements.patch │ │ │ │ ├── 0050-fix-rocm-build-scripts.patch │ │ │ │ ├── 0050-fix-rocm-headers.patch │ │ │ │ └── 0050-fix-rocm-source-code.patch │ │ │ ├── tensorflow-2.15.0-0001-WORKSPACE-add-rules-docker-http_archive-bazel-toolch.patch │ │ │ ├── tensorflow-2.15.0-0002-systemlib-Latest-absl-LTS-has-split-cord-libs.patch │ │ │ ├── tensorflow-2.15.0-0004-tensorflow_cc-Add-systemlib-nsync-linkopts.patch │ │ │ ├── tensorflow-2.15.0-0005-systemlib-Updates-for-Abseil-20220623-LTS.patch │ │ │ ├── tensorflow-2.15.0-0006-systemlib-Update-targets-for-absl_py.patch │ │ │ ├── tensorflow-2.15.0-0007-systemlib-Add-well_known_types_py_pb2-target.patch │ │ │ ├── tensorflow-2.15.0-0009-systemlib-update-targets-for-absl.patch │ │ │ ├── tensorflow-2.15.0-0010-systemlib-fix-missing-osx-in-pybind11.patch │ │ │ ├── tensorflow-2.15.0-0011-systemlib-fix-missing-LICENSE-in-flatbuffers.patch │ │ │ ├── tensorflow-2.15.0-0012-installation-remove-cp_local_config_python.patch │ │ │ ├── tensorflow-2.17.1-0003-mkl_dnn-Must-link-against-libm-for-round-and-log2.patch │ │ │ ├── tensorflow-2.17.1-0008-Relax-setup.py-version-requirements.patch │ │ │ └── tensorflow-2.17.1-0013-build-use-non-hermetic-python.patch │ │ └── 2.20.0 │ │ │ ├── rocm │ │ │ ├── 0008-Relax-setup.py-version-requirements.patch │ │ │ ├── 0050-fix-rocm-build-scripts.patch │ │ │ ├── 0050-fix-rocm-headers.patch │ │ │ └── 0050-fix-rocm-source-code.patch │ │ │ ├── tensorflow-2.15.0-0001-WORKSPACE-add-rules-docker-http_archive-bazel-toolch.patch │ │ │ ├── tensorflow-2.15.0-0002-systemlib-Latest-absl-LTS-has-split-cord-libs.patch │ │ │ ├── tensorflow-2.15.0-0004-tensorflow_cc-Add-systemlib-nsync-linkopts.patch │ │ │ ├── tensorflow-2.15.0-0005-systemlib-Updates-for-Abseil-20220623-LTS.patch │ │ │ ├── tensorflow-2.15.0-0006-systemlib-Update-targets-for-absl_py.patch │ │ │ ├── tensorflow-2.15.0-0007-systemlib-Add-well_known_types_py_pb2-target.patch │ │ │ ├── tensorflow-2.15.0-0010-systemlib-fix-missing-osx-in-pybind11.patch │ │ │ ├── tensorflow-2.15.0-0011-systemlib-fix-missing-LICENSE-in-flatbuffers.patch │ │ │ ├── tensorflow-2.15.0-0012-installation-remove-cp_local_config_python.patch │ │ │ ├── tensorflow-2.16.1-0008-Relax-setup.py-version-requirements.patch │ │ │ ├── tensorflow-2.18.0-0003-mkl_dnn-Must-link-against-libm-for-round-and-log2.patch │ │ │ ├── tensorflow-2.18.0-0008-Relax-setup.py-version-requirements.patch │ │ │ └── tensorflow-2.20.0-0013-build-use-non-hermetic-python.patch │ ├── metadata.xml │ ├── tensorflow-2.17.1.ebuild │ └── tensorflow-2.20.0.ebuild ├── tf-models-official │ ├── Manifest │ ├── metadata.xml │ ├── tf-models-official-2.14.2.ebuild │ ├── tf-models-official-2.15.0.ebuild │ ├── tf-models-official-2.16.0.ebuild │ └── tf-models-official-9999.ebuild ├── tf-slim │ ├── Manifest │ ├── metadata.xml │ └── tf-slim-1.1.0.ebuild ├── torchaudio │ ├── Manifest │ ├── files │ │ ├── torchaudio-2.0.1-disable-init-submodule.patch │ │ ├── torchaudio-2.0.1-system-libs.patch │ │ └── torchaudio-2.5.1-system-libs.patch │ ├── metadata.xml │ ├── torchaudio-2.8.0.ebuild │ └── torchaudio-2.9.0.ebuild ├── torchmetrics │ ├── Manifest │ ├── metadata.xml │ └── torchmetrics-1.4.0_p0.ebuild ├── torchvision │ ├── Manifest │ ├── metadata.xml │ ├── torchvision-0.23.0.ebuild │ └── torchvision-0.24.0.ebuild └── transformers │ ├── Manifest │ ├── metadata.xml │ └── transformers-4.50.3.ebuild ├── sci-physics ├── bullet │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── bullet-3.25.ebuild │ ├── files │ │ └── bullet-2.85-soversion.patch │ └── metadata.xml └── mujoco │ ├── Manifest │ ├── files │ ├── mujoco-2.2.2-use-local-tarballs.patch │ ├── mujoco-2.3.2-mkdir-dist.patch │ ├── mujoco-2.3.7-mkdir-dist.patch │ ├── mujoco-2.3.7-use-local-tarballs.patch │ ├── mujoco-3.0.1-use-local-tarballs.patch │ ├── mujoco-3.1.5-use-local-tarballs.patch │ └── sdflib-1927bee-deps.patch │ ├── metadata.xml │ ├── mujoco-2.3.7.ebuild │ ├── mujoco-3.0.1.ebuild │ └── mujoco-3.1.6.ebuild ├── sci-visualization ├── tensorboard-data-server │ ├── Manifest │ ├── metadata.xml │ └── tensorboard-data-server-0.7.2.ebuild ├── tensorboard-plugin-profile │ ├── Manifest │ ├── metadata.xml │ ├── tensorboard-plugin-profile-2.14.0.ebuild │ └── tensorboard-plugin-profile-2.15.1.ebuild ├── tensorboard-plugin-wit │ ├── Manifest │ ├── metadata.xml │ └── tensorboard-plugin-wit-1.8.1.ebuild ├── tensorboard │ ├── Manifest │ ├── files │ │ ├── tensorboard-2.11.2-yarn-local-cache.patch │ │ ├── tensorboard-2.12.0-regex_edit_dialog_component-window-settimeout.patch │ │ └── tensorboard-2.12.0-vz_projector-BUILD-add-types-three.patch │ ├── metadata.xml │ ├── tensorboard-2.17.1.ebuild │ └── tensorboard-2.20.0.ebuild └── tensorboardx │ ├── Manifest │ ├── metadata.xml │ └── tensorboardx-2.6.2.2.ebuild ├── scripts ├── README.md ├── npm_updater_update_locks.sh ├── pnpm_updater_update_locks.sh ├── rpath_verify.sh └── yarn_updater_update_locks.sh ├── sys-apps ├── bubblewrap │ ├── Manifest │ ├── bubblewrap-0.11.0.ebuild │ └── metadata.xml ├── c2tcp │ ├── Manifest │ ├── c2tcp-2.0_p9999.ebuild │ ├── files │ │ └── c2tcp-2.0_p9990-bash-edits.patch │ └── metadata.xml ├── cellular-traces-nyc │ ├── Manifest │ ├── cellular-traces-nyc-9999.ebuild │ └── metadata.xml ├── cellular-traces-y2018 │ ├── Manifest │ ├── cellular-traces-y2018-9999.ebuild │ └── metadata.xml ├── coolercontrol-qt6 │ ├── Manifest │ ├── coolercontrol-qt6-3.0.1.ebuild │ └── metadata.xml ├── coolercontrol │ ├── Manifest │ ├── coolercontrol-3.0.1.ebuild │ └── metadata.xml ├── coolercontrold │ ├── Manifest │ ├── convert-cargo-lock.sh │ ├── coolercontrold-3.0.1.ebuild │ ├── files │ │ ├── 3.0.1 │ │ │ ├── Cargo.lock │ │ │ └── Cargo.toml │ │ └── coolercontrold │ └── metadata.xml ├── deepcc │ ├── Manifest │ ├── deepcc-1.0_p9999.ebuild │ ├── files │ │ ├── deepcc-1.0_p9999-real-network-with-agnostic-sudo.patch │ │ └── deepcc-1.0_p9999-tf2.patch │ └── metadata.xml ├── evhz │ ├── Manifest │ ├── evhz-20240416.ebuild │ └── metadata.xml ├── finit-d │ ├── Manifest │ ├── files │ │ ├── 20240120 │ │ │ ├── LICENSE │ │ │ ├── LICENSE.GPL2 │ │ │ ├── NOTICE │ │ │ ├── confs │ │ │ │ └── getty.conf │ │ │ ├── event.sh │ │ │ ├── finit.conf │ │ │ ├── generate.sh │ │ │ ├── lib.sh │ │ │ └── rc.local │ │ └── dev │ │ │ ├── LICENSE │ │ │ ├── LICENSE.GPL2 │ │ │ ├── NOTICE │ │ │ ├── confs │ │ │ └── getty.conf │ │ │ ├── event.sh │ │ │ ├── finit.conf │ │ │ ├── generate.sh │ │ │ ├── lib.sh │ │ │ └── rc.local │ ├── finit-d-20240120.ebuild │ ├── finit-d-99999999.ebuild │ └── metadata.xml ├── finit │ ├── Manifest │ ├── files │ │ ├── finit-4.12-override-bshell.patch │ │ └── finit-4.6-override-bshell.patch │ ├── finit-4.12.ebuild │ └── metadata.xml ├── firejail │ ├── Manifest │ ├── files │ │ ├── extra-patches │ │ │ ├── firejail-0.9.64-xpra-speaker-override.patch │ │ │ ├── firejail-009110a-disable-xcsecurity-usage.patch │ │ │ ├── firejail-009110a-disable-xcsecurity.patch │ │ │ ├── firejail-009110a-xpra-opengl.patch │ │ │ ├── firejail-1a576d1-disable-xpra-splash.patch │ │ │ ├── firejail-1a576d1-profile-fixes.patch │ │ │ ├── firejail-1b2d18e-add-caprine-profile.patch │ │ │ ├── firejail-1b2d18e-add-rhash-profile.patch │ │ │ ├── firejail-1b2d18e-add-upscayl-profile.patch │ │ │ ├── firejail-1b2d18e-default-1080p.patch │ │ │ ├── firejail-3bbc6b5-disable-xpra-splash.patch │ │ │ └── firejail-3bbc6b5-private-bin-no-local-default-yes.patch │ │ ├── firejail-0.9.70-envlimits.patch │ │ ├── firejail-0.9.70-firecfg.config.patch │ │ ├── firejail-3f4d6df-firecfg.config.patch │ │ ├── profile_display.local │ │ ├── profile_patch.local │ │ ├── profile_pdftotext.local │ │ └── profile_wget.local │ ├── firejail-0.9.76.ebuild │ └── metadata.xml ├── lact │ ├── Manifest │ ├── convert-cargo-lock.sh │ ├── files │ │ └── lactd │ ├── lact-0.5.4.ebuild │ └── metadata.xml ├── npm │ ├── Manifest │ ├── metadata.xml │ ├── npm-10.9.4.ebuild │ ├── npm-11.6.2.ebuild │ ├── npm-6.14.18.ebuild │ └── npm-8.13.0.ebuild ├── oomd │ ├── Manifest │ ├── files │ │ ├── oomd-0.4.0-savedconfig.patch │ │ ├── oomd-0.5.0-savedconfig.patch │ │ ├── oomd-conf.d │ │ └── oomd-openrc │ ├── metadata.xml │ └── oomd-0.5.0_p9999.ebuild ├── orca │ ├── Manifest │ ├── files │ │ ├── orca-1.0_p9999-production-with-agnostic-sudo.patch │ │ └── orca-1.0_p9999-tf2.patch │ ├── metadata.xml │ └── orca-1.0_p9999.ebuild ├── pnpm │ ├── Manifest │ ├── metadata.xml │ └── pnpm-10.20.0.ebuild └── yarn │ ├── Manifest │ ├── metadata.xml │ ├── yarn-1.22.22.ebuild │ ├── yarn-3.8.7.ebuild │ └── yarn-4.10.3.ebuild ├── sys-auth └── pam-python │ ├── Manifest │ ├── files │ ├── pam-python-1.0.8-Makefile.patch │ ├── pam-python-1.0.8-agnostic-shebang.patch │ ├── pam-python-1.0.8-cast-value-as-char-ptr.patch │ ├── pam-python-1.0.8-compiler-agnostic.patch │ ├── pam-python-1.0.8-no-sudo.patch │ ├── pam-python-1.0.8-use-PyObject_Call.patch │ ├── pam-python-1.0.8-use-PyType_Check.patch │ └── pam-python-1.0.8-use-PyUnicode_GET_LENGTH.patch │ ├── metadata.xml │ └── pam-python-1.0.8.ebuild ├── sys-cluster ├── knem │ ├── Manifest │ ├── files │ │ └── 45-knem.rules │ ├── knem-1.1.4.ebuild │ ├── knem-9999.ebuild │ └── metadata.xml ├── openmpi │ ├── Manifest │ ├── files │ │ └── openmpi-4.1.6-incompatible-pointers.patch │ ├── metadata.xml │ ├── openmpi-4.1.6.ebuild │ └── openmpi-5.0.5.ebuild ├── rdc │ ├── Manifest │ ├── files │ │ ├── rdc-5.1.3-raslib-install.patch │ │ ├── rdc-5.2.3-raslib-install.patch │ │ ├── rdc-5.3.3-raslib-install.patch │ │ ├── rdc-5.4.3-raslib-install.patch │ │ ├── rdc-5.6.0-raslib-install.patch │ │ └── rdc-6.1.2-raslib-install.patch │ ├── metadata.xml │ ├── rdc-6.4.4.ebuild │ └── rdc-7.0.2.ebuild ├── ucx │ ├── Manifest │ ├── files │ │ ├── ucx-1.10.0_rc5-drop-werror.patch │ │ ├── ucx-1.13.0-binutils-2.39-ptr-typedef.patch │ │ ├── ucx-1.13.0-cstdint-include.patch │ │ ├── ucx-1.13.0-drop-werror.patch │ │ ├── ucx-1.13.0-fix-bashisms.patch │ │ ├── ucx-1.13.0-fix-fcntl-include-musl.patch │ │ ├── ucx-1.13.0-no-rpm-sandbox.patch │ │ └── ucx-1.17.0-no-rpm-sandbox.patch │ ├── metadata.xml │ └── ucx-1.17.0.ebuild └── xpmem │ ├── Manifest │ ├── metadata.xml │ ├── xpmem-2.7.3.ebuild │ └── xpmem-9999.ebuild ├── sys-devel ├── aocc │ ├── Manifest │ ├── aocc-4.0.0.ebuild │ ├── aocc-4.1.0.ebuild │ ├── aocc-4.2.0.ebuild │ └── metadata.xml ├── llvm-roc-symlinks │ ├── Manifest │ ├── llvm-roc-symlinks-6.4.4.ebuild │ ├── llvm-roc-symlinks-7.0.2.ebuild │ └── metadata.xml ├── llvm-roc │ ├── Manifest │ ├── files │ │ ├── llvm-14.0.6-bolt-set-cmake-libdir.patch │ │ ├── llvm-14.0.6-bolt_rt-RuntimeLibrary.cpp-path.patch │ │ ├── llvm-14.0.6-bolt_rt-libdir.patch │ │ ├── llvm-16.0.0.9999-bolt_rt-RuntimeLibrary.cpp-path.patch │ │ ├── llvm-16.0.0.9999-v2-bolt_rt-RuntimeLibrary.cpp-path.patch │ │ ├── llvm-16.0.5-bolt-set-cmake-libdir.patch │ │ ├── llvm-17.0.0.9999-v2-bolt_rt-RuntimeLibrary.cpp-path.patch │ │ ├── llvm-17.0.0.9999-v3-bolt_rt-RuntimeLibrary.cpp-path.patch │ │ ├── llvm-commit-90dcdc4-v2.patch │ │ ├── llvm-roc-4.1.0-benchmark-register-include-limits.patch │ │ ├── llvm-roc-4.5.2-fix-linking-for-LLVMAMDGPUDisassembler.patch │ │ ├── llvm-roc-5.1.3-mlir-link-to-MLIRTransforms.patch │ │ ├── llvm-roc-5.5.1-mlir-link-to-MLIRDialectUtils.patch │ │ ├── llvm-roc-6.1.2-llvm-dwarfdump-link-to-BinaryFormat.patch │ │ ├── llvm-roc-6.2.0-link-llvm-split-to-LLVMTargetParser.patch │ │ └── llvm-roc-6.4.4-cuda-path.patch │ ├── llvm-roc-6.4.4.ebuild │ ├── llvm-roc-7.0.2.ebuild │ └── metadata.xml └── mold │ ├── Manifest │ ├── metadata.xml │ └── mold-2.40.4.ebuild ├── sys-firmware └── amdgpu-dkms-firmware │ ├── Manifest │ ├── amdgpu-dkms-firmware-30.10.2.0.30100200.ebuild │ ├── amdgpu-dkms-firmware-6.12.12.604012.ebuild │ └── metadata.xml ├── sys-fs └── ecryptfs-utils │ ├── Manifest │ ├── ecryptfs-utils-111.ebuild │ ├── ecryptfs-utils-112_pre894.ebuild │ ├── files │ ├── ecryptfs-utils-111-python3-ac_python_devel_m4.patch │ ├── ecryptfs-utils-111-swig-fixes.patch │ ├── ecryptfs-utils-111-update-libecryptfs_i.patch │ └── ecryptfs-utils-112_pre894-fix-tests.patch │ └── metadata.xml ├── sys-kernel ├── genkernel │ ├── Manifest │ ├── files │ │ ├── genkernel-3.4.52.4-subdir-mount.patch │ │ ├── genkernel-3.5.3.3-compiler-noise.patch │ │ ├── genkernel-3.5.3.3-dmcrypt-plain-support-v2.patch │ │ ├── genkernel-4.0.10-dmcrypt-plain-support-v3.patch │ │ ├── genkernel-4.0.10-llvm-support-v6.patch │ │ ├── genkernel-4.0.10-subdir-mount.patch │ │ ├── genkernel-4.0.x │ │ │ └── json-c │ │ │ │ └── 0.13.1 │ │ │ │ └── json-c-0.13.1-clang.patch │ │ ├── genkernel-4.1.2-subdir-mount.patch │ │ ├── genkernel-4.2.3-compiler-noise.patch │ │ ├── genkernel-4.2.3-pgo-support.patch │ │ ├── genkernel-4.2.6-chroot-path.patch │ │ ├── genkernel-4.2.6-devicemanager.patch │ │ ├── genkernel-4.2.6-fix-btrfs-progs-deps.patch │ │ ├── genkernel-4.2.6-fuse-glibc-2.34.patch │ │ ├── genkernel-4.2.6-gcc-12-boost-1.79.patch │ │ ├── genkernel-4.2.6-slibtool.patch │ │ ├── genkernel-4.2.x │ │ │ ├── json-c │ │ │ │ └── 0.13.1 │ │ │ │ │ └── json-c-0.13.1-clang.patch │ │ │ ├── libmcrypt │ │ │ │ └── 2.5.8 │ │ │ │ │ ├── 0000_libmcrypt-2.5.8-rotate-mask.patch │ │ │ │ │ └── 0001_libmcrypt-2.5.8-autoconf-2.70.patch │ │ │ ├── mcrypt │ │ │ │ └── 2.6.8 │ │ │ │ │ ├── 0001_mcrypt-2.6.7-qa.patch │ │ │ │ │ ├── 0002_mcrypt-2.6.8-stdlib.h.patch │ │ │ │ │ ├── 0003_mcrypt-2.6.8-segv.patch │ │ │ │ │ ├── 0004_mcrypt-2.6.8-sprintf.patch │ │ │ │ │ ├── 0005_mcrypt-2.6.8-format-string.patch │ │ │ │ │ └── 0006_mcrypt-2.6.8-overflow.patch │ │ │ ├── mhash │ │ │ │ └── 0.9.9.9 │ │ │ │ │ ├── 0001_mhash-0.9.9-fix-mem-leak.patch │ │ │ │ │ ├── 0002_mhash-0.9.9-fix-snefru-segfault.patch │ │ │ │ │ ├── 0003_mhash-0.9.9-fix-whirlpool-segfault.patch │ │ │ │ │ ├── 0004_mhash-0.9.9-autotools-namespace-stomping.patch │ │ │ │ │ ├── 0005_mhash-0.9.9.9-remove_premature_free.patch │ │ │ │ │ ├── 0006_mhash-0.9.9.9-force64bit-tiger.patch │ │ │ │ │ ├── 0007_mhash-0.9.9.9-align.patch │ │ │ │ │ └── 0008_mhash-0.9.9.9-alignment.patch │ │ │ └── steghide │ │ │ │ ├── 0001_steghide-0.5.1-gcc34.patch │ │ │ │ ├── 0002_steghide-0.5.1-gcc4.patch │ │ │ │ └── 0003_steghide-0.5.1-gcc43.patch │ │ ├── genkernel-4.3.12-mdadm-musl-fix.patch │ │ ├── genkernel-4.3.15-fix-srcdir-for-new-bcache-tools.patch │ │ ├── genkernel-4.3.15-mdadm-musl-fix.patch │ │ ├── genkernel-4.3.16-add-eudev-3.2.14-static.patch │ │ ├── genkernel-4.3.16-globbing-workaround.patch │ │ ├── genkernel-4.3.16-musl.patch │ │ ├── genkernel-4.3.16-posix-shell.patch │ │ ├── genkernel-4.3.6-entry-r1.patch │ │ ├── genkernel-4.3.6-fallback.patch │ │ ├── genkernel-4.3.8-dmcrypt-plain-support-v3.patch │ │ ├── genkernel-4.3.8-llvm-support-v6.patch │ │ ├── genkernel-4.bash │ │ ├── genkernel.bash │ │ ├── initramfs.mounts │ │ ├── lvm2-2.03.20-dm_lvm_rules_no_systemd.patch │ │ └── lvm2-2.03.20-dm_lvm_rules_no_systemd_v2.patch │ ├── genkernel-4.0.10.ebuild │ ├── genkernel-4.3.17e.ebuild │ ├── genkernel-4.3.17s.ebuild │ └── metadata.xml ├── gostcrypt-linux-crypto │ ├── Manifest │ ├── gostcrypt-linux-crypto-0.3.5.ebuild │ └── metadata.xml ├── mitigate-dos │ ├── Manifest │ ├── metadata.xml │ └── mitigate-dos-0.ebuild ├── mitigate-dt │ ├── Manifest │ ├── metadata.xml │ └── mitigate-dt-0.ebuild ├── mitigate-id │ ├── Manifest │ ├── metadata.xml │ └── mitigate-id-0.ebuild ├── ot-sources │ ├── Manifest │ ├── autobump │ │ ├── custom.sh │ │ └── description │ ├── files │ │ ├── 5022_BMQ-and-PDS-compilation-fix.patch │ │ ├── CVE-2019-14821-fix--linux-virt-kvm-coalesced-mmio-add-bounds-checking-for-4.9.182.patch │ │ ├── CVE-2019-16089-fix--linux-drivers-block-nbd-v3-nbd_genl_status-null-check-for-nla_nest_start-for-4.14.x.patch │ │ ├── CVE-2019-18812-fix--linux-sound-soc-sof-debug-Fix-memory-leak-in-sof_dfsentry_write-for-5.3.4.patch │ │ ├── CVE-2019-18885-fix--linux-fs-btrfs-merge-btrfs_find_device-and-find_device-for-4.14.x.patch │ │ ├── O3-config-option-7d0295d-fix-for-4.14.patch │ │ ├── O3-config-option-a56a173-fix-for-5.1.patch │ │ ├── all-kernel-options-as-modules │ │ ├── all-kernel-options-as-yes │ │ ├── bbrv2-1e924b1-fix-for-6.5.2.patch │ │ ├── bbrv2-2bab755-fix-for-6.7.4.patch │ │ ├── bbrv2-3ff0ac8-fix-for-5.15.69.patch │ │ ├── bbrv2-3ff0ac8-fix-for-5.19.10.patch │ │ ├── bbrv2-3ff0ac8-fix-for-6.0.patch │ │ ├── bbrv2-3ff0ac8-fix-for-6.3.patch │ │ ├── bbrv2-3ff0ac8-fix-for-6.7.4.patch │ │ ├── bbrv2-40bc606-fix-for-5.15.53.patch │ │ ├── bbrv2-41ceaf5-fix-for-5.15.53.patch │ │ ├── bbrv2-41ceaf5-fix-for-5.17.patch │ │ ├── bbrv2-50b614c-fix-for-5.15.53.patch │ │ ├── bbrv2-50b614c-fix-for-5.17.patch │ │ ├── bbrv2-5ab6f73-fix-for-6.7.4.patch │ │ ├── bbrv2-5ab6f73-fix-for-6.8.0_rc4-7e90b5c.patch │ │ ├── bbrv2-b8d3909-fix-for-5.10.160.patch │ │ ├── bbrv2-c6ef88b-fix-for-5.14.patch │ │ ├── bbrv2-c6ef88b-use-get_random_u32_below-for-6.2.patch │ │ ├── bbrv2-cd58ed7-fix-for-5.10.129.patch │ │ ├── bbrv2-cf9b1da-fix-for-5.15.84.patch │ │ ├── bbrv2-cf9b1da-fix-for-6.0.14.patch │ │ ├── bbrv2-cf9b1da-fix-for-6.1.patch │ │ ├── bbrv2-cf9b1da-fix-for-6.3.patch │ │ ├── bbrv2-f6da35c-fix-for-5.10.129.patch │ │ ├── bbrv2-f85b140-fix-for-5.10.129.patch │ │ ├── bbrv2-v2alpha-2022-08-28-5.13.12-5ab6f73-fix-for-6.8.1.patch │ │ ├── bbrv3-6e321d1-6.4.0-40f1ce9-fix-for-6.6.0-git-2c40c1c.patch │ │ ├── bbrv3-6e321d1-6.4.0-40f1ce9-fix-for-6.6.0-git-6bc986a.patch │ │ ├── bbrv3-6e321d1-6.4.0-4fef7ac-fix-for-6.6.0-git-2c40c1c.patch │ │ ├── bbrv3-6e321d1-6.4.0-4fef7ac-fix-for-6.6.0-git-6bc986a.patch │ │ ├── bbrv3-6e321d1-6.4.0-9cb2d74-fix-for-6.6.0-git-6bc986a.patch │ │ ├── bbrv3-6e321d1-6.4.0-9cb2d74-fix-for-6.6.0-git-e392ea4.patch │ │ ├── bbrv3-6e321d1-6.4.0-a1d32ad-fix-for-6.6.0-git-2c40c1c.patch │ │ ├── bbrv3-6e321d1-6.4.0-a1d32ad-fix-for-6.6.0-git-6bc986a.patch │ │ ├── bbrv3-6e321d1-6.4.0-a5cc006-fix-for-6.6.0-git-2c40c1c.patch │ │ ├── bbrv3-6e321d1-6.4.0-a5cc006-fix-for-6.6.0-git-6bc986a.patch │ │ ├── bbrv3-6e321d1-6.4.0-aa27c22-fix-for-6.11.5-git-6bc986a.patch │ │ ├── bbrv3-6e321d1-6.4.0-aa27c22-fix-for-6.6.0-git-2c40c1c.patch │ │ ├── bbrv3-6e321d1-6.4.0-aa27c22-fix-for-6.6.0-git-6bc986a.patch │ │ ├── bbrv3-6e321d1-6.4.0-c20e56d-fix-for-6.6.0-git-6bc986a.patch │ │ ├── bbrv3-6e321d1-6.4.0-c20e56d-fix-for-6.6.0-git-e392ea4.patch │ │ ├── bbrv3-7542cc7-6.4.0-4fef7ac-fix-for-6.7.0-git-7e90b5c.patch │ │ ├── bbrv3-7542cc7-6.4.0-4fef7ac-fix-for-6.8.1.patch │ │ ├── bbrv3-7542cc7-6.4.0-a5cc006-fix-for-6.7.0-git-7e90b5c.patch │ │ ├── bbrv3-7542cc7-6.4.0-a5cc006-fix-for-6.8.1.patch │ │ ├── bmq_v5.4-r2-fix-for-5.4.256.patch │ │ ├── cfi-aa4fb87-for-5.16.patch │ │ ├── cfi-x86-1d7789c-fix-for-5.14.patch │ │ ├── cfi-x86-343e289-fix-for-5.15.patch │ │ ├── cfi-x86-3cb32c4-fix-for-5.18.patch │ │ ├── cfi-x86-3cb32c4-fix-for-5.19.10.patch │ │ ├── cfi-x86-5140d56-moved-for-5.13.patch │ │ ├── cfi-x86-7fb10a9-rebase-for-5.16.patch │ │ ├── cfi-x86-7fb10a9-rebase-for-5.18.patch │ │ ├── cfi-x86-8dfd451-fix-for-5.19.10.patch │ │ ├── cfi-x86-a09066b-fix-for-5.19.10.patch │ │ ├── cfi-x86-aa4fb87-fix-for-5.15.69.patch │ │ ├── cfi-x86-bd6966b-fix-for-5.15.69.patch │ │ ├── cfi-x86-bd6966b-fix-for-5.18.patch │ │ ├── cfi-x86-bd6966b-fix-for-5.19.10.patch │ │ ├── cfi-x86-cfi_init-ifdef-module-unload.patch │ │ ├── cfi-x86-e921a27-fix-for-5.15.69.patch │ │ ├── cfi-x86-e921a27-fix-for-5.19.10.patch │ │ ├── ck-0.162-4.14-fbc0b45-2-hunk-fix-for-4.14.246.patch │ │ ├── ck-0.162-4.14-fbc0b45-build-time-fixes-for-4.14.213.patch │ │ ├── ck-0.180-4.19.0-8a679ba-fix-for-4.19.294.patch │ │ ├── ck-0.180-4.19.0-ba77544-fixes-for-4.19.294.patch │ │ ├── ck-0.180-4.19.0-befdee7-fix-for-4.19.294.patch │ │ ├── ck-0.180-4.19.0-dc988b5-fixes-for-4.19.294.patch │ │ ├── ck-0.205-5.10.0-04468a7-fix-for-5.10.194.patch │ │ ├── ck-0.205-5.10.0-35f6640-fix-for-5.10.194.patch │ │ ├── ck-0.205-5.10.0-35f6640-fix-header-section-for-5.10.203.patch │ │ ├── ck-0.205-5.10.0-35f6640-fix-renames-for-5.10.203.patch │ │ ├── clang-pgo-__no_profile-for-6.5.patch │ │ ├── clang-pgo-kconfig-depends-not-ARCH_WANTS_NO_INSTR-or-CC_HAS_NO_PROFILE_FN_ATTR.patch │ │ ├── clang-pgo-support-profraw-v6-to-v8.patch │ │ ├── clang-pgo-support-profraw-v9.patch │ │ ├── clang-pgo-v9-fix-for-5.15.131.patch │ │ ├── clang-pgo-v9-fix-for-5.15.148.patch │ │ ├── clang-pgo-v9-fix-for-6.1.77.patch │ │ ├── clang-pgo-v9-fix-for-6.6.16.patch │ │ ├── clang-pgo-v9-fixes-for-6.7.10.patch │ │ ├── clang-pgo-v9-fixes-for-6.8.1.patch │ │ ├── clang-pgo-v9.patch │ │ ├── custom-logo-for-4.14.patch │ │ ├── custom-logo-for-4.19.patch │ │ ├── custom-logo-for-6.1.patch │ │ ├── disable_debug_v1.4.2 │ │ ├── ep800 │ │ │ ├── README.md │ │ │ ├── add-ep800-to-build-for-5.18.patch │ │ │ ├── add-ep800-to-build.patch │ │ │ ├── ep800.c │ │ │ └── ep800.h │ │ ├── external-modules-linking-changes-for-5.15.138.patch │ │ ├── external-modules-linking-changes-for-5.4.260.patch │ │ ├── gcc-pgo-flags-4.14.patch │ │ ├── gcc-pgo-flags-4.19.patch │ │ ├── gcc-pgo-flags-5.15.patch │ │ ├── gcc-pgo-flags-5.4.patch │ │ ├── gcc-pgo-flags-5.6.patch │ │ ├── header-preserve-kernel │ │ ├── kcfi-1fd151f-fix-for-5.19.10.patch │ │ ├── kcfi-393fb8d-fix-for-6.0.1.patch │ │ ├── kcfi-55fcaf0-fix-for-5.19.15.patch │ │ ├── kcfi-934bd55-fix-for-5.19.10.patch │ │ ├── kcfi-eca242c-fix-for-5.19.10.patch │ │ ├── linux-4-19-310-orca-c2tcp-0521.patch │ │ ├── linux-5-10-213-orca-c2tcp-0521-bbr2-compat.patch │ │ ├── linux-5-10-213-orca-c2tcp-0521.patch │ │ ├── linux-5-15-152-orca-c2tcp-0521-bbr2-compat.patch │ │ ├── linux-5-15-152-orca-c2tcp-0521.patch │ │ ├── linux-5-4-272-orca-c2tcp-0521.patch │ │ ├── linux-5.10.237-no_turbo.patch │ │ ├── linux-5.4.293-no_turbo.patch │ │ ├── linux-6-1-52-orca-c2tcp-0521-bbr2-compat.patch │ │ ├── linux-6-1-52-orca-c2tcp-0521.patch │ │ ├── linux-6-11-5-orca-c2tcp-0521-bbr2-compat.patch │ │ ├── linux-6-11-5-orca-c2tcp-0521-bbr3-compat.patch │ │ ├── linux-6-11-5-orca-c2tcp-0521.patch │ │ ├── linux-6-6-22-orca-c2tcp-0521-bbr2-compat.patch │ │ ├── linux-6-6-22-orca-c2tcp-0521-bbr3-compat.patch │ │ ├── linux-6-6-22-orca-c2tcp-0521.patch │ │ ├── linux-6.14.6-no_turbo.patch │ │ ├── nest-5.15-fix-for-5.15.143.patch │ │ ├── nest-6.6-fix-for-6.1.82.patch │ │ ├── nest-6.6-fix-for-6.6.7.patch │ │ ├── ot-kernel-iosched.openrc │ │ ├── ot-kernel-iosched.service │ │ ├── ot-kernel-iosched.sh │ │ ├── ot-kernel-zstd-vs-lz4.txt │ │ ├── pds-4.14_pds098i-rebase-for-4.14.213.patch │ │ ├── pgo-trainer.sh │ │ ├── prjc-5.15-sched_post_fork-change.patch │ │ ├── prjc_v5.10-lts-r3-fix-for-5.10.194.patch │ │ ├── prjc_v5.15-r1-fix-for-5.15.131.patch │ │ ├── prjc_v6.4-r0-fix-for-6.4.15.patch │ │ ├── rt-patchset-0255-cpuset-Convert-callback_lock-to-raw_spinlock_t-fix-for-5.10.194.patch │ │ ├── sanitizers-kcmdline-panic-for-5.10.237.patch │ │ ├── sanitizers-kcmdline-panic-for-5.15.182.patch │ │ ├── sanitizers-kcmdline-panic-for-5.4.293.patch │ │ ├── sanitizers-kcmdline-panic-for-6.1.138.patch │ │ ├── sanitizers-kcmdline-panic-for-6.14.6.patch │ │ ├── sanitizers-kcmdline-panic-for-6.16.1.patch │ │ ├── sanitizers-kcmdline-panic-for-6.6.90.patch │ │ ├── tcca │ │ ├── tracking-packets-with-CE-marks-in-BW-rate-sample-40bc606.patch │ │ ├── tresor-256-bit-aes-support-i686-v3.1-for-5.10.patch │ │ ├── tresor-256-bit-aes-support-i686-v3.2-for-5.4.patch │ │ ├── tresor-access_ok-4.19_aesni.patch │ │ ├── tresor-access_ok-5.4_aesni.patch │ │ ├── tresor-access_ok-for-6.6.patch │ │ ├── tresor-add-crypto-header-for-6.6.patch │ │ ├── tresor-add-crypto-header-to-tresor_glue-for-6.6_aesni.patch │ │ ├── tresor-benchmarks.txt │ │ ├── tresor-change-to-for_each_process_thread-for-6.6.patch │ │ ├── tresor-correctness-results.txt │ │ ├── tresor-cpuid-aesni-check-for-4.19.patch │ │ ├── tresor-cpuid-aesni-check-for-5.15.patch │ │ ├── tresor-cpuid-aesni-check-for-5.4.patch │ │ ├── tresor-cpuid-aesni-check-for-6.1.patch │ │ ├── tresor-cpuid-aesni-check-for-6.8.patch │ │ ├── tresor-drop-glue_helper-for-5.15_x86_64.patch │ │ ├── tresor-drop-xts-and-use-ctr-template-128-for-5.15_x86_64.patch │ │ ├── tresor-drop-xts-and-use-ctr-template-256-for-5.15_x86_64.patch │ │ ├── tresor-drop-xts-and-use-ctr-template-for-5.15_aesni.patch │ │ ├── tresor-drop-xts-and-use-ctr-template-for-5.15_i686.patch │ │ ├── tresor-drop-xts-and-use-ctr-template-for-6.1_aesni.patch │ │ ├── tresor-enc-dec-blk-for-6.1_aesni.patch │ │ ├── tresor-explicit-int-dont_switch-arg-for-6.1.patch │ │ ├── tresor-expose-aes-generic-tables-for-5.4.patch │ │ ├── tresor-fix-warnings-for-tresor_key_c-for-4.14.patch │ │ ├── tresor-fix-warnings-for-tresor_key_c-for-5.10.patch │ │ ├── tresor-fix-warnings-for-tresor_key_c-for-5.4.patch │ │ ├── tresor-get_ds-to-kernel_ds.patch │ │ ├── tresor-glue-helper-in-kconfig.patch │ │ ├── tresor-glue-helper-removed-aesni-v1.patch │ │ ├── tresor-glue-helper-removed-i686-128-v1.patch │ │ ├── tresor-glue-helper-removed-i686-256-v1.patch │ │ ├── tresor-glue-remove-xts-casts-and-api-updates-for-5.6-aesni.patch │ │ ├── tresor-glue-remove-xts-casts-and-api-updates-for-5.6-i686.patch │ │ ├── tresor-glue-skcipher-cbc-ecb-ctr-xts-support-for-5.10-aesni-v2.5.patch │ │ ├── tresor-glue-skcipher-cbc-ecb-ctr-xts-support-for-5.10-i686-v2.6.patch │ │ ├── tresor-glue-skcipher-cbc-ecb-ctr-xts-support-for-5.4-aesni-v2.5.patch │ │ ├── tresor-glue-skcipher-cbc-ecb-ctr-xts-support-for-5.4-i686-v2.6.patch │ │ ├── tresor-glue-skcipher-cbc-ecb-for-4.14-aesni-v2.patch │ │ ├── tresor-glue-skcipher-cbc-ecb-for-4.14-i686-v2.patch │ │ ├── tresor-kconfig-crypto-simd-for-6.1.patch │ │ ├── tresor-ksys-renamed-funcs-aesni.patch │ │ ├── tresor-ksys-renamed-funcs-i686.patch │ │ ├── tresor-linux-stdarg-for-6.1_aesni.patch │ │ ├── tresor-linux-stdarg-for-6.1_x86_64.patch │ │ ├── tresor-preprocessor-cond-changes-for-128-5.15_x86_64.patch │ │ ├── tresor-preprocessor-cond-changes-for-128-5.4_x86_64.patch │ │ ├── tresor-preprocessor-cond-changes-for-256-5.15_x86_64.patch │ │ ├── tresor-preprocessor-cond-changes-for-256-5.4_x86_64.patch │ │ ├── tresor-prompt-update-for-5.10-v4_aesni.patch │ │ ├── tresor-prompt-update-for-5.10-v4_i686.patch │ │ ├── tresor-prompt-update-for-5.15-v4_aesni.patch │ │ ├── tresor-prompt-update-for-5.15-v4_i686.patch │ │ ├── tresor-prompt-update-for-6.1-v4_aesni.patch │ │ ├── tresor-prompt-update-for-6.1-v4_i686.patch │ │ ├── tresor-prompt-update-for-6.6-v4_aesni.patch │ │ ├── tresor-prompt-update-for-6.6-v4_i686.patch │ │ ├── tresor-prompt-wait-fix-for-4.14-aesni.patch │ │ ├── tresor-prompt-wait-fix-for-4.14-i686.patch │ │ ├── tresor-prompt-wait-fix-for-4.19-aesni.patch │ │ ├── tresor-prompt-wait-fix-for-4.19-i686.patch │ │ ├── tresor-prompt-wait-fix-for-5.4-aesni.patch │ │ ├── tresor-prompt-wait-fix-for-5.4-i686.patch │ │ ├── tresor-ptrace-mispatch-fix-for-5.4-aesni.patch │ │ ├── tresor-ptrace-mispatch-fix-for-5.4-i686.patch │ │ ├── tresor-rename-to-freezer_active-for-6.1.patch │ │ ├── tresor-testmgr-ciphers-update-for-linux-4.14.patch │ │ ├── tresor-testmgr-ciphers-update.patch │ │ ├── tresor-testmgr-limit-modes-of-operation-to-128-bit-key-support-for-linux-4.14.patch │ │ ├── tresor-testmgr-limit-modes-of-operation-to-128-bit-key-support-for-linux-5.10.patch │ │ ├── tresor-testmgr-limit-to-xts-256-bit-key-support-for-linux-5.10.patch │ │ ├── tresor-testmgr-linux-4.14.127.patch │ │ ├── tresor-testmgr-linux-4.19.306.patch │ │ ├── tresor-testmgr-linux-4.20.17.patch │ │ ├── tresor-testmgr-linux-5.0.13.patch │ │ ├── tresor-testmgr-linux-5.1.patch │ │ ├── tresor-testmgr-show-passed-for-linux-4.14.patch │ │ ├── tresor-tresor_asm_64_v2.2.patch │ │ ├── tresor-tresor_key_64.patch │ │ ├── tresor-use-ecb-cbc-helpers-128-for-6.6_x86_64.patch │ │ ├── tresor-use-ecb-cbc-helpers-256-for-6.6_aesni.patch │ │ ├── tresor-use-ecb-cbc-helpers-256-for-6.6_x86_64.patch │ │ ├── tresor-xts-setkey-5.4-aesni.patch │ │ ├── tresor-xts-setkey-5.4-i686.patch │ │ ├── uksm-4.14-rebase-for-4.14.246.patch │ │ ├── uksm-5.15-fix-for-5.15.131.patch │ │ ├── uksm-5.4-rebase-for-5.4.147.patch │ │ ├── v4.19_pds099h-fixes-for-4.19.294.patch │ │ ├── zen-muqss-5.4.0-86df8be-fix-for-5.4.256.patch │ │ ├── zen-sauce-4.19.0-7ab867e-fix-for-4.19.294.patch │ │ ├── zen-sauce-4.19.0-7d0295d-fix-for-4.19.294.patch │ │ ├── zen-sauce-5.10.0-28eaff6-fix-for-5.10.194.patch │ │ ├── zen-sauce-5.10.0-28eaff6-fix-for-5.10.203.patch │ │ ├── zen-sauce-5.10.0-e1b127a-fix-for-5.10.194.patch │ │ ├── zen-sauce-5.15.0-e6e6ceb-fix-for-5.15.131.patch │ │ ├── zen-sauce-5.4-4edc805-fix.patch │ │ ├── zen-sauce-5.4.0-376d7ed-fix-for-5.4.256.patch │ │ ├── zen-sauce-5.4.0-3e05ad8-compat-with-bmq-v5.4-r2-for-5.4.256.patch │ │ ├── zen-sauce-6.1.0-0a22064-fix-for-6.1.52.patch │ │ ├── zen-sauce-6.1.0-f22bc56-fix-for-6.1.57.patch │ │ ├── zen-sauce-6.6.0-3187cbb-fix-for-6.6.0-git-e392ea4.patch │ │ └── zen-sauce-6.6.0-369ef2b-fix-for-6.6.0-git-6bc986a.patch │ ├── metadata.xml │ ├── ot-sources-5.10.246.ebuild │ ├── ot-sources-5.15.196.ebuild │ ├── ot-sources-5.4.302.ebuild │ ├── ot-sources-6.1.158.ebuild │ ├── ot-sources-6.12.60.ebuild │ ├── ot-sources-6.17.10.ebuild │ └── ot-sources-6.6.118.ebuild ├── pcc │ ├── Manifest │ ├── files │ │ ├── pcc-2eeadf0-allegro-6.10-compat.patch │ │ └── pcc-2eeadf0-vivace-6.10-compat.patch │ ├── metadata.xml │ └── pcc-9999.ebuild └── rock-dkms │ ├── Manifest │ ├── files │ ├── rock-dkms-3.10_p27-makefile-recognize-gentoo.patch │ ├── rock-dkms-3.1_p35-add-header-to-kcl_fence_c.patch │ ├── rock-dkms-4.3_p52-no-firmware-install.patch │ ├── rock-dkms-5.2.3-fix-ssg-in-amdgpu_ttm.patch │ ├── rock-dkms-5.4.3-cc-contains-gcc.patch │ ├── rock-dkms-5.4.3-fix-preprocessor-scope-in-amdgpu_dm.patch │ ├── rock-dkms-5.4.3-pre-build-change-kcl-defs.patch │ ├── rock-dkms-5.4.3-seq_printf-header.patch │ ├── rock-dkms-5.6.1-fix-gpu_scheduler-MODULE_PARM_DESC.patch │ ├── rock-dkms-6.4.3-kbuild-recognize-gentoo.patch │ └── rock-dkms-7.0.2-dkms-config-sh-recognize-gentoo.patch │ ├── metadata.xml │ ├── rock-dkms-6.4.3.ebuild │ └── rock-dkms-7.0.2.ebuild ├── sys-libs ├── libbacktrace │ ├── Manifest │ ├── libbacktrace-1.0_p99999999.ebuild │ └── metadata.xml ├── llvm-roc-libomp │ ├── Manifest │ ├── files │ │ ├── llvm-roc-libomp-4.1.1-omp-tools-includes.patch │ │ ├── llvm-roc-libomp-5.1.3-libomptarget-includes-path.patch │ │ ├── llvm-roc-libomp-5.1.3-omp-tools-includes.patch │ │ ├── llvm-roc-libomp-5.2.3-libomptarget-includes-path.patch │ │ ├── llvm-roc-libomp-5.2.3-omp-tools-includes.patch │ │ ├── llvm-roc-libomp-5.3.3-backport-056b229.patch │ │ ├── llvm-roc-libomp-5.3.3-omp-tools-includes.patch │ │ ├── llvm-roc-libomp-5.6.0-omp-tools-includes.patch │ │ ├── llvm-roc-libomp-5.6.0-omp.h-includes.patch │ │ ├── llvm-roc-libomp-5.6.0-ompt-includes.patch │ │ ├── llvm-roc-libomp-6.2.0-omp-tools-includes.patch │ │ ├── llvm-roc-libomp-6.4.4-change-message.patch │ │ ├── llvm-roc-libomp-6.4.4-fix-OmptTracing-syntax-error.patch │ │ ├── llvm-roc-libomp-6.4.4-fix-target-source-path.patch │ │ ├── llvm-roc-libomp-6.4.4-protobuf_install_path.patch │ │ └── llvm-roc-libomp-7.0.2-fix-target-source-path.patch │ ├── llvm-roc-libomp-6.4.4.ebuild │ ├── llvm-roc-libomp-7.0.2.ebuild │ └── metadata.xml └── zlib │ ├── Manifest │ ├── files │ ├── zlib-1.2.11-configure-fix-AR-RANLIB-NM-detection.patch │ ├── zlib-1.2.11-minizip-drop-crypt-header.patch │ ├── zlib-1.2.13-CVE-2023-45853.patch │ ├── zlib-1.2.13-Revert-Turn-off-RWX-segment-warnings-on-sparc-system.patch │ ├── zlib-1.2.13-use-LDFLAGS-in-configure.patch │ ├── zlib-1.3.1-Revert-Turn-off-RWX-segment-warnings-on-sparc-system.patch │ ├── zlib-1.3.1-configure-fix-AR-RANLIB-NM-detection.patch │ ├── zlib-1.3.1-configure-fix-AR-libtool-on-darwin.patch │ └── zlib-1.3.1-use-LDFLAGS-in-configure.patch │ ├── metadata.xml │ └── zlib-1.3.1.ebuild ├── sys-power └── cpupower-gui │ ├── Manifest │ ├── cpupower-gui-0.9.1-r5.ebuild │ ├── cpupower-gui-1.0.0-r4.ebuild │ └── metadata.xml ├── sys-process ├── nvtop │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── metadata.xml │ ├── nvtop-3.0.2.ebuild │ ├── nvtop-3.1.0.ebuild │ └── nvtop-3.2.0.ebuild └── psdoom-ng │ ├── Manifest │ ├── metadata.xml │ └── psdoom-ng-2025.06.09.3.1.0.ebuild ├── use-linter ├── virtual ├── cuda-compiler │ ├── Manifest │ ├── cuda-compiler-12.6.ebuild │ ├── cuda-compiler-12.8.ebuild │ ├── cuda-compiler-12.9.ebuild │ └── metadata.xml ├── dss │ ├── Manifest │ ├── dss-0.ebuild │ └── metadata.xml ├── hsa-code-object-version │ ├── Manifest │ ├── hsa-code-object-version-0.ebuild │ └── metadata.xml ├── kfd │ ├── Manifest │ ├── kfd-6.4.ebuild │ ├── kfd-7.0.ebuild │ └── metadata.xml ├── libcxx │ ├── Manifest │ ├── libcxx-0.ebuild │ └── metadata.xml ├── libstdcxx │ ├── Manifest │ ├── libstdcxx-0.ebuild │ └── metadata.xml ├── linux-sources │ ├── Manifest │ ├── linux-sources-3-r8.ebuild │ └── metadata.xml ├── ot-sources-lts │ ├── Manifest │ ├── metadata.xml │ └── ot-sources-lts-20251203.ebuild ├── ot-sources-stable │ ├── Manifest │ ├── metadata.xml │ └── ot-sources-stable-6.17.10.ebuild ├── patent-status │ ├── Manifest │ ├── metadata.xml │ └── patent-status-0.ebuild ├── pillow │ ├── Manifest │ ├── metadata.xml │ ├── pillow-10.0.1.ebuild │ ├── pillow-10.2.0.ebuild │ ├── pillow-10.3.0.ebuild │ ├── pillow-10.4.0.ebuild │ ├── pillow-11.0.0.ebuild │ └── pillow-9.5.0.ebuild ├── rocm-libstdcxx │ ├── Manifest │ ├── metadata.xml │ ├── rocm-libstdcxx-6.4.ebuild │ └── rocm-libstdcxx-7.0.ebuild └── tmpfiles │ ├── Manifest │ ├── metadata.xml │ └── tmpfiles-0-r5.ebuild ├── www-apps ├── lobe-chat │ ├── Manifest │ ├── files │ │ ├── 1.142.8 │ │ │ ├── package.json │ │ │ └── pnpm-lock.yaml │ │ ├── lobe-chat │ │ ├── lobe-chat-1.133.4-next-config.patch │ │ ├── lobe-chat-1.38.0-hardcoded-paths.patch │ │ ├── lobe-chat-1.38.0-next-config.patch │ │ ├── lobe-chat-1.47.17-hardcoded-paths.patch │ │ ├── lobe-chat-1.48.3-drop-serwist.patch │ │ ├── lobe-chat-1.55.4-next-config.patch │ │ ├── lobe-chat-1.62.0-pnpm-patches.patch │ │ ├── lobe-chat-1.62.4-pnpm-patches.patch │ │ ├── lobe-chat-1.65.0-sharp-declaration.patch │ │ ├── lobe-chat-1.96.13-next-config.patch │ │ ├── lobe-chat-1.96.14-use-e965-xlsx.patch │ │ ├── lobe-chat-start-server │ │ ├── lobe-chat.conf │ │ ├── lobe-chat.openrc │ │ ├── lobe-chat.systemd │ │ ├── pdf-parse-1.1.1.patch │ │ ├── sharp-0.34.2-debug.patch │ │ ├── sharp-0.34.3-format-fixes.patch │ │ ├── sharp-0.34.3-static-libs.patch │ │ └── types__mdx-2.0.13.patch │ ├── lobe-chat-1.142.8.ebuild │ └── metadata.xml ├── open-webui │ ├── Manifest │ ├── files │ │ ├── 0.5.20 │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── 0.6.32 │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── open-webui │ │ ├── open-webui-0.5.20-symbolize-string-literals.patch │ │ ├── open-webui-start-server │ │ ├── open-webui.conf │ │ ├── open-webui.openrc │ │ └── open-webui.systemd │ ├── metadata.xml │ ├── open-webui-0.5.20.ebuild │ └── open-webui-0.6.32.ebuild └── xpra-html5 │ ├── Manifest │ ├── metadata.xml │ └── xpra-html5-17.1.ebuild ├── www-client ├── chromium-sources │ ├── Manifest │ ├── chromium-sources-142.0.7444.175.ebuild │ └── metadata.xml ├── chromium-toolchain │ ├── Manifest │ ├── chromium-toolchain-142.0.7444.59.ebuild │ ├── get_gn_ver.sh │ └── metadata.xml ├── chromium │ ├── Manifest │ ├── _maintainer_notes │ │ └── get_package_libs │ ├── auto_multi_usedep │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── chromium-142.0.7444.175.ebuild │ ├── files │ │ ├── chromium-109-system-zlib.patch │ │ ├── chromium-111-InkDropHost-crash.patch │ │ ├── chromium-131-unbundle-icu-target.patch │ │ ├── chromium-134-bindgen-custom-toolchain.patch │ │ ├── chromium-135-map_droppable-glibc.patch │ │ ├── chromium-135-oauth2-client-switches.patch │ │ ├── chromium-137-openh264-include-path.patch │ │ ├── chromium-138-nodejs-version-check.patch │ │ ├── chromium-140-__rust_no_alloc_shim_is_unstable.patch │ │ ├── chromium-140-work-with-old-fontconfig-again.patch │ │ ├── chromium-142-cssstylesheet.patch │ │ ├── chromium-142-iwyu-field-form-data.patch │ │ ├── chromium-142-work-with-old-fontconfig.patch │ │ ├── chromium-143-revert-libpng-testiness.patch │ │ ├── chromium-browser.xml │ │ ├── chromium-cross-compile.patch │ │ ├── chromium-launcher-r7.sh │ │ ├── chromium.default │ │ ├── extra-patches │ │ │ ├── chromium-104.0.5112.79-gcc-pgo-link-gcov.patch │ │ │ ├── chromium-114.0.5735.133-fast-math.patch │ │ │ ├── chromium-117.0.5938.92-skip-rust-check.patch │ │ │ ├── chromium-125.0.6422.76-qt6-split.patch │ │ │ ├── chromium-128.0.6613.137-disable-built-in-dns.patch │ │ │ ├── chromium-128.0.6613.137-disable-icu-tracing.patch │ │ │ ├── chromium-128.0.6613.137-disable-perfetto.patch │ │ │ ├── chromium-128.0.6613.137-disable-screen-capture.patch │ │ │ ├── chromium-128.0.6613.137-numeric_h-for-iota.patch │ │ │ ├── chromium-128.0.6613.84-clang-paths.patch │ │ │ ├── chromium-128.0.6613.84-mold.patch │ │ │ ├── chromium-129.0.6668.58-disable-speech.patch │ │ │ ├── chromium-129.0.6668.58-include-thread-pool.patch │ │ │ ├── chromium-129.0.6668.58-partitionalloc-false.patch │ │ │ ├── chromium-129.0.6668.70-mold-ungoogled-chromium.patch │ │ │ ├── chromium-129.0.6668.70-qt6-split.patch │ │ │ ├── chromium-130.0.6723.91-mold-ungoogled-chromium.patch │ │ │ ├── chromium-130.0.6723.91-mold.patch │ │ │ ├── chromium-131.0.6778.69-disable-tflite-ungoogled-chromium.patch │ │ │ ├── chromium-131.0.6778.69-disable-tflite.patch │ │ │ ├── chromium-133.0.6943.53-disable-speech.patch │ │ │ ├── chromium-133.0.6943.53-partitionalloc-false.patch │ │ │ ├── chromium-135.0.7049.114-v8-5c595ad.patch │ │ │ ├── chromium-136.0.7103.59-build-config-compiler-optionalize-simd.patch │ │ │ ├── chromium-136.0.7103.59-highway-optionalize-simd.patch │ │ │ ├── chromium-136.0.7103.59-libaom-optionalize-simd.patch │ │ │ ├── chromium-136.0.7103.59-simd-defaults.patch │ │ │ ├── chromium-136.0.7103.59-use-memory-tagging.patch │ │ │ ├── chromium-136.0.7103.59-v8-5c595ad.patch │ │ │ ├── chromium-136.0.7103.92-blink-optionalize-simd.patch │ │ │ ├── chromium-136.0.7103.92-cpuinfo-optionalize-simd.patch │ │ │ ├── chromium-136.0.7103.92-crc32c-optionalize-simd.patch │ │ │ ├── chromium-136.0.7103.92-custom-optimization-level.patch │ │ │ ├── chromium-136.0.7103.92-dav1d-optionalize-simd.patch │ │ │ ├── chromium-136.0.7103.92-dav1d-pic.patch │ │ │ ├── chromium-136.0.7103.92-fuzztest-optionalize-simd.patch │ │ │ ├── chromium-136.0.7103.92-hardening.patch │ │ │ ├── chromium-136.0.7103.92-libjpeg-turbo-optionalize-simd.patch │ │ │ ├── chromium-136.0.7103.92-libvpx-optionalize-simd.patch │ │ │ ├── chromium-136.0.7103.92-libwebp-optionalize-simd.patch │ │ │ ├── chromium-136.0.7103.92-libyuv-optionalize-simd.patch │ │ │ ├── chromium-136.0.7103.92-linker-warn-missing-symbols.patch │ │ │ ├── chromium-136.0.7103.92-lzma_sdk-optionalize-simd.patch │ │ │ ├── chromium-136.0.7103.92-opus-inline.patch │ │ │ ├── chromium-136.0.7103.92-opus-optionalize-simd.patch │ │ │ ├── chromium-136.0.7103.92-pdfium-optionalize-simd.patch │ │ │ ├── chromium-136.0.7103.92-perfetto-optionalize-simd.patch │ │ │ ├── chromium-136.0.7103.92-ruy-optionalize-simd.patch │ │ │ ├── chromium-136.0.7103.92-sanitizers-build-config.patch │ │ │ ├── chromium-136.0.7103.92-skia-optionalize-simd.patch │ │ │ ├── chromium-136.0.7103.92-webrtc-optionalize-simd.patch │ │ │ ├── chromium-136.0.7103.92-zlib-optionalize-simd.patch │ │ │ ├── chromium-137.0.7151.68-libaom-optionalize-simd.patch │ │ │ ├── chromium-137.0.7151.68-libvpx-optionalize-simd.patch │ │ │ ├── chromium-137.0.7151.68-lzma_sdk-optionalize-simd.patch │ │ │ ├── chromium-92-clang-toolchain-1.patch │ │ │ ├── chromium-92-clang-toolchain-2.patch │ │ │ ├── chromium-94-arm64-shadow-call-stack.patch │ │ │ ├── v8-13.6.233.8-custom-optimization-level.patch │ │ │ ├── v8-13.7.152.13-custom-optimization-level.patch │ │ │ └── v8-13.7.152.7-custom-optimization-level.patch │ │ └── ungoogled-chromium │ │ │ └── 129.0.6668.70-1 │ │ │ └── patches │ │ │ └── core │ │ │ └── inox-patchset │ │ │ └── 0001-fix-building-without-safebrowsing.patch │ └── metadata.xml ├── firefox │ ├── Manifest │ ├── _maintainer_notes │ │ └── launcher-changes.patch │ ├── auto_multi_usedep │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── files │ │ ├── README.gentoo │ │ ├── disable-auto-update.policy.json │ │ ├── distribution.ini │ │ ├── extra-patches │ │ │ ├── MPL-2.0 │ │ │ ├── firefox-106.0.2-disable-broken-flags-dom-bindings.patch │ │ │ ├── firefox-106.0.2-disable-broken-flags-gfx-layers.patch │ │ │ ├── firefox-106.0.2-disable-broken-flags-ipc-chromium-chromium-config.patch │ │ │ ├── firefox-106.0.2-disable-broken-flags-js.patch │ │ │ ├── firefox-106.0.2-disallow-store-data-races.patch │ │ │ ├── firefox-116.0.2-disable-broken-flags-ipc-chromium-chromium-config.patch │ │ │ ├── firefox-122.0-disable-broken-flags-ipc-chromium-chromium-config.patch │ │ │ ├── firefox-122.0-disable-broken-flags-js.patch │ │ │ ├── firefox-122.0-disallow-store-data-races.patch │ │ │ ├── firefox-128.3.0e-disable-broken-flags-ipc-chromium-chromium-config.patch │ │ │ ├── firefox-128.3.0e-disable-broken-flags-js.patch │ │ │ ├── firefox-128.3.0e-disallow-store-data-races.patch │ │ │ ├── firefox-131.0-disallow-store-data-races.patch │ │ │ ├── firefox-140.2.0e-disallow-store-data-races.patch │ │ │ ├── firefox-143.0.3-disable-broken-flags-dom-bindings.patch │ │ │ └── firefox-r1.sh │ │ ├── firefox-r1.sh │ │ ├── gentoo-default-prefs.js │ │ ├── gentoo-hwaccel-prefs.js │ │ ├── gentoo-hwaccel-prefs.js-r2 │ │ ├── gentoo-telemetry-prefs.js │ │ └── icon │ │ │ ├── firefox-r2.desktop │ │ │ ├── firefox-r3.desktop │ │ │ └── firefox-symbolic.svg │ ├── firefox-140.5.0e.ebuild │ ├── firefox-145.0.ebuild │ └── metadata.xml └── surf │ ├── Manifest │ ├── files │ ├── adblock │ │ ├── LICENSE │ │ ├── LICENSE.EasyList │ │ ├── LICENSE.Spam404 │ │ ├── README.md │ │ ├── adblock.py │ │ ├── convert.py │ │ ├── customrules │ │ ├── update.sh │ │ └── whitelist │ ├── events │ │ └── page_load_committed.sh │ ├── licenses │ │ ├── LICENSE.EasyList │ │ ├── LICENSE.Spam404 │ │ ├── LICENSE.mod_adblock │ │ ├── LICENSE.mod_autoopen │ │ ├── LICENSE.mod_link_hints │ │ ├── LICENSE.mod_searchengines │ │ └── LICENSE.mod_simple_bookmarking_redux │ ├── surf-2.1-gentoo.patch │ ├── surf-2.1-gtk4.patch │ ├── surf-2.1-permission-requests-rework-v3-01.patch │ ├── surf-2.1-permission-requests-rework-v3-02.patch │ ├── surf-2.1-permission-requests-rework-v3.patch │ ├── surf-2.1_p20231118-adblock.patch │ ├── surf-2.1_p20231118-gtk4.patch │ ├── surf-2.1_p20231118-permission-requests-rework-v3-01.patch │ ├── surf-2.1_p20231118-permission-requests-rework-v3-02.patch │ ├── surf-2.1_p20231118-permission-requests-rework-v3.patch │ ├── surf-2.1_p20240324-gtk4.patch │ ├── surf-9999-adblock-header-notes.txt │ ├── surf-9999-adblock.patch │ ├── surf-9999-gentoo.patch │ ├── surf-9999-search-engine-notes.txt │ └── surf-9999-webkit2-searchengines-compat.patch │ ├── metadata.xml │ └── surf-2.1_p20240324.ebuild ├── www-misc ├── ddgr │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── ddgr-2.2.ebuild │ └── metadata.xml ├── mahimahi │ ├── Manifest │ ├── files │ │ ├── mahimahi-0.98-BUFFER_SIZE.patch │ │ └── mahimahi-0.98-remove-prefork.patch │ ├── mahimahi-0.98_p9999.ebuild │ └── metadata.xml └── socli │ ├── Manifest │ ├── autobump │ ├── description │ ├── get_latest_patch_version.sh │ └── get_latest_version.sh │ ├── metadata.xml │ └── socli-7.4.ebuild ├── www-servers └── civetweb │ ├── Manifest │ ├── autobump │ ├── description │ ├── get_latest_patch_version.sh │ └── get_latest_version.sh │ ├── civetweb-1.16.ebuild │ ├── files │ ├── civetweb-1.13-change-cmake-for-lua-dependencies-v3.patch │ ├── civetweb-1.13-disable-fvisibility-for-c.patch │ └── civetweb-1.13-disable-pedantic-errors.patch │ └── metadata.xml ├── x11-base └── xorg-server │ ├── Manifest │ ├── files │ ├── xorg-server-1.12-unloadsubmodule.patch │ ├── xorg-server-1.18-support-multiple-Files-sections.patch │ ├── xorg-server-21.1.10-c99.patch │ └── xorg-sets.conf │ ├── metadata.xml │ └── xorg-server-21.1.18.ebuild ├── x11-libs ├── cairo │ ├── Manifest │ ├── cairo-1.18.4-r1.ebuild │ ├── files │ │ └── cairo-respect-fontconfig.patch │ └── metadata.xml ├── gdk-pixbuf │ ├── Manifest │ ├── gdk-pixbuf-2.42.12.ebuild │ └── metadata.xml ├── gtk+ │ ├── Manifest │ ├── files │ │ ├── 0001-gdk-add-a-poison-macro-to-hide-GDK_WINDOWING_.patch │ │ ├── gtk+-2.24.24-out-of-source.patch │ │ ├── gtk+-2.24.31-update-icon-cache.patch │ │ ├── gtk+-2.24.33-Fix-casts.patch │ │ ├── gtk+-2.24.33-respect-NM.patch │ │ ├── gtk+-3.24.36-update-icon-cache.patch │ │ ├── gtk+-3.24.48-signal-handler.patch │ │ ├── gtk+-3.24.49-java-crash.patch │ │ ├── gtkrc │ │ └── settings.ini │ ├── gtk+-2.24.33-r3.ebuild │ ├── gtk+-3.24.49-r1.ebuild │ └── metadata.xml ├── libX11 │ ├── Manifest │ ├── libX11-1.8.12.ebuild │ └── metadata.xml ├── pango │ ├── Manifest │ ├── metadata.xml │ ├── pango-1.52.2.ebuild │ ├── pango-1.54.0.ebuild │ └── pango-1.57.0.ebuild ├── pixman │ ├── Manifest │ ├── metadata.xml │ ├── pixman-0.46.0.ebuild │ └── pixman-0.46.4.ebuild ├── startup-notification │ ├── Manifest │ ├── files │ │ ├── startup-notification-0.12-sys-select_h.patch │ │ └── startup-notification-0.12-time_t-crash-with-32bit.patch │ ├── metadata.xml │ └── startup-notification-0.12-r2.ebuild └── vte │ ├── Manifest │ ├── files │ ├── vte-0.66.2-musl-W_EXITCODE.patch │ └── vte-0.76.3-stdint.patch │ ├── metadata.xml │ ├── vte-0.78.5.ebuild │ └── vte-0.80.4.ebuild ├── x11-misc ├── aprs-symbols │ ├── Manifest │ ├── aprs-symbols-9999_p20190731.ebuild │ └── metadata.xml ├── sddm │ ├── Manifest │ ├── autobump │ │ ├── description │ │ ├── get_latest_patch_version.sh │ │ └── get_latest_version.sh │ ├── files │ │ ├── pam-1.4-substack.patch │ │ ├── sddm-0.18.0-sddmconfdir.patch │ │ ├── sddm-0.18.1-Xsession.patch │ │ ├── sddm-0.18.1-cve-2020-28049.patch │ │ ├── sddm-0.18.1-drop-wayland-suffix.patch │ │ ├── sddm-0.18.1-fix-qt-5.15.7.patch │ │ ├── sddm-0.18.1-honor-PAM-supplemental-groups-v2.patch │ │ ├── sddm-0.18.1-nvidia-glitches-vt-switch.patch │ │ ├── sddm-0.18.1-only-reuse-online-sessions.patch │ │ ├── sddm-0.18.1-qt-5.15.2.patch │ │ ├── sddm-0.18.1-respect-user-flags.patch │ │ ├── sddm-0.18.1-revert-honor-PAM-supplemental-groups.patch │ │ ├── sddm-0.20.0-dbus-policy-in-usr.patch │ │ ├── sddm-0.20.0-disable-etc-debian-check.patch │ │ ├── sddm-0.20.0-fix-use-development-sessions.patch │ │ ├── sddm-0.20.0-greeter-platform-detection.patch │ │ ├── sddm-0.20.0-no-default-pam_systemd-module.patch │ │ ├── sddm-0.20.0-no-qtvirtualkeyboard-on-wayland.patch │ │ ├── sddm-0.20.0-r1-qt6-x-changes.patch │ │ ├── sddm-0.20.0-respect-user-flags.patch │ │ ├── sddm-0.20.0-sddm.pam-use-substack.patch │ │ └── sddm.tmpfiles │ ├── metadata.xml │ └── sddm-0.21.0.ebuild └── xsnow │ ├── Manifest │ ├── files │ ├── blank.xpm │ ├── menorah.xpm │ ├── muslim-woman-keffiyeh-mask-on.xpm │ ├── muslim-woman-keffiyeh.xpm │ ├── palestine-flag.xpm │ └── xsnow-3.0.7-gamesdir.patch │ ├── metadata.xml │ └── xsnow-3.7.6.ebuild ├── x11-themes └── paper-icon-theme │ ├── Manifest │ ├── metadata.xml │ └── paper-icon-theme-1.5_p20200312.ebuild └── x11-wm ├── dwm ├── Manifest ├── dwm-6.5.ebuild ├── files │ ├── dwm-6.1-no-emoji-title-crash.patch │ ├── dwm-session2 │ └── dwm.desktop └── metadata.xml └── xpra ├── Manifest ├── files ├── xpra-3.0.2_ignore-gentoo-no-compile.patch ├── xpra-4.1.3-change-init-config-path.patch ├── xpra-4.1.3-envar-sound-override-on-start.patch ├── xpra-4.2-udev-path.patch ├── xpra-4.2.2-bad-tests.patch ├── xpra-4.2.2-openrc-init-fix-v3.patch ├── xpra-4.2.2-true-false-bin-path.patch ├── xpra-4.2.3-dup-ip.patch ├── xpra-4.3-openrc-init-fix-v3.patch ├── xpra-4.4.3-translate-flags.patch ├── xpra-5.0.4-translate-flags.patch ├── xpra-5.0.4-udev-path.patch ├── xpra-5.0.4_ignore-gentoo-no-compile.patch ├── xpra-6.0-pkgconfig-warn.patch ├── xpra-6.0-translate-flags.patch ├── xpra-6.3-pkgconfig-warn.patch └── xpra-6.3.2-disable-amf.patch ├── maintainer_notes ├── metadata.xml ├── xpra-6.2.5.ebuild └── xpra-6.3.2.ebuild /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /EBUILD_STYLE_GUIDELINE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/EBUILD_STYLE_GUIDELINE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT_MATRIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/SUPPORT_MATRIX.md -------------------------------------------------------------------------------- /acct-group/lobe-chat/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/acct-group/lobe-chat/Manifest -------------------------------------------------------------------------------- /acct-group/local-ai/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/acct-group/local-ai/Manifest -------------------------------------------------------------------------------- /acct-group/ollama/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/acct-group/ollama/Manifest -------------------------------------------------------------------------------- /acct-user/lobe-chat/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/acct-user/lobe-chat/Manifest -------------------------------------------------------------------------------- /acct-user/local-ai/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/acct-user/local-ai/Manifest -------------------------------------------------------------------------------- /acct-user/ollama/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/acct-user/ollama/Manifest -------------------------------------------------------------------------------- /acct-user/ollama/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/acct-user/ollama/metadata.xml -------------------------------------------------------------------------------- /acct-user/open-webui/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/acct-user/open-webui/Manifest -------------------------------------------------------------------------------- /app-admin/howdy/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-admin/howdy/Manifest -------------------------------------------------------------------------------- /app-admin/howdy/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-admin/howdy/metadata.xml -------------------------------------------------------------------------------- /app-admin/keepassxc/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-admin/keepassxc/Manifest -------------------------------------------------------------------------------- /app-antivirus/clamav/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-antivirus/clamav/Manifest -------------------------------------------------------------------------------- /app-arch/brotli/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-arch/brotli/Manifest -------------------------------------------------------------------------------- /app-arch/brotli/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-arch/brotli/metadata.xml -------------------------------------------------------------------------------- /app-arch/bzip2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-arch/bzip2/Manifest -------------------------------------------------------------------------------- /app-arch/bzip2/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-arch/bzip2/metadata.xml -------------------------------------------------------------------------------- /app-arch/libarchive/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-arch/libarchive/Manifest -------------------------------------------------------------------------------- /app-arch/lz4/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-arch/lz4/Manifest -------------------------------------------------------------------------------- /app-arch/lz4/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-arch/lz4/metadata.xml -------------------------------------------------------------------------------- /app-arch/pigz/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-arch/pigz/Manifest -------------------------------------------------------------------------------- /app-arch/pigz/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-arch/pigz/metadata.xml -------------------------------------------------------------------------------- /app-arch/pigz/pigz-2.8.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-arch/pigz/pigz-2.8.ebuild -------------------------------------------------------------------------------- /app-arch/snappy/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-arch/snappy/Manifest -------------------------------------------------------------------------------- /app-arch/snappy/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-arch/snappy/metadata.xml -------------------------------------------------------------------------------- /app-arch/unzip/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-arch/unzip/Manifest -------------------------------------------------------------------------------- /app-arch/unzip/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-arch/unzip/metadata.xml -------------------------------------------------------------------------------- /app-arch/xz-utils/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-arch/xz-utils/Manifest -------------------------------------------------------------------------------- /app-arch/zip/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-arch/zip/Manifest -------------------------------------------------------------------------------- /app-arch/zip/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-arch/zip/metadata.xml -------------------------------------------------------------------------------- /app-arch/zopfli/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-arch/zopfli/Manifest -------------------------------------------------------------------------------- /app-arch/zopfli/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-arch/zopfli/metadata.xml -------------------------------------------------------------------------------- /app-arch/zstd/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-arch/zstd/Manifest -------------------------------------------------------------------------------- /app-arch/zstd/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-arch/zstd/metadata.xml -------------------------------------------------------------------------------- /app-crypt/argon2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-crypt/argon2/Manifest -------------------------------------------------------------------------------- /app-crypt/argon2/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-crypt/argon2/metadata.xml -------------------------------------------------------------------------------- /app-crypt/gcr/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-crypt/gcr/Manifest -------------------------------------------------------------------------------- /app-crypt/gcr/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-crypt/gcr/metadata.xml -------------------------------------------------------------------------------- /app-crypt/hashcat/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-crypt/hashcat/Manifest -------------------------------------------------------------------------------- /app-crypt/libzc/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-crypt/libzc/Manifest -------------------------------------------------------------------------------- /app-crypt/libzc/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-crypt/libzc/metadata.xml -------------------------------------------------------------------------------- /app-crypt/webhashcat/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-crypt/webhashcat/Manifest -------------------------------------------------------------------------------- /app-editors/leafpad/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-editors/leafpad/Manifest -------------------------------------------------------------------------------- /app-editors/mousepad/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-editors/mousepad/Manifest -------------------------------------------------------------------------------- /app-editors/nano/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-editors/nano/Manifest -------------------------------------------------------------------------------- /app-editors/nano/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-editors/nano/metadata.xml -------------------------------------------------------------------------------- /app-emacs/emacs-ycmd/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-emacs/emacs-ycmd/Manifest -------------------------------------------------------------------------------- /app-emacs/emacs-ycmd/files/next-error.frag: -------------------------------------------------------------------------------- 1 | (add-to-list 'load-path "@SITELISP@/contrib") 2 | (require 'ycmd-next-error) 3 | -------------------------------------------------------------------------------- /app-emulation/faudio/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-emulation/faudio/Manifest -------------------------------------------------------------------------------- /app-misc/LocalAI/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-misc/LocalAI/Manifest -------------------------------------------------------------------------------- /app-misc/LocalAI/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-misc/LocalAI/metadata.xml -------------------------------------------------------------------------------- /app-misc/alpaca/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-misc/alpaca/Manifest -------------------------------------------------------------------------------- /app-misc/alpaca/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-misc/alpaca/metadata.xml -------------------------------------------------------------------------------- /app-misc/amica/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-misc/amica/Manifest -------------------------------------------------------------------------------- /app-misc/amica/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-misc/amica/metadata.xml -------------------------------------------------------------------------------- /app-misc/elfx86exts/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-misc/elfx86exts/Manifest -------------------------------------------------------------------------------- /app-misc/jq/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-misc/jq/Manifest -------------------------------------------------------------------------------- /app-misc/jq/jq-1.8.1.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-misc/jq/jq-1.8.1.ebuild -------------------------------------------------------------------------------- /app-misc/jq/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-misc/jq/metadata.xml -------------------------------------------------------------------------------- /app-misc/june/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-misc/june/Manifest -------------------------------------------------------------------------------- /app-misc/june/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-misc/june/metadata.xml -------------------------------------------------------------------------------- /app-misc/liquidctl/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-misc/liquidctl/Manifest -------------------------------------------------------------------------------- /app-misc/llocal/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-misc/llocal/Manifest -------------------------------------------------------------------------------- /app-misc/llocal/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-misc/llocal/metadata.xml -------------------------------------------------------------------------------- /app-misc/ollama/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-misc/ollama/Manifest -------------------------------------------------------------------------------- /app-misc/ollama/files/ollama: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-misc/ollama/files/ollama -------------------------------------------------------------------------------- /app-misc/ollama/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-misc/ollama/metadata.xml -------------------------------------------------------------------------------- /app-misc/screen/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-misc/screen/Manifest -------------------------------------------------------------------------------- /app-misc/screen/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-misc/screen/metadata.xml -------------------------------------------------------------------------------- /app-shells/emoji-cli/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-shells/emoji-cli/Manifest -------------------------------------------------------------------------------- /app-shells/emojify/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-shells/emojify/Manifest -------------------------------------------------------------------------------- /app-shells/loz/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-shells/loz/Manifest -------------------------------------------------------------------------------- /app-shells/loz/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-shells/loz/metadata.xml -------------------------------------------------------------------------------- /app-shells/ohmyzsh/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-shells/ohmyzsh/Manifest -------------------------------------------------------------------------------- /app-shells/percol/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-shells/percol/Manifest -------------------------------------------------------------------------------- /app-shells/shell-gpt/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-shells/shell-gpt/Manifest -------------------------------------------------------------------------------- /app-text/aspell/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-text/aspell/Manifest -------------------------------------------------------------------------------- /app-text/aspell/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-text/aspell/metadata.xml -------------------------------------------------------------------------------- /app-text/enchant/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-text/enchant/Manifest -------------------------------------------------------------------------------- /app-text/enchant/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-text/enchant/metadata.xml -------------------------------------------------------------------------------- /app-text/hunspell/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-text/hunspell/Manifest -------------------------------------------------------------------------------- /app-text/pdfchain/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-text/pdfchain/Manifest -------------------------------------------------------------------------------- /app-text/poppler/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-text/poppler/Manifest -------------------------------------------------------------------------------- /app-text/poppler/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/app-text/poppler/metadata.xml -------------------------------------------------------------------------------- /autobump-patch-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/autobump-patch-versions.sh -------------------------------------------------------------------------------- /check-ebuild-update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/check-ebuild-update -------------------------------------------------------------------------------- /check-ebuild-update-scrapers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/check-ebuild-update-scrapers -------------------------------------------------------------------------------- /dev-build/bazel/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-build/bazel/Manifest -------------------------------------------------------------------------------- /dev-build/bazel/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-build/bazel/metadata.xml -------------------------------------------------------------------------------- /dev-build/rocm-cmake/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-build/rocm-cmake/Manifest -------------------------------------------------------------------------------- /dev-cpp/abseil-cpp/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-cpp/abseil-cpp/Manifest -------------------------------------------------------------------------------- /dev-cpp/antlr4/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-cpp/antlr4/Manifest -------------------------------------------------------------------------------- /dev-cpp/antlr4/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-cpp/antlr4/metadata.xml -------------------------------------------------------------------------------- /dev-cpp/benchmark/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-cpp/benchmark/Manifest -------------------------------------------------------------------------------- /dev-cpp/blaze/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-cpp/blaze/Manifest -------------------------------------------------------------------------------- /dev-cpp/blaze/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-cpp/blaze/metadata.xml -------------------------------------------------------------------------------- /dev-cpp/gflags/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-cpp/gflags/Manifest -------------------------------------------------------------------------------- /dev-cpp/gflags/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-cpp/gflags/metadata.xml -------------------------------------------------------------------------------- /dev-cpp/glaze/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-cpp/glaze/Manifest -------------------------------------------------------------------------------- /dev-cpp/glaze/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-cpp/glaze/metadata.xml -------------------------------------------------------------------------------- /dev-cpp/glog/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-cpp/glog/Manifest -------------------------------------------------------------------------------- /dev-cpp/glog/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-cpp/glog/metadata.xml -------------------------------------------------------------------------------- /dev-cpp/gtest/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-cpp/gtest/Manifest -------------------------------------------------------------------------------- /dev-cpp/gtest/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-cpp/gtest/metadata.xml -------------------------------------------------------------------------------- /dev-cpp/highway/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-cpp/highway/Manifest -------------------------------------------------------------------------------- /dev-cpp/highway/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-cpp/highway/metadata.xml -------------------------------------------------------------------------------- /dev-cpp/pystring/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-cpp/pystring/Manifest -------------------------------------------------------------------------------- /dev-cpp/pystring/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-cpp/pystring/metadata.xml -------------------------------------------------------------------------------- /dev-cpp/selfrando/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-cpp/selfrando/Manifest -------------------------------------------------------------------------------- /dev-cpp/sqlitecpp/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-cpp/sqlitecpp/Manifest -------------------------------------------------------------------------------- /dev-cpp/tbb/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-cpp/tbb/Manifest -------------------------------------------------------------------------------- /dev-cpp/tbb/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-cpp/tbb/metadata.xml -------------------------------------------------------------------------------- /dev-cpp/tomlplusplus/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-cpp/tomlplusplus/Manifest -------------------------------------------------------------------------------- /dev-cpp/yaml-cpp/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-cpp/yaml-cpp/Manifest -------------------------------------------------------------------------------- /dev-cpp/yaml-cpp/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-cpp/yaml-cpp/metadata.xml -------------------------------------------------------------------------------- /dev-db/mariadb/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-db/mariadb/Manifest -------------------------------------------------------------------------------- /dev-db/mariadb/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-db/mariadb/metadata.xml -------------------------------------------------------------------------------- /dev-db/mysql/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-db/mysql/Manifest -------------------------------------------------------------------------------- /dev-db/mysql/files/my.cnf-5.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-db/mysql/files/my.cnf-5.7 -------------------------------------------------------------------------------- /dev-db/mysql/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-db/mysql/metadata.xml -------------------------------------------------------------------------------- /dev-db/nanodbc/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-db/nanodbc/Manifest -------------------------------------------------------------------------------- /dev-db/nanodbc/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-db/nanodbc/metadata.xml -------------------------------------------------------------------------------- /dev-db/sqlite/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-db/sqlite/Manifest -------------------------------------------------------------------------------- /dev-db/sqlite/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-db/sqlite/metadata.xml -------------------------------------------------------------------------------- /dev-debug/systemtap/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-debug/systemtap/Manifest -------------------------------------------------------------------------------- /dev-dotnet.old/DO_NOT_USE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-dotnet.old/DO_NOT_USE.txt -------------------------------------------------------------------------------- /dev-dotnet.old/xwt/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-dotnet.old/xwt/Manifest -------------------------------------------------------------------------------- /dev-dotnet/GtkSharp/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-dotnet/GtkSharp/Manifest -------------------------------------------------------------------------------- /dev-dotnet/faudio/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-dotnet/faudio/Manifest -------------------------------------------------------------------------------- /dev-dotnet/fna/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-dotnet/fna/Manifest -------------------------------------------------------------------------------- /dev-dotnet/fna/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-dotnet/fna/metadata.xml -------------------------------------------------------------------------------- /dev-dotnet/fna3d/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-dotnet/fna3d/Manifest -------------------------------------------------------------------------------- /dev-dotnet/fna3d/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-dotnet/fna3d/metadata.xml -------------------------------------------------------------------------------- /dev-dotnet/gtk-sharp/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-dotnet/gtk-sharp/Manifest -------------------------------------------------------------------------------- /dev-dotnet/monogame/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-dotnet/monogame/Manifest -------------------------------------------------------------------------------- /dev-dotnet/sdl2-cs/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-dotnet/sdl2-cs/Manifest -------------------------------------------------------------------------------- /dev-dotnet/sharpnav/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-dotnet/sharpnav/Manifest -------------------------------------------------------------------------------- /dev-games/enigma/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-games/enigma/Manifest -------------------------------------------------------------------------------- /dev-games/enigma/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-games/enigma/metadata.xml -------------------------------------------------------------------------------- /dev-games/godot-cpp/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-games/godot-cpp/Manifest -------------------------------------------------------------------------------- /dev-games/godot-meta/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-games/godot-meta/Manifest -------------------------------------------------------------------------------- /dev-games/lateralgm/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-games/lateralgm/Manifest -------------------------------------------------------------------------------- /dev-games/radialgm/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-games/radialgm/Manifest -------------------------------------------------------------------------------- /dev-go/protobuf-go/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-go/protobuf-go/Manifest -------------------------------------------------------------------------------- /dev-java/gradle-bin/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-java/gradle-bin/Manifest -------------------------------------------------------------------------------- /dev-java/grpc-java/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-java/grpc-java/Manifest -------------------------------------------------------------------------------- /dev-lang/gambas/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-lang/gambas/Manifest -------------------------------------------------------------------------------- /dev-lang/gambas/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-lang/gambas/metadata.xml -------------------------------------------------------------------------------- /dev-lang/halide/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-lang/halide/Manifest -------------------------------------------------------------------------------- /dev-lang/halide/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-lang/halide/metadata.xml -------------------------------------------------------------------------------- /dev-lang/ispc/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-lang/ispc/Manifest -------------------------------------------------------------------------------- /dev-lang/ispc/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-lang/ispc/metadata.xml -------------------------------------------------------------------------------- /dev-lang/llvm-flang/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-lang/llvm-flang/Manifest -------------------------------------------------------------------------------- /dev-lang/lua/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-lang/lua/Manifest -------------------------------------------------------------------------------- /dev-lang/lua/lua-5.4.6.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-lang/lua/lua-5.4.6.ebuild -------------------------------------------------------------------------------- /dev-lang/lua/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-lang/lua/metadata.xml -------------------------------------------------------------------------------- /dev-lang/mono/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-lang/mono/Manifest -------------------------------------------------------------------------------- /dev-lang/mono/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-lang/mono/metadata.xml -------------------------------------------------------------------------------- /dev-lang/perl/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-lang/perl/Manifest -------------------------------------------------------------------------------- /dev-lang/perl/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-lang/perl/metadata.xml -------------------------------------------------------------------------------- /dev-lang/php/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-lang/php/Manifest -------------------------------------------------------------------------------- /dev-lang/php/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-lang/php/metadata.xml -------------------------------------------------------------------------------- /dev-lang/python-exec/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-lang/python-exec/Manifest -------------------------------------------------------------------------------- /dev-lang/rocm-flang/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-lang/rocm-flang/Manifest -------------------------------------------------------------------------------- /dev-lang/swig/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-lang/swig/Manifest -------------------------------------------------------------------------------- /dev-lang/swig/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-lang/swig/metadata.xml -------------------------------------------------------------------------------- /dev-lang/typescript/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-lang/typescript/Manifest -------------------------------------------------------------------------------- /dev-libs/Orochi/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/Orochi/Manifest -------------------------------------------------------------------------------- /dev-libs/Orochi/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/Orochi/metadata.xml -------------------------------------------------------------------------------- /dev-libs/ROCdbgapi/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/ROCdbgapi/Manifest -------------------------------------------------------------------------------- /dev-libs/blake3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/blake3/Manifest -------------------------------------------------------------------------------- /dev-libs/blake3/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/blake3/metadata.xml -------------------------------------------------------------------------------- /dev-libs/boost/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/boost/Manifest -------------------------------------------------------------------------------- /dev-libs/boost/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/boost/metadata.xml -------------------------------------------------------------------------------- /dev-libs/botan/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/botan/Manifest -------------------------------------------------------------------------------- /dev-libs/botan/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/botan/metadata.xml -------------------------------------------------------------------------------- /dev-libs/cJSON/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/cJSON/Manifest -------------------------------------------------------------------------------- /dev-libs/cJSON/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/cJSON/metadata.xml -------------------------------------------------------------------------------- /dev-libs/castxml/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/castxml/Manifest -------------------------------------------------------------------------------- /dev-libs/castxml/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/castxml/metadata.xml -------------------------------------------------------------------------------- /dev-libs/crc32c/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/crc32c/Manifest -------------------------------------------------------------------------------- /dev-libs/crc32c/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/crc32c/metadata.xml -------------------------------------------------------------------------------- /dev-libs/dlpack/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/dlpack/Manifest -------------------------------------------------------------------------------- /dev-libs/dlpack/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/dlpack/metadata.xml -------------------------------------------------------------------------------- /dev-libs/expat/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/expat/Manifest -------------------------------------------------------------------------------- /dev-libs/expat/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/expat/metadata.xml -------------------------------------------------------------------------------- /dev-libs/flatbuffers/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/flatbuffers/Manifest -------------------------------------------------------------------------------- /dev-libs/gdrcopy/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/gdrcopy/Manifest -------------------------------------------------------------------------------- /dev-libs/gdrcopy/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/gdrcopy/metadata.xml -------------------------------------------------------------------------------- /dev-libs/glib/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/glib/Manifest -------------------------------------------------------------------------------- /dev-libs/glib/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/glib/metadata.xml -------------------------------------------------------------------------------- /dev-libs/gmp/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/gmp/Manifest -------------------------------------------------------------------------------- /dev-libs/gmp/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/gmp/metadata.xml -------------------------------------------------------------------------------- /dev-libs/hip-cpu/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/hip-cpu/Manifest -------------------------------------------------------------------------------- /dev-libs/hip-cpu/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/hip-cpu/metadata.xml -------------------------------------------------------------------------------- /dev-libs/hipother/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/hipother/Manifest -------------------------------------------------------------------------------- /dev-libs/hyphen/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/hyphen/Manifest -------------------------------------------------------------------------------- /dev-libs/hyphen/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/hyphen/metadata.xml -------------------------------------------------------------------------------- /dev-libs/hyprlang/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/hyprlang/Manifest -------------------------------------------------------------------------------- /dev-libs/icu/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/icu/Manifest -------------------------------------------------------------------------------- /dev-libs/icu/icu-77.1.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/icu/icu-77.1.ebuild -------------------------------------------------------------------------------- /dev-libs/icu/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/icu/metadata.xml -------------------------------------------------------------------------------- /dev-libs/imath/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/imath/Manifest -------------------------------------------------------------------------------- /dev-libs/imath/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/imath/metadata.xml -------------------------------------------------------------------------------- /dev-libs/jemalloc/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/jemalloc/Manifest -------------------------------------------------------------------------------- /dev-libs/leveldb/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/leveldb/Manifest -------------------------------------------------------------------------------- /dev-libs/leveldb/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/leveldb/metadata.xml -------------------------------------------------------------------------------- /dev-libs/libfmt/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/libfmt/Manifest -------------------------------------------------------------------------------- /dev-libs/libfmt/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/libfmt/metadata.xml -------------------------------------------------------------------------------- /dev-libs/libfreenect/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/libfreenect/Manifest -------------------------------------------------------------------------------- /dev-libs/libpcre2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/libpcre2/Manifest -------------------------------------------------------------------------------- /dev-libs/libsodium/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/libsodium/Manifest -------------------------------------------------------------------------------- /dev-libs/libtasn1/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/libtasn1/Manifest -------------------------------------------------------------------------------- /dev-libs/libxml2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/libxml2/Manifest -------------------------------------------------------------------------------- /dev-libs/libxml2/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/libxml2/metadata.xml -------------------------------------------------------------------------------- /dev-libs/libxslt/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/libxslt/Manifest -------------------------------------------------------------------------------- /dev-libs/libxslt/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/libxslt/metadata.xml -------------------------------------------------------------------------------- /dev-libs/lief/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/lief/Manifest -------------------------------------------------------------------------------- /dev-libs/lief/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/lief/metadata.xml -------------------------------------------------------------------------------- /dev-libs/log4c/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/log4c/Manifest -------------------------------------------------------------------------------- /dev-libs/log4c/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/log4c/metadata.xml -------------------------------------------------------------------------------- /dev-libs/mimalloc/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/mimalloc/Manifest -------------------------------------------------------------------------------- /dev-libs/miniz/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/miniz/Manifest -------------------------------------------------------------------------------- /dev-libs/miniz/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/miniz/metadata.xml -------------------------------------------------------------------------------- /dev-libs/nccl/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/nccl/Manifest -------------------------------------------------------------------------------- /dev-libs/nccl/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/nccl/metadata.xml -------------------------------------------------------------------------------- /dev-libs/ncnn/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/ncnn/Manifest -------------------------------------------------------------------------------- /dev-libs/ncnn/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/ncnn/metadata.xml -------------------------------------------------------------------------------- /dev-libs/nettle/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/nettle/Manifest -------------------------------------------------------------------------------- /dev-libs/nettle/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/nettle/metadata.xml -------------------------------------------------------------------------------- /dev-libs/nss/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/nss/Manifest -------------------------------------------------------------------------------- /dev-libs/nss/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/nss/metadata.xml -------------------------------------------------------------------------------- /dev-libs/nss/nss-3.116.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/nss/nss-3.116.ebuild -------------------------------------------------------------------------------- /dev-libs/nxjson/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/nxjson/Manifest -------------------------------------------------------------------------------- /dev-libs/nxjson/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/nxjson/metadata.xml -------------------------------------------------------------------------------- /dev-libs/openssl/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/openssl/Manifest -------------------------------------------------------------------------------- /dev-libs/openssl/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/openssl/metadata.xml -------------------------------------------------------------------------------- /dev-libs/protobuf/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/protobuf/Manifest -------------------------------------------------------------------------------- /dev-libs/pugixml/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/pugixml/Manifest -------------------------------------------------------------------------------- /dev-libs/pugixml/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/pugixml/metadata.xml -------------------------------------------------------------------------------- /dev-libs/rapidjson/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/rapidjson/Manifest -------------------------------------------------------------------------------- /dev-libs/rccl/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/rccl/Manifest -------------------------------------------------------------------------------- /dev-libs/rccl/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/rccl/metadata.xml -------------------------------------------------------------------------------- /dev-libs/re2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/re2/Manifest -------------------------------------------------------------------------------- /dev-libs/re2/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/re2/metadata.xml -------------------------------------------------------------------------------- /dev-libs/rocm-comgr/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/rocm-comgr/Manifest -------------------------------------------------------------------------------- /dev-libs/rocm-core/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/rocm-core/Manifest -------------------------------------------------------------------------------- /dev-libs/safeclib/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/safeclib/Manifest -------------------------------------------------------------------------------- /dev-libs/spdlog/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/spdlog/Manifest -------------------------------------------------------------------------------- /dev-libs/thrift/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/thrift/Manifest -------------------------------------------------------------------------------- /dev-libs/tinyxml/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-libs/tinyxml/Manifest -------------------------------------------------------------------------------- /dev-lua/luasqlite3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-lua/luasqlite3/Manifest -------------------------------------------------------------------------------- /dev-lua/luaxml/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-lua/luaxml/Manifest -------------------------------------------------------------------------------- /dev-lua/luaxml/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-lua/luaxml/metadata.xml -------------------------------------------------------------------------------- /dev-nodejs/acorn/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-nodejs/acorn/Manifest -------------------------------------------------------------------------------- /dev-perl/Alien-FFI/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-perl/Alien-FFI/Manifest -------------------------------------------------------------------------------- /dev-perl/Term-Caca/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-perl/Term-Caca/Manifest -------------------------------------------------------------------------------- /dev-perl/Test-Vars/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-perl/Test-Vars/Manifest -------------------------------------------------------------------------------- /dev-perl/URI-git/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-perl/URI-git/Manifest -------------------------------------------------------------------------------- /dev-php/grpc/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-php/grpc/Manifest -------------------------------------------------------------------------------- /dev-php/grpc/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-php/grpc/metadata.xml -------------------------------------------------------------------------------- /dev-php/libcaca/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-php/libcaca/Manifest -------------------------------------------------------------------------------- /dev-python/Authlib/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/Authlib/Manifest -------------------------------------------------------------------------------- /dev-python/RTFDE/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/RTFDE/Manifest -------------------------------------------------------------------------------- /dev-python/aioquic/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/aioquic/Manifest -------------------------------------------------------------------------------- /dev-python/ale-py/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/ale-py/Manifest -------------------------------------------------------------------------------- /dev-python/anyio/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/anyio/Manifest -------------------------------------------------------------------------------- /dev-python/asdff/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/asdff/Manifest -------------------------------------------------------------------------------- /dev-python/autorom/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/autorom/Manifest -------------------------------------------------------------------------------- /dev-python/av/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/av/Manifest -------------------------------------------------------------------------------- /dev-python/av/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/av/metadata.xml -------------------------------------------------------------------------------- /dev-python/barectf/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/barectf/Manifest -------------------------------------------------------------------------------- /dev-python/basicsr/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/basicsr/Manifest -------------------------------------------------------------------------------- /dev-python/blis/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/blis/Manifest -------------------------------------------------------------------------------- /dev-python/bsuite/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/bsuite/Manifest -------------------------------------------------------------------------------- /dev-python/chex/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/chex/Manifest -------------------------------------------------------------------------------- /dev-python/cli-ui/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/cli-ui/Manifest -------------------------------------------------------------------------------- /dev-python/clu/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/clu/Manifest -------------------------------------------------------------------------------- /dev-python/clu/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/clu/metadata.xml -------------------------------------------------------------------------------- /dev-python/coqpit/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/coqpit/Manifest -------------------------------------------------------------------------------- /dev-python/cymem/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/cymem/Manifest -------------------------------------------------------------------------------- /dev-python/cython/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/cython/Manifest -------------------------------------------------------------------------------- /dev-python/dctorch/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/dctorch/Manifest -------------------------------------------------------------------------------- /dev-python/dek/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/dek/Manifest -------------------------------------------------------------------------------- /dev-python/dek/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/dek/metadata.xml -------------------------------------------------------------------------------- /dev-python/distrax/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/distrax/Manifest -------------------------------------------------------------------------------- /dev-python/dm-env/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/dm-env/Manifest -------------------------------------------------------------------------------- /dev-python/dm-tree/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/dm-tree/Manifest -------------------------------------------------------------------------------- /dev-python/dmlab2d/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/dmlab2d/Manifest -------------------------------------------------------------------------------- /dev-python/dparse2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/dparse2/Manifest -------------------------------------------------------------------------------- /dev-python/ebcdic/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/ebcdic/Manifest -------------------------------------------------------------------------------- /dev-python/ecos/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/ecos/Manifest -------------------------------------------------------------------------------- /dev-python/editor/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/editor/Manifest -------------------------------------------------------------------------------- /dev-python/effdet/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/effdet/Manifest -------------------------------------------------------------------------------- /dev-python/elevate/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/elevate/Manifest -------------------------------------------------------------------------------- /dev-python/encodec/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/encodec/Manifest -------------------------------------------------------------------------------- /dev-python/etils/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/etils/Manifest -------------------------------------------------------------------------------- /dev-python/exhale/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/exhale/Manifest -------------------------------------------------------------------------------- /dev-python/fastapi/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/fastapi/Manifest -------------------------------------------------------------------------------- /dev-python/flax/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/flax/Manifest -------------------------------------------------------------------------------- /dev-python/fpdf2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/fpdf2/Manifest -------------------------------------------------------------------------------- /dev-python/gfpgan/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/gfpgan/Manifest -------------------------------------------------------------------------------- /dev-python/gitdb/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/gitdb/Manifest -------------------------------------------------------------------------------- /dev-python/google/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/google/Manifest -------------------------------------------------------------------------------- /dev-python/grpcio/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/grpcio/Manifest -------------------------------------------------------------------------------- /dev-python/gruut/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/gruut/Manifest -------------------------------------------------------------------------------- /dev-python/gym/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/gym/Manifest -------------------------------------------------------------------------------- /dev-python/gym/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/gym/metadata.xml -------------------------------------------------------------------------------- /dev-python/h2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/h2/Manifest -------------------------------------------------------------------------------- /dev-python/h2/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/h2/metadata.xml -------------------------------------------------------------------------------- /dev-python/hpack/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/hpack/Manifest -------------------------------------------------------------------------------- /dev-python/ivy/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/ivy/Manifest -------------------------------------------------------------------------------- /dev-python/ivy/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/ivy/metadata.xml -------------------------------------------------------------------------------- /dev-python/jax/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/jax/Manifest -------------------------------------------------------------------------------- /dev-python/jax/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/jax/metadata.xml -------------------------------------------------------------------------------- /dev-python/jaxlib/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/jaxlib/Manifest -------------------------------------------------------------------------------- /dev-python/jiter/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/jiter/Manifest -------------------------------------------------------------------------------- /dev-python/js8py/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/js8py/Manifest -------------------------------------------------------------------------------- /dev-python/jumpy/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/jumpy/Manifest -------------------------------------------------------------------------------- /dev-python/kaggle/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/kaggle/Manifest -------------------------------------------------------------------------------- /dev-python/keras/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/keras/Manifest -------------------------------------------------------------------------------- /dev-python/kornia/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/kornia/Manifest -------------------------------------------------------------------------------- /dev-python/labmaze/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/labmaze/Manifest -------------------------------------------------------------------------------- /dev-python/librosa/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/librosa/Manifest -------------------------------------------------------------------------------- /dev-python/lxml/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/lxml/Manifest -------------------------------------------------------------------------------- /dev-python/merge3/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/merge3/Manifest -------------------------------------------------------------------------------- /dev-python/mizani/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/mizani/Manifest -------------------------------------------------------------------------------- /dev-python/moviepy/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/moviepy/Manifest -------------------------------------------------------------------------------- /dev-python/msal/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/msal/Manifest -------------------------------------------------------------------------------- /dev-python/mujoco/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/mujoco/Manifest -------------------------------------------------------------------------------- /dev-python/mypy/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/mypy/Manifest -------------------------------------------------------------------------------- /dev-python/namex/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/namex/Manifest -------------------------------------------------------------------------------- /dev-python/nashpy/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/nashpy/Manifest -------------------------------------------------------------------------------- /dev-python/ncnn/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/ncnn/Manifest -------------------------------------------------------------------------------- /dev-python/nltk/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/nltk/Manifest -------------------------------------------------------------------------------- /dev-python/nudenet/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/nudenet/Manifest -------------------------------------------------------------------------------- /dev-python/numba/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/numba/Manifest -------------------------------------------------------------------------------- /dev-python/numpy/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/numpy/Manifest -------------------------------------------------------------------------------- /dev-python/ollama/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/ollama/Manifest -------------------------------------------------------------------------------- /dev-python/openai/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/openai/Manifest -------------------------------------------------------------------------------- /dev-python/optax/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/optax/Manifest -------------------------------------------------------------------------------- /dev-python/optree/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/optree/Manifest -------------------------------------------------------------------------------- /dev-python/orbax/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/orbax/Manifest -------------------------------------------------------------------------------- /dev-python/pathy/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/pathy/Manifest -------------------------------------------------------------------------------- /dev-python/pocket/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/pocket/Manifest -------------------------------------------------------------------------------- /dev-python/posthog/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/posthog/Manifest -------------------------------------------------------------------------------- /dev-python/preshed/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/preshed/Manifest -------------------------------------------------------------------------------- /dev-python/primp/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/primp/Manifest -------------------------------------------------------------------------------- /dev-python/proglog/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/proglog/Manifest -------------------------------------------------------------------------------- /dev-python/py3c/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/py3c/Manifest -------------------------------------------------------------------------------- /dev-python/pyarrow/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/pyarrow/Manifest -------------------------------------------------------------------------------- /dev-python/pyaudio/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/pyaudio/Manifest -------------------------------------------------------------------------------- /dev-python/pycsdr/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/pycsdr/Manifest -------------------------------------------------------------------------------- /dev-python/pyee/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/pyee/Manifest -------------------------------------------------------------------------------- /dev-python/pyglfw/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/pyglfw/Manifest -------------------------------------------------------------------------------- /dev-python/pygmars/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/pygmars/Manifest -------------------------------------------------------------------------------- /dev-python/pymunk/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/pymunk/Manifest -------------------------------------------------------------------------------- /dev-python/pyngrok/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/pyngrok/Manifest -------------------------------------------------------------------------------- /dev-python/pynvml/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/pynvml/Manifest -------------------------------------------------------------------------------- /dev-python/pyperf/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/pyperf/Manifest -------------------------------------------------------------------------------- /dev-python/pypika/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/pypika/Manifest -------------------------------------------------------------------------------- /dev-python/pysbd/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/pysbd/Manifest -------------------------------------------------------------------------------- /dev-python/pytube/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/pytube/Manifest -------------------------------------------------------------------------------- /dev-python/pyv4l2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/pyv4l2/Manifest -------------------------------------------------------------------------------- /dev-python/pyvips/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/pyvips/Manifest -------------------------------------------------------------------------------- /dev-python/pyxlsb/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/pyxlsb/Manifest -------------------------------------------------------------------------------- /dev-python/regipy/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/regipy/Manifest -------------------------------------------------------------------------------- /dev-python/rlax/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/rlax/Manifest -------------------------------------------------------------------------------- /dev-python/rlcard/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/rlcard/Manifest -------------------------------------------------------------------------------- /dev-python/runs/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/runs/Manifest -------------------------------------------------------------------------------- /dev-python/scipy/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/scipy/Manifest -------------------------------------------------------------------------------- /dev-python/shimmy/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/shimmy/Manifest -------------------------------------------------------------------------------- /dev-python/spacy/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/spacy/Manifest -------------------------------------------------------------------------------- /dev-python/srsly/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/srsly/Manifest -------------------------------------------------------------------------------- /dev-python/stasm/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/stasm/Manifest -------------------------------------------------------------------------------- /dev-python/tdir/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/tdir/Manifest -------------------------------------------------------------------------------- /dev-python/thinc/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/thinc/Manifest -------------------------------------------------------------------------------- /dev-python/timm/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/timm/Manifest -------------------------------------------------------------------------------- /dev-python/tomesd/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/tomesd/Manifest -------------------------------------------------------------------------------- /dev-python/toml/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/toml/Manifest -------------------------------------------------------------------------------- /dev-python/trfl/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/trfl/Manifest -------------------------------------------------------------------------------- /dev-python/triton/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/triton/Manifest -------------------------------------------------------------------------------- /dev-python/typer/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/typer/Manifest -------------------------------------------------------------------------------- /dev-python/urlpy/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/urlpy/Manifest -------------------------------------------------------------------------------- /dev-python/wandb/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/wandb/Manifest -------------------------------------------------------------------------------- /dev-python/wasabi/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/wasabi/Manifest -------------------------------------------------------------------------------- /dev-python/weasel/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/weasel/Manifest -------------------------------------------------------------------------------- /dev-python/wrapt/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/wrapt/Manifest -------------------------------------------------------------------------------- /dev-python/xmod/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-python/xmod/Manifest -------------------------------------------------------------------------------- /dev-qt/qt5compat/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-qt/qt5compat/Manifest -------------------------------------------------------------------------------- /dev-qt/qtbase/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-qt/qtbase/Manifest -------------------------------------------------------------------------------- /dev-qt/qtbase/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-qt/qtbase/metadata.xml -------------------------------------------------------------------------------- /dev-qt/qtquick3d/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-qt/qtquick3d/Manifest -------------------------------------------------------------------------------- /dev-qt/qtsvg/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-qt/qtsvg/Manifest -------------------------------------------------------------------------------- /dev-qt/qtsvg/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-qt/qtsvg/metadata.xml -------------------------------------------------------------------------------- /dev-qt/qttools/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-qt/qttools/Manifest -------------------------------------------------------------------------------- /dev-qt/qttools/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-qt/qttools/metadata.xml -------------------------------------------------------------------------------- /dev-qt/qtwayland/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-qt/qtwayland/Manifest -------------------------------------------------------------------------------- /dev-qt/qtwebengine/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-qt/qtwebengine/Manifest -------------------------------------------------------------------------------- /dev-ruby/libcaca/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-ruby/libcaca/Manifest -------------------------------------------------------------------------------- /dev-util/DOCA-Host/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/DOCA-Host/Manifest -------------------------------------------------------------------------------- /dev-util/HIPIFY/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/HIPIFY/Manifest -------------------------------------------------------------------------------- /dev-util/ROCgdb/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/ROCgdb/Manifest -------------------------------------------------------------------------------- /dev-util/Tensile/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/Tensile/Manifest -------------------------------------------------------------------------------- /dev-util/amd-smi/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/amd-smi/Manifest -------------------------------------------------------------------------------- /dev-util/bear/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/bear/Manifest -------------------------------------------------------------------------------- /dev-util/bear/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/bear/metadata.xml -------------------------------------------------------------------------------- /dev-util/binaryen/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/binaryen/Manifest -------------------------------------------------------------------------------- /dev-util/dyninst/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/dyninst/Manifest -------------------------------------------------------------------------------- /dev-util/geany/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/geany/Manifest -------------------------------------------------------------------------------- /dev-util/geany/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/geany/metadata.xml -------------------------------------------------------------------------------- /dev-util/glslang/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/glslang/Manifest -------------------------------------------------------------------------------- /dev-util/grex/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/grex/Manifest -------------------------------------------------------------------------------- /dev-util/grex/update-ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/grex/update-ebuild -------------------------------------------------------------------------------- /dev-util/gycm/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/gycm/Manifest -------------------------------------------------------------------------------- /dev-util/gycm/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/gycm/metadata.xml -------------------------------------------------------------------------------- /dev-util/hip-meta/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/hip-meta/Manifest -------------------------------------------------------------------------------- /dev-util/hip/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/hip/Manifest -------------------------------------------------------------------------------- /dev-util/hip/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/hip/metadata.xml -------------------------------------------------------------------------------- /dev-util/hipfort/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/hipfort/Manifest -------------------------------------------------------------------------------- /dev-util/jsonlint/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/jsonlint/Manifest -------------------------------------------------------------------------------- /dev-util/msbuild/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/msbuild/Manifest -------------------------------------------------------------------------------- /dev-util/perf/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/perf/Manifest -------------------------------------------------------------------------------- /dev-util/perf/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/perf/metadata.xml -------------------------------------------------------------------------------- /dev-util/pnnx/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/pnnx/Manifest -------------------------------------------------------------------------------- /dev-util/pnnx/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/pnnx/metadata.xml -------------------------------------------------------------------------------- /dev-util/rocm-meta/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/rocm-meta/Manifest -------------------------------------------------------------------------------- /dev-util/rocm-smi/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/rocm-smi/Manifest -------------------------------------------------------------------------------- /dev-util/rocminfo/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/rocminfo/Manifest -------------------------------------------------------------------------------- /dev-util/roctracer/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/roctracer/Manifest -------------------------------------------------------------------------------- /dev-util/synp/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/synp/Manifest -------------------------------------------------------------------------------- /dev-util/synp/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/synp/metadata.xml -------------------------------------------------------------------------------- /dev-util/tbump/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/tbump/Manifest -------------------------------------------------------------------------------- /dev-util/tbump/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/tbump/metadata.xml -------------------------------------------------------------------------------- /dev-util/theia/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/theia/Manifest -------------------------------------------------------------------------------- /dev-util/theia/files/theia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/theia/files/theia -------------------------------------------------------------------------------- /dev-util/theia/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/theia/metadata.xml -------------------------------------------------------------------------------- /dev-util/uglifyjs/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/uglifyjs/Manifest -------------------------------------------------------------------------------- /dev-util/ycmd/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/ycmd/Manifest -------------------------------------------------------------------------------- /dev-util/ycmd/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-util/ycmd/metadata.xml -------------------------------------------------------------------------------- /dev-vcs/breezy/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-vcs/breezy/Manifest -------------------------------------------------------------------------------- /dev-vcs/breezy/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-vcs/breezy/metadata.xml -------------------------------------------------------------------------------- /dev-vcs/git/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-vcs/git/Manifest -------------------------------------------------------------------------------- /dev-vcs/git/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/dev-vcs/git/metadata.xml -------------------------------------------------------------------------------- /eclass/abseil-cpp.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/abseil-cpp.eclass -------------------------------------------------------------------------------- /eclass/aocc.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/aocc.eclass -------------------------------------------------------------------------------- /eclass/bazel.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/bazel.eclass -------------------------------------------------------------------------------- /eclass/blender-v4.5.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/blender-v4.5.eclass -------------------------------------------------------------------------------- /eclass/blender-v5.0.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/blender-v5.0.eclass -------------------------------------------------------------------------------- /eclass/blender.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/blender.eclass -------------------------------------------------------------------------------- /eclass/cargo.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/cargo.eclass -------------------------------------------------------------------------------- /eclass/check-linker.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/check-linker.eclass -------------------------------------------------------------------------------- /eclass/cython.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/cython.eclass -------------------------------------------------------------------------------- /eclass/dep-prepare.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/dep-prepare.eclass -------------------------------------------------------------------------------- /eclass/dhms.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/dhms.eclass -------------------------------------------------------------------------------- /eclass/ebolt.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/ebolt.eclass -------------------------------------------------------------------------------- /eclass/electron-app.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/electron-app.eclass -------------------------------------------------------------------------------- /eclass/emscripten.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/emscripten.eclass -------------------------------------------------------------------------------- /eclass/epgo.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/epgo.eclass -------------------------------------------------------------------------------- /eclass/evar_dump.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/evar_dump.eclass -------------------------------------------------------------------------------- /eclass/ffmpeg.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/ffmpeg.eclass -------------------------------------------------------------------------------- /eclass/fix-rpath.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/fix-rpath.eclass -------------------------------------------------------------------------------- /eclass/flag-o-matic.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/flag-o-matic.eclass -------------------------------------------------------------------------------- /eclass/godot-3.6.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/godot-3.6.eclass -------------------------------------------------------------------------------- /eclass/godot-4.3.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/godot-4.3.eclass -------------------------------------------------------------------------------- /eclass/godot-4.4.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/godot-4.4.eclass -------------------------------------------------------------------------------- /eclass/godot-4.5.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/godot-4.5.eclass -------------------------------------------------------------------------------- /eclass/graalvm.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/graalvm.eclass -------------------------------------------------------------------------------- /eclass/gradle.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/gradle.eclass -------------------------------------------------------------------------------- /eclass/grpc.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/grpc.eclass -------------------------------------------------------------------------------- /eclass/hip-versions.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/hip-versions.eclass -------------------------------------------------------------------------------- /eclass/lcnr.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/lcnr.eclass -------------------------------------------------------------------------------- /eclass/libcxx-compat.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/libcxx-compat.eclass -------------------------------------------------------------------------------- /eclass/libcxx-slot.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/libcxx-slot.eclass -------------------------------------------------------------------------------- /eclass/llvm-ebuilds.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/llvm-ebuilds.eclass -------------------------------------------------------------------------------- /eclass/llvm.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/llvm.eclass -------------------------------------------------------------------------------- /eclass/mitigate-dos.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/mitigate-dos.eclass -------------------------------------------------------------------------------- /eclass/mitigate-dt.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/mitigate-dt.eclass -------------------------------------------------------------------------------- /eclass/mitigate-id.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/mitigate-id.eclass -------------------------------------------------------------------------------- /eclass/node-sharp.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/node-sharp.eclass -------------------------------------------------------------------------------- /eclass/node.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/node.eclass -------------------------------------------------------------------------------- /eclass/npm.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/npm.eclass -------------------------------------------------------------------------------- /eclass/nuget.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/nuget.eclass -------------------------------------------------------------------------------- /eclass/nupkg.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/nupkg.eclass -------------------------------------------------------------------------------- /eclass/opentelemetry.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/opentelemetry.eclass -------------------------------------------------------------------------------- /eclass/ot-kernel.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/ot-kernel.eclass -------------------------------------------------------------------------------- /eclass/playwright.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/playwright.eclass -------------------------------------------------------------------------------- /eclass/pnpm.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/pnpm.eclass -------------------------------------------------------------------------------- /eclass/protobuf.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/protobuf.eclass -------------------------------------------------------------------------------- /eclass/re2.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/re2.eclass -------------------------------------------------------------------------------- /eclass/rocm.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/rocm.eclass -------------------------------------------------------------------------------- /eclass/rust.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/rust.eclass -------------------------------------------------------------------------------- /eclass/security-scan.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/security-scan.eclass -------------------------------------------------------------------------------- /eclass/tbolt.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/tbolt.eclass -------------------------------------------------------------------------------- /eclass/tpgo.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/tpgo.eclass -------------------------------------------------------------------------------- /eclass/train.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/train.eclass -------------------------------------------------------------------------------- /eclass/uopts.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/uopts.eclass -------------------------------------------------------------------------------- /eclass/vf.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/vf.eclass -------------------------------------------------------------------------------- /eclass/yarn.eclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/eclass/yarn.eclass -------------------------------------------------------------------------------- /games-rpg/RisuAI/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/games-rpg/RisuAI/Manifest -------------------------------------------------------------------------------- /gnome-base/librsvg/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/gnome-base/librsvg/Manifest -------------------------------------------------------------------------------- /gui-apps/taigo/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/gui-apps/taigo/Manifest -------------------------------------------------------------------------------- /gui-apps/taigo/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/gui-apps/taigo/metadata.xml -------------------------------------------------------------------------------- /gui-apps/windowpet/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/gui-apps/windowpet/Manifest -------------------------------------------------------------------------------- /gui-libs/gtk/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/gui-libs/gtk/Manifest -------------------------------------------------------------------------------- /gui-libs/gtk/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/gui-libs/gtk/metadata.xml -------------------------------------------------------------------------------- /gui-libs/hyprutils/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/gui-libs/hyprutils/Manifest -------------------------------------------------------------------------------- /gui-libs/libdecor/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/gui-libs/libdecor/Manifest -------------------------------------------------------------------------------- /gui-wm/hyprland/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/gui-wm/hyprland/Manifest -------------------------------------------------------------------------------- /gui-wm/sway/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/gui-wm/sway/Manifest -------------------------------------------------------------------------------- /gui-wm/sway/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/gui-wm/sway/metadata.xml -------------------------------------------------------------------------------- /licenses/AFL-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/AFL-2.0 -------------------------------------------------------------------------------- /licenses/AOCC-3.2-EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/AOCC-3.2-EULA -------------------------------------------------------------------------------- /licenses/AOCC-4.0-EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/AOCC-4.0-EULA -------------------------------------------------------------------------------- /licenses/AOCC-4.1-EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/AOCC-4.1-EULA -------------------------------------------------------------------------------- /licenses/AOCC-4.2-EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/AOCC-4.2-EULA -------------------------------------------------------------------------------- /licenses/ASSIMPNET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/ASSIMPNET -------------------------------------------------------------------------------- /licenses/BoringSSL-ECC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/BoringSSL-ECC -------------------------------------------------------------------------------- /licenses/BoringSSL-PSK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/BoringSSL-PSK -------------------------------------------------------------------------------- /licenses/CC-BY-ND-2.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/CC-BY-ND-2.5 -------------------------------------------------------------------------------- /licenses/DOCA-EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/DOCA-EULA -------------------------------------------------------------------------------- /licenses/GDevelop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/GDevelop -------------------------------------------------------------------------------- /licenses/GEOTRANS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/GEOTRANS -------------------------------------------------------------------------------- /licenses/GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/GIF -------------------------------------------------------------------------------- /licenses/GO-PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/GO-PATENTS -------------------------------------------------------------------------------- /licenses/GPL-CC-1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/GPL-CC-1.0 -------------------------------------------------------------------------------- /licenses/GamepadConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/GamepadConfig -------------------------------------------------------------------------------- /licenses/Google-Maps-Google-Earth-Additional-Terms-of-Service: -------------------------------------------------------------------------------- 1 | See https://www.google.com/help/terms_maps/ 2 | -------------------------------------------------------------------------------- /licenses/Google-Privacy-Policy: -------------------------------------------------------------------------------- 1 | See https://policies.google.com/privacy?hl=en 2 | -------------------------------------------------------------------------------- /licenses/Google-Terms-of-Service: -------------------------------------------------------------------------------- 1 | See https://policies.google.com/terms 2 | -------------------------------------------------------------------------------- /licenses/HDF-EOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/HDF-EOS -------------------------------------------------------------------------------- /licenses/ILA-OpenCV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/ILA-OpenCV -------------------------------------------------------------------------------- /licenses/JSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/JSON -------------------------------------------------------------------------------- /licenses/Khronos-IP-framework: -------------------------------------------------------------------------------- 1 | See https://www.khronos.org/members/ip-framework 2 | -------------------------------------------------------------------------------- /licenses/Kimi-K2-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/Kimi-K2-LICENSE -------------------------------------------------------------------------------- /licenses/Linux-syscall-note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/Linux-syscall-note -------------------------------------------------------------------------------- /licenses/LobeChat-20240617: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/LobeChat-20240617 -------------------------------------------------------------------------------- /licenses/LobeHub-Privacy-Policy: -------------------------------------------------------------------------------- 1 | See https://lobehub.com/privacy 2 | -------------------------------------------------------------------------------- /licenses/LobeHub-Terms-of-Service: -------------------------------------------------------------------------------- 1 | See https://lobehub.com/terms 2 | -------------------------------------------------------------------------------- /licenses/MNPL-0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/MNPL-0.1.md -------------------------------------------------------------------------------- /licenses/MRL-0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/MRL-0.1.md -------------------------------------------------------------------------------- /licenses/MS-RL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/MS-RL -------------------------------------------------------------------------------- /licenses/Meta-Privacy-Policy: -------------------------------------------------------------------------------- 1 | See https://www.facebook.com/privacy/policy/ 2 | -------------------------------------------------------------------------------- /licenses/Mono-patents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/Mono-patents -------------------------------------------------------------------------------- /licenses/NAIST-IPADIC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/NAIST-IPADIC -------------------------------------------------------------------------------- /licenses/NTP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/NTP -------------------------------------------------------------------------------- /licenses/NVIDIA-CUDA-Python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/NVIDIA-CUDA-Python -------------------------------------------------------------------------------- /licenses/OG-X11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/OG-X11 -------------------------------------------------------------------------------- /licenses/OIN: -------------------------------------------------------------------------------- 1 | Read https://openinventionnetwork.com/about-us/license-agreement/ 2 | -------------------------------------------------------------------------------- /licenses/OSL-3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/OSL-3.0 -------------------------------------------------------------------------------- /licenses/OpenCoder-20240716: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/OpenCoder-20240716 -------------------------------------------------------------------------------- /licenses/OpenTK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/OpenTK -------------------------------------------------------------------------------- /licenses/OpenUSD-21.11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/OpenUSD-21.11 -------------------------------------------------------------------------------- /licenses/OpenUSD-22.11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/OpenUSD-22.11 -------------------------------------------------------------------------------- /licenses/OpenUSD-23.05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/OpenUSD-23.05 -------------------------------------------------------------------------------- /licenses/OpenUSD-23.11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/OpenUSD-23.11 -------------------------------------------------------------------------------- /licenses/PowerVRTools-EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/PowerVRTools-EULA -------------------------------------------------------------------------------- /licenses/Prior-BSD-License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/Prior-BSD-License -------------------------------------------------------------------------------- /licenses/QU-fft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/QU-fft -------------------------------------------------------------------------------- /licenses/Qhull: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/Qhull -------------------------------------------------------------------------------- /licenses/RADEON-FIRMWARE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/RADEON-FIRMWARE -------------------------------------------------------------------------------- /licenses/RSA_Data_Security: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/RSA_Data_Security -------------------------------------------------------------------------------- /licenses/RisuAI-Terms-of-Service: -------------------------------------------------------------------------------- 1 | See https://sv.risuai.xyz/hub/tos 2 | -------------------------------------------------------------------------------- /licenses/RtAudio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/RtAudio -------------------------------------------------------------------------------- /licenses/RtMidi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/RtMidi -------------------------------------------------------------------------------- /licenses/SCEA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/SCEA -------------------------------------------------------------------------------- /licenses/SGI-B-1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/SGI-B-1.1 -------------------------------------------------------------------------------- /licenses/SPL-R5-SR1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/SPL-R5-SR1 -------------------------------------------------------------------------------- /licenses/SURF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/SURF -------------------------------------------------------------------------------- /licenses/SURF-MOD_ADBLOCKER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/SURF-MOD_ADBLOCKER -------------------------------------------------------------------------------- /licenses/SunPro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/SunPro -------------------------------------------------------------------------------- /licenses/TurboSquid-Royalty-Free-License: -------------------------------------------------------------------------------- 1 | See https://blog.turbosquid.com/royalty-free-license/ for details. 2 | -------------------------------------------------------------------------------- /licenses/UIUC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/UIUC -------------------------------------------------------------------------------- /licenses/UPL-1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/UPL-1.0 -------------------------------------------------------------------------------- /licenses/W3C-CLA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/W3C-CLA -------------------------------------------------------------------------------- /licenses/base64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/base64 -------------------------------------------------------------------------------- /licenses/fft2d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/fft2d -------------------------------------------------------------------------------- /licenses/freeglut-teapot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/freeglut-teapot -------------------------------------------------------------------------------- /licenses/g711: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/g711 -------------------------------------------------------------------------------- /licenses/g722: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/g722 -------------------------------------------------------------------------------- /licenses/glm-4-9b-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/glm-4-9b-LICENSE -------------------------------------------------------------------------------- /licenses/icu-64.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/icu-64.2 -------------------------------------------------------------------------------- /licenses/icu-68.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/icu-68.1 -------------------------------------------------------------------------------- /licenses/icu-70.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/icu-70.1 -------------------------------------------------------------------------------- /licenses/icu-71.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/icu-71.1 -------------------------------------------------------------------------------- /licenses/icu-72.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/icu-72.1 -------------------------------------------------------------------------------- /licenses/icu-73.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/icu-73.1 -------------------------------------------------------------------------------- /licenses/libvpx-PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/libvpx-PATENTS -------------------------------------------------------------------------------- /licenses/libwebm-PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/libwebm-PATENTS -------------------------------------------------------------------------------- /licenses/libwebrtc-PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/libwebrtc-PATENTS -------------------------------------------------------------------------------- /licenses/libyuv-PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/libyuv-PATENTS -------------------------------------------------------------------------------- /licenses/llama2-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/llama2-LICENSE -------------------------------------------------------------------------------- /licenses/llama3-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/llama3-LICENSE -------------------------------------------------------------------------------- /licenses/llama3_1-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/llama3_1-LICENSE -------------------------------------------------------------------------------- /licenses/llama3_2-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/llama3_2-LICENSE -------------------------------------------------------------------------------- /licenses/llama3_3-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/llama3_3-LICENSE -------------------------------------------------------------------------------- /licenses/llama4-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/llama4-LICENSE -------------------------------------------------------------------------------- /licenses/neon_2_sse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/neon_2_sse -------------------------------------------------------------------------------- /licenses/ooura: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/ooura -------------------------------------------------------------------------------- /licenses/optionalX11-KP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/optionalX11-KP -------------------------------------------------------------------------------- /licenses/optionalX11-OG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/optionalX11-OG -------------------------------------------------------------------------------- /licenses/optionalX11-OG-DEC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/optionalX11-OG-DEC -------------------------------------------------------------------------------- /licenses/optionalX11-SGCSI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/optionalX11-SGCSI -------------------------------------------------------------------------------- /licenses/pixman-arm-asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/pixman-arm-asm.h -------------------------------------------------------------------------------- /licenses/rocm-llvm-alt-EULA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/rocm-llvm-alt-EULA -------------------------------------------------------------------------------- /licenses/sigslot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/sigslot -------------------------------------------------------------------------------- /licenses/svgo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/svgo -------------------------------------------------------------------------------- /licenses/widevine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/widevine -------------------------------------------------------------------------------- /licenses/x11proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/licenses/x11proto -------------------------------------------------------------------------------- /lint-uopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/lint-uopts -------------------------------------------------------------------------------- /lintrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/lintrepo -------------------------------------------------------------------------------- /llvm-core/clang/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/llvm-core/clang/Manifest -------------------------------------------------------------------------------- /llvm-core/lld/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/llvm-core/lld/Manifest -------------------------------------------------------------------------------- /llvm-core/lld/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/llvm-core/lld/metadata.xml -------------------------------------------------------------------------------- /llvm-core/llvm/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/llvm-core/llvm/Manifest -------------------------------------------------------------------------------- /llvm-core/llvm/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/llvm-core/llvm/metadata.xml -------------------------------------------------------------------------------- /llvm-core/mlir/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/llvm-core/mlir/Manifest -------------------------------------------------------------------------------- /llvm-core/mlir/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/llvm-core/mlir/metadata.xml -------------------------------------------------------------------------------- /llvm-core/pstl/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/llvm-core/pstl/Manifest -------------------------------------------------------------------------------- /llvm-core/pstl/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/llvm-core/pstl/metadata.xml -------------------------------------------------------------------------------- /llvm-runtimes/libcxx/files/libcxx-20.1.8-hardened.patch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /llvm-runtimes/libcxxabi/files/libcxx-20.1.8-hardened.patch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /media-gfx/alembic/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-gfx/alembic/Manifest -------------------------------------------------------------------------------- /media-gfx/blender/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-gfx/blender/Manifest -------------------------------------------------------------------------------- /media-gfx/dssim/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-gfx/dssim/Manifest -------------------------------------------------------------------------------- /media-gfx/eog/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-gfx/eog/Manifest -------------------------------------------------------------------------------- /media-gfx/eog/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-gfx/eog/metadata.xml -------------------------------------------------------------------------------- /media-gfx/gimp/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-gfx/gimp/Manifest -------------------------------------------------------------------------------- /media-gfx/gimp/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-gfx/gimp/metadata.xml -------------------------------------------------------------------------------- /media-gfx/gmic-qt/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-gfx/gmic-qt/Manifest -------------------------------------------------------------------------------- /media-gfx/gmic/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-gfx/gmic/Manifest -------------------------------------------------------------------------------- /media-gfx/gmic/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-gfx/gmic/metadata.xml -------------------------------------------------------------------------------- /media-gfx/inkscape/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-gfx/inkscape/Manifest -------------------------------------------------------------------------------- /media-gfx/openvdb/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-gfx/openvdb/Manifest -------------------------------------------------------------------------------- /media-gfx/openvdb/files/COPYRIGHT: -------------------------------------------------------------------------------- 1 | Copyright Contributors to the OpenVDB Project 2 | SPDX-License-Identifier: MPL-2.0 -------------------------------------------------------------------------------- /media-gfx/optipng/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-gfx/optipng/Manifest -------------------------------------------------------------------------------- /media-gfx/upscayl/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-gfx/upscayl/Manifest -------------------------------------------------------------------------------- /media-libs/HIPRT/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/HIPRT/Manifest -------------------------------------------------------------------------------- /media-libs/alure/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/alure/Manifest -------------------------------------------------------------------------------- /media-libs/assimp/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/assimp/Manifest -------------------------------------------------------------------------------- /media-libs/cgif/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/cgif/Manifest -------------------------------------------------------------------------------- /media-libs/cimg/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/cimg/Manifest -------------------------------------------------------------------------------- /media-libs/csfml/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/csfml/Manifest -------------------------------------------------------------------------------- /media-libs/dav1d/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/dav1d/Manifest -------------------------------------------------------------------------------- /media-libs/embree/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/embree/Manifest -------------------------------------------------------------------------------- /media-libs/flac/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/flac/Manifest -------------------------------------------------------------------------------- /media-libs/glu/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/glu/Manifest -------------------------------------------------------------------------------- /media-libs/glu/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/glu/metadata.xml -------------------------------------------------------------------------------- /media-libs/glui/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/glui/Manifest -------------------------------------------------------------------------------- /media-libs/imlib2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/imlib2/Manifest -------------------------------------------------------------------------------- /media-libs/libaom/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/libaom/Manifest -------------------------------------------------------------------------------- /media-libs/libcaca/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/libcaca/Manifest -------------------------------------------------------------------------------- /media-libs/libexif/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/libexif/Manifest -------------------------------------------------------------------------------- /media-libs/libheif/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/libheif/Manifest -------------------------------------------------------------------------------- /media-libs/libjxl/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/libjxl/Manifest -------------------------------------------------------------------------------- /media-libs/libogg/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/libogg/Manifest -------------------------------------------------------------------------------- /media-libs/libpng/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/libpng/Manifest -------------------------------------------------------------------------------- /media-libs/libsdl2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/libsdl2/Manifest -------------------------------------------------------------------------------- /media-libs/libsfml/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/libsfml/Manifest -------------------------------------------------------------------------------- /media-libs/libspng/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/libspng/Manifest -------------------------------------------------------------------------------- /media-libs/libvpx/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/libvpx/Manifest -------------------------------------------------------------------------------- /media-libs/libwebp/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/libwebp/Manifest -------------------------------------------------------------------------------- /media-libs/libyuv/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/libyuv/Manifest -------------------------------------------------------------------------------- /media-libs/libzen/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/libzen/Manifest -------------------------------------------------------------------------------- /media-libs/mesa/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/mesa/Manifest -------------------------------------------------------------------------------- /media-libs/oidn/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/oidn/Manifest -------------------------------------------------------------------------------- /media-libs/openal/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/openal/Manifest -------------------------------------------------------------------------------- /media-libs/opencv/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/opencv/Manifest -------------------------------------------------------------------------------- /media-libs/openexr/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/openexr/Manifest -------------------------------------------------------------------------------- /media-libs/openpgl/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/openpgl/Manifest -------------------------------------------------------------------------------- /media-libs/openusd/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/openusd/Manifest -------------------------------------------------------------------------------- /media-libs/openxr/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/openxr/Manifest -------------------------------------------------------------------------------- /media-libs/opus/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/opus/Manifest -------------------------------------------------------------------------------- /media-libs/osl/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/osl/Manifest -------------------------------------------------------------------------------- /media-libs/osl/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/osl/metadata.xml -------------------------------------------------------------------------------- /media-libs/partio/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/partio/Manifest -------------------------------------------------------------------------------- /media-libs/ptex/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/ptex/Manifest -------------------------------------------------------------------------------- /media-libs/rtaudio/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/rtaudio/Manifest -------------------------------------------------------------------------------- /media-libs/shaderc/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/shaderc/Manifest -------------------------------------------------------------------------------- /media-libs/speex/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/speex/Manifest -------------------------------------------------------------------------------- /media-libs/tremor/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/tremor/Manifest -------------------------------------------------------------------------------- /media-libs/vips/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/vips/Manifest -------------------------------------------------------------------------------- /media-libs/woff2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-libs/woff2/Manifest -------------------------------------------------------------------------------- /media-radio/csdr/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-radio/csdr/Manifest -------------------------------------------------------------------------------- /media-radio/dream/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-radio/dream/Manifest -------------------------------------------------------------------------------- /media-sound/jack2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-sound/jack2/Manifest -------------------------------------------------------------------------------- /media-video/deface/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-video/deface/Manifest -------------------------------------------------------------------------------- /media-video/ffmpeg/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-video/ffmpeg/Manifest -------------------------------------------------------------------------------- /media-video/movit/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-video/movit/Manifest -------------------------------------------------------------------------------- /media-video/mpv/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-video/mpv/Manifest -------------------------------------------------------------------------------- /media-video/olive/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/media-video/olive/Manifest -------------------------------------------------------------------------------- /metadata/layout.conf: -------------------------------------------------------------------------------- 1 | masters = gentoo dotnet 2 | -------------------------------------------------------------------------------- /net-im/caprine/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/net-im/caprine/Manifest -------------------------------------------------------------------------------- /net-im/caprine/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/net-im/caprine/metadata.xml -------------------------------------------------------------------------------- /net-im/chatterino/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/net-im/chatterino/Manifest -------------------------------------------------------------------------------- /net-libs/Thunder/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/net-libs/Thunder/Manifest -------------------------------------------------------------------------------- /net-libs/cef-bin/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/net-libs/cef-bin/Manifest -------------------------------------------------------------------------------- /net-libs/gnutls/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/net-libs/gnutls/Manifest -------------------------------------------------------------------------------- /net-libs/grpc/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/net-libs/grpc/Manifest -------------------------------------------------------------------------------- /net-libs/grpc/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/net-libs/grpc/metadata.xml -------------------------------------------------------------------------------- /net-libs/libavtp/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/net-libs/libavtp/Manifest -------------------------------------------------------------------------------- /net-libs/librist/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/net-libs/librist/Manifest -------------------------------------------------------------------------------- /net-libs/libsoup/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/net-libs/libsoup/Manifest -------------------------------------------------------------------------------- /net-libs/nghttp2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/net-libs/nghttp2/Manifest -------------------------------------------------------------------------------- /net-libs/nodejs/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/net-libs/nodejs/Manifest -------------------------------------------------------------------------------- /net-misc/ThunderUI/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/net-misc/ThunderUI/Manifest -------------------------------------------------------------------------------- /net-misc/curl/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/net-misc/curl/Manifest -------------------------------------------------------------------------------- /net-misc/curl/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/net-misc/curl/metadata.xml -------------------------------------------------------------------------------- /net-misc/wget/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/net-misc/wget/Manifest -------------------------------------------------------------------------------- /net-misc/wget/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/net-misc/wget/metadata.xml -------------------------------------------------------------------------------- /profiles/categories: -------------------------------------------------------------------------------- 1 | dev-rust 2 | blender-libs 3 | dev-nodejs 4 | -------------------------------------------------------------------------------- /profiles/desc/cpu_flags_arm.desc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/desc/cpu_flags_riscv.desc: -------------------------------------------------------------------------------- 1 | cpu_flags_riscv_rvv - Add support for the RISC-V Vector (RVV) extension. 2 | -------------------------------------------------------------------------------- /profiles/desc/dotnet.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/profiles/desc/dotnet.desc -------------------------------------------------------------------------------- /profiles/desc/ebuild_revision.desc: -------------------------------------------------------------------------------- 1 | 1 - The 1st ebuild revision 2 | -------------------------------------------------------------------------------- /profiles/desc/gcc_slot.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/profiles/desc/gcc_slot.desc -------------------------------------------------------------------------------- /profiles/desc/godot.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/profiles/desc/godot.desc -------------------------------------------------------------------------------- /profiles/make.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/profiles/make.defaults -------------------------------------------------------------------------------- /profiles/package.mask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/profiles/package.mask -------------------------------------------------------------------------------- /profiles/package.use: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/package.use.force: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/profiles/package.use.force -------------------------------------------------------------------------------- /profiles/package.use.mask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/profiles/package.use.mask -------------------------------------------------------------------------------- /profiles/repo_name: -------------------------------------------------------------------------------- 1 | oiledmachine-overlay 2 | -------------------------------------------------------------------------------- /profiles/use.mask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/profiles/use.mask -------------------------------------------------------------------------------- /sci-libs/MIGraphX/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/MIGraphX/Manifest -------------------------------------------------------------------------------- /sci-libs/MIVisionX/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/MIVisionX/Manifest -------------------------------------------------------------------------------- /sci-libs/clblast/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/clblast/Manifest -------------------------------------------------------------------------------- /sci-libs/dlib/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/dlib/Manifest -------------------------------------------------------------------------------- /sci-libs/dlib/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/dlib/metadata.xml -------------------------------------------------------------------------------- /sci-libs/hipBLAS/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/hipBLAS/Manifest -------------------------------------------------------------------------------- /sci-libs/hipBLASLt/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/hipBLASLt/Manifest -------------------------------------------------------------------------------- /sci-libs/hipCUB/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/hipCUB/Manifest -------------------------------------------------------------------------------- /sci-libs/hipFFT/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/hipFFT/Manifest -------------------------------------------------------------------------------- /sci-libs/hipRAND/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/hipRAND/Manifest -------------------------------------------------------------------------------- /sci-libs/hipSOLVER/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/hipSOLVER/Manifest -------------------------------------------------------------------------------- /sci-libs/hipSPARSE/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/hipSPARSE/Manifest -------------------------------------------------------------------------------- /sci-libs/hipTensor/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/hipTensor/Manifest -------------------------------------------------------------------------------- /sci-libs/magma/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/magma/Manifest -------------------------------------------------------------------------------- /sci-libs/magma/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/magma/metadata.xml -------------------------------------------------------------------------------- /sci-libs/miopen/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/miopen/Manifest -------------------------------------------------------------------------------- /sci-libs/rocAL/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/rocAL/Manifest -------------------------------------------------------------------------------- /sci-libs/rocAL/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/rocAL/metadata.xml -------------------------------------------------------------------------------- /sci-libs/rocBLAS/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/rocBLAS/Manifest -------------------------------------------------------------------------------- /sci-libs/rocDecode/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/rocDecode/Manifest -------------------------------------------------------------------------------- /sci-libs/rocFFT/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/rocFFT/Manifest -------------------------------------------------------------------------------- /sci-libs/rocMLIR/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/rocMLIR/Manifest -------------------------------------------------------------------------------- /sci-libs/rocPRIM/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/rocPRIM/Manifest -------------------------------------------------------------------------------- /sci-libs/rocRAND/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/rocRAND/Manifest -------------------------------------------------------------------------------- /sci-libs/rocSOLVER/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/rocSOLVER/Manifest -------------------------------------------------------------------------------- /sci-libs/rocSPARSE/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/rocSPARSE/Manifest -------------------------------------------------------------------------------- /sci-libs/rocThrust/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/rocThrust/Manifest -------------------------------------------------------------------------------- /sci-libs/rocWMMA/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/rocWMMA/Manifest -------------------------------------------------------------------------------- /sci-libs/rpp/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/rpp/Manifest -------------------------------------------------------------------------------- /sci-libs/rpp/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-libs/rpp/metadata.xml -------------------------------------------------------------------------------- /sci-ml/FBGEMM/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-ml/FBGEMM/Manifest -------------------------------------------------------------------------------- /sci-ml/FBGEMM/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-ml/FBGEMM/metadata.xml -------------------------------------------------------------------------------- /sci-ml/XNNPACK/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-ml/XNNPACK/Manifest -------------------------------------------------------------------------------- /sci-ml/XNNPACK/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-ml/XNNPACK/metadata.xml -------------------------------------------------------------------------------- /sci-ml/caffe2/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-ml/caffe2/Manifest -------------------------------------------------------------------------------- /sci-ml/caffe2/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-ml/caffe2/metadata.xml -------------------------------------------------------------------------------- /sci-ml/kineto/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-ml/kineto/Manifest -------------------------------------------------------------------------------- /sci-ml/kineto/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-ml/kineto/metadata.xml -------------------------------------------------------------------------------- /sci-ml/nnef-models/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-ml/nnef-models/Manifest -------------------------------------------------------------------------------- /sci-ml/onnxruntime/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-ml/onnxruntime/Manifest -------------------------------------------------------------------------------- /sci-ml/openvino/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-ml/openvino/Manifest -------------------------------------------------------------------------------- /sci-ml/pytorch/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-ml/pytorch/Manifest -------------------------------------------------------------------------------- /sci-ml/pytorch/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-ml/pytorch/metadata.xml -------------------------------------------------------------------------------- /sci-ml/tensorflow/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-ml/tensorflow/Manifest -------------------------------------------------------------------------------- /sci-ml/tf-slim/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-ml/tf-slim/Manifest -------------------------------------------------------------------------------- /sci-ml/tf-slim/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-ml/tf-slim/metadata.xml -------------------------------------------------------------------------------- /sci-ml/torchaudio/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-ml/torchaudio/Manifest -------------------------------------------------------------------------------- /sci-ml/torchvision/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-ml/torchvision/Manifest -------------------------------------------------------------------------------- /sci-physics/bullet/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-physics/bullet/Manifest -------------------------------------------------------------------------------- /sci-physics/mujoco/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sci-physics/mujoco/Manifest -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/rpath_verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/scripts/rpath_verify.sh -------------------------------------------------------------------------------- /sys-apps/c2tcp/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-apps/c2tcp/Manifest -------------------------------------------------------------------------------- /sys-apps/c2tcp/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-apps/c2tcp/metadata.xml -------------------------------------------------------------------------------- /sys-apps/deepcc/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-apps/deepcc/Manifest -------------------------------------------------------------------------------- /sys-apps/evhz/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-apps/evhz/Manifest -------------------------------------------------------------------------------- /sys-apps/evhz/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-apps/evhz/metadata.xml -------------------------------------------------------------------------------- /sys-apps/finit-d/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-apps/finit-d/Manifest -------------------------------------------------------------------------------- /sys-apps/finit/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-apps/finit/Manifest -------------------------------------------------------------------------------- /sys-apps/finit/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-apps/finit/metadata.xml -------------------------------------------------------------------------------- /sys-apps/firejail/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-apps/firejail/Manifest -------------------------------------------------------------------------------- /sys-apps/lact/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-apps/lact/Manifest -------------------------------------------------------------------------------- /sys-apps/lact/files/lactd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-apps/lact/files/lactd -------------------------------------------------------------------------------- /sys-apps/lact/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-apps/lact/metadata.xml -------------------------------------------------------------------------------- /sys-apps/npm/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-apps/npm/Manifest -------------------------------------------------------------------------------- /sys-apps/npm/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-apps/npm/metadata.xml -------------------------------------------------------------------------------- /sys-apps/oomd/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-apps/oomd/Manifest -------------------------------------------------------------------------------- /sys-apps/oomd/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-apps/oomd/metadata.xml -------------------------------------------------------------------------------- /sys-apps/orca/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-apps/orca/Manifest -------------------------------------------------------------------------------- /sys-apps/orca/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-apps/orca/metadata.xml -------------------------------------------------------------------------------- /sys-apps/pnpm/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-apps/pnpm/Manifest -------------------------------------------------------------------------------- /sys-apps/pnpm/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-apps/pnpm/metadata.xml -------------------------------------------------------------------------------- /sys-apps/yarn/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-apps/yarn/Manifest -------------------------------------------------------------------------------- /sys-apps/yarn/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-apps/yarn/metadata.xml -------------------------------------------------------------------------------- /sys-cluster/knem/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-cluster/knem/Manifest -------------------------------------------------------------------------------- /sys-cluster/knem/files/45-knem.rules: -------------------------------------------------------------------------------- 1 | KERNEL=="knem", MODE="0666" 2 | -------------------------------------------------------------------------------- /sys-cluster/rdc/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-cluster/rdc/Manifest -------------------------------------------------------------------------------- /sys-cluster/ucx/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-cluster/ucx/Manifest -------------------------------------------------------------------------------- /sys-cluster/xpmem/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-cluster/xpmem/Manifest -------------------------------------------------------------------------------- /sys-devel/aocc/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-devel/aocc/Manifest -------------------------------------------------------------------------------- /sys-devel/aocc/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-devel/aocc/metadata.xml -------------------------------------------------------------------------------- /sys-devel/llvm-roc/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-devel/llvm-roc/Manifest -------------------------------------------------------------------------------- /sys-devel/mold/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-devel/mold/Manifest -------------------------------------------------------------------------------- /sys-devel/mold/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-devel/mold/metadata.xml -------------------------------------------------------------------------------- /sys-kernel/pcc/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-kernel/pcc/Manifest -------------------------------------------------------------------------------- /sys-kernel/pcc/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-kernel/pcc/metadata.xml -------------------------------------------------------------------------------- /sys-libs/zlib/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-libs/zlib/Manifest -------------------------------------------------------------------------------- /sys-libs/zlib/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-libs/zlib/metadata.xml -------------------------------------------------------------------------------- /sys-process/nvtop/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/sys-process/nvtop/Manifest -------------------------------------------------------------------------------- /use-linter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/use-linter -------------------------------------------------------------------------------- /virtual/dss/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/virtual/dss/Manifest -------------------------------------------------------------------------------- /virtual/dss/dss-0.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/virtual/dss/dss-0.ebuild -------------------------------------------------------------------------------- /virtual/dss/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/virtual/dss/metadata.xml -------------------------------------------------------------------------------- /virtual/kfd/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/virtual/kfd/Manifest -------------------------------------------------------------------------------- /virtual/kfd/kfd-6.4.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/virtual/kfd/kfd-6.4.ebuild -------------------------------------------------------------------------------- /virtual/kfd/kfd-7.0.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/virtual/kfd/kfd-7.0.ebuild -------------------------------------------------------------------------------- /virtual/kfd/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/virtual/kfd/metadata.xml -------------------------------------------------------------------------------- /virtual/libcxx/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/virtual/libcxx/Manifest -------------------------------------------------------------------------------- /virtual/libcxx/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/virtual/libcxx/metadata.xml -------------------------------------------------------------------------------- /virtual/libstdcxx/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/virtual/libstdcxx/Manifest -------------------------------------------------------------------------------- /virtual/pillow/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/virtual/pillow/Manifest -------------------------------------------------------------------------------- /virtual/pillow/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/virtual/pillow/metadata.xml -------------------------------------------------------------------------------- /virtual/tmpfiles/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/virtual/tmpfiles/Manifest -------------------------------------------------------------------------------- /www-apps/lobe-chat/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/www-apps/lobe-chat/Manifest -------------------------------------------------------------------------------- /www-client/firefox/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/www-client/firefox/Manifest -------------------------------------------------------------------------------- /www-client/surf/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/www-client/surf/Manifest -------------------------------------------------------------------------------- /www-client/surf/files/adblock/customrules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www-client/surf/files/adblock/whitelist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www-misc/ddgr/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/www-misc/ddgr/Manifest -------------------------------------------------------------------------------- /www-misc/ddgr/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/www-misc/ddgr/metadata.xml -------------------------------------------------------------------------------- /www-misc/mahimahi/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/www-misc/mahimahi/Manifest -------------------------------------------------------------------------------- /www-misc/socli/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/www-misc/socli/Manifest -------------------------------------------------------------------------------- /www-misc/socli/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/www-misc/socli/metadata.xml -------------------------------------------------------------------------------- /x11-libs/cairo/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/x11-libs/cairo/Manifest -------------------------------------------------------------------------------- /x11-libs/cairo/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/x11-libs/cairo/metadata.xml -------------------------------------------------------------------------------- /x11-libs/gtk+/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/x11-libs/gtk+/Manifest -------------------------------------------------------------------------------- /x11-libs/gtk+/files/gtkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/x11-libs/gtk+/files/gtkrc -------------------------------------------------------------------------------- /x11-libs/gtk+/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/x11-libs/gtk+/metadata.xml -------------------------------------------------------------------------------- /x11-libs/libX11/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/x11-libs/libX11/Manifest -------------------------------------------------------------------------------- /x11-libs/pango/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/x11-libs/pango/Manifest -------------------------------------------------------------------------------- /x11-libs/pango/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/x11-libs/pango/metadata.xml -------------------------------------------------------------------------------- /x11-libs/pixman/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/x11-libs/pixman/Manifest -------------------------------------------------------------------------------- /x11-libs/vte/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/x11-libs/vte/Manifest -------------------------------------------------------------------------------- /x11-libs/vte/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/x11-libs/vte/metadata.xml -------------------------------------------------------------------------------- /x11-misc/sddm/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/x11-misc/sddm/Manifest -------------------------------------------------------------------------------- /x11-misc/sddm/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/x11-misc/sddm/metadata.xml -------------------------------------------------------------------------------- /x11-misc/xsnow/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/x11-misc/xsnow/Manifest -------------------------------------------------------------------------------- /x11-misc/xsnow/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/x11-misc/xsnow/metadata.xml -------------------------------------------------------------------------------- /x11-wm/dwm/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/x11-wm/dwm/Manifest -------------------------------------------------------------------------------- /x11-wm/dwm/dwm-6.5.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/x11-wm/dwm/dwm-6.5.ebuild -------------------------------------------------------------------------------- /x11-wm/dwm/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/x11-wm/dwm/metadata.xml -------------------------------------------------------------------------------- /x11-wm/xpra/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/x11-wm/xpra/Manifest -------------------------------------------------------------------------------- /x11-wm/xpra/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orsonteodoro/oiledmachine-overlay/HEAD/x11-wm/xpra/metadata.xml --------------------------------------------------------------------------------